diff --git a/angular.json b/angular.json
index 18e9375..a778225 100644
--- a/angular.json
+++ b/angular.json
@@ -1,15 +1,18 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
- "cli": {
- "analytics": false
- },
"version": 1,
+ "cli": {
+ "analytics": false,
+ "packageManager": "pnpm"
+ },
"newProjectRoot": "projects",
"projects": {
"Bridge": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
+ "inlineTemplate": true,
+ "inlineStyle": true,
"style": "scss",
"skipTests": true
},
@@ -22,76 +25,69 @@
"@schematics/angular:guard": {
"skipTests": true
},
- "@schematics/angular:module": {
+ "@schematics/angular:interceptor": {
+ "skipTests": true
},
"@schematics/angular:pipe": {
"skipTests": true
},
+ "@schematics/angular:resolver": {
+ "skipTests": true
+ },
"@schematics/angular:service": {
"skipTests": true
}
},
"root": "",
- "sourceRoot": "src",
+ "sourceRoot": "src-angular",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
- "outputPath": "dist",
- "index": "src/index.html",
- "main": "src/main.ts",
- "polyfills": "src/polyfills.ts",
- "tsConfig": "tsconfig.angular.json",
+ "outputPath": "dist/angular",
+ "index": "src-angular/index.html",
+ "main": "src-angular/main.ts",
+ "polyfills": [
+ "zone.js"
+ ],
+ "tsConfig": "src-angular/tsconfig.angular.json",
+ "inlineStyleLanguage": "scss",
"watch": true,
"assets": [
- "src/assets"
+ "src-angular/assets"
],
"styles": [
- "src/assets/semantic/dist/semantic.min.css",
- "src/styles.scss"
+ "src-angular/styles.scss",
+ "node_modules/tailwindcss/tailwind.css"
],
- "scripts": [
- "src/assets/semantic/jqueryImport.js",
- "src/assets/semantic/dist/semantic.min.js"
- ],
- "vendorChunk": true,
- "extractLicenses": false,
- "buildOptimizer": false,
- "sourceMap": true,
- "optimization": false,
- "namedChunks": true
+ "scripts": [],
+ "extractLicenses": false
},
"configurations": {
"production": {
"budgets": [
+ {
+ "type": "initial",
+ "maximumWarning": "500kb",
+ "maximumError": "1mb"
+ },
{
"type": "anyComponentStyle",
- "maximumWarning": "6kb"
+ "maximumWarning": "2kb",
+ "maximumError": "4kb"
}
],
"fileReplacements": [
{
- "replace": "src/environments/environment.ts",
- "with": "src/environments/environment.prod.ts"
+ "replace": "src-angular/environments/environment.ts",
+ "with": "src-angular/environments/environment.prod.ts"
}
],
- "baseHref": "./",
- "optimization": {
- "styles": {
- "minify": false
- }
- },
- "outputHashing": "all",
- "sourceMap": false,
- "namedChunks": false,
- "watch": false,
- "extractLicenses": true,
- "vendorChunk": false,
- "buildOptimizer": true
+ "outputHashing": "all"
}
},
- "defaultConfiguration": ""
+ "defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
@@ -101,22 +97,13 @@
"configurations": {
"production": {
"buildTarget": "Bridge:build:production"
+ },
+ "development": {
+ "buildTarget": "angular:build:development"
}
}
- },
- "lint": {
- "builder": "@angular-eslint/builder:lint",
- "options": {
- "eslintConfig": "./.eslintrc.json",
- "tsConfig": [
- "./tsconfig.json"
- ],
- "exclude": [
- "**/node_modules/**"
- ]
- }
}
}
}
}
-}
\ No newline at end of file
+}
diff --git a/package.json b/package.json
index 58d0028..89820dd 100644
--- a/package.json
+++ b/package.json
@@ -15,14 +15,13 @@
"main": "dist/electron/main.js",
"private": true,
"scripts": {
- "start": "concurrently \"npm run serve:angular\" \"npm run serve:electron\" -n angular,electron -c red,yellow",
- "serve:electron": "nodemon --exec \"tsc -p tsconfig.electron.json && electron . --dev\" --watch src/electron -e ts",
- "lint": "ng lint",
+ "start": "concurrently \"npm run start:angular\" \"npm run start:electron\" -n angular,electron -c red,yellow",
+ "start:angular": "ng serve",
+ "start:electron": "nodemon --exec \"tsc -p src-electron/tsconfig.electron.json && electron ./dist/electron/src-electron/main.js --dev\" --watch src-electron/ -e ts",
"clean": "rimraf dist release",
"build:windows": "ng build -c production && tsc -p tsconfig.electron.json && electron-builder build --windows",
"build:mac": "ng build -c production && tsc -p tsconfig.electron.json && electron-builder build --mac",
"build:linux": "ng build -c production && tsc -p tsconfig.electron.json && electron-builder build --linux",
- "serve:angular": "ng serve",
"release": "ng build -c production && tsc -p tsconfig.electron.json && electron-builder build"
},
"dependencies": {
@@ -34,19 +33,15 @@
"@angular/platform-browser": "^17.0.4",
"@angular/platform-browser-dynamic": "^17.0.4",
"@angular/router": "^17.0.4",
- "@electron/remote": "^2.0.9",
+ "bootstrap-icons": "^1.11.2",
"bottleneck": "^2.19.5",
- "cli-color": "^2.0.0",
"comparators": "^3.0.2",
"electron-unhandled": "^4.0.1",
"electron-updater": "^4.3.1",
"electron-window-state": "^5.0.3",
- "fomantic-ui": "^2.8.3",
- "jquery": "^3.5.1",
- "jsonfile": "^6.0.1",
"lodash": "^4.17.21",
+ "mkdirp": "^3.0.1",
"mv": "^2.1.1",
- "randombytes": "^2.1.0",
"rimraf": "^5.0.5",
"rxjs": "~7.8.1",
"sanitize-filename": "^1.6.3",
@@ -63,15 +58,13 @@
"@angular/cli": "^17.0.3",
"@angular/compiler-cli": "^17.0.4",
"@angular/language-service": "^17.0.4",
- "@types/cli-color": "^2.0.0",
- "@types/jsonfile": "^6.0.0",
"@types/lodash": "^4.14.202",
"@types/mv": "^2.1.0",
"@types/node": "^18.16.0",
- "@types/randombytes": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"concurrently": "^8.2.2",
+ "daisyui": "^4.4.14",
"electron": "^27.1.2",
"electron-builder": "^23.6.0",
"eslint": "^8.54.0",
@@ -86,7 +79,6 @@
"prettier-eslint": "^16.1.2",
"source-map-support": "^0.5.21",
"tailwindcss": "^3.3.5",
- "tsx": "^4.4.0",
"typescript": "^5.2.2"
}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 19d4d36..0beb10f 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -29,15 +29,12 @@ dependencies:
'@angular/router':
specifier: ^17.0.4
version: 17.0.4(@angular/common@17.0.4)(@angular/core@17.0.4)(@angular/platform-browser@17.0.4)(rxjs@7.8.1)
- '@electron/remote':
- specifier: ^2.0.9
- version: 2.1.0(electron@27.1.2)
+ bootstrap-icons:
+ specifier: ^1.11.2
+ version: 1.11.2
bottleneck:
specifier: ^2.19.5
version: 2.19.5
- cli-color:
- specifier: ^2.0.0
- version: 2.0.3
comparators:
specifier: ^3.0.2
version: 3.0.5
@@ -50,24 +47,15 @@ dependencies:
electron-window-state:
specifier: ^5.0.3
version: 5.0.3
- fomantic-ui:
- specifier: ^2.8.3
- version: 2.9.3
- jquery:
- specifier: ^3.5.1
- version: 3.7.1
- jsonfile:
- specifier: ^6.0.1
- version: 6.1.0
lodash:
specifier: ^4.17.21
version: 4.17.21
+ mkdirp:
+ specifier: ^3.0.1
+ version: 3.0.1
mv:
specifier: ^2.1.1
version: 2.1.1
- randombytes:
- specifier: ^2.1.0
- version: 2.1.0
rimraf:
specifier: ^5.0.5
version: 5.0.5
@@ -112,12 +100,6 @@ devDependencies:
'@angular/language-service':
specifier: ^17.0.4
version: 17.0.4
- '@types/cli-color':
- specifier: ^2.0.0
- version: 2.0.6
- '@types/jsonfile':
- specifier: ^6.0.0
- version: 6.1.4
'@types/lodash':
specifier: ^4.14.202
version: 4.14.202
@@ -127,9 +109,6 @@ devDependencies:
'@types/node':
specifier: ^18.16.0
version: 18.16.0
- '@types/randombytes':
- specifier: ^2.0.0
- version: 2.0.3
'@typescript-eslint/eslint-plugin':
specifier: ^6.12.0
version: 6.12.0(@typescript-eslint/parser@6.12.0)(eslint@8.54.0)(typescript@5.2.2)
@@ -139,6 +118,9 @@ devDependencies:
concurrently:
specifier: ^8.2.2
version: 8.2.2
+ daisyui:
+ specifier: ^4.4.14
+ version: 4.4.14(postcss@8.4.31)
electron:
specifier: ^27.1.2
version: 27.1.2
@@ -181,9 +163,6 @@ devDependencies:
tailwindcss:
specifier: ^3.3.5
version: 3.3.5
- tsx:
- specifier: ^4.4.0
- version: 4.4.0
typescript:
specifier: ^5.2.2
version: 5.2.2
@@ -199,20 +178,6 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /@actions/core@1.10.1:
- resolution: {integrity: sha512-3lBR9EDAY+iYIpTnTIXmWcNbX3T2kCkAEQGIQx4NVQ0575nk2k3GRZDTPQG+vVtS2izSLmINlxXf0uLtnrTP+g==}
- dependencies:
- '@actions/http-client': 2.2.0
- uuid: 8.3.2
- dev: false
-
- /@actions/http-client@2.2.0:
- resolution: {integrity: sha512-q+epW0trjVUUHboliPb4UF9g2msf+w61b32tAkFEwL/IwP0DQWgbCMM0Hbe3e3WXSKz5VcUXbzJQgy8Hkra/Lg==}
- dependencies:
- tunnel: 0.0.6
- undici: 5.27.2
- dev: false
-
/@alloc/quick-lru@5.2.0:
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
@@ -1935,14 +1900,7 @@ packages:
global-agent: 3.0.0
transitivePeerDependencies:
- supports-color
-
- /@electron/remote@2.1.0(electron@27.1.2):
- resolution: {integrity: sha512-38jzz2beoYTo0DNS+aoaGyLS/fHeNTAc1Aom6HlYsxKnvVWjcg4xriC7J2IUkYSEDHGKX/D7jUst+mH4dHR6QA==}
- peerDependencies:
- electron: '>= 13.0.0'
- dependencies:
- electron: 27.1.2
- dev: false
+ dev: true
/@electron/universal@1.2.1:
resolution: {integrity: sha512-7323HyMh7KBAl/nPDppdLsC87G6RwRU02dy5FPeGB1eS7rUePh55+WNWiDPLhFQqqVPHzh77M69uhmoT8XnwMQ==}
@@ -1977,15 +1935,6 @@ packages:
dev: true
optional: true
- /@esbuild/android-arm64@0.18.20:
- resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/android-arm64@0.19.5:
resolution: {integrity: sha512-5d1OkoJxnYQfmC+Zd8NBFjkhyCNYwM4n9ODrycTFY6Jk1IGiZ+tjVJDDSwDt77nK+tfpGP4T50iMtVi4dEGzhQ==}
engines: {node: '>=12'}
@@ -2004,15 +1953,6 @@ packages:
dev: true
optional: true
- /@esbuild/android-arm@0.18.20:
- resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/android-arm@0.19.5:
resolution: {integrity: sha512-bhvbzWFF3CwMs5tbjf3ObfGqbl/17ict2/uwOSfr3wmxDE6VdS2GqY/FuzIPe0q0bdhj65zQsvqfArI9MY6+AA==}
engines: {node: '>=12'}
@@ -2031,15 +1971,6 @@ packages:
dev: true
optional: true
- /@esbuild/android-x64@0.18.20:
- resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/android-x64@0.19.5:
resolution: {integrity: sha512-9t+28jHGL7uBdkBjL90QFxe7DVA+KGqWlHCF8ChTKyaKO//VLuoBricQCgwhOjA1/qOczsw843Fy4cbs4H3DVA==}
engines: {node: '>=12'}
@@ -2058,15 +1989,6 @@ packages:
dev: true
optional: true
- /@esbuild/darwin-arm64@0.18.20:
- resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/darwin-arm64@0.19.5:
resolution: {integrity: sha512-mvXGcKqqIqyKoxq26qEDPHJuBYUA5KizJncKOAf9eJQez+L9O+KfvNFu6nl7SCZ/gFb2QPaRqqmG0doSWlgkqw==}
engines: {node: '>=12'}
@@ -2085,15 +2007,6 @@ packages:
dev: true
optional: true
- /@esbuild/darwin-x64@0.18.20:
- resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/darwin-x64@0.19.5:
resolution: {integrity: sha512-Ly8cn6fGLNet19s0X4unjcniX24I0RqjPv+kurpXabZYSXGM4Pwpmf85WHJN3lAgB8GSth7s5A0r856S+4DyiA==}
engines: {node: '>=12'}
@@ -2112,15 +2025,6 @@ packages:
dev: true
optional: true
- /@esbuild/freebsd-arm64@0.18.20:
- resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/freebsd-arm64@0.19.5:
resolution: {integrity: sha512-GGDNnPWTmWE+DMchq1W8Sd0mUkL+APvJg3b11klSGUDvRXh70JqLAO56tubmq1s2cgpVCSKYywEiKBfju8JztQ==}
engines: {node: '>=12'}
@@ -2139,15 +2043,6 @@ packages:
dev: true
optional: true
- /@esbuild/freebsd-x64@0.18.20:
- resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/freebsd-x64@0.19.5:
resolution: {integrity: sha512-1CCwDHnSSoA0HNwdfoNY0jLfJpd7ygaLAp5EHFos3VWJCRX9DMwWODf96s9TSse39Br7oOTLryRVmBoFwXbuuQ==}
engines: {node: '>=12'}
@@ -2166,15 +2061,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-arm64@0.18.20:
- resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-arm64@0.19.5:
resolution: {integrity: sha512-o3vYippBmSrjjQUCEEiTZ2l+4yC0pVJD/Dl57WfPwwlvFkrxoSO7rmBZFii6kQB3Wrn/6GwJUPLU5t52eq2meA==}
engines: {node: '>=12'}
@@ -2193,15 +2079,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-arm@0.18.20:
- resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-arm@0.19.5:
resolution: {integrity: sha512-lrWXLY/vJBzCPC51QN0HM71uWgIEpGSjSZZADQhq7DKhPcI6NH1IdzjfHkDQws2oNpJKpR13kv7/pFHBbDQDwQ==}
engines: {node: '>=12'}
@@ -2220,15 +2097,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-ia32@0.18.20:
- resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-ia32@0.19.5:
resolution: {integrity: sha512-MkjHXS03AXAkNp1KKkhSKPOCYztRtK+KXDNkBa6P78F8Bw0ynknCSClO/ztGszILZtyO/lVKpa7MolbBZ6oJtQ==}
engines: {node: '>=12'}
@@ -2247,15 +2115,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-loong64@0.18.20:
- resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-loong64@0.19.5:
resolution: {integrity: sha512-42GwZMm5oYOD/JHqHska3Jg0r+XFb/fdZRX+WjADm3nLWLcIsN27YKtqxzQmGNJgu0AyXg4HtcSK9HuOk3v1Dw==}
engines: {node: '>=12'}
@@ -2274,15 +2133,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-mips64el@0.18.20:
- resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-mips64el@0.19.5:
resolution: {integrity: sha512-kcjndCSMitUuPJobWCnwQ9lLjiLZUR3QLQmlgaBfMX23UEa7ZOrtufnRds+6WZtIS9HdTXqND4yH8NLoVVIkcg==}
engines: {node: '>=12'}
@@ -2301,15 +2151,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-ppc64@0.18.20:
- resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-ppc64@0.19.5:
resolution: {integrity: sha512-yJAxJfHVm0ZbsiljbtFFP1BQKLc8kUF6+17tjQ78QjqjAQDnhULWiTA6u0FCDmYT1oOKS9PzZ2z0aBI+Mcyj7Q==}
engines: {node: '>=12'}
@@ -2328,15 +2169,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-riscv64@0.18.20:
- resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-riscv64@0.19.5:
resolution: {integrity: sha512-5u8cIR/t3gaD6ad3wNt1MNRstAZO+aNyBxu2We8X31bA8XUNyamTVQwLDA1SLoPCUehNCymhBhK3Qim1433Zag==}
engines: {node: '>=12'}
@@ -2355,15 +2187,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-s390x@0.18.20:
- resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-s390x@0.19.5:
resolution: {integrity: sha512-Z6JrMyEw/EmZBD/OFEFpb+gao9xJ59ATsoTNlj39jVBbXqoZm4Xntu6wVmGPB/OATi1uk/DB+yeDPv2E8PqZGw==}
engines: {node: '>=12'}
@@ -2382,15 +2205,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-x64@0.18.20:
- resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-x64@0.19.5:
resolution: {integrity: sha512-psagl+2RlK1z8zWZOmVdImisMtrUxvwereIdyJTmtmHahJTKb64pAcqoPlx6CewPdvGvUKe2Jw+0Z/0qhSbG1A==}
engines: {node: '>=12'}
@@ -2409,15 +2223,6 @@ packages:
dev: true
optional: true
- /@esbuild/netbsd-x64@0.18.20:
- resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/netbsd-x64@0.19.5:
resolution: {integrity: sha512-kL2l+xScnAy/E/3119OggX8SrWyBEcqAh8aOY1gr4gPvw76la2GlD4Ymf832UCVbmuWeTf2adkZDK+h0Z/fB4g==}
engines: {node: '>=12'}
@@ -2436,15 +2241,6 @@ packages:
dev: true
optional: true
- /@esbuild/openbsd-x64@0.18.20:
- resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/openbsd-x64@0.19.5:
resolution: {integrity: sha512-sPOfhtzFufQfTBgRnE1DIJjzsXukKSvZxloZbkJDG383q0awVAq600pc1nfqBcl0ice/WN9p4qLc39WhBShRTA==}
engines: {node: '>=12'}
@@ -2463,15 +2259,6 @@ packages:
dev: true
optional: true
- /@esbuild/sunos-x64@0.18.20:
- resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/sunos-x64@0.19.5:
resolution: {integrity: sha512-dGZkBXaafuKLpDSjKcB0ax0FL36YXCvJNnztjKV+6CO82tTYVDSH2lifitJ29jxRMoUhgkg9a+VA/B03WK5lcg==}
engines: {node: '>=12'}
@@ -2490,15 +2277,6 @@ packages:
dev: true
optional: true
- /@esbuild/win32-arm64@0.18.20:
- resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/win32-arm64@0.19.5:
resolution: {integrity: sha512-dWVjD9y03ilhdRQ6Xig1NWNgfLtf2o/STKTS+eZuF90fI2BhbwD6WlaiCGKptlqXlURVB5AUOxUj09LuwKGDTg==}
engines: {node: '>=12'}
@@ -2517,15 +2295,6 @@ packages:
dev: true
optional: true
- /@esbuild/win32-ia32@0.18.20:
- resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/win32-ia32@0.19.5:
resolution: {integrity: sha512-4liggWIA4oDgUxqpZwrDhmEfAH4d0iljanDOK7AnVU89T6CzHon/ony8C5LeOdfgx60x5cnQJFZwEydVlYx4iw==}
engines: {node: '>=12'}
@@ -2544,15 +2313,6 @@ packages:
dev: true
optional: true
- /@esbuild/win32-x64@0.18.20:
- resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/win32-x64@0.19.5:
resolution: {integrity: sha512-czTrygUsB/jlM8qEW5MD8bgYU2Xg14lo6kBDXW6HdxKjh8M5PzETGiSHaz9MtbXBYDloHNUAUW2tMiKW4KM9Mw==}
engines: {node: '>=12'}
@@ -2602,6 +2362,7 @@ packages:
/@fastify/busboy@2.1.0:
resolution: {integrity: sha512-+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA==}
engines: {node: '>=14'}
+ dev: true
/@humanwhocodes/config-array@0.11.13:
resolution: {integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==}
@@ -2743,10 +2504,12 @@ packages:
dependencies:
'@nodelib/fs.stat': 2.0.5
run-parallel: 1.2.0
+ dev: true
/@nodelib/fs.stat@2.0.5:
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
+ dev: true
/@nodelib/fs.walk@1.2.8:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
@@ -2754,6 +2517,7 @@ packages:
dependencies:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.15.0
+ dev: true
/@npmcli/agent@2.2.0:
resolution: {integrity: sha512-2yThA1Es98orMkpSLVqlDZAMPK3jHJhifP2gnNUdk1754uZ8yI5c+ulCoVG+WlntQA6MzhrURMXjSd9Z7dJ2/Q==}
@@ -2950,117 +2714,6 @@ packages:
dev: true
optional: true
- /@octokit/auth-token@2.5.0:
- resolution: {integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==}
- dependencies:
- '@octokit/types': 6.41.0
- dev: false
-
- /@octokit/core@3.6.0:
- resolution: {integrity: sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==}
- dependencies:
- '@octokit/auth-token': 2.5.0
- '@octokit/graphql': 4.8.0
- '@octokit/request': 5.6.3
- '@octokit/request-error': 2.1.0
- '@octokit/types': 6.41.0
- before-after-hook: 2.2.3
- universal-user-agent: 6.0.1
- transitivePeerDependencies:
- - encoding
- dev: false
-
- /@octokit/endpoint@6.0.12:
- resolution: {integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==}
- dependencies:
- '@octokit/types': 6.41.0
- is-plain-object: 5.0.0
- universal-user-agent: 6.0.1
- dev: false
-
- /@octokit/graphql@4.8.0:
- resolution: {integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==}
- dependencies:
- '@octokit/request': 5.6.3
- '@octokit/types': 6.41.0
- universal-user-agent: 6.0.1
- transitivePeerDependencies:
- - encoding
- dev: false
-
- /@octokit/openapi-types@12.11.0:
- resolution: {integrity: sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==}
- dev: false
-
- /@octokit/plugin-paginate-rest@2.21.3(@octokit/core@3.6.0):
- resolution: {integrity: sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==}
- peerDependencies:
- '@octokit/core': '>=2'
- dependencies:
- '@octokit/core': 3.6.0
- '@octokit/types': 6.41.0
- dev: false
-
- /@octokit/plugin-request-log@1.0.4(@octokit/core@3.6.0):
- resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==}
- peerDependencies:
- '@octokit/core': '>=3'
- dependencies:
- '@octokit/core': 3.6.0
- dev: false
-
- /@octokit/plugin-rest-endpoint-methods@5.16.2(@octokit/core@3.6.0):
- resolution: {integrity: sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==}
- peerDependencies:
- '@octokit/core': '>=3'
- dependencies:
- '@octokit/core': 3.6.0
- '@octokit/types': 6.41.0
- deprecation: 2.3.1
- dev: false
-
- /@octokit/request-error@2.1.0:
- resolution: {integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==}
- dependencies:
- '@octokit/types': 6.41.0
- deprecation: 2.3.1
- once: 1.4.0
- dev: false
-
- /@octokit/request@5.6.3:
- resolution: {integrity: sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==}
- dependencies:
- '@octokit/endpoint': 6.0.12
- '@octokit/request-error': 2.1.0
- '@octokit/types': 6.41.0
- is-plain-object: 5.0.0
- node-fetch: 2.7.0
- universal-user-agent: 6.0.1
- transitivePeerDependencies:
- - encoding
- dev: false
-
- /@octokit/rest@18.12.0:
- resolution: {integrity: sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==}
- dependencies:
- '@octokit/core': 3.6.0
- '@octokit/plugin-paginate-rest': 2.21.3(@octokit/core@3.6.0)
- '@octokit/plugin-request-log': 1.0.4(@octokit/core@3.6.0)
- '@octokit/plugin-rest-endpoint-methods': 5.16.2(@octokit/core@3.6.0)
- transitivePeerDependencies:
- - encoding
- dev: false
-
- /@octokit/types@6.41.0:
- resolution: {integrity: sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==}
- dependencies:
- '@octokit/openapi-types': 12.11.0
- dev: false
-
- /@one-ini/wasm@0.1.1:
- resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==}
- dev: false
-
/@pkgjs/parseargs@0.11.0:
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
engines: {node: '>=14'}
@@ -3130,6 +2783,7 @@ packages:
/@sindresorhus/is@4.6.0:
resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==}
engines: {node: '>=10'}
+ dev: true
/@socket.io/component-emitter@3.1.0:
resolution: {integrity: sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==}
@@ -3140,6 +2794,7 @@ packages:
engines: {node: '>=10'}
dependencies:
defer-to-connect: 2.0.1
+ dev: true
/@tootallnate/once@2.0.0:
resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
@@ -3179,9 +2834,6 @@ packages:
'@types/keyv': 3.1.4
'@types/node': 14.18.63
'@types/responselike': 1.0.3
-
- /@types/cli-color@2.0.6:
- resolution: {integrity: sha512-uLK0/0dOYdkX8hNsezpYh1gc8eerbhf9bOKZ3e24sP67703mw9S14/yW6mSTatiaKO9v+mU/a1EVy4rOXXeZTA==}
dev: true
/@types/connect-history-api-fallback@1.5.4:
@@ -3231,10 +2883,6 @@ packages:
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
dev: true
- /@types/expect@1.20.4:
- resolution: {integrity: sha512-Q5Vn3yjTDyCMV50TB6VRIbQNxSE4OmZR86VSbGaNpfUolm0iePBB4KdEEHmxoY5sT2+2DIvXW0rvMDP2nHZ4Mg==}
- dev: false
-
/@types/express-serve-static-core@4.17.41:
resolution: {integrity: sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==}
dependencies:
@@ -3264,12 +2912,13 @@ packages:
requiresBuild: true
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 14.18.63
+ '@types/node': 18.16.0
dev: true
optional: true
/@types/http-cache-semantics@4.0.4:
resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==}
+ dev: true
/@types/http-errors@2.0.4:
resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==}
@@ -3289,16 +2938,11 @@ packages:
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
dev: true
- /@types/jsonfile@6.1.4:
- resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==}
- dependencies:
- '@types/node': 14.18.63
- dev: true
-
/@types/keyv@3.1.4:
resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
dependencies:
'@types/node': 14.18.63
+ dev: true
/@types/lodash@4.14.202:
resolution: {integrity: sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==}
@@ -3334,9 +2978,11 @@ packages:
/@types/node@14.18.63:
resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==}
+ dev: true
/@types/node@18.16.0:
resolution: {integrity: sha512-BsAaKhB+7X+H4GnSjGhJG9Qi8Tw+inU9nJDwmD5CgOmBLEI6ArdhikpLX7DjbjDRDTbqZzU2LSQNZg8WGPiSZQ==}
+ dev: true
/@types/plist@3.0.5:
resolution: {integrity: sha512-E6OCaRmAe4WDmWNsL/9RMqdkkzDCY1etutkflWk4c+AcjDU07Pcz1fQwTX0TQz+Pxqn9i4L1TU3UFpjnrcDgxA==}
@@ -3351,12 +2997,6 @@ packages:
resolution: {integrity: sha512-3Gnx08Ns1sEoCrWssEgTSJs/rsT2vhGP+Ja9cnnk9k4ALxinORlQneLXFeFKOTJMOeZUFD1s7w+w2AphTpvzZw==}
dev: true
- /@types/randombytes@2.0.3:
- resolution: {integrity: sha512-+NRgihTfuURllWCiIAhm1wsJqzsocnqXM77V/CalsdJIYSRGEHMnritxh+6EsBklshC+clo1KgnN14qgSGeQdw==}
- dependencies:
- '@types/node': 14.18.63
- dev: true
-
/@types/range-parser@1.2.7:
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
dev: true
@@ -3365,6 +3005,7 @@ packages:
resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==}
dependencies:
'@types/node': 14.18.63
+ dev: true
/@types/retry@0.12.0:
resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==}
@@ -3406,13 +3047,6 @@ packages:
dev: true
optional: true
- /@types/vinyl@2.0.11:
- resolution: {integrity: sha512-vPXzCLmRp74e9LsP8oltnWKTH+jBwt86WgRUb4Pc9Lf3pkMVGyvIo2gm9bODeGfCay2DBB/hAWDuvf07JcK4rw==}
- dependencies:
- '@types/expect': 1.20.4
- '@types/node': 14.18.63
- dev: false
-
/@types/ws@8.5.10:
resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==}
dependencies:
@@ -3434,6 +3068,7 @@ packages:
requiresBuild: true
dependencies:
'@types/node': 14.18.63
+ dev: true
optional: true
/@typescript-eslint/eslint-plugin@6.12.0(@typescript-eslint/parser@6.12.0)(eslint@8.54.0)(typescript@5.2.2):
@@ -3811,6 +3446,7 @@ packages:
/abbrev@2.0.0:
resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ dev: true
/accepts@1.3.8:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
@@ -3874,6 +3510,7 @@ packages:
dependencies:
clean-stack: 2.2.0
indent-string: 4.0.0
+ dev: true
/ajv-formats@2.1.1(ajv@8.12.0):
resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
@@ -3921,42 +3558,17 @@ packages:
uri-js: 4.4.1
dev: true
- /ansi-colors@1.1.0:
- resolution: {integrity: sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- ansi-wrap: 0.1.0
- dev: false
-
- /ansi-colors@3.2.4:
- resolution: {integrity: sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==}
- engines: {node: '>=6'}
- dev: false
-
/ansi-colors@4.1.3:
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
engines: {node: '>=6'}
dev: true
- /ansi-cyan@0.1.1:
- resolution: {integrity: sha512-eCjan3AVo/SxZ0/MyIYRtkpxIu/H3xZN7URr1vXVrISxeyz8fUFz0FJziamK4sS8I+t35y4rHg1b2PklyBe/7A==}
- engines: {node: '>=0.10.0'}
- dependencies:
- ansi-wrap: 0.1.0
- dev: false
-
/ansi-escapes@4.3.2:
resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.21.3
-
- /ansi-gray@0.1.1:
- resolution: {integrity: sha512-HrgGIZUl8h2EHuZaU9hTR/cU5nhKxpVE1V6kdGsQ8e4zirElJ5fvtfc8N7Q1oq1aatO275i8pUFUCpNWCAnVWw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- ansi-wrap: 0.1.0
- dev: false
+ dev: true
/ansi-html-community@0.0.8:
resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==}
@@ -3964,16 +3576,10 @@ packages:
hasBin: true
dev: true
- /ansi-red@0.1.1:
- resolution: {integrity: sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==}
- engines: {node: '>=0.10.0'}
- dependencies:
- ansi-wrap: 0.1.0
- dev: false
-
/ansi-regex@2.1.1:
resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
engines: {node: '>=0.10.0'}
+ dev: true
/ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
@@ -3986,6 +3592,7 @@ packages:
/ansi-styles@2.2.1:
resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==}
engines: {node: '>=0.10.0'}
+ dev: true
/ansi-styles@3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
@@ -4009,28 +3616,10 @@ packages:
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
engines: {node: '>=12'}
- /ansi-wrap@0.1.0:
- resolution: {integrity: sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==}
- engines: {node: '>=0.10.0'}
- dev: false
-
/any-promise@1.3.0:
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
dev: true
- /any-shell-escape@0.1.1:
- resolution: {integrity: sha512-36j4l5HVkboyRhIWgtMh1I9i8LTdFqVwDEHy1cp+QioJyKgAUG40X0W8s7jakWRta/Sjvm8mUG1fU6Tj8mWagQ==}
- dev: false
-
- /anymatch@2.0.0:
- resolution: {integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==}
- dependencies:
- micromatch: 3.1.10
- normalize-path: 2.1.1
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/anymatch@3.1.3:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
@@ -4077,17 +3666,6 @@ packages:
- supports-color
dev: true
- /append-buffer@1.0.2:
- resolution: {integrity: sha512-WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- buffer-equal: 1.0.1
- dev: false
-
- /archy@1.0.0:
- resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==}
- dev: false
-
/are-docs-informative@0.0.2:
resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==}
engines: {node: '>=14'}
@@ -4101,6 +3679,7 @@ packages:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
dependencies:
sprintf-js: 1.0.3
+ dev: true
/argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
@@ -4111,48 +3690,6 @@ packages:
dequal: 2.0.3
dev: true
- /arr-diff@1.1.0:
- resolution: {integrity: sha512-OQwDZUqYaQwyyhDJHThmzId8daf4/RFNLaeh3AevmSeZ5Y7ug4Ga/yKc6l6kTZOBW781rCj103ZuTh8GAsB3+Q==}
- engines: {node: '>=0.10.0'}
- dependencies:
- arr-flatten: 1.1.0
- array-slice: 0.2.3
- dev: false
-
- /arr-diff@4.0.0:
- resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /arr-filter@1.1.2:
- resolution: {integrity: sha512-A2BETWCqhsecSvCkWAeVBFLH6sXEUGASuzkpjL3GR1SlL/PWL6M3J8EAAld2Uubmh39tvkJTqC9LeLHCUKmFXA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- make-iterator: 1.0.1
- dev: false
-
- /arr-flatten@1.1.0:
- resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /arr-map@2.0.2:
- resolution: {integrity: sha512-tVqVTHt+Q5Xb09qRkbu+DidW1yYzz5izWS2Xm2yFm7qJnmUfz4HPzNxbHkdRJbz2lrqI7S+z17xNYdFcBBO8Hw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- make-iterator: 1.0.1
- dev: false
-
- /arr-union@2.1.0:
- resolution: {integrity: sha512-t5db90jq+qdgk8aFnxEkjqta0B/GHrM1pxzuuZz2zWsOXc5nKu3t+76s/PQBA8FTcM/ipspIH9jWG4OxCBc2eA==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /arr-union@3.1.0:
- resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==}
- engines: {node: '>=0.10.0'}
- dev: false
-
/array-buffer-byte-length@1.0.0:
resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==}
dependencies:
@@ -4160,16 +3697,6 @@ packages:
is-array-buffer: 3.0.2
dev: true
- /array-differ@1.0.0:
- resolution: {integrity: sha512-LeZY+DZDRnvP7eMuQ6LHfCzUGxAAIViUBliK24P3hWXL6y4SortgR6Nim6xrkfSLlmH0+k+9NYNwVC2s53ZrYQ==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /array-each@1.0.1:
- resolution: {integrity: sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==}
- engines: {node: '>=0.10.0'}
- dev: false
-
/array-flatten@1.1.1:
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
dev: true
@@ -4189,60 +3716,10 @@ packages:
is-string: 1.0.7
dev: true
- /array-initial@1.1.0:
- resolution: {integrity: sha512-BC4Yl89vneCYfpLrs5JU2aAu9/a+xWbeKhvISg9PT7eWFB9UlRvI+rKEtk6mgxWr3dSkk9gQ8hCrdqt06NXPdw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- array-slice: 1.1.0
- is-number: 4.0.0
- dev: false
-
- /array-last@1.3.0:
- resolution: {integrity: sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-number: 4.0.0
- dev: false
-
- /array-slice@0.2.3:
- resolution: {integrity: sha512-rlVfZW/1Ph2SNySXwR9QYkChp8EkOEiTMO5Vwx60usw04i4nWemkm9RXmQqgkQFaLHsqLuADvjp6IfgL9l2M8Q==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /array-slice@1.1.0:
- resolution: {integrity: sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /array-sort@1.0.0:
- resolution: {integrity: sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- default-compare: 1.0.0
- get-value: 2.0.6
- kind-of: 5.1.0
- dev: false
-
- /array-union@1.0.2:
- resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==}
- engines: {node: '>=0.10.0'}
- dependencies:
- array-uniq: 1.0.3
- dev: false
-
/array-union@2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
-
- /array-uniq@1.0.3:
- resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /array-unique@0.3.2:
- resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==}
- engines: {node: '>=0.10.0'}
- dev: false
+ dev: true
/array.prototype.findlastindex@1.2.3:
resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==}
@@ -4309,11 +3786,6 @@ packages:
dev: true
optional: true
- /assign-symbols@1.0.0:
- resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==}
- engines: {node: '>=0.10.0'}
- dev: false
-
/astral-regex@2.0.0:
resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
engines: {node: '>=8'}
@@ -4321,41 +3793,16 @@ packages:
dev: true
optional: true
- /async-done@1.3.2:
- resolution: {integrity: sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==}
- engines: {node: '>= 0.10'}
- dependencies:
- end-of-stream: 1.4.4
- once: 1.4.0
- process-nextick-args: 2.0.1
- stream-exhaust: 1.0.2
- dev: false
-
/async-each-series@0.1.1:
resolution: {integrity: sha512-p4jj6Fws4Iy2m0iCmI2am2ZNZCgbdgE+P8F/8csmn2vx7ixXrO2zGcuNsD46X5uZSVecmkEy/M06X2vG8KD6dQ==}
engines: {node: '>=0.8.0'}
dev: true
- /async-each@1.0.6:
- resolution: {integrity: sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==}
- dev: false
-
/async-exit-hook@2.0.1:
resolution: {integrity: sha512-NW2cX8m1Q7KPA7a5M2ULQeZ2wR5qI5PAbw5L0UOMxdioVk9PMZ0h1TmyZEkPYrCvYjDlFICusOu1dlEKAAeXBw==}
engines: {node: '>=0.12.0'}
dev: true
- /async-settle@1.0.0:
- resolution: {integrity: sha512-VPXfB4Vk49z1LHHodrEQ6Xf7W4gg1w0dAPROHngx7qgDjqmIQ+fXmwgGXTW/ITLai0YLSvWepJOP9EVpMnEAcw==}
- engines: {node: '>= 0.10'}
- dependencies:
- async-done: 1.3.2
- dev: false
-
- /async@1.5.2:
- resolution: {integrity: sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w==}
- dev: false
-
/async@2.6.4:
resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==}
dependencies:
@@ -4375,12 +3822,6 @@ packages:
engines: {node: '>= 4.0.0'}
dev: true
- /atob@2.1.2:
- resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==}
- engines: {node: '>= 4.5.0'}
- hasBin: true
- dev: false
-
/autoprefixer@10.4.16(postcss@8.4.31):
resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==}
engines: {node: ^10 || ^12 || >=14}
@@ -4395,6 +3836,7 @@ packages:
picocolors: 1.0.0
postcss: 8.4.31
postcss-value-parser: 4.2.0
+ dev: true
/available-typed-arrays@1.0.5:
resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
@@ -4487,65 +3929,22 @@ packages:
- supports-color
dev: true
- /bach@1.2.0:
- resolution: {integrity: sha512-bZOOfCb3gXBXbTFXq3OZtGR88LwGeJvzu6szttaIzymOTS4ZttBNOWSv7aLZja2EMycKtRYV0Oa8SNKH/zkxvg==}
- engines: {node: '>= 0.10'}
- dependencies:
- arr-filter: 1.1.2
- arr-flatten: 1.1.0
- arr-map: 2.0.2
- array-each: 1.0.1
- array-initial: 1.1.0
- array-last: 1.3.0
- async-done: 1.3.2
- async-settle: 1.0.0
- now-and-later: 2.0.1
- dev: false
-
/balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
/base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
+ dev: true
/base64id@2.0.0:
resolution: {integrity: sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==}
engines: {node: ^4.5.0 || >= 5.9}
dev: true
- /base@0.11.2:
- resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- cache-base: 1.0.1
- class-utils: 0.3.6
- component-emitter: 1.3.1
- define-property: 1.0.0
- isobject: 3.0.1
- mixin-deep: 1.3.2
- pascalcase: 0.1.1
- dev: false
-
/batch@0.6.1:
resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==}
dev: true
- /beeper@1.1.1:
- resolution: {integrity: sha512-3vqtKL1N45I5dV0RdssXZG7X6pCqQrWPNOlBPZPrd+QkE2HEhR57Z04m0KtpbsZH73j+a3F8UD1TQnn+ExTvIA==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /before-after-hook@2.2.3:
- resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==}
- dev: false
-
- /better-console@1.0.1:
- resolution: {integrity: sha512-M/azU25cj3ZHbMSoXEroDfzcolfUvM03PZw5EEBk9T3tqdIYfMXrIkEKb9q8OZMC8Hic8Q9l8jk6TZq9cyRrcw==}
- dependencies:
- chalk: 1.1.3
- cli-table: 0.3.11
- dev: false
-
/big-integer@1.6.52:
resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
engines: {node: '>=0.6'}
@@ -4555,35 +3954,18 @@ packages:
resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
dev: true
- /binary-extensions@1.13.1:
- resolution: {integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==}
- engines: {node: '>=0.10.0'}
- dev: false
-
/binary-extensions@2.2.0:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
dev: true
- /binaryextensions@2.3.0:
- resolution: {integrity: sha512-nAihlQsYGyc5Bwq6+EsubvANYGExeJKHDO3RjnvwU042fawQTQfM3Kxn7IHUXQOz4bzfwsGYYHGSvXyW4zOGLg==}
- engines: {node: '>=0.8'}
- dev: false
-
- /bindings@1.5.0:
- resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
- requiresBuild: true
- dependencies:
- file-uri-to-path: 1.0.0
- dev: false
- optional: true
-
/bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
dependencies:
buffer: 5.7.1
inherits: 2.0.4
readable-stream: 3.6.2
+ dev: true
/bluebird-lst@1.0.9:
resolution: {integrity: sha512-7B1Rtx82hjnSD4PGLAjVWeYH3tHAcVUmChh85a3lltKQm6FresXh9ErQo6oAv6CqxttczC3/kEg8SY5NluPuUw==}
@@ -4631,8 +4013,13 @@ packages:
/boolean@3.2.0:
resolution: {integrity: sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==}
requiresBuild: true
+ dev: true
optional: true
+ /bootstrap-icons@1.11.2:
+ resolution: {integrity: sha512-TgdiPv+IM9tgDb+dsxrnGIyocsk85d2M7T0qIgkvPedZeoZfyeG/j+yiAE4uHCEayKef2RP05ahQ0/e9Sv75Wg==}
+ dev: false
+
/bottleneck@2.19.5:
resolution: {integrity: sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==}
dev: false
@@ -4655,29 +4042,12 @@ packages:
dependencies:
balanced-match: 1.0.2
- /braces@2.3.2:
- resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==}
- engines: {node: '>=0.10.0'}
- dependencies:
- 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.4
- snapdragon: 0.8.2
- snapdragon-node: 2.1.1
- split-string: 3.1.0
- to-regex: 3.0.2
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/braces@3.0.2:
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
engines: {node: '>=8'}
dependencies:
fill-range: 7.0.1
+ dev: true
/browser-sync-client@2.29.3:
resolution: {integrity: sha512-4tK5JKCl7v/3aLbmCBMzpufiYLsB1+UI+7tUXCCp5qF0AllHy/jAqYu6k7hUF3hYtlClKpxExWaR+rH+ny07wQ==}
@@ -4754,6 +4124,7 @@ packages:
electron-to-chromium: 1.4.592
node-releases: 2.0.13
update-browserslist-db: 1.0.13(browserslist@4.22.1)
+ dev: true
/bs-recipes@1.3.4:
resolution: {integrity: sha512-BXvDkqhDNxXEjeGM8LFkSbR+jzmP/CYpCiVKYn+soB1dDldeU15EBNDkwVXndKuX35wnNUaPd0qSoQEAkmQtMw==}
@@ -4772,29 +4143,27 @@ packages:
/buffer-crc32@0.2.13:
resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
+ dev: true
/buffer-equal@1.0.0:
resolution: {integrity: sha512-tcBWO2Dl4e7Asr9hTGcpVrCe+F7DubpmqWCTbj4FHLmjqO2hIaC383acQubWtRJhdceqs5uBHs6Es+Sk//RKiQ==}
engines: {node: '>=0.4.0'}
dev: true
- /buffer-equal@1.0.1:
- resolution: {integrity: sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==}
- engines: {node: '>=0.4'}
- dev: false
-
/buffer-fill@1.0.0:
resolution: {integrity: sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==}
dev: true
/buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
+ dev: true
/buffer@5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
dependencies:
base64-js: 1.5.1
ieee754: 1.2.1
+ dev: true
/builder-util-runtime@8.9.2:
resolution: {integrity: sha512-rhuKm5vh7E0aAmT6i8aoSfEjxzdYEFX7zDApK+eNgOhjofnWb74d9SRJv0H/8nsgOkos0TZ4zxW0P8J4N7xQ2A==}
@@ -4886,24 +4255,10 @@ packages:
unique-filename: 3.0.0
dev: true
- /cache-base@1.0.1:
- resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- collection-visit: 1.0.0
- component-emitter: 1.3.1
- get-value: 2.0.6
- has-value: 1.0.0
- isobject: 3.0.1
- set-value: 2.0.1
- to-object-path: 0.3.0
- union-value: 1.0.1
- unset-value: 1.0.0
- dev: false
-
/cacheable-lookup@5.0.4:
resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==}
engines: {node: '>=10.6.0'}
+ dev: true
/cacheable-request@7.0.4:
resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==}
@@ -4916,6 +4271,7 @@ packages:
lowercase-keys: 2.0.0
normalize-url: 6.1.0
responselike: 2.0.1
+ dev: true
/call-bind@1.0.5:
resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==}
@@ -4923,6 +4279,7 @@ packages:
function-bind: 1.1.2
get-intrinsic: 1.2.2
set-function-length: 1.1.1
+ dev: true
/callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
@@ -4934,11 +4291,6 @@ packages:
engines: {node: '>= 6'}
dev: true
- /camelcase@3.0.0:
- resolution: {integrity: sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==}
- engines: {node: '>=0.10.0'}
- dev: false
-
/camelcase@5.3.1:
resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
engines: {node: '>=6'}
@@ -4946,6 +4298,7 @@ packages:
/caniuse-lite@1.0.30001564:
resolution: {integrity: sha512-DqAOf+rhof+6GVx1y+xzbFPeOumfQnhYzVnZD6LAXijR77yPtm9mfOcqOnT3mpnJiZVT+kwLAFnRlZcIz+c6bg==}
+ dev: true
/chalk@1.1.3:
resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
@@ -4956,6 +4309,7 @@ packages:
has-ansi: 2.0.0
strip-ansi: 3.0.1
supports-color: 2.0.0
+ dev: true
/chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
@@ -4972,6 +4326,7 @@ packages:
dependencies:
ansi-styles: 4.3.0
supports-color: 7.2.0
+ dev: true
/chalk@5.3.0:
resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
@@ -4980,27 +4335,7 @@ packages:
/chardet@0.7.0:
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
-
- /chokidar@2.1.8:
- resolution: {integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==}
- deprecated: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies
- dependencies:
- anymatch: 2.0.0
- async-each: 1.0.6
- braces: 2.3.2
- glob-parent: 3.1.0
- inherits: 2.0.4
- is-binary-path: 1.0.1
- is-glob: 4.0.3
- normalize-path: 3.0.0
- path-is-absolute: 1.0.1
- readdirp: 2.2.1
- upath: 1.2.0
- optionalDependencies:
- fsevents: 1.2.13
- transitivePeerDependencies:
- - supports-color
- dev: false
+ dev: true
/chokidar@3.5.3:
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
@@ -5036,43 +4371,16 @@ packages:
engines: {node: '>=8'}
dev: true
- /class-utils@0.3.6:
- resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- arr-union: 3.1.0
- define-property: 0.2.5
- isobject: 3.0.1
- static-extend: 0.1.2
- dev: false
-
- /clean-css@4.2.3:
- resolution: {integrity: sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==}
- engines: {node: '>= 4.0'}
- dependencies:
- source-map: 0.6.1
- dev: false
-
/clean-stack@2.2.0:
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
engines: {node: '>=6'}
- /cli-color@2.0.3:
- resolution: {integrity: sha512-OkoZnxyC4ERN3zLzZaY9Emb7f/MhBOIpePv0Ycok0fJYT+Ouo00UBEIwsVsr0yoow++n5YWlSUgST9GKhNHiRQ==}
- engines: {node: '>=0.10'}
- dependencies:
- d: 1.0.1
- es5-ext: 0.10.62
- es6-iterator: 2.0.3
- memoizee: 0.4.15
- timers-ext: 0.1.7
- dev: false
-
/cli-cursor@3.1.0:
resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
engines: {node: '>=8'}
dependencies:
restore-cursor: 3.1.0
+ dev: true
/cli-spinners@2.6.1:
resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==}
@@ -5082,13 +4390,7 @@ packages:
/cli-spinners@2.9.1:
resolution: {integrity: sha512-jHgecW0pxkonBJdrKsqxgRX9AcG+u/5k0Q7WPDfi8AogLAdwxEkyYYNWwZ5GvVFoFx2uiY1eNcSK00fh+1+FyQ==}
engines: {node: '>=6'}
-
- /cli-table@0.3.11:
- resolution: {integrity: sha512-IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ==}
- engines: {node: '>= 0.2.0'}
- dependencies:
- colors: 1.0.3
- dev: false
+ dev: true
/cli-truncate@2.1.0:
resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==}
@@ -5100,24 +4402,11 @@ packages:
dev: true
optional: true
- /cli-width@3.0.0:
- resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==}
- engines: {node: '>= 10'}
- dev: false
-
/cli-width@4.1.0:
resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
engines: {node: '>= 12'}
dev: true
- /cliui@3.2.0:
- resolution: {integrity: sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==}
- dependencies:
- string-width: 1.0.2
- strip-ansi: 3.0.1
- wrap-ansi: 2.1.0
- dev: false
-
/cliui@7.0.4:
resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
dependencies:
@@ -5135,11 +4424,6 @@ packages:
wrap-ansi: 7.0.0
dev: true
- /clone-buffer@1.0.0:
- resolution: {integrity: sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==}
- engines: {node: '>= 0.10'}
- dev: false
-
/clone-deep@4.0.1:
resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
engines: {node: '>=6'}
@@ -5153,53 +4437,12 @@ packages:
resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==}
dependencies:
mimic-response: 1.0.1
-
- /clone-stats@0.0.1:
- resolution: {integrity: sha512-dhUqc57gSMCo6TX85FLfe51eC/s+Im2MLkAgJwfaRRexR2tA4dd3eLEW4L6efzHc2iNorrRRXITifnDLlRrhaA==}
- dev: false
-
- /clone-stats@1.0.0:
- resolution: {integrity: sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==}
- dev: false
+ dev: true
/clone@1.0.4:
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
engines: {node: '>=0.8'}
-
- /clone@2.1.2:
- resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==}
- engines: {node: '>=0.8'}
- dev: false
-
- /cloneable-readable@1.1.3:
- resolution: {integrity: sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==}
- dependencies:
- inherits: 2.0.4
- process-nextick-args: 2.0.1
- readable-stream: 2.3.8
- dev: false
-
- /code-point-at@1.1.0:
- resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /collection-map@1.0.0:
- resolution: {integrity: sha512-5D2XXSpkOnleOI21TG7p3T0bGAsZ/XknZpKBmGYyluO8pw4zA3K8ZlrBIbC4FXg3m6z/RNFiUFfT2sQK01+UHA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- arr-map: 2.0.2
- for-own: 1.0.0
- make-iterator: 1.0.1
- dev: false
-
- /collection-visit@1.0.0:
- resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- map-visit: 1.0.0
- object-visit: 1.0.1
- dev: false
+ dev: true
/color-convert@1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
@@ -5210,6 +4453,7 @@ packages:
/color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
+ requiresBuild: true
dependencies:
color-name: 1.1.4
@@ -5219,11 +4463,7 @@ packages:
/color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
-
- /color-support@1.1.3:
- resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
- hasBin: true
- dev: false
+ requiresBuild: true
/colorette@2.0.20:
resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
@@ -5232,6 +4472,7 @@ packages:
/colors@1.0.3:
resolution: {integrity: sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==}
engines: {node: '>=0.1.90'}
+ dev: true
/combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
@@ -5240,11 +4481,6 @@ packages:
delayed-stream: 1.0.0
dev: true
- /commander@10.0.1:
- resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==}
- engines: {node: '>=14'}
- dev: false
-
/commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
dev: true
@@ -5289,10 +4525,6 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /component-emitter@1.3.1:
- resolution: {integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==}
- dev: false
-
/compressible@2.0.18:
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
engines: {node: '>= 0.6'}
@@ -5318,22 +4550,6 @@ packages:
/concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
- /concat-stream@1.6.2:
- resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==}
- engines: {'0': node >= 0.8}
- dependencies:
- buffer-from: 1.1.2
- inherits: 2.0.4
- readable-stream: 2.3.8
- typedarray: 0.0.6
- dev: false
-
- /concat-with-sourcemaps@1.1.0:
- resolution: {integrity: sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==}
- dependencies:
- source-map: 0.6.1
- dev: false
-
/concurrently@8.2.2:
resolution: {integrity: sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg==}
engines: {node: ^14.13.0 || >=16.0.0}
@@ -5350,13 +4566,6 @@ packages:
yargs: 17.7.2
dev: true
- /config-chain@1.1.13:
- resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==}
- dependencies:
- ini: 1.3.8
- proto-list: 1.2.4
- dev: false
-
/connect-history-api-fallback@1.6.0:
resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==}
engines: {node: '>=0.8'}
@@ -5391,12 +4600,9 @@ packages:
engines: {node: '>= 0.6'}
dev: true
- /convert-source-map@0.3.5:
- resolution: {integrity: sha512-+4nRk0k3oEpwUB7/CalD7xE2z4VmtEnnq0GO2IPTkrooTrAhEsWvuLF5iWP1dXrwluki/azwXV1ve7gtYuPldg==}
- dev: false
-
/convert-source-map@1.9.0:
resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
+ dev: true
/convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
@@ -5420,18 +4626,7 @@ packages:
resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==}
dependencies:
is-what: 3.14.1
-
- /copy-descriptor@0.1.1:
- resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /copy-props@2.0.5:
- resolution: {integrity: sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==}
- dependencies:
- each-props: 1.3.2
- is-plain-object: 5.0.0
- dev: false
+ dev: true
/copy-webpack-plugin@11.0.0(webpack@5.89.0):
resolution: {integrity: sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==}
@@ -5462,6 +4657,7 @@ packages:
/core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
+ dev: true
/cors@2.8.5:
resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==}
@@ -5542,32 +4738,40 @@ packages:
nth-check: 2.1.1
dev: true
+ /css-selector-tokenizer@0.8.0:
+ resolution: {integrity: sha512-Jd6Ig3/pe62/qe5SBPTN8h8LeUg/pT4lLgtavPf7updwwHpvFzxvOQBHYj2LZDMjUnBzgvIUSjRcf6oT5HzHFg==}
+ dependencies:
+ cssesc: 3.0.0
+ fastparse: 1.1.2
+ dev: true
+
/css-what@6.1.0:
resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
engines: {node: '>= 6'}
dev: true
- /css@2.2.4:
- resolution: {integrity: sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==}
- dependencies:
- inherits: 2.0.4
- source-map: 0.6.1
- source-map-resolve: 0.5.3
- urix: 0.1.0
- dev: false
-
/cssesc@3.0.0:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
hasBin: true
dev: true
- /d@1.0.1:
- resolution: {integrity: sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==}
+ /culori@3.3.0:
+ resolution: {integrity: sha512-pHJg+jbuFsCjz9iclQBqyL3B2HLCBF71BwVNujUYEvCeQMvV97R59MNK3R2+jgJ3a1fcZgI9B3vYgz8lzr/BFQ==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dev: true
+
+ /daisyui@4.4.14(postcss@8.4.31):
+ resolution: {integrity: sha512-1g37QzzDFM0QLQe+qRBswkGKyaGijk84t01UMg1ytkFhQxru3zeMh5nWcpC9KnqzKgnITkpSebpGqq4gP8zRrg==}
+ engines: {node: '>=16.9.0'}
dependencies:
- es5-ext: 0.10.62
- type: 1.2.0
- dev: false
+ css-selector-tokenizer: 0.8.0
+ culori: 3.3.0
+ picocolors: 1.0.0
+ postcss-js: 4.0.1(postcss@8.4.31)
+ transitivePeerDependencies:
+ - postcss
+ dev: true
/date-fns@2.30.0:
resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
@@ -5576,10 +4780,6 @@ packages:
'@babel/runtime': 7.23.2
dev: true
- /dateformat@2.2.0:
- resolution: {integrity: sha512-GODcnWq3YGoTnygPfi02ygEiRxqUxpJwuRHjdhJYuxpcZmDq4rjBiXYmbCCzStxo176ixfLT6i4NPwQooRySnw==}
- dev: false
-
/debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
peerDependencies:
@@ -5589,6 +4789,7 @@ packages:
optional: true
dependencies:
ms: 2.0.0
+ dev: true
/debug@3.2.7(supports-color@5.5.0):
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
@@ -5600,6 +4801,7 @@ packages:
dependencies:
ms: 2.1.3
supports-color: 5.5.0
+ dev: true
/debug@4.3.2:
resolution: {integrity: sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==}
@@ -5624,38 +4826,17 @@ packages:
dependencies:
ms: 2.1.2
- /decamelize@1.2.0:
- resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /decode-uri-component@0.2.2:
- resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
- engines: {node: '>=0.10'}
- dev: false
-
/decompress-response@6.0.0:
resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
engines: {node: '>=10'}
dependencies:
mimic-response: 3.1.0
-
- /deep-assign@1.0.0:
- resolution: {integrity: sha512-iAL1PDjxqhANx86VhUjK0HSb4bozMfJUK64rxdrlWPCgMv7rBvP6AFySY69e+k8JAtPHNWoTsQT5OJvE+Jgpjg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-obj: 1.0.1
- dev: false
+ dev: true
/deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
dev: true
- /deepmerge@4.3.1:
- resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
- engines: {node: '>=0.10.0'}
- dev: false
-
/default-browser-id@3.0.0:
resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==}
engines: {node: '>=12'}
@@ -5674,13 +4855,6 @@ packages:
titleize: 3.0.0
dev: true
- /default-compare@1.0.0:
- resolution: {integrity: sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- kind-of: 5.1.0
- dev: false
-
/default-gateway@6.0.3:
resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==}
engines: {node: '>= 10'}
@@ -5688,19 +4862,16 @@ packages:
execa: 5.1.1
dev: true
- /default-resolution@2.0.0:
- resolution: {integrity: sha512-2xaP6GiwVwOEbXCGoJ4ufgC76m8cj805jrghScewJC2ZDsb9U0b4BIrba+xt/Uytyd0HvQ6+WymSRTfnYj59GQ==}
- engines: {node: '>= 0.10'}
- dev: false
-
/defaults@1.0.4:
resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
dependencies:
clone: 1.0.4
+ dev: true
/defer-to-connect@2.0.1:
resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==}
engines: {node: '>=10'}
+ dev: true
/define-data-property@1.1.1:
resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==}
@@ -5709,6 +4880,7 @@ packages:
get-intrinsic: 1.2.2
gopd: 1.0.1
has-property-descriptors: 1.0.1
+ dev: true
/define-lazy-prop@2.0.0:
resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
@@ -5727,42 +4899,7 @@ packages:
define-data-property: 1.1.1
has-property-descriptors: 1.0.1
object-keys: 1.1.1
-
- /define-property@0.2.5:
- resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-descriptor: 0.1.7
- dev: false
-
- /define-property@1.0.0:
- resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-descriptor: 1.0.3
- dev: false
-
- /define-property@2.0.2:
- resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-descriptor: 1.0.3
- isobject: 3.0.1
- dev: false
-
- /del@6.1.1:
- resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==}
- engines: {node: '>=10'}
- dependencies:
- globby: 11.1.0
- graceful-fs: 4.2.11
- is-glob: 4.0.3
- is-path-cwd: 2.2.0
- is-path-inside: 3.0.3
- p-map: 4.0.0
- rimraf: 3.0.2
- slash: 3.0.0
- dev: false
+ dev: true
/delayed-stream@1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
@@ -5779,10 +4916,6 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /deprecation@2.3.1:
- resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==}
- dev: false
-
/dequal@2.0.3:
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
engines: {node: '>=6'}
@@ -5797,18 +4930,9 @@ packages:
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
dev: true
- /detect-file@1.0.0:
- resolution: {integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /detect-indent@6.1.0:
- resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
- engines: {node: '>=8'}
- dev: false
-
/detect-node@2.1.0:
resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==}
+ dev: true
/dev-ip@1.0.1:
resolution: {integrity: sha512-LmVkry/oDShEgSZPNgqCIp2/TlqtExeGmymru3uCELnfyjY11IzpAproLYs+1X88fXO6DBoYP3ul2Xo2yz2j6A==}
@@ -5825,11 +4949,6 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dev: true
- /diff@1.0.8:
- resolution: {integrity: sha512-1zEb73vemXFpUmfh3fsta4YHz3lwebxXvaWmPbFv9apujQBWDnkrPDLXLQs1gZo4RCWMDsT89r0Pf/z8/02TGA==}
- engines: {node: '>=0.3.1'}
- dev: false
-
/dir-compare@2.4.0:
resolution: {integrity: sha512-l9hmu8x/rjVC9Z2zmGzkhOEowZvW7pmYws5CWHutg8u1JgvsKWMx7Q/UODeu4djLZ4FgW5besw5yvMQnBHzuCA==}
hasBin: true
@@ -5845,6 +4964,7 @@ packages:
engines: {node: '>=8'}
dependencies:
path-type: 4.0.0
+ dev: true
/dlv@1.1.3:
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
@@ -5954,32 +5074,10 @@ packages:
engines: {node: '>=10'}
dev: true
- /duplexer2@0.0.2:
- resolution: {integrity: sha512-+AWBwjGadtksxjOQSFDhPNQbed7icNXApT4+2BNpsXzcCBiInq2H9XW0O8sfHFaPmnQRs7cg/P0fAr2IWQSW0g==}
- dependencies:
- readable-stream: 1.1.14
- dev: false
-
/duplexer@0.1.2:
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
dev: true
- /duplexify@3.7.1:
- resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==}
- dependencies:
- end-of-stream: 1.4.4
- inherits: 2.0.4
- readable-stream: 2.3.8
- stream-shift: 1.0.1
- dev: false
-
- /each-props@1.3.2:
- resolution: {integrity: sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==}
- dependencies:
- is-plain-object: 2.0.4
- object.defaults: 1.1.0
- dev: false
-
/eastasianwidth@0.2.0:
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
@@ -5997,17 +5095,6 @@ packages:
chalk: 4.1.2
dev: true
- /editorconfig@1.0.4:
- resolution: {integrity: sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==}
- engines: {node: '>=14'}
- hasBin: true
- dependencies:
- '@one-ini/wasm': 0.1.1
- commander: 10.0.1
- minimatch: 9.0.1
- semver: 7.5.4
- dev: false
-
/ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
dev: true
@@ -6077,6 +5164,7 @@ packages:
/electron-to-chromium@1.4.592:
resolution: {integrity: sha512-D3NOkROIlF+d5ixnz7pAf3Lu/AuWpd6AYgI9O67GQXMXTcCP1gJQRotOq35eQy5Sb4hez33XH1YdTtILA7Udww==}
+ dev: true
/electron-unhandled@4.0.1:
resolution: {integrity: sha512-6BsLnBg+i96eUnbaIFZyYdyfNX3f80/Nlfqy34YEMxXT9JP3ddNsNnUeiOF8ezN4+et4t4D37gjghKTP0V3jyw==}
@@ -6122,6 +5210,7 @@ packages:
extract-zip: 2.0.1
transitivePeerDependencies:
- supports-color
+ dev: true
/emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -6151,6 +5240,7 @@ packages:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
dependencies:
once: 1.4.0
+ dev: true
/engine.io-client@6.5.3:
resolution: {integrity: sha512-9Z0qLB0NIisTRt1DZ/8U2k12RJn8yls/nXMZLn+/N8hANT3TcYjKFKcwbw5zFQiN4NTde3TSY9zb79e1ij6j9Q==}
@@ -6219,6 +5309,7 @@ packages:
/env-paths@2.2.1:
resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
engines: {node: '>=6'}
+ dev: true
/err-code@2.0.3:
resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
@@ -6230,12 +5321,14 @@ packages:
requiresBuild: true
dependencies:
prr: 1.0.1
+ dev: true
optional: true
/error-ex@1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
dependencies:
is-arrayish: 0.2.1
+ dev: true
/es-abstract@1.22.3:
resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==}
@@ -6310,45 +5403,12 @@ packages:
is-symbol: 1.0.4
dev: true
- /es5-ext@0.10.62:
- resolution: {integrity: sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==}
- engines: {node: '>=0.10'}
- requiresBuild: true
- dependencies:
- es6-iterator: 2.0.3
- es6-symbol: 3.1.3
- next-tick: 1.1.0
- dev: false
-
/es6-error@4.1.1:
resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==}
requiresBuild: true
+ dev: true
optional: true
- /es6-iterator@2.0.3:
- resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==}
- dependencies:
- d: 1.0.1
- es5-ext: 0.10.62
- es6-symbol: 3.1.3
- dev: false
-
- /es6-symbol@3.1.3:
- resolution: {integrity: sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==}
- dependencies:
- d: 1.0.1
- ext: 1.7.0
- dev: false
-
- /es6-weak-map@2.0.3:
- resolution: {integrity: sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==}
- dependencies:
- d: 1.0.1
- es5-ext: 0.10.62
- es6-iterator: 2.0.3
- es6-symbol: 3.1.3
- dev: false
-
/esbuild-wasm@0.19.5:
resolution: {integrity: sha512-7zmLLn2QCj93XfMmHtzrDJ1UBuOHB2CZz1ghoCEZiRajxjUvHsF40PnbzFIY/pmesqPRaEtEWii0uzsTbnAgrA==}
engines: {node: '>=12'}
@@ -6385,36 +5445,6 @@ packages:
'@esbuild/win32-x64': 0.18.17
dev: true
- /esbuild@0.18.20:
- resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==}
- engines: {node: '>=12'}
- hasBin: true
- requiresBuild: true
- optionalDependencies:
- '@esbuild/android-arm': 0.18.20
- '@esbuild/android-arm64': 0.18.20
- '@esbuild/android-x64': 0.18.20
- '@esbuild/darwin-arm64': 0.18.20
- '@esbuild/darwin-x64': 0.18.20
- '@esbuild/freebsd-arm64': 0.18.20
- '@esbuild/freebsd-x64': 0.18.20
- '@esbuild/linux-arm': 0.18.20
- '@esbuild/linux-arm64': 0.18.20
- '@esbuild/linux-ia32': 0.18.20
- '@esbuild/linux-loong64': 0.18.20
- '@esbuild/linux-mips64el': 0.18.20
- '@esbuild/linux-ppc64': 0.18.20
- '@esbuild/linux-riscv64': 0.18.20
- '@esbuild/linux-s390x': 0.18.20
- '@esbuild/linux-x64': 0.18.20
- '@esbuild/netbsd-x64': 0.18.20
- '@esbuild/openbsd-x64': 0.18.20
- '@esbuild/sunos-x64': 0.18.20
- '@esbuild/win32-arm64': 0.18.20
- '@esbuild/win32-ia32': 0.18.20
- '@esbuild/win32-x64': 0.18.20
- dev: true
-
/esbuild@0.19.5:
resolution: {integrity: sha512-bUxalY7b1g8vNhQKdB24QDmHeY4V4tw/s6Ak5z+jJX9laP5MoQseTOMemAr0gxssjNcH0MCViG8ONI2kksvfFQ==}
engines: {node: '>=12'}
@@ -6448,6 +5478,7 @@ packages:
/escalade@3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
engines: {node: '>=6'}
+ dev: true
/escape-html@1.0.3:
resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
@@ -6456,11 +5487,13 @@ packages:
/escape-string-regexp@1.0.5:
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
engines: {node: '>=0.8.0'}
+ dev: true
/escape-string-regexp@4.0.0:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
requiresBuild: true
+ dev: true
/escape-string-regexp@5.0.0:
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
@@ -6716,13 +5749,6 @@ packages:
engines: {node: '>= 0.6'}
dev: true
- /event-emitter@0.3.5:
- resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
- dependencies:
- d: 1.0.1
- es5-ext: 0.10.62
- dev: false
-
/eventemitter-asyncresource@1.0.0:
resolution: {integrity: sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==}
dev: true
@@ -6766,28 +5792,6 @@ packages:
strip-final-newline: 3.0.0
dev: true
- /expand-brackets@2.1.4:
- resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- debug: 2.6.9
- define-property: 0.2.5
- extend-shallow: 2.0.1
- posix-character-classes: 0.1.1
- regex-not: 1.0.2
- snapdragon: 0.8.2
- to-regex: 3.0.2
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /expand-tilde@2.0.2:
- resolution: {integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- homedir-polyfill: 1.0.3
- dev: false
-
/exponential-backoff@3.1.1:
resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==}
dev: true
@@ -6831,38 +5835,6 @@ packages:
- supports-color
dev: true
- /ext@1.7.0:
- resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
- dependencies:
- type: 2.7.2
- dev: false
-
- /extend-shallow@1.1.4:
- resolution: {integrity: sha512-L7AGmkO6jhDkEBBGWlLtftA80Xq8DipnrRPr0pyi7GQLXkaq9JYA4xF4z6qnadIC6euiTDKco0cGSU9muw+WTw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- kind-of: 1.1.0
- dev: false
-
- /extend-shallow@2.0.1:
- resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-extendable: 0.1.1
- dev: false
-
- /extend-shallow@3.0.2:
- resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==}
- engines: {node: '>=0.10.0'}
- dependencies:
- assign-symbols: 1.0.0
- is-extendable: 1.0.1
- dev: false
-
- /extend@3.0.2:
- resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
- dev: false
-
/external-editor@3.1.0:
resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
engines: {node: '>=4'}
@@ -6870,22 +5842,7 @@ packages:
chardet: 0.7.0
iconv-lite: 0.4.24
tmp: 0.0.33
-
- /extglob@2.0.4:
- resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- 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.2
- snapdragon: 0.8.2
- to-regex: 3.0.2
- transitivePeerDependencies:
- - supports-color
- dev: false
+ dev: true
/extract-zip@2.0.1:
resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==}
@@ -6899,6 +5856,7 @@ packages:
'@types/yauzl': 2.10.3
transitivePeerDependencies:
- supports-color
+ dev: true
/extsprintf@1.4.1:
resolution: {integrity: sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==}
@@ -6907,16 +5865,6 @@ packages:
dev: true
optional: true
- /fancy-log@1.3.3:
- resolution: {integrity: sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==}
- engines: {node: '>= 0.10'}
- dependencies:
- ansi-gray: 0.1.1
- color-support: 1.1.3
- parse-node-version: 1.0.1
- time-stamp: 1.1.0
- dev: false
-
/fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
dev: true
@@ -6945,23 +5893,25 @@ packages:
glob-parent: 5.1.2
merge2: 1.4.1
micromatch: 4.0.5
+ dev: true
/fast-json-stable-stringify@2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
dev: true
- /fast-levenshtein@1.1.4:
- resolution: {integrity: sha512-Ia0sQNrMPXXkqVFt6w6M1n1oKo3NfKs+mvaV811Jwir7vAk9a6PVV9VPYf6X3BU97QiLEmuW3uXH9u87zDFfdw==}
- dev: false
-
/fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
dev: true
+ /fastparse@1.1.2:
+ resolution: {integrity: sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==}
+ dev: true
+
/fastq@1.15.0:
resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
dependencies:
reusify: 1.0.4
+ dev: true
/faye-websocket@0.11.4:
resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==}
@@ -6974,12 +5924,14 @@ packages:
resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
dependencies:
pend: 1.2.0
+ dev: true
/figures@3.2.0:
resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
engines: {node: '>=8'}
dependencies:
escape-string-regexp: 1.0.5
+ dev: true
/figures@5.0.0:
resolution: {integrity: sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg==}
@@ -6996,33 +5948,18 @@ packages:
flat-cache: 3.2.0
dev: true
- /file-uri-to-path@1.0.0:
- resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
- requiresBuild: true
- dev: false
- optional: true
-
/filelist@1.0.4:
resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
dependencies:
minimatch: 5.1.6
dev: true
- /fill-range@4.0.0:
- resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- extend-shallow: 2.0.1
- is-number: 3.0.0
- repeat-string: 1.6.1
- to-regex-range: 2.1.1
- dev: false
-
/fill-range@7.0.1:
resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
engines: {node: '>=8'}
dependencies:
to-regex-range: 5.0.1
+ dev: true
/finalhandler@1.1.0:
resolution: {integrity: sha512-ejnvM9ZXYzp6PUPUyQBMBf0Co5VX2gr5H2VQe2Ui2jWXNlxv+PYZo8wpAymJNJdLsG1R4p+M4aynF8KuoUEwRw==}
@@ -7062,14 +5999,6 @@ packages:
pkg-dir: 7.0.0
dev: true
- /find-up@1.1.2:
- resolution: {integrity: sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- path-exists: 2.1.0
- pinkie-promise: 2.0.1
- dev: false
-
/find-up@4.1.0:
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
engines: {node: '>=8'}
@@ -7084,6 +6013,7 @@ packages:
dependencies:
locate-path: 6.0.0
path-exists: 4.0.0
+ dev: true
/find-up@6.3.0:
resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==}
@@ -7093,53 +6023,6 @@ packages:
path-exists: 5.0.0
dev: true
- /findup-sync@2.0.0:
- resolution: {integrity: sha512-vs+3unmJT45eczmcAZ6zMJtxN3l/QXeccaXQx5cu/MeJMhewVfoWZqibRkOxPnmoR59+Zy5hjabfQc6JLSah4g==}
- engines: {node: '>= 0.10'}
- dependencies:
- detect-file: 1.0.0
- is-glob: 3.1.0
- micromatch: 3.1.10
- resolve-dir: 1.0.1
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /findup-sync@3.0.0:
- resolution: {integrity: sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==}
- engines: {node: '>= 0.10'}
- dependencies:
- detect-file: 1.0.0
- is-glob: 4.0.3
- micromatch: 3.1.10
- resolve-dir: 1.0.1
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /fined@1.2.0:
- resolution: {integrity: sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==}
- engines: {node: '>= 0.10'}
- dependencies:
- expand-tilde: 2.0.2
- is-plain-object: 2.0.4
- object.defaults: 1.1.0
- object.pick: 1.3.0
- parse-filepath: 1.0.2
- dev: false
-
- /first-chunk-stream@2.0.0:
- resolution: {integrity: sha512-X8Z+b/0L4lToKYq+lwnKqi9X/Zek0NibLpsJgVsSxpoYq7JtiCtRb5HqKVEjEw/qAb/4AKKRLOwwKHlWNpm2Eg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- readable-stream: 2.3.8
- dev: false
-
- /flagged-respawn@1.0.1:
- resolution: {integrity: sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==}
- engines: {node: '>= 0.10'}
- dev: false
-
/flat-cache@3.2.0:
resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
engines: {node: ^10.12.0 || >=12.0.0}
@@ -7158,13 +6041,6 @@ packages:
resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
dev: true
- /flush-write-stream@1.1.1:
- resolution: {integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==}
- dependencies:
- inherits: 2.0.4
- readable-stream: 2.3.8
- dev: false
-
/follow-redirects@1.15.3(debug@4.3.2):
resolution: {integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==}
engines: {node: '>=4.0'}
@@ -7177,74 +6053,12 @@ packages:
debug: 4.3.2
dev: true
- /fomantic-ui@2.9.3:
- resolution: {integrity: sha512-M8RcLEdEzNCAQCoPTr8ZUk8g19FZsOTP1jrb1rwCyF4cx2KwtXUUkRHCChQHRbDcLZg4IlXClYdusXfjZHjTdA==}
- engines: {node: '>=12', npm: '>=6.14.8'}
- dependencies:
- '@actions/core': 1.10.1
- '@octokit/core': 3.6.0
- '@octokit/rest': 18.12.0
- better-console: 1.0.1
- browserslist: 4.22.1
- del: 6.1.1
- extend: 3.0.2
- gulp: 4.0.2
- gulp-autoprefixer: 8.0.0(gulp@4.0.2)
- gulp-chmod: 2.0.0
- gulp-clean-css: 4.3.0
- gulp-clone: 2.0.1
- gulp-concat: 2.6.1
- gulp-concat-css: 3.1.0
- gulp-concat-filenames: 1.2.0
- gulp-copy: 4.0.1
- gulp-dedupe: 0.0.2
- gulp-flatten: 0.4.0
- gulp-git: 2.10.1
- gulp-header: 2.0.9
- gulp-if: 2.0.2
- gulp-json-editor: 2.5.7
- gulp-less: 5.0.0
- gulp-plumber: 1.2.1
- gulp-print: 5.0.2
- gulp-rename: 1.4.0
- gulp-replace: 1.1.4
- gulp-rtlcss: 2.0.0
- gulp-tap: 1.0.1
- gulp-uglify: 3.0.2
- inquirer: 8.2.6
- jquery: 3.7.1
- less: 4.2.0
- map-stream: 0.1.0
- merge-stream: 2.0.0
- mkdirp: 1.0.4
- normalize-path: 3.0.0
- replace-ext: 1.0.1
- require-dot-file: 0.4.0
- wrench-sui: 0.0.3
- yamljs: 0.3.0
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
-
/for-each@0.3.3:
resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
dependencies:
is-callable: 1.2.7
dev: true
- /for-in@1.0.2:
- resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /for-own@1.0.0:
- resolution: {integrity: sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- for-in: 1.0.2
- dev: false
-
/foreground-child@3.1.1:
resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==}
engines: {node: '>=14'}
@@ -7252,10 +6066,6 @@ packages:
cross-spawn: 7.0.3
signal-exit: 4.1.0
- /fork-stream@0.0.4:
- resolution: {integrity: sha512-Pqq5NnT78ehvUnAk/We/Jr22vSvanRlFTpAmQ88xBY/M1TlHe+P0ILuEyXS595ysdGfaj22634LBkGMA2GTcpA==}
- dev: false
-
/form-data@4.0.0:
resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
engines: {node: '>= 6'}
@@ -7272,13 +6082,7 @@ packages:
/fraction.js@4.3.7:
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
-
- /fragment-cache@0.2.1:
- resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- map-cache: 0.2.2
- dev: false
+ dev: true
/fresh@0.5.2:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
@@ -7321,6 +6125,7 @@ packages:
graceful-fs: 4.2.11
jsonfile: 4.0.0
universalify: 0.1.2
+ dev: true
/fs-extra@9.1.0:
resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
@@ -7346,32 +6151,13 @@ packages:
minipass: 7.0.4
dev: true
- /fs-mkdirp-stream@1.0.0:
- resolution: {integrity: sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==}
- engines: {node: '>= 0.10'}
- dependencies:
- graceful-fs: 4.2.11
- through2: 2.0.5
- dev: false
-
/fs-monkey@1.0.5:
resolution: {integrity: sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==}
dev: true
/fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
-
- /fsevents@1.2.13:
- resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==}
- engines: {node: '>= 4.0'}
- os: [darwin]
- deprecated: The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2
- requiresBuild: true
- dependencies:
- bindings: 1.5.0
- nan: 2.18.0
- dev: false
- optional: true
+ dev: true
/fsevents@2.3.3:
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
@@ -7383,6 +6169,7 @@ packages:
/function-bind@1.1.2:
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
+ dev: true
/function.prototype.name@1.1.6:
resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
@@ -7403,23 +6190,11 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /get-caller-file@1.0.3:
- resolution: {integrity: sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==}
- dev: false
-
/get-caller-file@2.0.5:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
dev: true
- /get-imports@1.0.0:
- resolution: {integrity: sha512-9FjKG2Os+o/EuOIh3B/LNMbU2FWPGHVy/gs9TJpytK95IPl7lLqiu+VAU7JX6VZimqdmpLemgsGMdQWdKvqYGQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- array-uniq: 1.0.3
- import-regex: 1.1.0
- dev: false
-
/get-intrinsic@1.2.2:
resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==}
dependencies:
@@ -7427,6 +6202,7 @@ packages:
has-proto: 1.0.1
has-symbols: 1.0.3
hasown: 2.0.0
+ dev: true
/get-package-type@0.1.0:
resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
@@ -7438,6 +6214,7 @@ packages:
engines: {node: '>=8'}
dependencies:
pump: 3.0.0
+ dev: true
/get-stream@6.0.1:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
@@ -7452,29 +6229,12 @@ packages:
get-intrinsic: 1.2.2
dev: true
- /get-tsconfig@4.7.2:
- resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==}
- dependencies:
- resolve-pkg-maps: 1.0.0
- dev: true
-
- /get-value@2.0.6:
- resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /glob-parent@3.1.0:
- resolution: {integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==}
- dependencies:
- is-glob: 3.1.0
- path-dirname: 1.0.2
- dev: false
-
/glob-parent@5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
engines: {node: '>= 6'}
dependencies:
is-glob: 4.0.3
+ dev: true
/glob-parent@6.0.2:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
@@ -7483,41 +6243,10 @@ packages:
is-glob: 4.0.3
dev: true
- /glob-stream@6.1.0:
- resolution: {integrity: sha512-uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw==}
- engines: {node: '>= 0.10'}
- dependencies:
- extend: 3.0.2
- glob: 7.2.3
- glob-parent: 3.1.0
- is-negated-glob: 1.0.0
- ordered-read-streams: 1.0.1
- pumpify: 1.5.1
- readable-stream: 2.3.8
- remove-trailing-separator: 1.1.0
- to-absolute-glob: 2.0.2
- unique-stream: 2.3.1
- dev: false
-
/glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
dev: true
- /glob-watcher@5.0.5:
- resolution: {integrity: sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==}
- engines: {node: '>= 0.10'}
- dependencies:
- anymatch: 2.0.0
- async-done: 1.3.2
- chokidar: 2.1.8
- is-negated-glob: 1.0.0
- just-debounce: 1.1.0
- normalize-path: 3.0.0
- object.defaults: 1.1.0
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/glob@10.3.10:
resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==}
engines: {node: '>=16 || 14 >=14.17'}
@@ -7529,16 +6258,6 @@ packages:
minipass: 7.0.4
path-scurry: 1.10.1
- /glob@5.0.15:
- resolution: {integrity: sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA==}
- dependencies:
- inflight: 1.0.6
- inherits: 2.0.4
- minimatch: 3.1.2
- once: 1.4.0
- path-is-absolute: 1.0.1
- dev: false
-
/glob@6.0.4:
resolution: {integrity: sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==}
dependencies:
@@ -7580,6 +6299,7 @@ packages:
minimatch: 3.1.2
once: 1.4.0
path-is-absolute: 1.0.1
+ dev: true
/global-agent@3.0.0:
resolution: {integrity: sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==}
@@ -7592,28 +6312,9 @@ packages:
roarr: 2.15.4
semver: 7.5.4
serialize-error: 7.0.1
+ dev: true
optional: true
- /global-modules@1.0.0:
- resolution: {integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- global-prefix: 1.0.2
- is-windows: 1.0.2
- resolve-dir: 1.0.1
- dev: false
-
- /global-prefix@1.0.2:
- resolution: {integrity: sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- expand-tilde: 2.0.2
- homedir-polyfill: 1.0.3
- ini: 1.3.8
- is-windows: 1.0.2
- which: 1.3.1
- dev: false
-
/globals@11.12.0:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
@@ -7632,6 +6333,7 @@ packages:
requiresBuild: true
dependencies:
define-properties: 1.2.1
+ dev: true
/globby@11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
@@ -7643,6 +6345,7 @@ packages:
ignore: 5.3.0
merge2: 1.4.1
slash: 3.0.0
+ dev: true
/globby@13.2.2:
resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==}
@@ -7655,27 +6358,11 @@ packages:
slash: 4.0.0
dev: true
- /globby@2.1.0:
- resolution: {integrity: sha512-CqRID2dMaN4Zi9PANiQHhmKaGu7ZASehBLnaDogjR9L3L1EqAGFhflafT0IrSN/zm9xFk+KMTXZCN8pUYOiO/Q==}
- engines: {node: '>=0.10.0'}
- dependencies:
- array-union: 1.0.2
- async: 1.5.2
- glob: 5.0.15
- object-assign: 3.0.0
- dev: false
-
- /glogg@1.0.2:
- resolution: {integrity: sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==}
- engines: {node: '>= 0.10'}
- dependencies:
- sparkles: 1.0.1
- dev: false
-
/gopd@1.0.1:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
dependencies:
get-intrinsic: 1.2.2
+ dev: true
/got@11.8.6:
resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==}
@@ -7692,6 +6379,7 @@ packages:
lowercase-keys: 2.0.0
p-cancelable: 2.1.1
responselike: 2.0.1
+ dev: true
/graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
@@ -7704,308 +6392,6 @@ packages:
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
dev: true
- /gulp-autoprefixer@8.0.0(gulp@4.0.2):
- resolution: {integrity: sha512-sVR++PIaXpa81p52dmmA/jt50bw0egmylK5mjagfgOJ8uLDGaF9tHyzvetkY9Uo0gBZUS5sVqN3kX/GlUKOyog==}
- engines: {node: '>=12'}
- peerDependencies:
- gulp: '>=4'
- peerDependenciesMeta:
- gulp:
- optional: true
- dependencies:
- autoprefixer: 10.4.16(postcss@8.4.31)
- fancy-log: 1.3.3
- gulp: 4.0.2
- plugin-error: 1.0.1
- postcss: 8.4.31
- through2: 4.0.2
- vinyl-sourcemaps-apply: 0.2.1
- dev: false
-
- /gulp-chmod@2.0.0:
- resolution: {integrity: sha512-ttOK11mugzcy6D5CQD8rXqS7M4Ecoo64bDNhRXT9Yok9ztAcOeIK8hsv7LlV1eFS4iSQKZETvEZC5Kt/sH74sw==}
- engines: {node: '>=4'}
- dependencies:
- deep-assign: 1.0.0
- stat-mode: 0.2.2
- through2: 2.0.5
- dev: false
-
- /gulp-clean-css@4.3.0:
- resolution: {integrity: sha512-mGyeT3qqFXTy61j0zOIciS4MkYziF2U594t2Vs9rUnpkEHqfu6aDITMp8xOvZcvdX61Uz3y1mVERRYmjzQF5fg==}
- dependencies:
- clean-css: 4.2.3
- plugin-error: 1.0.1
- through2: 3.0.1
- vinyl-sourcemaps-apply: 0.2.1
- dev: false
-
- /gulp-cli@2.3.0:
- resolution: {integrity: sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==}
- engines: {node: '>= 0.10'}
- hasBin: true
- dependencies:
- ansi-colors: 1.1.0
- archy: 1.0.0
- array-sort: 1.0.0
- color-support: 1.1.3
- concat-stream: 1.6.2
- copy-props: 2.0.5
- fancy-log: 1.3.3
- gulplog: 1.0.0
- interpret: 1.4.0
- isobject: 3.0.1
- liftoff: 3.1.0
- matchdep: 2.0.0
- mute-stdout: 1.0.1
- pretty-hrtime: 1.0.3
- replace-homedir: 1.0.0
- semver-greatest-satisfied-range: 1.1.0
- v8flags: 3.2.0
- yargs: 7.1.2
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /gulp-clone@2.0.1:
- resolution: {integrity: sha512-SLg/KsHBbinR/pCX3PF5l1YlR28hLp0X+bcpf77PtMJ6zvAQ5kRjtCPV5Wt1wHXsXWZN0eTUZ15R8ZYpi/CdCA==}
- dependencies:
- plugin-error: 0.1.2
- through2: 2.0.5
- dev: false
-
- /gulp-concat-css@3.1.0:
- resolution: {integrity: sha512-iLTBPS+cutlgLyK3bp9DMts+WuS8n2mQpjzQ7p/ZVQc8FO5fvpN+ntg9U6jsuNvPeuii82aKm8XeOzF0nUK+TA==}
- dependencies:
- lodash.defaults: 3.1.2
- parse-import: 2.0.0
- plugin-error: 0.1.2
- rework: 1.0.1
- rework-import: 2.1.0
- rework-plugin-url: 1.1.0
- through2: 1.1.1
- vinyl: 2.2.1
- dev: false
-
- /gulp-concat-filenames@1.2.0:
- resolution: {integrity: sha512-2wHcntxftYa2kiv5QOaniSNQuRf1axHGqkyXhRoCBXAVvwzrUp++qW9GNSAdvb3h+7m8yC8Fu25guuaDU+1WaA==}
- engines: {node: '>= 0.10'}
- dependencies:
- gulp-util: 3.0.8
- through: 2.3.8
- dev: false
-
- /gulp-concat@2.6.1:
- resolution: {integrity: sha512-a2scActrQrDBpBbR3WUZGyGS1JEPLg5PZJdIa7/Bi3GuKAmPYDK6SFhy/NZq5R8KsKKFvtfR0fakbUCcKGCCjg==}
- engines: {node: '>= 0.10'}
- dependencies:
- concat-with-sourcemaps: 1.1.0
- through2: 2.0.5
- vinyl: 2.2.1
- dev: false
-
- /gulp-copy@4.0.1:
- resolution: {integrity: sha512-UbdAwmEiVNNv55KAiUYWOP6Za7h8JPHNNyekNx8Gyc5XRlpUzTrlEclps939nOeiDPsd6jUtT2LmfavJirbZQg==}
- dependencies:
- gulp: 4.0.2
- plugin-error: 0.1.2
- through2: 2.0.5
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /gulp-dedupe@0.0.2:
- resolution: {integrity: sha512-Y+FZmAVHUYDgJiGneLXY2sCErvcY89sskjGQILhh5YvNGZq5M+pKsY54K0MyquZGxj2g10ZDVM5vQnEP7yUrVA==}
- engines: {node: '>=0.10'}
- dependencies:
- colors: 1.0.3
- diff: 1.0.8
- gulp-util: 3.0.8
- lodash.defaults: 2.4.1
- through: 2.3.8
- dev: false
-
- /gulp-flatten@0.4.0:
- resolution: {integrity: sha512-eg4spVTAiv1xXmugyaCxWne1oPtNG0UHEtABx5W8ScLiqAYceyYm6GYA36x0Qh8KOIXmAZV97L2aYGnKREG3Sg==}
- engines: {node: '>=0.10'}
- dependencies:
- plugin-error: 0.1.2
- through2: 2.0.5
- dev: false
-
- /gulp-git@2.10.1:
- resolution: {integrity: sha512-qiXYYDXchMZU/AWAgtphi4zbJb/0gXgfPw7TlZwu/7qPS3Bdcc3zbVe1B0xY9S8on6RQTmWoi+KaTGACIXQeNg==}
- engines: {node: '>= 0.9.0'}
- dependencies:
- any-shell-escape: 0.1.1
- fancy-log: 1.3.3
- lodash.template: 4.5.0
- plugin-error: 1.0.1
- require-dir: 1.2.0
- strip-bom-stream: 3.0.0
- through2: 2.0.5
- vinyl: 2.2.1
- dev: false
-
- /gulp-header@2.0.9:
- resolution: {integrity: sha512-LMGiBx+qH8giwrOuuZXSGvswcIUh0OiioNkUpLhNyvaC6/Ga8X6cfAeme2L5PqsbXMhL8o8b/OmVqIQdxprhcQ==}
- dependencies:
- concat-with-sourcemaps: 1.1.0
- lodash.template: 4.5.0
- map-stream: 0.0.7
- through2: 2.0.5
- dev: false
-
- /gulp-if@2.0.2:
- resolution: {integrity: sha512-tV0UfXkZodpFq6CYxEqH8tqLQgN6yR9qOhpEEN3O6N5Hfqk3fFLcbAavSex5EqnmoQjyaZ/zvgwclvlTI1KGfw==}
- engines: {node: '>= 0.10.0'}
- dependencies:
- gulp-match: 1.1.0
- ternary-stream: 2.1.1
- through2: 2.0.5
- dev: false
-
- /gulp-json-editor@2.5.7:
- resolution: {integrity: sha512-0Neuyv9tSt2QjjgEsQHmRnIKe+ofqhWShOYiSGHJWgzx49O3s2zwrsK3lcsNVqWIgtonKbVVOKUT0dYvJbQTUg==}
- dependencies:
- deepmerge: 4.3.1
- detect-indent: 6.1.0
- js-beautify: 1.14.11
- plugin-error: 2.0.1
- through2: 4.0.2
- dev: false
-
- /gulp-less@5.0.0:
- resolution: {integrity: sha512-W2I3TewO/By6UZsM/wJG3pyK5M6J0NYmJAAhwYXQHR+38S0iDtZasmUgFCH3CQj+pQYw/PAIzxvFvwtEXz1HhQ==}
- engines: {node: '>=6'}
- dependencies:
- less: 4.2.0
- object-assign: 4.1.1
- plugin-error: 1.0.1
- replace-ext: 2.0.0
- through2: 4.0.2
- vinyl-sourcemaps-apply: 0.2.1
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /gulp-match@1.1.0:
- resolution: {integrity: sha512-DlyVxa1Gj24DitY2OjEsS+X6tDpretuxD6wTfhXE/Rw2hweqc1f6D/XtsJmoiCwLWfXgR87W9ozEityPCVzGtQ==}
- dependencies:
- minimatch: 3.1.2
- dev: false
-
- /gulp-plumber@1.2.1:
- resolution: {integrity: sha512-mctAi9msEAG7XzW5ytDVZ9PxWMzzi1pS2rBH7lA095DhMa6KEXjm+St0GOCc567pJKJ/oCvosVAZEpAey0q2eQ==}
- engines: {node: '>=0.10', npm: '>=1.2.10'}
- dependencies:
- chalk: 1.1.3
- fancy-log: 1.3.3
- plugin-error: 0.1.2
- through2: 2.0.5
- dev: false
-
- /gulp-print@5.0.2:
- resolution: {integrity: sha512-iIpHMzC/b3gFvVXOfP9Jk94SWGIsDLVNUrxULRleQev+08ug07mh84b1AOlW6QDQdmInQiqDFqJN1UvhU2nXdg==}
- engines: {node: '>=6'}
- dependencies:
- ansi-colors: 3.2.4
- fancy-log: 1.3.3
- map-stream: 0.0.7
- vinyl: 2.2.1
- dev: false
-
- /gulp-rename@1.4.0:
- resolution: {integrity: sha512-swzbIGb/arEoFK89tPY58vg3Ok1bw+d35PfUNwWqdo7KM4jkmuGA78JiDNqR+JeZFaeeHnRg9N7aihX3YPmsyg==}
- engines: {node: '>=4'}
- dev: false
-
- /gulp-replace@1.1.4:
- resolution: {integrity: sha512-SVSF7ikuWKhpAW4l4wapAqPPSToJoiNKsbDoUnRrSgwZHH7lH8pbPeQj1aOVYQrbZKhfSVBxVW+Py7vtulRktw==}
- engines: {node: '>=10'}
- dependencies:
- '@types/node': 14.18.63
- '@types/vinyl': 2.0.11
- istextorbinary: 3.3.0
- replacestream: 4.0.3
- yargs-parser: 21.1.1
- dev: false
-
- /gulp-rtlcss@2.0.0:
- resolution: {integrity: sha512-muhh8WGEt6P3qyQ9bfCpmALuNod0W4kfwDqrMOQswx0HlyQym1sZlrCUi/pG58LwUpchVJdNS0J+b8hvuTFFbg==}
- dependencies:
- plugin-error: 1.0.1
- rtlcss: 3.5.0
- through2: 2.0.5
- vinyl-sourcemaps-apply: 0.2.1
- dev: false
-
- /gulp-tap@1.0.1:
- resolution: {integrity: sha512-VpCARRSyr+WP16JGnoIg98/AcmyQjOwCpQgYoE35CWTdEMSbpgtAIK2fndqv2yY7aXstW27v3ZNBs0Ltb0Zkbg==}
- dependencies:
- through2: 2.0.5
- dev: false
-
- /gulp-uglify@3.0.2:
- resolution: {integrity: sha512-gk1dhB74AkV2kzqPMQBLA3jPoIAPd/nlNzP2XMDSG8XZrqnlCiDGAqC+rZOumzFvB5zOphlFh6yr3lgcAb/OOg==}
- dependencies:
- array-each: 1.0.1
- extend-shallow: 3.0.2
- gulplog: 1.0.0
- has-gulplog: 0.1.0
- isobject: 3.0.1
- make-error-cause: 1.2.2
- safe-buffer: 5.2.1
- through2: 2.0.5
- uglify-js: 3.17.4
- vinyl-sourcemaps-apply: 0.2.1
- dev: false
-
- /gulp-util@3.0.8:
- resolution: {integrity: sha512-q5oWPc12lwSFS9h/4VIjG+1NuNDlJ48ywV2JKItY4Ycc/n1fXJeYPVQsfu5ZrhQi7FGSDBalwUCLar/GyHXKGw==}
- engines: {node: '>=0.10'}
- deprecated: gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5
- dependencies:
- array-differ: 1.0.0
- array-uniq: 1.0.3
- beeper: 1.1.1
- chalk: 1.1.3
- dateformat: 2.2.0
- fancy-log: 1.3.3
- gulplog: 1.0.0
- has-gulplog: 0.1.0
- lodash._reescape: 3.0.0
- lodash._reevaluate: 3.0.0
- lodash._reinterpolate: 3.0.0
- lodash.template: 3.6.2
- minimist: 1.2.8
- multipipe: 0.1.2
- object-assign: 3.0.0
- replace-ext: 0.0.1
- through2: 2.0.5
- vinyl: 0.5.3
- dev: false
-
- /gulp@4.0.2:
- resolution: {integrity: sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==}
- engines: {node: '>= 0.10'}
- hasBin: true
- dependencies:
- glob-watcher: 5.0.5
- gulp-cli: 2.3.0
- undertaker: 1.3.0
- vinyl-fs: 3.0.3
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /gulplog@1.0.0:
- resolution: {integrity: sha512-hm6N8nrm3Y08jXie48jsC55eCZz9mnb4OirAStEk2deqeyhXU3C1otDVh+ccttMuc1sBi6RX6ZJ720hs9RCvgw==}
- engines: {node: '>= 0.10'}
- dependencies:
- glogg: 1.0.2
- dev: false
-
/handle-thing@2.0.1:
resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==}
dev: true
@@ -8015,6 +6401,7 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
ansi-regex: 2.1.1
+ dev: true
/has-bigints@1.0.2:
resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
@@ -8023,30 +6410,28 @@ packages:
/has-flag@3.0.0:
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
engines: {node: '>=4'}
+ dev: true
/has-flag@4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
-
- /has-gulplog@0.1.0:
- resolution: {integrity: sha512-+F4GzLjwHNNDEAJW2DC1xXfEoPkRDmUdJ7CBYw4MpqtDwOnqdImJl7GWlpqx+Wko6//J8uKTnIe4wZSv7yCqmw==}
- engines: {node: '>= 0.10'}
- dependencies:
- sparkles: 1.0.1
- dev: false
+ dev: true
/has-property-descriptors@1.0.1:
resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==}
dependencies:
get-intrinsic: 1.2.2
+ dev: true
/has-proto@1.0.1:
resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
engines: {node: '>= 0.4'}
+ dev: true
/has-symbols@1.0.3:
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
engines: {node: '>= 0.4'}
+ dev: true
/has-tostringtag@1.0.0:
resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
@@ -8055,42 +6440,12 @@ packages:
has-symbols: 1.0.3
dev: true
- /has-value@0.3.1:
- resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==}
- engines: {node: '>=0.10.0'}
- dependencies:
- get-value: 2.0.6
- has-values: 0.1.4
- isobject: 2.1.0
- dev: false
-
- /has-value@1.0.0:
- resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- get-value: 2.0.6
- has-values: 1.0.0
- isobject: 3.0.1
- dev: false
-
- /has-values@0.1.4:
- resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /has-values@1.0.0:
- resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-number: 3.0.0
- kind-of: 4.0.0
- dev: false
-
/hasown@2.0.0:
resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==}
engines: {node: '>= 0.4'}
dependencies:
function-bind: 1.1.2
+ dev: true
/hdr-histogram-js@2.0.3:
resolution: {integrity: sha512-Hkn78wwzWHNCp2uarhzQ2SGFLU3JY8SBDDd3TAABK4fc30wm+MuPOrg5QVFVfkKOQd6Bfz3ukJEI+q9sXEkK1g==}
@@ -8104,17 +6459,6 @@ packages:
resolution: {integrity: sha512-7kIufnBqdsBGcSZLPJwqHT3yhk1QTsSlFsVD3kx5ixH/AlgBs9yM1q6DPhXZ8f8gtdqgh7N7/5btRLpQsS2gHw==}
dev: true
- /homedir-polyfill@1.0.3:
- resolution: {integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- parse-passwd: 1.0.0
- dev: false
-
- /hosted-git-info@2.8.9:
- resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
- dev: false
-
/hosted-git-info@4.1.0:
resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==}
engines: {node: '>=10'}
@@ -8153,6 +6497,7 @@ packages:
/http-cache-semantics@4.1.1:
resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
+ dev: true
/http-deceiver@1.2.7:
resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==}
@@ -8240,6 +6585,7 @@ packages:
dependencies:
quick-lru: 5.1.1
resolve-alpn: 1.2.1
+ dev: true
/https-proxy-agent@5.0.1:
resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
@@ -8287,12 +6633,14 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
safer-buffer: 2.1.2
+ dev: true
/iconv-lite@0.6.3:
resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
engines: {node: '>=0.10.0'}
dependencies:
safer-buffer: 2.1.2
+ dev: true
/icss-utils@5.1.0(postcss@8.4.31):
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
@@ -8305,6 +6653,8 @@ packages:
/ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
+ requiresBuild: true
+ dev: true
/ignore-by-default@1.0.1:
resolution: {integrity: sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==}
@@ -8325,12 +6675,14 @@ packages:
/ignore@5.3.0:
resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==}
engines: {node: '>= 4'}
+ dev: true
/image-size@0.5.5:
resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==}
engines: {node: '>=0.10.0'}
hasBin: true
requiresBuild: true
+ dev: true
optional: true
/immutable@3.8.2:
@@ -8350,11 +6702,6 @@ packages:
resolve-from: 4.0.0
dev: true
- /import-regex@1.1.0:
- resolution: {integrity: sha512-EblpleIyIdATUKj8ovFojUHyToxgjeKXQgTHZBGZ4cEkbtV21BlO1PSrzZQ6Fei2fgk7uhDeEx656yvPhlRGeA==}
- engines: {node: '>=0.10.0'}
- dev: false
-
/imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
@@ -8363,6 +6710,7 @@ packages:
/indent-string@4.0.0:
resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
engines: {node: '>=8'}
+ dev: true
/inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
@@ -8377,36 +6725,11 @@ packages:
/inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
- /ini@1.3.8:
- resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
- dev: false
-
/ini@4.1.1:
resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dev: true
- /inquirer@8.2.6:
- resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==}
- engines: {node: '>=12.0.0'}
- dependencies:
- ansi-escapes: 4.3.2
- chalk: 4.1.2
- cli-cursor: 3.1.0
- cli-width: 3.0.0
- external-editor: 3.1.0
- figures: 3.2.0
- lodash: 4.17.21
- mute-stream: 0.0.8
- ora: 5.4.1
- run-async: 2.4.1
- rxjs: 7.8.1
- string-width: 4.2.3
- strip-ansi: 6.0.1
- through: 2.3.8
- wrap-ansi: 6.2.0
- dev: false
-
/inquirer@9.2.11:
resolution: {integrity: sha512-B2LafrnnhbRzCWfAdOXisUzL89Kg8cVJlYmhqoi3flSiV/TveO+nsXwgKr9h9PIo+J1hz7nBSk6gegRIMBBf7g==}
engines: {node: '>=14.18.0'}
@@ -8437,21 +6760,6 @@ packages:
side-channel: 1.0.4
dev: true
- /interpret@1.4.0:
- resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==}
- engines: {node: '>= 0.10'}
- dev: false
-
- /invert-kv@1.0.0:
- resolution: {integrity: sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /ip-regex@1.0.3:
- resolution: {integrity: sha512-HjpCHTuxbR/6jWJroc/VN+npo5j0T4Vv2TAI5qdEHQx7hsL767MeccGFSsLtF694EiZKTSEqgoeU6DtGFCcuqQ==}
- engines: {node: '>=0.10.0'}
- dev: false
-
/ip@2.0.0:
resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==}
dev: true
@@ -8466,21 +6774,6 @@ packages:
engines: {node: '>= 10'}
dev: true
- /is-absolute@1.0.0:
- resolution: {integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-relative: 1.0.0
- is-windows: 1.0.2
- dev: false
-
- /is-accessor-descriptor@1.0.1:
- resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==}
- engines: {node: '>= 0.10'}
- dependencies:
- hasown: 2.0.0
- dev: false
-
/is-array-buffer@3.0.2:
resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
dependencies:
@@ -8491,6 +6784,7 @@ packages:
/is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
+ dev: true
/is-bigint@1.0.4:
resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
@@ -8498,13 +6792,6 @@ packages:
has-bigints: 1.0.2
dev: true
- /is-binary-path@1.0.1:
- resolution: {integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==}
- engines: {node: '>=0.10.0'}
- dependencies:
- binary-extensions: 1.13.1
- dev: false
-
/is-binary-path@2.1.0:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
@@ -8520,10 +6807,6 @@ packages:
has-tostringtag: 1.0.0
dev: true
- /is-buffer@1.1.6:
- resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
- dev: false
-
/is-builtin-module@3.2.1:
resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==}
engines: {node: '>=6'}
@@ -8547,13 +6830,7 @@ packages:
resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
dependencies:
hasown: 2.0.0
-
- /is-data-descriptor@1.0.1:
- resolution: {integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==}
- engines: {node: '>= 0.4'}
- dependencies:
- hasown: 2.0.0
- dev: false
+ dev: true
/is-date-object@1.0.5:
resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
@@ -8562,22 +6839,6 @@ packages:
has-tostringtag: 1.0.0
dev: true
- /is-descriptor@0.1.7:
- resolution: {integrity: sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==}
- engines: {node: '>= 0.4'}
- dependencies:
- is-accessor-descriptor: 1.0.1
- is-data-descriptor: 1.0.1
- dev: false
-
- /is-descriptor@1.0.3:
- resolution: {integrity: sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==}
- engines: {node: '>= 0.4'}
- dependencies:
- is-accessor-descriptor: 1.0.1
- is-data-descriptor: 1.0.1
- dev: false
-
/is-docker@2.2.1:
resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
engines: {node: '>=8'}
@@ -8590,45 +6851,21 @@ packages:
hasBin: true
dev: true
- /is-extendable@0.1.1:
- resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /is-extendable@1.0.1:
- resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-plain-object: 2.0.4
- dev: false
-
/is-extglob@2.1.1:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
-
- /is-fullwidth-code-point@1.0.0:
- resolution: {integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- number-is-nan: 1.0.1
- dev: false
+ dev: true
/is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
- /is-glob@3.1.0:
- resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-extglob: 2.1.1
- dev: false
-
/is-glob@4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
dependencies:
is-extglob: 2.1.1
+ dev: true
/is-inside-container@1.0.0:
resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
@@ -8641,16 +6878,12 @@ packages:
/is-interactive@1.0.0:
resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
engines: {node: '>=8'}
+ dev: true
/is-lambda@1.0.1:
resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==}
dev: true
- /is-negated-glob@1.0.0:
- resolution: {integrity: sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==}
- engines: {node: '>=0.10.0'}
- dev: false
-
/is-negative-zero@2.0.2:
resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
engines: {node: '>= 0.4'}
@@ -8669,35 +6902,15 @@ packages:
has-tostringtag: 1.0.0
dev: true
- /is-number@3.0.0:
- resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- kind-of: 3.2.2
- dev: false
-
- /is-number@4.0.0:
- resolution: {integrity: sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==}
- engines: {node: '>=0.10.0'}
- dev: false
-
/is-number@7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
-
- /is-obj@1.0.1:
- resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /is-path-cwd@2.2.0:
- resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==}
- engines: {node: '>=6'}
- dev: false
+ dev: true
/is-path-inside@3.0.3:
resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
engines: {node: '>=8'}
+ dev: true
/is-plain-obj@3.0.0:
resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==}
@@ -8709,15 +6922,7 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
isobject: 3.0.1
-
- /is-plain-object@5.0.0:
- resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /is-promise@2.2.2:
- resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==}
- dev: false
+ dev: true
/is-regex@1.1.4:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
@@ -8727,13 +6932,6 @@ packages:
has-tostringtag: 1.0.0
dev: true
- /is-relative@1.0.0:
- resolution: {integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-unc-path: 1.0.0
- dev: false
-
/is-shared-array-buffer@1.0.2:
resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
dependencies:
@@ -8771,31 +6969,16 @@ packages:
which-typed-array: 1.1.13
dev: true
- /is-unc-path@1.0.0:
- resolution: {integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- unc-path-regex: 0.1.2
- dev: false
-
/is-unicode-supported@0.1.0:
resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
engines: {node: '>=10'}
+ dev: true
/is-unicode-supported@1.3.0:
resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==}
engines: {node: '>=12'}
dev: true
- /is-utf8@0.2.1:
- resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==}
- dev: false
-
- /is-valid-glob@1.0.0:
- resolution: {integrity: sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==}
- engines: {node: '>=0.10.0'}
- dev: false
-
/is-weakref@1.0.2:
resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
dependencies:
@@ -8804,11 +6987,7 @@ packages:
/is-what@3.14.1:
resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
-
- /is-windows@1.0.2:
- resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
- engines: {node: '>=0.10.0'}
- dev: false
+ dev: true
/is-wsl@1.1.0:
resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==}
@@ -8822,12 +7001,9 @@ packages:
is-docker: 2.2.1
dev: true
- /isarray@0.0.1:
- resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
- dev: false
-
/isarray@1.0.0:
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
+ dev: true
/isarray@2.0.5:
resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
@@ -8853,16 +7029,10 @@ packages:
engines: {node: '>=16'}
dev: true
- /isobject@2.1.0:
- resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- isarray: 1.0.0
- dev: false
-
/isobject@3.0.1:
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
+ dev: true
/istanbul-lib-coverage@3.2.2:
resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==}
@@ -8882,14 +7052,6 @@ packages:
- supports-color
dev: true
- /istextorbinary@3.3.0:
- resolution: {integrity: sha512-Tvq1W6NAcZeJ8op+Hq7tdZ434rqnMx4CCZ7H0ff83uEloDvVbqAwaMTZcafKGJT0VHkYzuXUiCY4hlXQg6WfoQ==}
- engines: {node: '>=8'}
- dependencies:
- binaryextensions: 2.3.0
- textextensions: 3.3.0
- dev: false
-
/jackspeak@2.3.6:
resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
engines: {node: '>=14'}
@@ -8938,21 +7100,6 @@ packages:
hasBin: true
dev: true
- /jquery@3.7.1:
- resolution: {integrity: sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==}
- dev: false
-
- /js-beautify@1.14.11:
- resolution: {integrity: sha512-rPogWqAfoYh1Ryqqh2agUpVfbxAhbjuN1SmU86dskQUKouRiggUTCO4+2ym9UPXllc2WAp0J+T5qxn7Um3lCdw==}
- engines: {node: '>=14'}
- hasBin: true
- dependencies:
- config-chain: 1.1.13
- editorconfig: 1.0.4
- glob: 10.3.10
- nopt: 7.2.0
- dev: false
-
/js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
dev: true
@@ -8989,6 +7136,7 @@ packages:
/json-buffer@3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
+ dev: true
/json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
@@ -9009,10 +7157,12 @@ packages:
/json-stable-stringify-without-jsonify@1.0.1:
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
+ dev: true
/json-stringify-safe@5.0.1:
resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==}
requiresBuild: true
+ dev: true
optional: true
/json5@1.0.2:
@@ -9055,10 +7205,6 @@ packages:
engines: {'0': node >= 0.2.0}
dev: true
- /just-debounce@1.1.0:
- resolution: {integrity: sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==}
- dev: false
-
/karma-source-map-support@1.4.0:
resolution: {integrity: sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==}
dependencies:
@@ -9069,48 +7215,18 @@ packages:
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
dependencies:
json-buffer: 3.0.1
-
- /kind-of@1.1.0:
- resolution: {integrity: sha512-aUH6ElPnMGon2/YkxRIigV32MOpTVcoXQ1Oo8aYn40s+sJ3j+0gFZsT8HKDcxNy7Fi9zuquWtGaGAahOdv5p/g==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /kind-of@3.2.2:
- resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-buffer: 1.1.6
- dev: false
-
- /kind-of@4.0.0:
- resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-buffer: 1.1.6
- dev: false
-
- /kind-of@5.1.0:
- resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==}
- engines: {node: '>=0.10.0'}
- dev: false
+ dev: true
/kind-of@6.0.3:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
+ dev: true
/klona@2.0.6:
resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
engines: {node: '>= 8'}
dev: true
- /last-run@1.1.1:
- resolution: {integrity: sha512-U/VxvpX4N/rFvPzr3qG5EtLKEnNI0emvIQB3/ecEwv+8GHaUKbIB8vxv1Oai5FAF0d0r7LXHhLLe5K/yChm5GQ==}
- engines: {node: '>= 0.10'}
- dependencies:
- default-resolution: 2.0.0
- es6-weak-map: 2.0.3
- dev: false
-
/launch-editor@2.6.1:
resolution: {integrity: sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==}
dependencies:
@@ -9121,27 +7237,6 @@ packages:
/lazy-val@1.0.5:
resolution: {integrity: sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q==}
- /lazystream@1.0.1:
- resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
- engines: {node: '>= 0.6.3'}
- dependencies:
- readable-stream: 2.3.8
- dev: false
-
- /lcid@1.0.0:
- resolution: {integrity: sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- invert-kv: 1.0.0
- dev: false
-
- /lead@1.0.0:
- resolution: {integrity: sha512-IpSVCk9AYvLHo5ctcIXxOBpMWUe+4TKN3VPWAKUbJikkmsGp0VrSM8IttVc32D6J4WUsiPE6aEFRNmIoF/gdow==}
- engines: {node: '>= 0.10'}
- dependencies:
- flush-write-stream: 1.1.1
- dev: false
-
/less-loader@11.1.0(less@4.2.0)(webpack@5.89.0):
resolution: {integrity: sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==}
engines: {node: '>= 14.15.0'}
@@ -9172,6 +7267,7 @@ packages:
source-map: 0.6.1
transitivePeerDependencies:
- supports-color
+ dev: true
/levn@0.4.1:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
@@ -9195,22 +7291,6 @@ packages:
webpack-sources: 3.2.3
dev: true
- /liftoff@3.1.0:
- resolution: {integrity: sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==}
- engines: {node: '>= 0.8'}
- dependencies:
- extend: 3.0.2
- findup-sync: 3.0.0
- fined: 1.2.0
- flagged-respawn: 1.0.1
- is-plain-object: 2.0.4
- object.map: 1.0.1
- rechoir: 0.6.2
- resolve: 1.22.8
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/lilconfig@2.1.0:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
@@ -9234,17 +7314,6 @@ packages:
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: true
- /load-json-file@1.1.0:
- resolution: {integrity: sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==}
- engines: {node: '>=0.10.0'}
- dependencies:
- graceful-fs: 4.2.11
- parse-json: 2.2.0
- pify: 2.3.0
- pinkie-promise: 2.0.1
- strip-bom: 2.0.0
- dev: false
-
/loader-runner@4.3.0:
resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
engines: {node: '>=6.11.5'}
@@ -9289,6 +7358,7 @@ packages:
engines: {node: '>=10'}
dependencies:
p-locate: 5.0.0
+ dev: true
/locate-path@7.2.0:
resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==}
@@ -9297,118 +7367,13 @@ packages:
p-locate: 6.0.0
dev: true
- /lodash._baseassign@3.2.0:
- resolution: {integrity: sha512-t3N26QR2IdSN+gqSy9Ds9pBu/J1EAFEshKlUHpJG3rvyJOYgcELIxcIeKKfZk7sjOz11cFfzJRsyFry/JyabJQ==}
- dependencies:
- lodash._basecopy: 3.0.1
- lodash.keys: 3.1.2
- dev: false
-
- /lodash._basecopy@3.0.1:
- resolution: {integrity: sha512-rFR6Vpm4HeCK1WPGvjZSJ+7yik8d8PVUdCJx5rT2pogG4Ve/2ZS7kfmO5l5T2o5V2mqlNIfSF5MZlr1+xOoYQQ==}
- dev: false
-
- /lodash._basetostring@3.0.1:
- resolution: {integrity: sha512-mTzAr1aNAv/i7W43vOR/uD/aJ4ngbtsRaCubp2BfZhlGU/eORUjg/7F6X0orNMdv33JOrdgGybtvMN/po3EWrA==}
- dev: false
-
- /lodash._basevalues@3.0.0:
- resolution: {integrity: sha512-H94wl5P13uEqlCg7OcNNhMQ8KvWSIyqXzOPusRgHC9DK3o54P6P3xtbXlVbRABG4q5gSmp7EDdJ0MSuW9HX6Mg==}
- dev: false
-
- /lodash._bindcallback@3.0.1:
- resolution: {integrity: sha512-2wlI0JRAGX8WEf4Gm1p/mv/SZ+jLijpj0jyaE/AXeuQphzCgD8ZQW4oSpoN8JAopujOFGU3KMuq7qfHBWlGpjQ==}
- dev: false
-
- /lodash._createassigner@3.1.1:
- resolution: {integrity: sha512-LziVL7IDnJjQeeV95Wvhw6G28Z8Q6da87LWKOPWmzBLv4u6FAT/x5v00pyGW0u38UoogNF2JnD3bGgZZDaNEBw==}
- dependencies:
- lodash._bindcallback: 3.0.1
- lodash._isiterateecall: 3.0.9
- lodash.restparam: 3.6.1
- dev: false
-
- /lodash._getnative@3.9.1:
- resolution: {integrity: sha512-RrL9VxMEPyDMHOd9uFbvMe8X55X16/cGM5IgOKgRElQZutpX89iS6vwl64duTV1/16w5JY7tuFNXqoekmh1EmA==}
- dev: false
-
- /lodash._isiterateecall@3.0.9:
- resolution: {integrity: sha512-De+ZbrMu6eThFti/CSzhRvTKMgQToLxbij58LMfM8JnYDNSOjkjTCIaa8ixglOeGh2nyPlakbt5bJWJ7gvpYlQ==}
- dev: false
-
- /lodash._isnative@2.4.1:
- resolution: {integrity: sha512-BOlKGKNHhCHswGOWtmVb5zBygyxN7EmTuzVOSQI6QSoGhG+kvv71gICFS1TBpnqvT1n53txK8CDK3u5D2/GZxQ==}
- dev: false
-
- /lodash._objecttypes@2.4.1:
- resolution: {integrity: sha512-XpqGh1e7hhkOzftBfWE7zt+Yn9mVHFkDhicVttvKLsoCMLVVL+xTQjfjB4X4vtznauxv0QZ5ZAeqjvat0dh62Q==}
- dev: false
-
- /lodash._reescape@3.0.0:
- resolution: {integrity: sha512-Sjlavm5y+FUVIF3vF3B75GyXrzsfYV8Dlv3L4mEpuB9leg8N6yf/7rU06iLPx9fY0Mv3khVp9p7Dx0mGV6V5OQ==}
- dev: false
-
- /lodash._reevaluate@3.0.0:
- resolution: {integrity: sha512-OrPwdDc65iJiBeUe5n/LIjd7Viy99bKwDdk7Z5ljfZg0uFRFlfQaCy9tZ4YMAag9WAZmlVpe1iZrkIMMSMHD3w==}
- dev: false
-
- /lodash._reinterpolate@3.0.0:
- resolution: {integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==}
- dev: false
-
- /lodash._root@3.0.1:
- resolution: {integrity: sha512-O0pWuFSK6x4EXhM1dhZ8gchNtG7JMqBtrHdoUFUWXD7dJnNSUze1GuyQr5sOs0aCvgGeI3o/OJW8f4ca7FDxmQ==}
- dev: false
-
- /lodash._shimkeys@2.4.1:
- resolution: {integrity: sha512-lBrglYxLD/6KAJ8IEa5Lg+YHgNAL7FyKqXg4XOUI+Du/vtniLs1ZqS+yHNKPkK54waAgkdUnDOYaWf+rv4B+AA==}
- dependencies:
- lodash._objecttypes: 2.4.1
- dev: false
-
- /lodash.assign@3.2.0:
- resolution: {integrity: sha512-/VVxzgGBmbphasTg51FrztxQJ/VgAUpol6zmJuSVSGcNg4g7FA4z7rQV8Ovr9V3vFBNWZhvKWHfpAytjTVUfFA==}
- dependencies:
- lodash._baseassign: 3.2.0
- lodash._createassigner: 3.1.1
- lodash.keys: 3.1.2
- dev: false
-
/lodash.debounce@4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
- /lodash.defaults@2.4.1:
- resolution: {integrity: sha512-5wTIPWwGGr07JFysAZB8+7JB2NjJKXDIwogSaRX5zED85zyUAQwtOqUk8AsJkkigUcL3akbHYXd5+BPtTGQPZw==}
- dependencies:
- lodash._objecttypes: 2.4.1
- lodash.keys: 2.4.1
- dev: false
-
- /lodash.defaults@3.1.2:
- resolution: {integrity: sha512-X7135IXFQt5JDFnYxOVAzVz+kFvwDn3N8DJYf+nrz/mMWEuSu7+OL6rWqsk3+VR1T4TejFCSu5isBJOLSID2bg==}
- dependencies:
- lodash.assign: 3.2.0
- lodash.restparam: 3.6.1
- dev: false
-
- /lodash.escape@3.2.0:
- resolution: {integrity: sha512-n1PZMXgaaDWZDSvuNZ/8XOcYO2hOKDqZel5adtR30VKQAtoWs/5AOeFA0vPV8moiPzlqe7F4cP2tzpFewQyelQ==}
- dependencies:
- lodash._root: 3.0.1
- dev: false
-
/lodash.escaperegexp@4.1.2:
resolution: {integrity: sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==}
dev: false
- /lodash.isarguments@3.1.0:
- resolution: {integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==}
- dev: false
-
- /lodash.isarray@3.0.4:
- resolution: {integrity: sha512-JwObCrNJuT0Nnbuecmqr5DgtuBppuCvGD9lxjFpAzwnVtdGoDQ1zig+5W8k5/6Gcn0gZ3936HDAlGd28i7sOGQ==}
- dev: false
-
/lodash.isequal@4.5.0:
resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
dev: false
@@ -9417,70 +7382,10 @@ packages:
resolution: {integrity: sha512-7FGG40uhC8Mm633uKW1r58aElFlBlxCrg9JfSi3P6aYiWmfiWF0PgMd86ZUsxE5GwWPdHoS2+48bwTh2VPkIQA==}
dev: true
- /lodash.isobject@2.4.1:
- resolution: {integrity: sha512-sTebg2a1PoicYEZXD5PBdQcTlIJ6hUslrlWr7iV0O7n+i4596s2NQ9I5CaZ5FbXSfya/9WQsrYLANUJv9paYVA==}
- dependencies:
- lodash._objecttypes: 2.4.1
- dev: false
-
- /lodash.keys@2.4.1:
- resolution: {integrity: sha512-ZpJhwvUXHSNL5wYd1RM6CUa2ZuqorG9ngoJ9Ix5Cce+uX7I5O/E06FCJdhSZ33b5dVyeQDnIlWH7B2s5uByZ7g==}
- dependencies:
- lodash._isnative: 2.4.1
- lodash._shimkeys: 2.4.1
- lodash.isobject: 2.4.1
- dev: false
-
- /lodash.keys@3.1.2:
- resolution: {integrity: sha512-CuBsapFjcubOGMn3VD+24HOAPxM79tH+V6ivJL3CHYjtrawauDJHUk//Yew9Hvc6e9rbCrURGk8z6PC+8WJBfQ==}
- dependencies:
- lodash._getnative: 3.9.1
- lodash.isarguments: 3.1.0
- lodash.isarray: 3.0.4
- dev: false
-
/lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
dev: true
- /lodash.restparam@3.6.1:
- resolution: {integrity: sha512-L4/arjjuq4noiUJpt3yS6KIKDtJwNe2fIYgMqyYYKoeIfV1iEqvPwhCx23o+R9dzouGihDAPN1dTIRWa7zk8tw==}
- dev: false
-
- /lodash.template@3.6.2:
- resolution: {integrity: sha512-0B4Y53I0OgHUJkt+7RmlDFWKjVAI/YUpWNiL9GQz5ORDr4ttgfQGo+phBWKFLJbBdtOwgMuUkdOHOnPg45jKmQ==}
- dependencies:
- lodash._basecopy: 3.0.1
- lodash._basetostring: 3.0.1
- lodash._basevalues: 3.0.0
- lodash._isiterateecall: 3.0.9
- lodash._reinterpolate: 3.0.0
- lodash.escape: 3.2.0
- lodash.keys: 3.1.2
- lodash.restparam: 3.6.1
- lodash.templatesettings: 3.1.1
- dev: false
-
- /lodash.template@4.5.0:
- resolution: {integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==}
- dependencies:
- lodash._reinterpolate: 3.0.0
- lodash.templatesettings: 4.2.0
- dev: false
-
- /lodash.templatesettings@3.1.1:
- resolution: {integrity: sha512-TcrlEr31tDYnWkHFWDCV3dHYroKEXpJZ2YJYvJdhN+y4AkWMDZ5I4I8XDtUKqSAyG81N7w+I1mFEJtcED+tGqQ==}
- dependencies:
- lodash._reinterpolate: 3.0.0
- lodash.escape: 3.2.0
- dev: false
-
- /lodash.templatesettings@4.2.0:
- resolution: {integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==}
- dependencies:
- lodash._reinterpolate: 3.0.0
- dev: false
-
/lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
@@ -9490,6 +7395,7 @@ packages:
dependencies:
chalk: 4.1.2
is-unicode-supported: 0.1.0
+ dev: true
/loglevel-colored-level-prefix@1.0.0:
resolution: {integrity: sha512-u45Wcxxc+SdAlh4yeF/uKlC1SPUPCy0gullSNKXod5I4bmifzk+Q4lSLExNEVn19tGaJipbZ4V4jbFn79/6mVA==}
@@ -9506,6 +7412,7 @@ packages:
/lowercase-keys@2.0.0:
resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==}
engines: {node: '>=8'}
+ dev: true
/lru-cache@10.1.0:
resolution: {integrity: sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==}
@@ -9523,12 +7430,6 @@ packages:
dependencies:
yallist: 4.0.0
- /lru-queue@0.1.0:
- resolution: {integrity: sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==}
- dependencies:
- es5-ext: 0.10.62
- dev: false
-
/magic-string@0.30.5:
resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==}
engines: {node: '>=12'}
@@ -9543,18 +7444,9 @@ packages:
dependencies:
pify: 4.0.1
semver: 5.7.2
+ dev: true
optional: true
- /make-error-cause@1.2.2:
- resolution: {integrity: sha512-4TO2Y3HkBnis4c0dxhAgD/jprySYLACf7nwN6V0HAHDx59g12WlRpUmFy1bRHamjGUEEBrEvCq6SUpsEE2lhUg==}
- dependencies:
- make-error: 1.3.6
- dev: false
-
- /make-error@1.3.6:
- resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
- dev: false
-
/make-fetch-happen@13.0.0:
resolution: {integrity: sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A==}
engines: {node: ^16.14.0 || >=18.0.0}
@@ -9574,51 +7466,13 @@ packages:
- supports-color
dev: true
- /make-iterator@1.0.1:
- resolution: {integrity: sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- kind-of: 6.0.3
- dev: false
-
- /map-cache@0.2.2:
- resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /map-stream@0.0.7:
- resolution: {integrity: sha512-C0X0KQmGm3N2ftbTGBhSyuydQ+vV1LC3f3zPvT3RXHXNZrvfPZcoXp/N5DOa8vedX/rTMm2CjTtivFg2STJMRQ==}
- dev: false
-
- /map-stream@0.1.0:
- resolution: {integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==}
- dev: false
-
- /map-visit@1.0.0:
- resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==}
- engines: {node: '>=0.10.0'}
- dependencies:
- object-visit: 1.0.1
- dev: false
-
- /matchdep@2.0.0:
- resolution: {integrity: sha512-LFgVbaHIHMqCRuCZyfCtUOq9/Lnzhi7Z0KFUE2fhD54+JN2jLh3hC02RLkqauJ3U4soU6H1J3tfj/Byk7GoEjA==}
- engines: {node: '>= 0.10.0'}
- dependencies:
- findup-sync: 2.0.0
- micromatch: 3.1.10
- resolve: 1.22.8
- stack-trace: 0.0.10
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/matcher@3.0.0:
resolution: {integrity: sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==}
engines: {node: '>=10'}
requiresBuild: true
dependencies:
escape-string-regexp: 4.0.0
+ dev: true
optional: true
/media-typer@0.3.0:
@@ -9633,68 +7487,31 @@ packages:
fs-monkey: 1.0.5
dev: true
- /memoizee@0.4.15:
- resolution: {integrity: sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==}
- dependencies:
- d: 1.0.1
- es5-ext: 0.10.62
- es6-weak-map: 2.0.3
- event-emitter: 0.3.5
- is-promise: 2.2.2
- lru-queue: 0.1.0
- next-tick: 1.1.0
- timers-ext: 0.1.7
- dev: false
-
/merge-descriptors@1.0.1:
resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
dev: true
- /merge-stream@1.0.1:
- resolution: {integrity: sha512-e6RM36aegd4f+r8BZCcYXlO2P3H6xbUM6ktL2Xmf45GAOit9bI4z6/3VU7JwllVO1L7u0UDSg/EhzQ5lmMLolA==}
- dependencies:
- readable-stream: 2.3.8
- dev: false
-
/merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
+ dev: true
/merge2@1.4.1:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
+ dev: true
/methods@1.1.2:
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
engines: {node: '>= 0.6'}
dev: true
- /micromatch@3.1.10:
- resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- arr-diff: 4.0.0
- array-unique: 0.3.2
- braces: 2.3.2
- define-property: 2.0.2
- extend-shallow: 3.0.2
- extglob: 2.0.4
- fragment-cache: 0.2.1
- kind-of: 6.0.3
- nanomatch: 1.2.13
- object.pick: 1.3.0
- regex-not: 1.0.2
- snapdragon: 0.8.2
- to-regex: 3.0.2
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/micromatch@4.0.5:
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
engines: {node: '>=8.6'}
dependencies:
braces: 3.0.2
picomatch: 2.3.1
+ dev: true
/mime-db@1.52.0:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
@@ -9717,6 +7534,7 @@ packages:
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
engines: {node: '>=4'}
hasBin: true
+ dev: true
/mime@2.6.0:
resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==}
@@ -9727,6 +7545,7 @@ packages:
/mimic-fn@2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
+ dev: true
/mimic-fn@4.0.0:
resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
@@ -9736,10 +7555,12 @@ packages:
/mimic-response@1.0.1:
resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==}
engines: {node: '>=4'}
+ dev: true
/mimic-response@3.1.0:
resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
engines: {node: '>=10'}
+ dev: true
/mini-css-extract-plugin@2.7.6(webpack@5.89.0):
resolution: {integrity: sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==}
@@ -9779,13 +7600,6 @@ packages:
brace-expansion: 2.0.1
dev: true
- /minimatch@9.0.1:
- resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==}
- engines: {node: '>=16 || 14 >=14.17'}
- dependencies:
- brace-expansion: 2.0.1
- dev: false
-
/minimatch@9.0.3:
resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
engines: {node: '>=16 || 14 >=14.17'}
@@ -9869,14 +7683,6 @@ packages:
resolution: {integrity: sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==}
dev: true
- /mixin-deep@1.3.2:
- resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- for-in: 1.0.2
- is-extendable: 1.0.1
- dev: false
-
/mkdirp@0.5.6:
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
hasBin: true
@@ -9888,6 +7694,13 @@ packages:
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
engines: {node: '>=10'}
hasBin: true
+ dev: true
+
+ /mkdirp@3.0.1:
+ resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==}
+ engines: {node: '>=10'}
+ hasBin: true
+ dev: false
/mrmime@1.0.1:
resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==}
@@ -9896,12 +7709,14 @@ packages:
/ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
+ dev: true
/ms@2.1.2:
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
/ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
+ dev: true
/multicast-dns@7.2.5:
resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==}
@@ -9911,21 +7726,6 @@ packages:
thunky: 1.1.0
dev: true
- /multipipe@0.1.2:
- resolution: {integrity: sha512-7ZxrUybYv9NonoXgwoOqtStIu18D1c3eFZj27hqgf5kBrBF8Q+tE8V0MW8dKM5QLkQPh1JhhbKgHLY9kifov4Q==}
- dependencies:
- duplexer2: 0.0.2
- dev: false
-
- /mute-stdout@1.0.1:
- resolution: {integrity: sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==}
- engines: {node: '>= 0.10'}
- dev: false
-
- /mute-stream@0.0.8:
- resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==}
- dev: false
-
/mute-stream@1.0.0:
resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -9948,35 +7748,11 @@ packages:
thenify-all: 1.6.0
dev: true
- /nan@2.18.0:
- resolution: {integrity: sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==}
- requiresBuild: true
- dev: false
- optional: true
-
/nanoid@3.3.7:
resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
-
- /nanomatch@1.2.13:
- resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- 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.3
- object.pick: 1.3.0
- regex-not: 1.0.2
- snapdragon: 0.8.2
- to-regex: 3.0.2
- transitivePeerDependencies:
- - supports-color
- dev: false
+ dev: true
/natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
@@ -9998,6 +7774,7 @@ packages:
sax: 1.3.0
transitivePeerDependencies:
- supports-color
+ dev: true
optional: true
/negotiator@0.6.3:
@@ -10009,10 +7786,6 @@ packages:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
dev: true
- /next-tick@1.1.0:
- resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
- dev: false
-
/nice-napi@1.0.2:
resolution: {integrity: sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==}
os: ['!win32']
@@ -10035,18 +7808,6 @@ packages:
dev: true
optional: true
- /node-fetch@2.7.0:
- resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
- engines: {node: 4.x || >=6.0.0}
- peerDependencies:
- encoding: ^0.1.0
- peerDependenciesMeta:
- encoding:
- optional: true
- dependencies:
- whatwg-url: 5.0.0
- dev: false
-
/node-forge@1.3.1:
resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
engines: {node: '>= 6.13.0'}
@@ -10084,6 +7845,7 @@ packages:
/node-releases@2.0.13:
resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
+ dev: true
/nodemon@3.0.1:
resolution: {integrity: sha512-g9AZ7HmkhQkqXkRc20w+ZfQ73cHLbE8hnPbtaFbFtCumZsjyMhKk9LajQ07U5Ux28lvFjZ5X7HvWR1xzU8jHVw==}
@@ -10115,15 +7877,7 @@ packages:
hasBin: true
dependencies:
abbrev: 2.0.0
-
- /normalize-package-data@2.5.0:
- resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
- dependencies:
- hosted-git-info: 2.8.9
- resolve: 1.22.8
- semver: 5.7.2
- validate-npm-package-license: 3.0.4
- dev: false
+ dev: true
/normalize-package-data@6.0.0:
resolution: {integrity: sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==}
@@ -10135,31 +7889,20 @@ packages:
validate-npm-package-license: 3.0.4
dev: true
- /normalize-path@2.1.1:
- resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==}
- engines: {node: '>=0.10.0'}
- dependencies:
- remove-trailing-separator: 1.1.0
- dev: false
-
/normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
+ dev: true
/normalize-range@0.1.2:
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
engines: {node: '>=0.10.0'}
+ dev: true
/normalize-url@6.1.0:
resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==}
engines: {node: '>=10'}
-
- /now-and-later@2.0.1:
- resolution: {integrity: sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==}
- engines: {node: '>= 0.10'}
- dependencies:
- once: 1.4.0
- dev: false
+ dev: true
/npm-bundled@3.0.0:
resolution: {integrity: sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==}
@@ -10242,11 +7985,6 @@ packages:
boolbase: 1.0.0
dev: true
- /number-is-nan@1.0.1:
- resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==}
- engines: {node: '>=0.10.0'}
- dev: false
-
/nx@17.1.2:
resolution: {integrity: sha512-pf94ri36cAiSzbYcPTJwQzttgAsHSjCLEni0Ilw6aVdjpoV2l6cggYxwddX7pgtCWuokVp/6KhAxVkbzvH65wg==}
hasBin: true
@@ -10310,23 +8048,10 @@ packages:
- debug
dev: true
- /object-assign@3.0.0:
- resolution: {integrity: sha512-jHP15vXVGeVh1HuaA2wY6lxk+whK/x4KBG88VXeRma7CCun7iGD5qPc4eYykQ9sdQvg8jkwFKsSxHln2ybW3xQ==}
- engines: {node: '>=0.10.0'}
- dev: false
-
/object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
-
- /object-copy@0.1.0:
- resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- copy-descriptor: 0.1.1
- define-property: 0.2.5
- kind-of: 3.2.2
- dev: false
+ dev: true
/object-hash@3.0.0:
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
@@ -10340,13 +8065,7 @@ packages:
/object-keys@1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
-
- /object-visit@1.0.1:
- resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- isobject: 3.0.1
- dev: false
+ dev: true
/object.assign@4.1.4:
resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==}
@@ -10356,16 +8075,7 @@ packages:
define-properties: 1.2.1
has-symbols: 1.0.3
object-keys: 1.1.1
-
- /object.defaults@1.1.0:
- resolution: {integrity: sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- array-each: 1.0.1
- array-slice: 1.1.0
- for-own: 1.0.0
- isobject: 3.0.1
- dev: false
+ dev: true
/object.fromentries@2.0.7:
resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==}
@@ -10385,29 +8095,6 @@ packages:
get-intrinsic: 1.2.2
dev: true
- /object.map@1.0.1:
- resolution: {integrity: sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==}
- engines: {node: '>=0.10.0'}
- dependencies:
- for-own: 1.0.0
- make-iterator: 1.0.1
- dev: false
-
- /object.pick@1.3.0:
- resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- isobject: 3.0.1
- dev: false
-
- /object.reduce@1.0.1:
- resolution: {integrity: sha512-naLhxxpUESbNkRqc35oQ2scZSJueHGQNUfMW/0U37IgN6tE2dgDWg3whf+NEliy3F/QysrO48XKUz/nGPe+AQw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- for-own: 1.0.0
- make-iterator: 1.0.1
- dev: false
-
/object.values@1.1.7:
resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==}
engines: {node: '>= 0.4'}
@@ -10450,6 +8137,7 @@ packages:
engines: {node: '>=6'}
dependencies:
mimic-fn: 2.1.0
+ dev: true
/onetime@6.0.0:
resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
@@ -10513,27 +8201,17 @@ packages:
log-symbols: 4.1.0
strip-ansi: 6.0.1
wcwidth: 1.0.1
-
- /ordered-read-streams@1.0.1:
- resolution: {integrity: sha512-Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw==}
- dependencies:
- readable-stream: 2.3.8
- dev: false
-
- /os-locale@1.4.0:
- resolution: {integrity: sha512-PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g==}
- engines: {node: '>=0.10.0'}
- dependencies:
- lcid: 1.0.0
- dev: false
+ dev: true
/os-tmpdir@1.0.2:
resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
engines: {node: '>=0.10.0'}
+ dev: true
/p-cancelable@2.1.1:
resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==}
engines: {node: '>=8'}
+ dev: true
/p-limit@2.3.0:
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
@@ -10547,6 +8225,7 @@ packages:
engines: {node: '>=10'}
dependencies:
yocto-queue: 0.1.0
+ dev: true
/p-limit@4.0.0:
resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==}
@@ -10567,6 +8246,7 @@ packages:
engines: {node: '>=10'}
dependencies:
p-limit: 3.1.0
+ dev: true
/p-locate@6.0.0:
resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==}
@@ -10580,6 +8260,7 @@ packages:
engines: {node: '>=10'}
dependencies:
aggregate-error: 3.1.0
+ dev: true
/p-retry@4.6.2:
resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==}
@@ -10633,29 +8314,6 @@ packages:
callsites: 3.1.0
dev: true
- /parse-filepath@1.0.2:
- resolution: {integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==}
- engines: {node: '>=0.8'}
- dependencies:
- is-absolute: 1.0.0
- map-cache: 0.2.2
- path-root: 0.1.1
- dev: false
-
- /parse-import@2.0.0:
- resolution: {integrity: sha512-c59vdx1LiQT+majNKMyfFLrNMAVS9U1bychTv3CEuxbKspgnVTrzLRtgtfCWyAmTuFAxQVSJFasVv8svJLksIg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- get-imports: 1.0.0
- dev: false
-
- /parse-json@2.2.0:
- resolution: {integrity: sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- error-ex: 1.3.2
- dev: false
-
/parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
@@ -10669,11 +8327,7 @@ packages:
/parse-node-version@1.0.1:
resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==}
engines: {node: '>= 0.10'}
-
- /parse-passwd@1.0.0:
- resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==}
- engines: {node: '>=0.10.0'}
- dev: false
+ dev: true
/parse5-html-rewriting-stream@7.0.0:
resolution: {integrity: sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==}
@@ -10700,25 +8354,10 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /pascalcase@0.1.1:
- resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /path-dirname@1.0.2:
- resolution: {integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==}
- dev: false
-
- /path-exists@2.1.0:
- resolution: {integrity: sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- pinkie-promise: 2.0.1
- dev: false
-
/path-exists@4.0.0:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
engines: {node: '>=8'}
+ dev: true
/path-exists@5.0.0:
resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==}
@@ -10740,18 +8379,7 @@ packages:
/path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
-
- /path-root-regex@0.1.2:
- resolution: {integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /path-root@0.1.1:
- resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- path-root-regex: 0.1.2
- dev: false
+ dev: true
/path-scurry@1.10.1:
resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==}
@@ -10764,28 +8392,23 @@ packages:
resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
dev: true
- /path-type@1.1.0:
- resolution: {integrity: sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- graceful-fs: 4.2.11
- pify: 2.3.0
- pinkie-promise: 2.0.1
- dev: false
-
/path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
+ dev: true
/pend@1.2.0:
resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
+ dev: true
/picocolors@1.0.0:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
+ dev: true
/picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
+ dev: true
/picomatch@3.0.1:
resolution: {integrity: sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==}
@@ -10795,25 +8418,15 @@ packages:
/pify@2.3.0:
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
engines: {node: '>=0.10.0'}
+ dev: true
/pify@4.0.1:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
requiresBuild: true
+ dev: true
optional: true
- /pinkie-promise@2.0.1:
- resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- pinkie: 2.0.4
- dev: false
-
- /pinkie@2.0.4:
- resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==}
- engines: {node: '>=0.10.0'}
- dev: false
-
/pirates@4.0.6:
resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
engines: {node: '>= 6'}
@@ -10845,34 +8458,6 @@ packages:
xmlbuilder: 15.1.1
dev: true
- /plugin-error@0.1.2:
- resolution: {integrity: sha512-WzZHcm4+GO34sjFMxQMqZbsz3xiNEgonCskQ9v+IroMmYgk/tas8dG+Hr2D6IbRPybZ12oWpzE/w3cGJ6FJzOw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- ansi-cyan: 0.1.1
- ansi-red: 0.1.1
- arr-diff: 1.1.0
- arr-union: 2.1.0
- extend-shallow: 1.1.4
- dev: false
-
- /plugin-error@1.0.1:
- resolution: {integrity: sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==}
- engines: {node: '>= 0.10'}
- dependencies:
- ansi-colors: 1.1.0
- arr-diff: 4.0.0
- arr-union: 3.1.0
- extend-shallow: 3.0.2
- dev: false
-
- /plugin-error@2.0.1:
- resolution: {integrity: sha512-zMakqvIDyY40xHOvzXka0kUvf40nYIuwRE8dWhti2WtjQZ31xAgBZBhxsK7vK3QbRXS1Xms/LO7B5cuAsfB2Gg==}
- engines: {node: '>=10.13.0'}
- dependencies:
- ansi-colors: 1.1.0
- dev: false
-
/portscanner@2.2.0:
resolution: {integrity: sha512-IFroCz/59Lqa2uBvzK3bKDbDDIEaAY8XJ1jFxcLWTqosrsc32//P4VuSB2vZXoHiHqOmx8B5L5hnKOxL/7FlPw==}
engines: {node: '>=0.4', npm: '>=1.0.0'}
@@ -10881,11 +8466,6 @@ packages:
is-number-like: 1.0.8
dev: true
- /posix-character-classes@0.1.1:
- resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==}
- engines: {node: '>=0.10.0'}
- dev: false
-
/postcss-import@15.1.0(postcss@8.4.31):
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
engines: {node: '>=14.0.0'}
@@ -11002,6 +8582,7 @@ packages:
/postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
+ dev: true
/postcss@8.4.31:
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
@@ -11010,6 +8591,7 @@ packages:
nanoid: 3.3.7
picocolors: 1.0.0
source-map-js: 1.0.2
+ dev: true
/prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
@@ -11063,11 +8645,6 @@ packages:
react-is: 18.2.0
dev: true
- /pretty-hrtime@1.0.3:
- resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==}
- engines: {node: '>= 0.8'}
- dev: false
-
/proc-log@3.0.0:
resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -11075,10 +8652,12 @@ packages:
/process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
+ dev: true
/progress@2.0.3:
resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
engines: {node: '>=0.4.0'}
+ dev: true
/promise-inflight@1.0.1:
resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
@@ -11097,10 +8676,6 @@ packages:
retry: 0.12.0
dev: true
- /proto-list@1.2.4:
- resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
- dev: false
-
/proxy-addr@2.0.7:
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
engines: {node: '>= 0.10'}
@@ -11116,32 +8691,19 @@ packages:
/prr@1.0.1:
resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
requiresBuild: true
+ dev: true
optional: true
/pstree.remy@1.1.8:
resolution: {integrity: sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==}
dev: true
- /pump@2.0.1:
- resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==}
- dependencies:
- end-of-stream: 1.4.4
- once: 1.4.0
- dev: false
-
/pump@3.0.0:
resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
dependencies:
end-of-stream: 1.4.4
once: 1.4.0
-
- /pumpify@1.5.1:
- resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==}
- dependencies:
- duplexify: 3.7.1
- inherits: 2.0.4
- pump: 2.0.1
- dev: false
+ dev: true
/punycode@2.3.1:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
@@ -11157,15 +8719,18 @@ packages:
/queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
+ dev: true
/quick-lru@5.1.1:
resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
engines: {node: '>=10'}
+ dev: true
/randombytes@2.1.0:
resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
dependencies:
safe-buffer: 5.2.1
+ dev: true
/range-parser@1.2.1:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
@@ -11221,32 +8786,6 @@ packages:
npm-normalize-package-bin: 3.0.1
dev: true
- /read-pkg-up@1.0.1:
- resolution: {integrity: sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==}
- engines: {node: '>=0.10.0'}
- dependencies:
- find-up: 1.1.2
- read-pkg: 1.1.0
- dev: false
-
- /read-pkg@1.1.0:
- resolution: {integrity: sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- load-json-file: 1.1.0
- normalize-package-data: 2.5.0
- path-type: 1.1.0
- dev: false
-
- /readable-stream@1.1.14:
- resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==}
- dependencies:
- core-util-is: 1.0.3
- inherits: 2.0.4
- isarray: 0.0.1
- string_decoder: 0.10.31
- dev: false
-
/readable-stream@2.3.8:
resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
dependencies:
@@ -11257,6 +8796,7 @@ packages:
safe-buffer: 5.1.2
string_decoder: 1.1.1
util-deprecate: 1.0.2
+ dev: true
/readable-stream@3.6.2:
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
@@ -11265,17 +8805,7 @@ packages:
inherits: 2.0.4
string_decoder: 1.3.0
util-deprecate: 1.0.2
-
- /readdirp@2.2.1:
- resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==}
- engines: {node: '>=0.10'}
- dependencies:
- graceful-fs: 4.2.11
- micromatch: 3.1.10
- readable-stream: 2.3.8
- transitivePeerDependencies:
- - supports-color
- dev: false
+ dev: true
/readdirp@3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
@@ -11284,13 +8814,6 @@ packages:
picomatch: 2.3.1
dev: true
- /rechoir@0.6.2:
- resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==}
- engines: {node: '>= 0.10'}
- dependencies:
- resolve: 1.22.8
- dev: false
-
/reflect-metadata@0.1.13:
resolution: {integrity: sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==}
dev: true
@@ -11316,14 +8839,6 @@ packages:
'@babel/runtime': 7.23.2
dev: true
- /regex-not@1.0.2:
- resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==}
- engines: {node: '>=0.10.0'}
- dependencies:
- extend-shallow: 3.0.2
- safe-regex: 1.1.0
- dev: false
-
/regex-parser@2.2.11:
resolution: {integrity: sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==}
dev: true
@@ -11356,90 +8871,16 @@ packages:
jsesc: 0.5.0
dev: true
- /remove-bom-buffer@3.0.0:
- resolution: {integrity: sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-buffer: 1.1.6
- is-utf8: 0.2.1
- dev: false
-
- /remove-bom-stream@1.2.0:
- resolution: {integrity: sha512-wigO8/O08XHb8YPzpDDT+QmRANfW6vLqxfaXm1YXhnFf3AkSLyjfG3GEFg4McZkmgL7KvCj5u2KczkvSP6NfHA==}
- engines: {node: '>= 0.10'}
- dependencies:
- remove-bom-buffer: 3.0.0
- safe-buffer: 5.2.1
- through2: 2.0.5
- dev: false
-
- /remove-trailing-separator@1.1.0:
- resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==}
- dev: false
-
- /repeat-element@1.1.4:
- resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /repeat-string@1.6.1:
- resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
- engines: {node: '>=0.10'}
- dev: false
-
- /replace-ext@0.0.1:
- resolution: {integrity: sha512-AFBWBy9EVRTa/LhEcG8QDP3FvpwZqmvN2QFDuJswFeaVhWnZMp8q3E6Zd90SR04PlIwfGdyVjNyLPyen/ek5CQ==}
- engines: {node: '>= 0.4'}
- dev: false
-
- /replace-ext@1.0.1:
- resolution: {integrity: sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==}
- engines: {node: '>= 0.10'}
- dev: false
-
- /replace-ext@2.0.0:
- resolution: {integrity: sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug==}
- engines: {node: '>= 10'}
- dev: false
-
- /replace-homedir@1.0.0:
- resolution: {integrity: sha512-CHPV/GAglbIB1tnQgaiysb8H2yCy8WQ7lcEwQ/eT+kLj0QHV8LnJW0zpqpE7RSkrMSRoa+EBoag86clf7WAgSg==}
- engines: {node: '>= 0.10'}
- dependencies:
- homedir-polyfill: 1.0.3
- is-absolute: 1.0.0
- remove-trailing-separator: 1.1.0
- dev: false
-
- /replacestream@4.0.3:
- resolution: {integrity: sha512-AC0FiLS352pBBiZhd4VXB1Ab/lh0lEgpP+GGvZqbQh8a5cmXVoTe5EX/YeTFArnp4SRGTHh1qCHu9lGs1qG8sA==}
- dependencies:
- escape-string-regexp: 1.0.5
- object-assign: 4.1.1
- readable-stream: 2.3.8
- dev: false
-
- /require-dir@1.2.0:
- resolution: {integrity: sha512-LY85DTSu+heYgDqq/mK+7zFHWkttVNRXC9NKcKGyuGLdlsfbjEPrIEYdCVrx6hqnJb+xSu3Lzaoo8VnmOhhjNA==}
- dev: false
-
/require-directory@2.1.1:
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
engines: {node: '>=0.10.0'}
-
- /require-dot-file@0.4.0:
- resolution: {integrity: sha512-pMe/T7+uFi2NMYsxuQtTh9n/UKD13HAHeDOk7KuP2pr7aKi5aMhvkbGD4IeoJKjy+3vdIUy8ggXYWzlZTL5FWA==}
- dev: false
+ dev: true
/require-from-string@2.0.2:
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
engines: {node: '>=0.10.0'}
dev: true
- /require-main-filename@1.0.1:
- resolution: {integrity: sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==}
- dev: false
-
/require-relative@0.8.7:
resolution: {integrity: sha512-AKGr4qvHiryxRb19m3PsLRGuKVAbJLUD7E6eOaHkfKhwc+vSgVOCY5xNvm9EkolBKTOf0GrQAZKLimOCz81Khg==}
dev: true
@@ -11450,14 +8891,7 @@ packages:
/resolve-alpn@1.2.1:
resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==}
-
- /resolve-dir@1.0.1:
- resolution: {integrity: sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- expand-tilde: 2.0.2
- global-modules: 1.0.0
- dev: false
+ dev: true
/resolve-from@4.0.0:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
@@ -11469,17 +8903,6 @@ packages:
engines: {node: '>=8'}
dev: true
- /resolve-options@1.1.0:
- resolution: {integrity: sha512-NYDgziiroVeDC29xq7bp/CacZERYsA9bXYd1ZmcJlF3BcrZv5pTb4NG7SjdyKDnXZ84aC4vo2u6sNKIA1LCu/A==}
- engines: {node: '>= 0.10'}
- dependencies:
- value-or-function: 3.0.0
- dev: false
-
- /resolve-pkg-maps@1.0.0:
- resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
- dev: true
-
/resolve-url-loader@5.0.0:
resolution: {integrity: sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==}
engines: {node: '>=12'}
@@ -11491,11 +8914,6 @@ packages:
source-map: 0.6.1
dev: true
- /resolve-url@0.2.1:
- resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==}
- deprecated: https://github.com/lydell/resolve-url#deprecated
- dev: false
-
/resolve@1.22.8:
resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
hasBin: true
@@ -11503,6 +8921,7 @@ packages:
is-core-module: 2.13.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
+ dev: true
/resp-modifier@6.0.2:
resolution: {integrity: sha512-U1+0kWC/+4ncRFYqQWTx/3qkfE6a4B/h3XXgmXypfa0SPZ3t7cbbaFk297PjQS/yov24R18h6OZe6iZwj3NSLw==}
@@ -11518,6 +8937,7 @@ packages:
resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==}
dependencies:
lowercase-keys: 2.0.0
+ dev: true
/restore-cursor@3.1.0:
resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
@@ -11525,11 +8945,7 @@ packages:
dependencies:
onetime: 5.1.2
signal-exit: 3.0.7
-
- /ret@0.1.15:
- resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==}
- engines: {node: '>=0.12'}
- dev: false
+ dev: true
/retry@0.12.0:
resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
@@ -11544,39 +8960,7 @@ packages:
/reusify@1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
-
- /rework-import@2.1.0:
- resolution: {integrity: sha512-ufvoQX6cDhrqYc8ZXvJ+6FqimwyI4qn8cH1ypAiS9Mn41iVPN/9RGwRvscBtUEkHA09w8voTIakRJKslgWcTEQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- css: 2.2.4
- globby: 2.1.0
- parse-import: 2.0.0
- url-regex: 3.2.0
- dev: false
-
- /rework-plugin-function@1.0.2:
- resolution: {integrity: sha512-kyIphbC2Kuc3iFz1CSAQ5zmt4o/IHquhO+uG0kK0FQTjs4Z5eAxrqmrv3rZMR1KXa77SesaW9KwKyfbYoLMEqw==}
- dependencies:
- rework-visit: 1.0.0
- dev: false
-
- /rework-plugin-url@1.1.0:
- resolution: {integrity: sha512-qlAhbJKfEK59jAPQppIn8bNXffW1INlaJZaXdX/ZLs/CzZSnn38Y0wESQ3tjOwRsDbPEUHN2XJ3ZgueDaaCC0A==}
- dependencies:
- rework-plugin-function: 1.0.2
- dev: false
-
- /rework-visit@1.0.0:
- resolution: {integrity: sha512-W6V2fix7nCLUYX1v6eGPrBOZlc03/faqzP4sUxMAJMBMOPYhfV/RyLegTufn5gJKaOITyi+gvf0LXDZ9NzkHnQ==}
- dev: false
-
- /rework@1.0.1:
- resolution: {integrity: sha512-eEjL8FdkdsxApd0yWVZgBGzfCQiT8yqSc2H1p4jpZpQdtz7ohETiDMoje5PlM8I9WgkqkreVxFUKYOiJdVWDXw==}
- dependencies:
- convert-source-map: 0.3.5
- css: 2.2.4
- dev: false
+ dev: true
/rimraf@2.4.5:
resolution: {integrity: sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==}
@@ -11590,6 +8974,7 @@ packages:
hasBin: true
dependencies:
glob: 7.2.3
+ dev: true
/rimraf@5.0.5:
resolution: {integrity: sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==}
@@ -11610,6 +8995,7 @@ packages:
json-stringify-safe: 5.0.1
semver-compare: 1.0.0
sprintf-js: 1.1.3
+ dev: true
optional: true
/rollup@3.29.4:
@@ -11620,16 +9006,6 @@ packages:
fsevents: 2.3.3
dev: true
- /rtlcss@3.5.0:
- resolution: {integrity: sha512-wzgMaMFHQTnyi9YOwsx9LjOxYXJPzS8sYnFaKm6R5ysvTkwzHiB0vxnbHwchHQT65PTdBjDG21/kQBWI7q9O7A==}
- hasBin: true
- dependencies:
- find-up: 5.0.0
- picocolors: 1.0.0
- postcss: 8.4.31
- strip-json-comments: 3.1.1
- dev: false
-
/run-applescript@5.0.0:
resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==}
engines: {node: '>=12'}
@@ -11637,11 +9013,6 @@ packages:
execa: 5.1.1
dev: true
- /run-async@2.4.1:
- resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==}
- engines: {node: '>=0.12.0'}
- dev: false
-
/run-async@3.0.0:
resolution: {integrity: sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==}
engines: {node: '>=0.12.0'}
@@ -11651,6 +9022,7 @@ packages:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
dependencies:
queue-microtask: 1.2.3
+ dev: true
/rx@4.1.0:
resolution: {integrity: sha512-CiaiuN6gapkdl+cZUr67W6I8jquN4lkak3vtIsIWCl4XIPP8ffsoyN6/+PuGXnQy8Cu8W2y9Xxh31Rq4M6wUug==}
@@ -11673,9 +9045,11 @@ packages:
/safe-buffer@5.1.2:
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
+ dev: true
/safe-buffer@5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
+ dev: true
/safe-regex-test@1.0.0:
resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
@@ -11685,14 +9059,9 @@ packages:
is-regex: 1.1.4
dev: true
- /safe-regex@1.1.0:
- resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==}
- dependencies:
- ret: 0.1.15
- dev: false
-
/safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
+ dev: true
/sanitize-filename@1.6.3:
resolution: {integrity: sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==}
@@ -11770,22 +9139,20 @@ packages:
/semver-compare@1.0.0:
resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==}
requiresBuild: true
+ dev: true
optional: true
- /semver-greatest-satisfied-range@1.1.0:
- resolution: {integrity: sha512-Ny/iyOzSSa8M5ML46IAx3iXc6tfOsYU2R4AXi2UpHk60Zrgyq6eqPj/xiOfS0rRl/iiQ/rdJkVjw/5cdUyCntQ==}
- engines: {node: '>= 0.10'}
- dependencies:
- sver-compat: 1.5.0
- dev: false
-
/semver@5.7.2:
resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
hasBin: true
+ requiresBuild: true
+ dev: true
+ optional: true
/semver@6.3.1:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
+ dev: true
/semver@7.0.0:
resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==}
@@ -11855,6 +9222,7 @@ packages:
requiresBuild: true
dependencies:
type-fest: 0.13.1
+ dev: true
optional: true
/serialize-error@8.1.0:
@@ -11913,10 +9281,6 @@ packages:
resolution: {integrity: sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==}
dev: true
- /set-blocking@2.0.0:
- resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
- dev: false
-
/set-function-length@1.1.1:
resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==}
engines: {node: '>= 0.4'}
@@ -11925,6 +9289,7 @@ packages:
get-intrinsic: 1.2.2
gopd: 1.0.1
has-property-descriptors: 1.0.1
+ dev: true
/set-function-name@2.0.1:
resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==}
@@ -11935,16 +9300,6 @@ packages:
has-property-descriptors: 1.0.1
dev: true
- /set-value@2.0.1:
- resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- extend-shallow: 2.0.1
- is-extendable: 0.1.1
- is-plain-object: 2.0.4
- split-string: 3.1.0
- dev: false
-
/setprototypeof@1.1.0:
resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
dev: true
@@ -11984,6 +9339,7 @@ packages:
/signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
+ dev: true
/signal-exit@4.1.0:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
@@ -12018,6 +9374,7 @@ packages:
/slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
+ dev: true
/slash@4.0.0:
resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
@@ -12040,38 +9397,6 @@ packages:
engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
dev: true
- /snapdragon-node@2.1.1:
- resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- define-property: 1.0.0
- isobject: 3.0.1
- snapdragon-util: 3.0.1
- dev: false
-
- /snapdragon-util@3.0.1:
- resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- kind-of: 3.2.2
- dev: false
-
- /snapdragon@0.8.2:
- resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- base: 0.11.2
- debug: 2.6.9
- define-property: 0.2.5
- extend-shallow: 2.0.1
- map-cache: 0.2.2
- source-map: 0.5.7
- source-map-resolve: 0.5.3
- use: 3.1.1
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/socket.io-adapter@2.5.2:
resolution: {integrity: sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==}
dependencies:
@@ -12152,6 +9477,7 @@ packages:
/source-map-js@1.0.2:
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
engines: {node: '>=0.10.0'}
+ dev: true
/source-map-loader@4.0.1(webpack@5.89.0):
resolution: {integrity: sha512-oqXpzDIByKONVY8g1NUPOTQhe0UTU5bWUl32GSkqK2LjJj0HmwTMVKxcUip0RgAYhY1mqgOxjbQM48a0mmeNfA==}
@@ -12165,17 +9491,6 @@ packages:
webpack: 5.89.0(esbuild@0.19.5)
dev: true
- /source-map-resolve@0.5.3:
- resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==}
- deprecated: See https://github.com/lydell/source-map-resolve#deprecated
- dependencies:
- atob: 2.1.2
- decode-uri-component: 0.2.2
- resolve-url: 0.2.1
- source-map-url: 0.4.1
- urix: 0.1.0
- dev: false
-
/source-map-support@0.5.21:
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
dependencies:
@@ -12183,30 +9498,16 @@ packages:
source-map: 0.6.1
dev: true
- /source-map-url@0.4.1:
- resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==}
- deprecated: See https://github.com/lydell/source-map-url#deprecated
- dev: false
-
- /source-map@0.5.7:
- resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
- engines: {node: '>=0.10.0'}
- dev: false
-
/source-map@0.6.1:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
+ dev: true
/source-map@0.7.4:
resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
engines: {node: '>= 8'}
dev: true
- /sparkles@1.0.1:
- resolution: {integrity: sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==}
- engines: {node: '>= 0.10'}
- dev: false
-
/spawn-command@0.0.2:
resolution: {integrity: sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==}
dev: true
@@ -12216,18 +9517,22 @@ packages:
dependencies:
spdx-expression-parse: 3.0.1
spdx-license-ids: 3.0.16
+ dev: true
/spdx-exceptions@2.3.0:
resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==}
+ dev: true
/spdx-expression-parse@3.0.1:
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
dependencies:
spdx-exceptions: 2.3.0
spdx-license-ids: 3.0.16
+ dev: true
/spdx-license-ids@3.0.16:
resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==}
+ dev: true
/spdy-transport@3.0.0:
resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==}
@@ -12255,19 +9560,14 @@ packages:
- supports-color
dev: true
- /split-string@3.1.0:
- resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- extend-shallow: 3.0.2
- dev: false
-
/sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
+ dev: true
/sprintf-js@1.1.3:
resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
requiresBuild: true
+ dev: true
optional: true
/ssri@10.0.5:
@@ -12277,27 +9577,11 @@ packages:
minipass: 7.0.4
dev: true
- /stack-trace@0.0.10:
- resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==}
- dev: false
-
- /stat-mode@0.2.2:
- resolution: {integrity: sha512-o+7DC0OM5Jt3+gratXXqfXf62V/CBoqQbT7Kp7jCxTYW2PLOB2/ZSGIfm9T5/QZe1Vw1MCbu6DoB6JnhVtxcJw==}
- dev: false
-
/stat-mode@1.0.0:
resolution: {integrity: sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg==}
engines: {node: '>= 6'}
dev: true
- /static-extend@0.1.2:
- resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==}
- engines: {node: '>=0.10.0'}
- dependencies:
- define-property: 0.2.5
- object-copy: 0.1.0
- dev: false
-
/statuses@1.3.1:
resolution: {integrity: sha512-wuTCPGlJONk/a1kqZ4fQM2+908lC7fa7nPYpTC1EhnvqLX/IICbeP1OZGDtA374trpSq68YubKUMo8oRhN46yg==}
engines: {node: '>= 0.6'}
@@ -12318,14 +9602,6 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /stream-exhaust@1.0.2:
- resolution: {integrity: sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==}
- dev: false
-
- /stream-shift@1.0.1:
- resolution: {integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==}
- dev: false
-
/stream-throttle@0.1.3:
resolution: {integrity: sha512-889+B9vN9dq7/vLbGyuHeZ6/ctf5sNuGWsDy89uNxkFTAgzy0eK7+w5fL3KLNRTkLle7EgZGvHUphZW0Q26MnQ==}
engines: {node: '>= 0.10.0'}
@@ -12335,15 +9611,6 @@ packages:
limiter: 1.1.5
dev: true
- /string-width@1.0.2:
- resolution: {integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- code-point-at: 1.1.0
- is-fullwidth-code-point: 1.0.0
- strip-ansi: 3.0.1
- dev: false
-
/string-width@4.2.3:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
@@ -12385,25 +9652,24 @@ packages:
es-abstract: 1.22.3
dev: true
- /string_decoder@0.10.31:
- resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==}
- dev: false
-
/string_decoder@1.1.1:
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
dependencies:
safe-buffer: 5.1.2
+ dev: true
/string_decoder@1.3.0:
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
dependencies:
safe-buffer: 5.2.1
+ dev: true
/strip-ansi@3.0.1:
resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==}
engines: {node: '>=0.10.0'}
dependencies:
ansi-regex: 2.1.1
+ dev: true
/strip-ansi@6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
@@ -12417,28 +9683,6 @@ packages:
dependencies:
ansi-regex: 6.0.1
- /strip-bom-buf@1.0.0:
- resolution: {integrity: sha512-1sUIL1jck0T1mhOLP2c696BIznzT525Lkub+n4jjMHjhjhoAQA6Ye659DxdlZBr0aLDMQoTxKIpnlqxgtwjsuQ==}
- engines: {node: '>=4'}
- dependencies:
- is-utf8: 0.2.1
- dev: false
-
- /strip-bom-stream@3.0.0:
- resolution: {integrity: sha512-2di6sulSHfspbuEJHwwF6vzwijA4uaKsKYtviRQsJsOdxxb6yexiDcZFQ5oY10J50YxmCdHn/1sQmxDKbrGOVw==}
- engines: {node: '>=4'}
- dependencies:
- first-chunk-stream: 2.0.0
- strip-bom-buf: 1.0.0
- dev: false
-
- /strip-bom@2.0.0:
- resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-utf8: 0.2.1
- dev: false
-
/strip-bom@3.0.0:
resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
engines: {node: '>=4'}
@@ -12457,6 +9701,7 @@ packages:
/strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
+ dev: true
/strong-log-transformer@2.1.0:
resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==}
@@ -12489,22 +9734,26 @@ packages:
debug: 4.3.4
transitivePeerDependencies:
- supports-color
+ dev: true
/supports-color@2.0.0:
resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==}
engines: {node: '>=0.8.0'}
+ dev: true
/supports-color@5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
engines: {node: '>=4'}
dependencies:
has-flag: 3.0.0
+ dev: true
/supports-color@7.2.0:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
dependencies:
has-flag: 4.0.0
+ dev: true
/supports-color@8.1.1:
resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
@@ -12516,13 +9765,7 @@ packages:
/supports-preserve-symlinks-flag@1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
-
- /sver-compat@1.5.0:
- resolution: {integrity: sha512-aFTHfmjwizMNlNE6dsGmoAM4lHjL0CyiobWaFiXWSlD7cIxshW422Nb8KbXCmR6z+0ZEPY+daXJrDyh/vuwTyg==}
- dependencies:
- es6-iterator: 2.0.3
- es6-symbol: 3.1.3
- dev: false
+ dev: true
/symbol-observable@4.0.0:
resolution: {integrity: sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==}
@@ -12603,16 +9846,6 @@ packages:
fs-extra: 10.1.0
dev: true
- /ternary-stream@2.1.1:
- resolution: {integrity: sha512-j6ei9hxSoyGlqTmoMjOm+QNvUKDOIY6bNl4Uh1lhBvl6yjPW2iLqxDUYyfDPZknQ4KdRziFl+ec99iT4l7g0cw==}
- engines: {node: '>= 0.10.0'}
- dependencies:
- duplexify: 3.7.1
- fork-stream: 0.0.4
- merge-stream: 1.0.1
- through2: 2.0.5
- dev: false
-
/terser-webpack-plugin@5.3.9(esbuild@0.19.5)(webpack@5.89.0):
resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==}
engines: {node: '>= 10.13.0'}
@@ -12662,11 +9895,6 @@ packages:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
dev: true
- /textextensions@3.3.0:
- resolution: {integrity: sha512-mk82dS8eRABNbeVJrEiN5/UMSCliINAuz8mkUwH4SwslkNP//gbEzlWNS5au0z5Dpx40SQxzqZevZkn+WYJ9Dw==}
- engines: {node: '>=8'}
- dev: false
-
/thenify-all@1.6.0:
resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
engines: {node: '>=0.8'}
@@ -12680,58 +9908,14 @@ packages:
any-promise: 1.3.0
dev: true
- /through2-filter@3.0.0:
- resolution: {integrity: sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==}
- dependencies:
- through2: 2.0.5
- xtend: 4.0.2
- dev: false
-
- /through2@1.1.1:
- resolution: {integrity: sha512-zEbpaeSMHxczpTzO1KkMHjBC1enTA68ojeaZGG4toqdASpb9t4xUZaYFBq2/9OHo5nTGFVSYd4c910OR+6wxbQ==}
- dependencies:
- readable-stream: 1.1.14
- xtend: 4.0.2
- dev: false
-
- /through2@2.0.5:
- resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
- dependencies:
- readable-stream: 2.3.8
- xtend: 4.0.2
- dev: false
-
- /through2@3.0.1:
- resolution: {integrity: sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww==}
- dependencies:
- readable-stream: 3.6.2
- dev: false
-
- /through2@4.0.2:
- resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==}
- dependencies:
- readable-stream: 3.6.2
- dev: false
-
/through@2.3.8:
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
+ dev: true
/thunky@1.1.0:
resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==}
dev: true
- /time-stamp@1.1.0:
- resolution: {integrity: sha512-gLCeArryy2yNTRzTGKbZbloctj64jkZ57hj5zdraXue6aFgd6PmvVtEyiUU+hvU0v7q08oVv8r8ev0tRo6bvgw==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /timers-ext@0.1.7:
- resolution: {integrity: sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==}
- dependencies:
- es5-ext: 0.10.62
- next-tick: 1.1.0
- dev: false
-
/titleize@3.0.0:
resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==}
engines: {node: '>=12'}
@@ -12748,6 +9932,7 @@ packages:
engines: {node: '>=0.6.0'}
dependencies:
os-tmpdir: 1.0.2
+ dev: true
/tmp@0.2.1:
resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==}
@@ -12756,56 +9941,17 @@ packages:
rimraf: 3.0.2
dev: true
- /to-absolute-glob@2.0.2:
- resolution: {integrity: sha512-rtwLUQEwT8ZeKQbyFJyomBRYXyE16U5VKuy0ftxLMK/PZb2fkOsg5r9kHdauuVDbsNdIBoC/HCthpidamQFXYA==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-absolute: 1.0.0
- is-negated-glob: 1.0.0
- dev: false
-
/to-fast-properties@2.0.0:
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
engines: {node: '>=4'}
dev: true
- /to-object-path@0.3.0:
- resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- kind-of: 3.2.2
- dev: false
-
- /to-regex-range@2.1.1:
- resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-number: 3.0.0
- repeat-string: 1.6.1
- dev: false
-
/to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
dependencies:
is-number: 7.0.0
-
- /to-regex@3.0.2:
- resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- define-property: 2.0.2
- extend-shallow: 3.0.2
- regex-not: 1.0.2
- safe-regex: 1.1.0
- dev: false
-
- /to-through@2.0.0:
- resolution: {integrity: sha512-+QIz37Ly7acM4EMdw2PRN389OneM5+d844tirkGp4dPKzI5OE72V9OsbFp+CIYJDahZ41ZV05hNtcPAQUAm9/Q==}
- engines: {node: '>= 0.10'}
- dependencies:
- through2: 2.0.5
- dev: false
+ dev: true
/toidentifier@1.0.1:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
@@ -12819,10 +9965,6 @@ packages:
nopt: 1.0.10
dev: true
- /tr46@0.0.3:
- resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
- dev: false
-
/tree-kill@1.2.2:
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
hasBin: true
@@ -12867,17 +10009,6 @@ packages:
/tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
- /tsx@4.4.0:
- resolution: {integrity: sha512-4fwcEjRUxW20ciSaMB8zkpGwCPxuRGnadDuj/pBk5S9uT29zvWz15PK36GrKJo45mSJomDxVejZ73c6lr3811Q==}
- engines: {node: '>=18.0.0'}
- hasBin: true
- dependencies:
- esbuild: 0.18.20
- get-tsconfig: 4.7.2
- optionalDependencies:
- fsevents: 2.3.3
- dev: true
-
/tuf-js@2.1.0:
resolution: {integrity: sha512-eD7YPPjVlMzdggrOeE8zwoegUaG/rt6Bt3jwoQPunRiNVzgcCE009UDFJKJjG+Gk9wFu6W/Vi+P5d/5QpdD9jA==}
engines: {node: ^16.14.0 || >=18.0.0}
@@ -12889,11 +10020,6 @@ packages:
- supports-color
dev: true
- /tunnel@0.0.6:
- resolution: {integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==}
- engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'}
- dev: false
-
/type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
@@ -12905,6 +10031,7 @@ packages:
resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==}
engines: {node: '>=10'}
requiresBuild: true
+ dev: true
optional: true
/type-fest@0.20.2:
@@ -12914,6 +10041,7 @@ packages:
/type-fest@0.21.3:
resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
engines: {node: '>=10'}
+ dev: true
/type-is@1.6.18:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
@@ -12923,14 +10051,6 @@ packages:
mime-types: 2.1.35
dev: true
- /type@1.2.0:
- resolution: {integrity: sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==}
- dev: false
-
- /type@2.7.2:
- resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==}
- dev: false
-
/typed-array-buffer@1.0.0:
resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==}
engines: {node: '>= 0.4'}
@@ -12973,10 +10093,6 @@ packages:
resolution: {integrity: sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==}
dev: true
- /typedarray@0.0.6:
- resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
- dev: false
-
/typescript@5.2.2:
resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==}
engines: {node: '>=14.17'}
@@ -12987,12 +10103,6 @@ packages:
resolution: {integrity: sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==}
dev: true
- /uglify-js@3.17.4:
- resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==}
- engines: {node: '>=0.8.0'}
- hasBin: true
- dev: false
-
/unbox-primitive@1.0.2:
resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
dependencies:
@@ -13002,41 +10112,16 @@ packages:
which-boxed-primitive: 1.0.2
dev: true
- /unc-path-regex@0.1.2:
- resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==}
- engines: {node: '>=0.10.0'}
- dev: false
-
/undefsafe@2.0.5:
resolution: {integrity: sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==}
dev: true
- /undertaker-registry@1.0.1:
- resolution: {integrity: sha512-UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw==}
- engines: {node: '>= 0.10'}
- dev: false
-
- /undertaker@1.3.0:
- resolution: {integrity: sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==}
- engines: {node: '>= 0.10'}
- dependencies:
- arr-flatten: 1.1.0
- arr-map: 2.0.2
- bach: 1.2.0
- collection-map: 1.0.0
- es6-weak-map: 2.0.3
- fast-levenshtein: 1.1.4
- last-run: 1.1.1
- object.defaults: 1.1.0
- object.reduce: 1.0.1
- undertaker-registry: 1.0.1
- dev: false
-
/undici@5.27.2:
resolution: {integrity: sha512-iS857PdOEy/y3wlM3yRp+6SNQQ6xU0mmZcwRSriqk+et/cwWAtwmIGf6WkoDN2EK/AMdCO/dfXzIwi+rFMrjjQ==}
engines: {node: '>=14.0'}
dependencies:
'@fastify/busboy': 2.1.0
+ dev: true
/unicode-canonical-property-names-ecmascript@2.0.0:
resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
@@ -13061,16 +10146,6 @@ packages:
engines: {node: '>=4'}
dev: true
- /union-value@1.0.1:
- resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- arr-union: 3.1.0
- get-value: 2.0.6
- is-extendable: 0.1.1
- set-value: 2.0.1
- dev: false
-
/unique-filename@3.0.0:
resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -13085,20 +10160,10 @@ packages:
imurmurhash: 0.1.4
dev: true
- /unique-stream@2.3.1:
- resolution: {integrity: sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==}
- dependencies:
- json-stable-stringify-without-jsonify: 1.0.1
- through2-filter: 3.0.0
- dev: false
-
- /universal-user-agent@6.0.1:
- resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==}
- dev: false
-
/universalify@0.1.2:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
engines: {node: '>= 4.0.0'}
+ dev: true
/universalify@2.0.1:
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
@@ -13109,24 +10174,11 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /unset-value@1.0.0:
- resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- has-value: 0.3.1
- isobject: 3.0.1
- dev: false
-
/untildify@4.0.0:
resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
engines: {node: '>=8'}
dev: true
- /upath@1.2.0:
- resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==}
- engines: {node: '>=4'}
- dev: false
-
/update-browserslist-db@1.0.13(browserslist@4.22.1):
resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
hasBin: true
@@ -13136,6 +10188,7 @@ packages:
browserslist: 4.22.1
escalade: 3.1.1
picocolors: 1.0.0
+ dev: true
/uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
@@ -13143,28 +10196,12 @@ packages:
punycode: 2.3.1
dev: true
- /urix@0.1.0:
- resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==}
- deprecated: Please see https://github.com/lydell/urix#deprecated
- dev: false
-
- /url-regex@3.2.0:
- resolution: {integrity: sha512-dQ9cJzMou5OKr6ZzfvwJkCq3rC72PNXhqz0v3EIhF4a3Np+ujr100AhUx2cKx5ei3iymoJpJrPB3sVSEMdqAeg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- ip-regex: 1.0.3
- dev: false
-
- /use@3.1.1:
- resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==}
- engines: {node: '>=0.10.0'}
- dev: false
-
/utf8-byte-length@1.0.4:
resolution: {integrity: sha512-4+wkEYLBbWxqTahEsWrhxepcoVOJ+1z5PGIjPZxRkytcdSUaNjIjBM7Xn8E+pdSuV7SzvWovBFA54FO0JSoqhA==}
/util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
+ dev: true
/utils-merge@1.0.1:
resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
@@ -13174,23 +10211,18 @@ packages:
/uuid@8.3.2:
resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
hasBin: true
+ dev: true
/v8-compile-cache@2.3.0:
resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==}
dev: true
- /v8flags@3.2.0:
- resolution: {integrity: sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==}
- engines: {node: '>= 0.10'}
- dependencies:
- homedir-polyfill: 1.0.3
- dev: false
-
/validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
dependencies:
spdx-correct: 3.2.0
spdx-expression-parse: 3.0.1
+ dev: true
/validate-npm-package-name@5.0.0:
resolution: {integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==}
@@ -13199,11 +10231,6 @@ packages:
builtins: 5.0.1
dev: true
- /value-or-function@3.0.0:
- resolution: {integrity: sha512-jdBB2FrWvQC/pnPtIqcLsMaQgjhdb6B7tk1MMyTKapox+tQZbdRP4uLxu/JY0t7fbfDCUMnuelzEYv5GsxHhdg==}
- engines: {node: '>= 0.10'}
- dev: false
-
/vary@1.1.2:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
@@ -13220,69 +10247,6 @@ packages:
dev: true
optional: true
- /vinyl-fs@3.0.3:
- resolution: {integrity: sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==}
- engines: {node: '>= 0.10'}
- dependencies:
- fs-mkdirp-stream: 1.0.0
- glob-stream: 6.1.0
- graceful-fs: 4.2.11
- is-valid-glob: 1.0.0
- lazystream: 1.0.1
- lead: 1.0.0
- object.assign: 4.1.4
- pumpify: 1.5.1
- readable-stream: 2.3.8
- remove-bom-buffer: 3.0.0
- remove-bom-stream: 1.2.0
- resolve-options: 1.1.0
- through2: 2.0.5
- to-through: 2.0.0
- value-or-function: 3.0.0
- vinyl: 2.2.1
- vinyl-sourcemap: 1.1.0
- dev: false
-
- /vinyl-sourcemap@1.1.0:
- resolution: {integrity: sha512-NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA==}
- engines: {node: '>= 0.10'}
- dependencies:
- append-buffer: 1.0.2
- convert-source-map: 1.9.0
- graceful-fs: 4.2.11
- normalize-path: 2.1.1
- now-and-later: 2.0.1
- remove-bom-buffer: 3.0.0
- vinyl: 2.2.1
- dev: false
-
- /vinyl-sourcemaps-apply@0.2.1:
- resolution: {integrity: sha512-+oDh3KYZBoZC8hfocrbrxbLUeaYtQK7J5WU5Br9VqWqmCll3tFJqKp97GC9GmMsVIL0qnx2DgEDVxdo5EZ5sSw==}
- dependencies:
- source-map: 0.5.7
- dev: false
-
- /vinyl@0.5.3:
- resolution: {integrity: sha512-P5zdf3WB9uzr7IFoVQ2wZTmUwHL8cMZWJGzLBNCHNZ3NB6HTMsYABtt7z8tAGIINLXyAob9B9a1yzVGMFOYKEA==}
- engines: {node: '>= 0.9'}
- dependencies:
- clone: 1.0.4
- clone-stats: 0.0.1
- replace-ext: 0.0.1
- dev: false
-
- /vinyl@2.2.1:
- resolution: {integrity: sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==}
- engines: {node: '>= 0.10'}
- dependencies:
- clone: 2.1.2
- clone-buffer: 1.0.0
- clone-stats: 1.0.0
- cloneable-readable: 1.1.3
- remove-trailing-separator: 1.1.0
- replace-ext: 1.0.1
- dev: false
-
/vite@4.5.0(@types/node@18.16.0)(less@4.2.0)(sass@1.69.5)(terser@5.24.0):
resolution: {integrity: sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==}
engines: {node: ^14.18.0 || >=16.0.0}
@@ -13358,10 +10322,7 @@ packages:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
dependencies:
defaults: 1.0.4
-
- /webidl-conversions@3.0.1:
- resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
- dev: false
+ dev: true
/webpack-dev-middleware@5.3.3(webpack@5.89.0):
resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==}
@@ -13527,13 +10488,6 @@ packages:
engines: {node: '>=0.8.0'}
dev: true
- /whatwg-url@5.0.0:
- resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
- dependencies:
- tr46: 0.0.3
- webidl-conversions: 3.0.1
- dev: false
-
/which-boxed-primitive@1.0.2:
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
dependencies:
@@ -13544,10 +10498,6 @@ packages:
is-symbol: 1.0.4
dev: true
- /which-module@1.0.0:
- resolution: {integrity: sha512-F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ==}
- dev: false
-
/which-typed-array@1.1.13:
resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==}
engines: {node: '>= 0.4'}
@@ -13559,13 +10509,6 @@ packages:
has-tostringtag: 1.0.0
dev: true
- /which@1.3.1:
- resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
- hasBin: true
- dependencies:
- isexe: 2.0.0
- dev: false
-
/which@2.0.2:
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
engines: {node: '>= 8'}
@@ -13585,14 +10528,6 @@ packages:
resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==}
dev: true
- /wrap-ansi@2.1.0:
- resolution: {integrity: sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==}
- engines: {node: '>=0.10.0'}
- dependencies:
- string-width: 1.0.2
- strip-ansi: 3.0.1
- dev: false
-
/wrap-ansi@6.2.0:
resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
engines: {node: '>=8'}
@@ -13600,6 +10535,7 @@ packages:
ansi-styles: 4.3.0
string-width: 4.2.3
strip-ansi: 6.0.1
+ dev: true
/wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
@@ -13620,11 +10556,6 @@ packages:
/wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
- /wrench-sui@0.0.3:
- resolution: {integrity: sha512-Y6qzMpcMG9akKnIdUsKzEF/Ht0KQJBP8ETkZj3FcGe93NC71e940WZUP1y+j+hc8Ecx9TyX0GvAWC4yymA88yA==}
- engines: {node: '>=0.1.97'}
- dev: false
-
/ws@8.11.0:
resolution: {integrity: sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==}
engines: {node: '>=10.0.0'}
@@ -13662,15 +10593,6 @@ packages:
engines: {node: '>=0.4.0'}
dev: true
- /xtend@4.0.2:
- resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
- engines: {node: '>=0.4'}
- dev: false
-
- /y18n@3.2.2:
- resolution: {integrity: sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==}
- dev: false
-
/y18n@5.0.8:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
@@ -13688,14 +10610,6 @@ packages:
engines: {node: '>= 14'}
dev: true
- /yamljs@0.3.0:
- resolution: {integrity: sha512-C/FsVVhht4iPQYXOInoxUM/1ELSf9EsgKH34FofQOp6hwCPrW4vG4w5++TED3xRUo8gD7l0P1J1dLlDYzODsTQ==}
- hasBin: true
- dependencies:
- argparse: 1.0.10
- glob: 7.2.3
- dev: false
-
/yargs-parser@20.2.9:
resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
engines: {node: '>=10'}
@@ -13704,13 +10618,7 @@ packages:
/yargs-parser@21.1.1:
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
engines: {node: '>=12'}
-
- /yargs-parser@5.0.1:
- resolution: {integrity: sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==}
- dependencies:
- camelcase: 3.0.0
- object.assign: 4.1.4
- dev: false
+ dev: true
/yargs@17.1.1:
resolution: {integrity: sha512-c2k48R0PwKIqKhPMWjeiF6y2xY/gPMUlro0sgxqXpbOIohWiLNXWslsootttv7E1e73QPAMQSg5FeySbVcpsPQ==}
@@ -13738,33 +10646,17 @@ packages:
yargs-parser: 21.1.1
dev: true
- /yargs@7.1.2:
- resolution: {integrity: sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==}
- dependencies:
- camelcase: 3.0.0
- cliui: 3.2.0
- decamelize: 1.2.0
- get-caller-file: 1.0.3
- 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.2
- yargs-parser: 5.0.1
- dev: false
-
/yauzl@2.10.0:
resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
dependencies:
buffer-crc32: 0.2.13
fd-slicer: 1.1.0
+ dev: true
/yocto-queue@0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
+ dev: true
/yocto-queue@1.0.0:
resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
diff --git a/semantic.json b/semantic.json
deleted file mode 100644
index 7517bad..0000000
--- a/semantic.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "base": "src/assets/semantic",
- "paths": {
- "source": {
- "config": "src/theme.config",
- "definitions": "src/definitions/",
- "site": "src/site/",
- "themes": "src/themes/"
- },
- "output": {
- "packaged": "dist/",
- "uncompressed": "dist/components/",
- "compressed": "dist/components/",
- "themes": "dist/themes/"
- },
- "clean": "dist/"
- },
- "permission": false,
- "autoInstall": false,
- "rtl": false,
- "components": ["reset", "site", "button", "container", "divider", "emoji", "flag", "header", "icon", "image", "input", "label", "list", "loader", "rail", "reveal", "segment", "step", "breadcrumb", "form", "grid", "menu", "message", "table", "ad", "card", "comment", "feed", "item", "statistic", "accordion", "calendar", "checkbox", "dimmer", "dropdown", "embed", "modal", "nag", "placeholder", "popup", "progress", "slider", "rating", "search", "shape", "sidebar", "sticky", "tab", "text", "toast", "transition", "api", "form", "state", "visibility"],
- "version": "2.8.3"
-}
\ No newline at end of file
diff --git a/src-angular/app/app.component.ts b/src-angular/app/app.component.ts
index dd5b534..9c4100a 100644
--- a/src-angular/app/app.component.ts
+++ b/src-angular/app/app.component.ts
@@ -11,7 +11,7 @@ export class AppComponent {
settingsLoaded = false
- constructor(private settingsService: SettingsService) {
+ constructor(settingsService: SettingsService) {
// Ensure settings are loaded before rendering the application
settingsService.loadSettings().then(() => this.settingsLoaded = true)
}
diff --git a/src-angular/app/components/browse/browse.component.ts b/src-angular/app/components/browse/browse.component.ts
index 1cee053..06f1ed9 100644
--- a/src-angular/app/components/browse/browse.component.ts
+++ b/src-angular/app/components/browse/browse.component.ts
@@ -1,6 +1,7 @@
-import { AfterViewInit, Component, ViewChild } from '@angular/core'
+import { Component, ViewChild } from '@angular/core'
+
+import { SearchService } from 'src-angular/app/core/services/search.service'
-import { SearchService } from 'src/app/core/services/search.service'
import { ChartSidebarComponent } from './chart-sidebar/chart-sidebar.component'
import { ResultTableComponent } from './result-table/result-table.component'
import { StatusBarComponent } from './status-bar/status-bar.component'
@@ -10,7 +11,7 @@ import { StatusBarComponent } from './status-bar/status-bar.component'
templateUrl: './browse.component.html',
styleUrls: ['./browse.component.scss'],
})
-export class BrowseComponent implements AfterViewInit {
+export class BrowseComponent {
@ViewChild('resultTable', { static: true }) resultTable: ResultTableComponent
@ViewChild('chartSidebar', { static: true }) chartSidebar: ChartSidebarComponent
@@ -18,18 +19,19 @@ export class BrowseComponent implements AfterViewInit {
constructor(private searchService: SearchService) { }
- ngAfterViewInit() {
- const $tableColumn = $('#table-column')
- $tableColumn.on('scroll', () => {
- const pos = $tableColumn[0].scrollTop + $tableColumn[0].offsetHeight
- const max = $tableColumn[0].scrollHeight
- if (pos >= max - 5) {
- this.searchService.updateScroll()
- }
- })
+ // TODO
+ // ngAfterViewInit() {
+ // const $tableColumn = $('#table-column')
+ // $tableColumn.on('scroll', () => {
+ // const pos = $tableColumn[0].scrollTop + $tableColumn[0].offsetHeight
+ // const max = $tableColumn[0].scrollHeight
+ // if (pos >= max - 5) {
+ // this.searchService.updateScroll()
+ // }
+ // })
- this.searchService.onNewSearch(() => {
- $tableColumn.scrollTop(0)
- })
- }
+ // this.searchService.onNewSearch(() => {
+ // $tableColumn.scrollTop(0)
+ // })
+ // }
}
diff --git a/src-angular/app/components/browse/chart-sidebar/chart-sidebar.component.html b/src-angular/app/components/browse/chart-sidebar/chart-sidebar.component.html
index 27831bb..23d9459 100644
--- a/src-angular/app/components/browse/chart-sidebar/chart-sidebar.component.html
+++ b/src-angular/app/components/browse/chart-sidebar/chart-sidebar.component.html
@@ -11,9 +11,9 @@
-
Album: {{ selectedVersion.album }} ({{ selectedVersion.year }})
-
Year: {{ selectedVersion.year }}
-
Genre: {{ selectedVersion.genre }}
+
Album: {{ selectedVersion.album }} ({{ selectedVersion.year }})
+
Year: {{ selectedVersion.year }}
+
Genre: {{ selectedVersion.genre }}
{{ charterPlural }} {{ selectedVersion.charters }}
diff --git a/src-angular/app/components/browse/chart-sidebar/chart-sidebar.component.ts b/src-angular/app/components/browse/chart-sidebar/chart-sidebar.component.ts
index 09cc1f2..a657863 100644
--- a/src-angular/app/components/browse/chart-sidebar/chart-sidebar.component.ts
+++ b/src-angular/app/components/browse/chart-sidebar/chart-sidebar.component.ts
@@ -1,14 +1,13 @@
import { Component, OnInit } from '@angular/core'
-import { DomSanitizer, SafeUrl } from '@angular/platform-browser'
+import { SafeUrl } from '@angular/platform-browser'
-import { SearchService } from 'src/app/core/services/search.service'
-import { SettingsService } from 'src/app/core/services/settings.service'
-import { groupBy } from 'src/electron/shared/UtilFunctions'
-import { SongResult } from '../../../../electron/shared/interfaces/search.interface'
-import { ChartedDifficulty, getInstrumentIcon, Instrument, VersionResult } from '../../../../electron/shared/interfaces/songDetails.interface'
-import { AlbumArtService } from '../../../core/services/album-art.service'
+import { SearchService } from 'src-angular/app/core/services/search.service'
+import { SettingsService } from 'src-angular/app/core/services/settings.service'
+
+import { SongResult } from '../../../../../src-shared/interfaces/search.interface'
+import { ChartedDifficulty, getInstrumentIcon, Instrument, VersionResult } from '../../../../../src-shared/interfaces/songDetails.interface'
+import { groupBy } from '../../../../../src-shared/UtilFunctions'
import { DownloadService } from '../../../core/services/download.service'
-import { ElectronService } from '../../../core/services/electron.service'
interface Difficulty {
instrument: string
@@ -23,7 +22,7 @@ interface Difficulty {
})
export class ChartSidebarComponent implements OnInit {
- songResult: SongResult
+ songResult: SongResult | undefined
selectedVersion: VersionResult
charts: VersionResult[][]
@@ -34,11 +33,8 @@ export class ChartSidebarComponent implements OnInit {
downloadButtonText: string
constructor(
- private electronService: ElectronService,
- private albumArtService: AlbumArtService,
private downloadService: DownloadService,
private searchService: SearchService,
- private sanitizer: DomSanitizer,
public settingsService: SettingsService
) { }
@@ -53,16 +49,13 @@ export class ChartSidebarComponent implements OnInit {
* Displays the information for the selected song.
*/
async onRowClicked(result: SongResult) {
- if (this.songResult == undefined || result.id != this.songResult.id) { // Clicking the same row again will not reload
+ if (this.songResult === undefined || result.id !== this.songResult.id) { // Clicking the same row again will not reload
this.songResult = result
- const albumArt = this.albumArtService.getImage(result.id)
- const results = await this.electronService.invoke('song-details', result.id)
+ const results = await window.electron.invoke.getSongDetails(result.id)
this.charts = groupBy(results, 'chartID').sort((v1, v2) => v1[0].chartName.length - v2[0].chartName.length)
this.sortCharts()
await this.selectChart(this.charts[0][0].chartID)
this.initChartDropdown()
-
- this.updateAlbumArtSrc(await albumArt)
}
}
@@ -79,37 +72,27 @@ export class ChartSidebarComponent implements OnInit {
}
}
- /**
- * Updates the sidebar to display the album art.
- */
- updateAlbumArtSrc(albumArtBase64String?: string) {
- if (albumArtBase64String) {
- this.albumArtSrc = this.sanitizer.bypassSecurityTrustUrl('data:image/jpg;base64,' + albumArtBase64String)
- } else {
- this.albumArtSrc = null
- }
- }
-
/**
* Initializes the chart dropdown from `this.charts` (or removes it if there's only one chart).
*/
private initChartDropdown() {
- const values = this.charts.map(chart => {
- const version = chart[0]
- return {
- value: version.chartID,
- text: version.chartName,
- name: `${version.chartName}
[${version.charters}]`,
- }
- })
- const $chartDropdown = $('#chartDropdown')
- $chartDropdown.dropdown('setup menu', { values })
- $chartDropdown.dropdown('setting', 'onChange', (chartID: number) => this.selectChart(chartID))
- $chartDropdown.dropdown('set selected', values[0].value)
+ // TODO
+ // const values = this.charts.map(chart => {
+ // const version = chart[0]
+ // return {
+ // value: version.chartID,
+ // text: version.chartName,
+ // name: `${version.chartName}
[${version.charters}]`,
+ // }
+ // })
+ // const $chartDropdown = $('#chartDropdown')
+ // $chartDropdown.dropdown('setup menu', { values })
+ // $chartDropdown.dropdown('setting', 'onChange', (chartID: number) => this.selectChart(chartID))
+ // $chartDropdown.dropdown('set selected', values[0].value)
}
private async selectChart(chartID: number) {
- const chart = this.charts.find(chart => chart[0].chartID == chartID)
+ const chart = this.charts.find(chart => chart[0].chartID === chartID)!
await this.selectVersion(chart[0])
this.initVersionDropdown()
}
@@ -117,11 +100,11 @@ export class ChartSidebarComponent implements OnInit {
/**
* Updates the sidebar to display the metadata for `selectedVersion`.
*/
- async selectVersion(selectedVersion: VersionResult) {
- this.selectedVersion = selectedVersion
+ async selectVersion(selectedVersion: VersionResult | undefined) {
+ this.selectedVersion = selectedVersion!
await new Promise
(resolve => setTimeout(() => resolve(), 0)) // Wait for *ngIf to update DOM
- if (this.selectedVersion != undefined) {
+ if (this.selectedVersion !== undefined) {
this.updateCharterPlural()
this.updateSongLength()
this.updateDifficultiesList()
@@ -133,7 +116,7 @@ export class ChartSidebarComponent implements OnInit {
* Chooses to display 'Charter:' or 'Charters:'.
*/
private updateCharterPlural() {
- this.charterPlural = this.selectedVersion.charterIDs.split('&').length == 1 ? 'Charter:' : 'Charters:'
+ this.charterPlural = this.selectedVersion.charterIDs.split('&').length === 1 ? 'Charter:' : 'Charters:'
}
/**
@@ -141,7 +124,7 @@ export class ChartSidebarComponent implements OnInit {
*/
private updateSongLength() {
let seconds = this.selectedVersion.songLength
- if (seconds < 60) { this.songLength = `${seconds} second${seconds == 1 ? '' : 's'}`; return }
+ if (seconds < 60) { this.songLength = `${seconds} second${seconds === 1 ? '' : 's'}`; return }
let minutes = Math.floor(seconds / 60)
let hours = 0
while (minutes > 59) {
@@ -149,7 +132,7 @@ export class ChartSidebarComponent implements OnInit {
minutes -= 60
}
seconds = Math.floor(seconds % 60)
- this.songLength = `${hours == 0 ? '' : hours + ':'}${minutes == 0 ? '' : minutes + ':'}${seconds < 10 ? '0' + seconds : seconds}`
+ this.songLength = `${hours === 0 ? '' : hours + ':'}${minutes === 0 ? '' : minutes + ':'}${seconds < 10 ? '0' + seconds : seconds}`
}
/**
@@ -159,7 +142,7 @@ export class ChartSidebarComponent implements OnInit {
const instruments = Object.keys(this.selectedVersion.chartData.noteCounts) as Instrument[]
this.difficultiesList = []
for (const instrument of instruments) {
- if (instrument != 'undefined') {
+ if (instrument !== 'undefined') {
this.difficultiesList.push({
instrument: getInstrumentIcon(instrument),
diffNumber: this.getDiffNumber(instrument),
@@ -173,8 +156,9 @@ export class ChartSidebarComponent implements OnInit {
* @returns a string describing the difficulty number in the selected version.
*/
private getDiffNumber(instrument: Instrument) {
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
const diffNumber: number = (this.selectedVersion as any)[`diff_${instrument}`]
- return diffNumber == -1 || diffNumber == undefined ? 'Unknown' : String(diffNumber)
+ return diffNumber === -1 || diffNumber === undefined ? 'Unknown' : String(diffNumber)
}
/**
@@ -182,7 +166,7 @@ export class ChartSidebarComponent implements OnInit {
*/
private getChartedDifficultiesText(instrument: Instrument) {
const difficulties = Object.keys(this.selectedVersion.chartData.noteCounts[instrument]) as ChartedDifficulty[]
- if (difficulties.length == 4) { return 'Full Difficulty' }
+ if (difficulties.length === 4) { return 'Full Difficulty' }
const difficultyNames = []
if (difficulties.includes('x')) { difficultyNames.push('Expert') }
if (difficulties.includes('h')) { difficultyNames.push('Hard') }
@@ -204,7 +188,7 @@ export class ChartSidebarComponent implements OnInit {
}
if (this.getSelectedChartVersions().length > 1) {
- if (this.selectedVersion.versionID == this.selectedVersion.latestVersionID) {
+ if (this.selectedVersion.versionID === this.selectedVersion.latestVersionID) {
this.downloadButtonText += ' (Latest)'
} else {
this.downloadButtonText += ` (${this.getLastModifiedText(this.selectedVersion.lastModified)})`
@@ -216,26 +200,27 @@ export class ChartSidebarComponent implements OnInit {
* Initializes the version dropdown from `this.selectedVersion` (or removes it if there's only one version).
*/
private initVersionDropdown() {
- const $versionDropdown = $('#versionDropdown')
- const versions = this.getSelectedChartVersions()
- const values = versions.map(version => ({
- value: version.versionID,
- text: 'Uploaded ' + this.getLastModifiedText(version.lastModified),
- name: 'Uploaded ' + this.getLastModifiedText(version.lastModified),
- }))
+ // TODO
+ // const $versionDropdown = $('#versionDropdown')
+ // const versions = this.getSelectedChartVersions()
+ // const values = versions.map(version => ({
+ // value: version.versionID,
+ // text: 'Uploaded ' + this.getLastModifiedText(version.lastModified),
+ // name: 'Uploaded ' + this.getLastModifiedText(version.lastModified),
+ // }))
- $versionDropdown.dropdown('setup menu', { values })
- $versionDropdown.dropdown('setting', 'onChange', (versionID: number) => {
- this.selectVersion(versions.find(version => version.versionID == versionID))
- })
- $versionDropdown.dropdown('set selected', values[0].value)
+ // $versionDropdown.dropdown('setup menu', { values })
+ // $versionDropdown.dropdown('setting', 'onChange', (versionID: number) => {
+ // this.selectVersion(versions.find(version => version.versionID === versionID))
+ // })
+ // $versionDropdown.dropdown('set selected', values[0].value)
}
/**
* Returns the list of versions for the selected chart, sorted by `lastModified`.
*/
getSelectedChartVersions() {
- return this.charts.find(chart => chart[0].chartID == this.selectedVersion.chartID)
+ return this.charts.find(chart => chart[0].chartID === this.selectedVersion.chartID)!
}
/**
@@ -255,7 +240,7 @@ export class ChartSidebarComponent implements OnInit {
*/
onSourceLinkClicked() {
const source = this.selectedVersion.driveData.source
- this.electronService.sendIPC('open-url', source.proxyLink ?? `https://drive.google.com/drive/folders/${source.sourceDriveID}`)
+ window.electron.emit.openUrl(source.proxyLink ?? `https://drive.google.com/drive/folders/${source.sourceDriveID}`)
}
/**
@@ -263,14 +248,14 @@ export class ChartSidebarComponent implements OnInit {
*/
shownFolderButton() {
const driveData = this.selectedVersion.driveData
- return driveData.source.proxyLink || driveData.source.sourceDriveID != driveData.folderID
+ return driveData.source.proxyLink || driveData.source.sourceDriveID !== driveData.folderID
}
/**
* Opens the chart folder in the default browser.
*/
onFolderButtonClicked() {
- this.electronService.sendIPC('open-url', `https://drive.google.com/drive/folders/${this.selectedVersion.driveData.folderID}`)
+ window.electron.emit.openUrl(`https://drive.google.com/drive/folders/${this.selectedVersion.driveData.folderID}`)
}
/**
@@ -280,7 +265,7 @@ export class ChartSidebarComponent implements OnInit {
this.downloadService.addDownload(
this.selectedVersion.versionID, {
chartName: this.selectedVersion.chartName,
- artist: this.songResult.artist,
+ artist: this.songResult!.artist,
charter: this.selectedVersion.charters,
driveData: this.selectedVersion.driveData,
})
diff --git a/src-angular/app/components/browse/result-table/result-table-row/result-table-row.component.ts b/src-angular/app/components/browse/result-table/result-table-row/result-table-row.component.ts
index c6ae55d..a730b6b 100644
--- a/src-angular/app/components/browse/result-table/result-table-row/result-table-row.component.ts
+++ b/src-angular/app/components/browse/result-table/result-table-row/result-table-row.component.ts
@@ -1,6 +1,6 @@
import { AfterViewInit, Component, ElementRef, Input, ViewChild } from '@angular/core'
-import { SongResult } from '../../../../../electron/shared/interfaces/search.interface'
+import { SongResult } from '../../../../../../src-shared/interfaces/search.interface'
import { SelectionService } from '../../../../core/services/selection.service'
@Component({
@@ -22,19 +22,20 @@ export class ResultTableRowComponent implements AfterViewInit {
ngAfterViewInit() {
this.selectionService.onSelectionChanged(this.songID, isChecked => {
if (isChecked) {
- $(this.checkbox.nativeElement).checkbox('check')
+ // TODO
+ // $(this.checkbox.nativeElement).checkbox('check')
} else {
- $(this.checkbox.nativeElement).checkbox('uncheck')
+ // $(this.checkbox.nativeElement).checkbox('uncheck')
}
})
- $(this.checkbox.nativeElement).checkbox({
- onChecked: () => {
- this.selectionService.selectSong(this.songID)
- },
- onUnchecked: () => {
- this.selectionService.deselectSong(this.songID)
- },
- })
+ // $(this.checkbox.nativeElement).checkbox({
+ // onChecked: () => {
+ // this.selectionService.selectSong(this.songID)
+ // },
+ // onUnchecked: () => {
+ // this.selectionService.deselectSong(this.songID)
+ // },
+ // })
}
}
diff --git a/src-angular/app/components/browse/result-table/result-table.component.ts b/src-angular/app/components/browse/result-table/result-table.component.ts
index afc50fe..65bca13 100644
--- a/src-angular/app/components/browse/result-table/result-table.component.ts
+++ b/src-angular/app/components/browse/result-table/result-table.component.ts
@@ -1,9 +1,9 @@
import { Component, EventEmitter, OnInit, Output, QueryList, ViewChild, ViewChildren } from '@angular/core'
import Comparators from 'comparators'
+import { SettingsService } from 'src-angular/app/core/services/settings.service'
-import { SettingsService } from 'src/app/core/services/settings.service'
-import { SongResult } from '../../../../electron/shared/interfaces/search.interface'
+import { SongResult } from '../../../../../src-shared/interfaces/search.interface'
import { CheckboxDirective } from '../../../core/directives/checkbox.directive'
import { SearchService } from '../../../core/services/search.service'
import { SelectionService } from '../../../core/services/selection.service'
@@ -22,7 +22,7 @@ export class ResultTableComponent implements OnInit {
@ViewChildren('tableRow') tableRows: QueryList
results: SongResult[] = []
- activeRowID: number = null
+ activeRowID: number | null = null
sortDirection: 'ascending' | 'descending' = 'descending'
sortColumn: 'name' | 'artist' | 'album' | 'genre' | null = null
@@ -54,11 +54,11 @@ export class ResultTableComponent implements OnInit {
}
onColClicked(column: 'name' | 'artist' | 'album' | 'genre') {
- if (this.results.length == 0) { return }
- if (this.sortColumn != column) {
+ if (this.results.length === 0) { return }
+ if (this.sortColumn !== column) {
this.sortColumn = column
this.sortDirection = 'descending'
- } else if (this.sortDirection == 'descending') {
+ } else if (this.sortDirection === 'descending') {
this.sortDirection = 'ascending'
} else {
this.sortDirection = 'descending'
@@ -67,8 +67,8 @@ export class ResultTableComponent implements OnInit {
}
private updateSort() {
- if (this.sortColumn != null) {
- this.results.sort(Comparators.comparing(this.sortColumn, { reversed: this.sortDirection == 'ascending' }))
+ if (this.sortColumn !== null) {
+ this.results.sort(Comparators.comparing(this.sortColumn, { reversed: this.sortDirection === 'ascending' }))
}
}
diff --git a/src-angular/app/components/browse/search-bar/search-bar.component.ts b/src-angular/app/components/browse/search-bar/search-bar.component.ts
index 38c4079..f1118a3 100644
--- a/src-angular/app/components/browse/search-bar/search-bar.component.ts
+++ b/src-angular/app/components/browse/search-bar/search-bar.component.ts
@@ -1,7 +1,8 @@
import { AfterViewInit, Component, ElementRef, ViewChild } from '@angular/core'
-import { SearchService } from 'src/app/core/services/search.service'
-import { getDefaultSearch } from 'src/electron/shared/interfaces/search.interface'
+import { SearchService } from 'src-angular/app/core/services/search.service'
+
+import { getDefaultSearch } from '../../../../../src-shared/interfaces/search.interface'
@Component({
selector: 'app-search-bar',
@@ -23,22 +24,23 @@ export class SearchBarComponent implements AfterViewInit {
constructor(public searchService: SearchService) { }
ngAfterViewInit() {
- $(this.searchIcon.nativeElement).popup({
- onShow: () => this.isError, // Only show the popup if there is an error
- })
+ // TODO
+ // $(this.searchIcon.nativeElement).popup({
+ // onShow: () => this.isError, // Only show the popup if there is an error
+ // })
this.searchService.onSearchErrorStateUpdate(isError => {
this.isError = isError
})
- $(this.quantityDropdown.nativeElement).dropdown({
- onChange: (value: string) => {
- this.searchSettings.quantity = value as 'all' | 'any'
- },
- })
- $(this.similarityDropdown.nativeElement).dropdown({
- onChange: (value: string) => {
- this.searchSettings.similarity = value as 'similar' | 'exact'
- },
- })
+ // $(this.quantityDropdown.nativeElement).dropdown({
+ // onChange: (value: string) => {
+ // this.searchSettings.quantity = value as 'all' | 'any'
+ // },
+ // })
+ // $(this.similarityDropdown.nativeElement).dropdown({
+ // onChange: (value: string) => {
+ // this.searchSettings.similarity = value as 'similar' | 'exact'
+ // },
+ // })
}
onSearch(query: string) {
@@ -53,17 +55,18 @@ export class SearchBarComponent implements AfterViewInit {
if (!this.sliderInitialized) {
setTimeout(() => { // Initialization requires this element to not be collapsed
- $(this.diffSlider.nativeElement).slider({
- min: 0,
- max: 6,
- start: 0,
- end: 6,
- step: 1,
- onChange: (_length: number, min: number, max: number) => {
- this.searchSettings.minDiff = min
- this.searchSettings.maxDiff = max
- },
- })
+ // TODO
+ // $(this.diffSlider.nativeElement).slider({
+ // min: 0,
+ // max: 6,
+ // start: 0,
+ // end: 6,
+ // step: 1,
+ // onChange: (_length: number, min: number, max: number) => {
+ // this.searchSettings.minDiff = min
+ // this.searchSettings.maxDiff = max
+ // },
+ // })
}, 50)
this.sliderInitialized = true
}
diff --git a/src-angular/app/components/browse/status-bar/downloads-modal/downloads-modal.component.html b/src-angular/app/components/browse/status-bar/downloads-modal/downloads-modal.component.html
index 139a2b3..882f63a 100644
--- a/src-angular/app/components/browse/status-bar/downloads-modal/downloads-modal.component.html
+++ b/src-angular/app/components/browse/status-bar/downloads-modal/downloads-modal.component.html
@@ -9,7 +9,7 @@
{{ download.header }}
{{ download.description }}
- {{ download.description }}
+ {{ download.description }}
diff --git a/src-angular/app/components/browse/status-bar/downloads-modal/downloads-modal.component.ts b/src-angular/app/components/browse/status-bar/downloads-modal/downloads-modal.component.ts
index 5cdbe9c..b9f1d39 100644
--- a/src-angular/app/components/browse/status-bar/downloads-modal/downloads-modal.component.ts
+++ b/src-angular/app/components/browse/status-bar/downloads-modal/downloads-modal.component.ts
@@ -1,8 +1,7 @@
import { ChangeDetectorRef, Component } from '@angular/core'
-import { DownloadProgress } from '../../../../../electron/shared/interfaces/download.interface'
+import { DownloadProgress } from '../../../../../../src-shared/interfaces/download.interface'
import { DownloadService } from '../../../../core/services/download.service'
-import { ElectronService } from '../../../../core/services/electron.service'
@Component({
selector: 'app-downloads-modal',
@@ -13,16 +12,16 @@ export class DownloadsModalComponent {
downloads: DownloadProgress[] = []
- constructor(private electronService: ElectronService, private downloadService: DownloadService, ref: ChangeDetectorRef) {
- electronService.receiveIPC('queue-updated', order => {
+ constructor(private downloadService: DownloadService, ref: ChangeDetectorRef) {
+ window.electron.on.queueUpdated(order => {
this.downloads.sort((a, b) => order.indexOf(a.versionID) - order.indexOf(b.versionID))
})
downloadService.onDownloadUpdated(download => {
- const index = this.downloads.findIndex(thisDownload => thisDownload.versionID == download.versionID)
- if (download.type == 'cancel') {
- this.downloads = this.downloads.filter(thisDownload => thisDownload.versionID != download.versionID)
- } else if (index == -1) {
+ const index = this.downloads.findIndex(thisDownload => thisDownload.versionID === download.versionID)
+ if (download.type === 'cancel') {
+ this.downloads = this.downloads.filter(thisDownload => thisDownload.versionID !== download.versionID)
+ } else if (index === -1) {
this.downloads.push(download)
} else {
this.downloads[index] = download
@@ -50,7 +49,7 @@ export class DownloadsModalComponent {
}
}
- openFolder(filepath: string) {
- this.electronService.showFolder(filepath)
+ showFile(filepath: string) {
+ window.electron.emit.showFile(filepath)
}
}
diff --git a/src-angular/app/components/browse/status-bar/status-bar.component.ts b/src-angular/app/components/browse/status-bar/status-bar.component.ts
index 874d981..822446e 100644
--- a/src-angular/app/components/browse/status-bar/status-bar.component.ts
+++ b/src-angular/app/components/browse/status-bar/status-bar.component.ts
@@ -1,9 +1,8 @@
import { ChangeDetectorRef, Component } from '@angular/core'
-import { VersionResult } from '../../../../electron/shared/interfaces/songDetails.interface'
-import { groupBy } from '../../../../electron/shared/UtilFunctions'
+import { VersionResult } from '../../../../../src-shared/interfaces/songDetails.interface'
+import { groupBy } from '../../../../../src-shared/UtilFunctions'
import { DownloadService } from '../../../core/services/download.service'
-import { ElectronService } from '../../../core/services/electron.service'
import { SearchService } from '../../../core/services/search.service'
import { SelectionService } from '../../../core/services/selection.service'
@@ -23,7 +22,6 @@ export class StatusBarComponent {
chartGroups: VersionResult[][]
constructor(
- private electronService: ElectronService,
private downloadService: DownloadService,
private searchService: SearchService,
private selectionService: SelectionService,
@@ -53,25 +51,26 @@ export class StatusBarComponent {
}
showDownloads() {
- $('#downloadsModal').modal('show')
+ // TODO
+ // $('#downloadsModal').modal('show')
}
async downloadSelected() {
this.chartGroups = []
- this.batchResults = await this.electronService.invoke('batch-song-details', this.selectedResults.map(result => result.id))
+ this.batchResults = await window.electron.invoke.getBatchSongDetails(this.selectedResults.map(result => result.id))
const versionGroups = groupBy(this.batchResults, 'songID')
for (const versionGroup of versionGroups) {
- if (versionGroup.findIndex(version => version.chartID != versionGroup[0].chartID) != -1) {
+ if (versionGroup.findIndex(version => version.chartID !== versionGroup[0].chartID) !== -1) {
// Must have multiple charts of this song
- this.chartGroups.push(versionGroup.filter(version => version.versionID == version.latestVersionID))
+ this.chartGroups.push(versionGroup.filter(version => version.versionID === version.latestVersionID))
}
}
- if (this.chartGroups.length == 0) {
+ if (this.chartGroups.length === 0) {
for (const versions of versionGroups) {
this.searchService.sortChart(versions)
const downloadVersion = versions[0]
- const downloadSong = this.selectedResults.find(song => song.id == downloadVersion.songID)
+ const downloadSong = this.selectedResults.find(song => song.id === downloadVersion.songID)!
this.downloadService.addDownload(
downloadVersion.versionID, {
chartName: downloadVersion.chartName,
@@ -81,7 +80,8 @@ export class StatusBarComponent {
})
}
} else {
- $('#selectedModal').modal('show')
+ // TODO
+ // $('#selectedModal').modal('show')
// [download all charts for each song] [deselect these songs] [X]
}
}
@@ -91,7 +91,7 @@ export class StatusBarComponent {
for (const chart of songChartGroups) {
this.searchService.sortChart(chart)
const downloadVersion = chart[0]
- const downloadSong = this.selectedResults.find(song => song.id == downloadVersion.songID)
+ const downloadSong = this.selectedResults.find(song => song.id === downloadVersion.songID)!
this.downloadService.addDownload(
downloadVersion.versionID, {
chartName: downloadVersion.chartName,
diff --git a/src-angular/app/components/settings/settings.component.html b/src-angular/app/components/settings/settings.component.html
index 8060e18..c039ea4 100644
--- a/src-angular/app/components/settings/settings.component.html
+++ b/src-angular/app/components/settings/settings.component.html
@@ -15,13 +15,6 @@
-
-
- Current Cache Size:
-
{{ cacheSize }}
-
-
-
diff --git a/src-angular/app/components/settings/settings.component.ts b/src-angular/app/components/settings/settings.component.ts
index f4d9cef..5b2a087 100644
--- a/src-angular/app/components/settings/settings.component.ts
+++ b/src-angular/app/components/settings/settings.component.ts
@@ -1,8 +1,7 @@
import { AfterViewInit, ChangeDetectorRef, Component, ElementRef, OnInit, ViewChild } from '@angular/core'
-import { CheckboxDirective } from 'src/app/core/directives/checkbox.directive'
-import { ElectronService } from 'src/app/core/services/electron.service'
-import { SettingsService } from 'src/app/core/services/settings.service'
+import { CheckboxDirective } from 'src-angular/app/core/directives/checkbox.directive'
+import { SettingsService } from 'src-angular/app/core/services/settings.service'
@Component({
selector: 'app-settings',
@@ -13,8 +12,7 @@ export class SettingsComponent implements OnInit, AfterViewInit {
@ViewChild('themeDropdown', { static: true }) themeDropdown: ElementRef
@ViewChild(CheckboxDirective, { static: true }) videoCheckbox: CheckboxDirective
- cacheSize = 'Calculating...'
- updateAvailable = false
+ updateAvailable: boolean | null = false
loginClicked = false
downloadUpdateText = 'Update available'
retryUpdateText = 'Failed to check for update'
@@ -25,74 +23,66 @@ export class SettingsComponent implements OnInit, AfterViewInit {
constructor(
public settingsService: SettingsService,
- private electronService: ElectronService,
private ref: ChangeDetectorRef
) { }
async ngOnInit() {
- this.electronService.receiveIPC('update-available', result => {
- this.updateAvailable = result != null
+ window.electron.on.updateAvailable(result => {
+ this.updateAvailable = result !== null
this.updateRetrying = false
- if (this.updateAvailable) {
+ if (result !== null) {
this.downloadUpdateText = `Update available (${result.version})`
}
this.ref.detectChanges()
})
- this.electronService.receiveIPC('update-error', (err: Error) => {
+ window.electron.on.updateError(err => {
console.log(err)
this.updateAvailable = null
this.updateRetrying = false
- this.retryUpdateText = `Failed to check for update: ${err.message}`
+ this.retryUpdateText = `Failed to check for update: ${err}`
this.ref.detectChanges()
})
- this.electronService.invoke('get-current-version', undefined).then(version => {
+ window.electron.invoke.getCurrentVersion().then(version => {
this.currentVersion = `v${version}`
this.ref.detectChanges()
})
- this.electronService.invoke('get-update-available', undefined).then(isAvailable => {
+ window.electron.invoke.getUpdateAvailable().then(isAvailable => {
this.updateAvailable = isAvailable
this.ref.detectChanges()
})
-
- const cacheSize = await this.settingsService.getCacheSize()
- this.cacheSize = Math.round(cacheSize / 1000000) + ' MB'
}
ngAfterViewInit() {
- $(this.themeDropdown.nativeElement).dropdown({
- onChange: (_value: string, text: string) => {
- this.settingsService.theme = text
- },
- })
+ // TODO
+ // $(this.themeDropdown.nativeElement).dropdown({
+ // onChange: (_value: string, text: string) => {
+ // this.settingsService.theme = text
+ // },
+ // })
this.videoCheckbox.check(this.settingsService.downloadVideos)
}
- async clearCache() {
- this.cacheSize = 'Please wait...'
- await this.settingsService.clearCache()
- this.cacheSize = 'Cleared!'
- }
-
async downloadVideos(isChecked: boolean) {
this.settingsService.downloadVideos = isChecked
}
async getLibraryDirectory() {
- const result = await this.electronService.showOpenDialog({
+ const result = await window.electron.invoke.showOpenDialog({
title: 'Choose library folder',
- buttonLabel: 'This is where my charts are!',
defaultPath: this.settingsService.libraryDirectory || '',
properties: ['openDirectory'],
})
- if (result.canceled == false) {
+ if (result.canceled === false) {
this.settingsService.libraryDirectory = result.filePaths[0]
}
}
openLibraryDirectory() {
- this.electronService.openFolder(this.settingsService.libraryDirectory)
+ if (this.settingsService.libraryDirectory) {
+ window.electron.emit.showFolder(this.settingsService.libraryDirectory)
+ }
}
changeRateLimit(event: Event) {
@@ -102,16 +92,16 @@ export class SettingsComponent implements OnInit, AfterViewInit {
downloadUpdate() {
if (this.updateDownloaded) {
- this.electronService.sendIPC('quit-and-install', undefined)
+ window.electron.emit.quitAndInstall()
} else if (!this.updateDownloading) {
this.updateDownloading = true
- this.electronService.sendIPC('download-update', undefined)
+ window.electron.emit.downloadUpdate()
this.downloadUpdateText = 'Downloading... (0%)'
- this.electronService.receiveIPC('update-progress', result => {
+ window.electron.on.updateProgress(result => {
this.downloadUpdateText = `Downloading... (${result.percent.toFixed(0)}%)`
this.ref.detectChanges()
})
- this.electronService.receiveIPC('update-downloaded', () => {
+ window.electron.on.updateDownloaded(() => {
this.downloadUpdateText = 'Quit and install update'
this.updateDownloaded = true
this.ref.detectChanges()
@@ -120,21 +110,15 @@ export class SettingsComponent implements OnInit, AfterViewInit {
}
retryUpdate() {
- if (this.updateRetrying == false) {
+ if (this.updateRetrying === false) {
this.updateRetrying = true
this.retryUpdateText = 'Retrying...'
this.ref.detectChanges()
- this.electronService.sendIPC('retry-update', undefined)
+ window.electron.emit.retryUpdate()
}
}
toggleDevTools() {
- const toolsOpened = this.electronService.currentWindow.webContents.isDevToolsOpened()
-
- if (toolsOpened) {
- this.electronService.currentWindow.webContents.closeDevTools()
- } else {
- this.electronService.currentWindow.webContents.openDevTools()
- }
+ window.electron.emit.toggleDevTools()
}
}
diff --git a/src-angular/app/components/toolbar/toolbar.component.html b/src-angular/app/components/toolbar/toolbar.component.html
index 540a607..f6965d4 100644
--- a/src-angular/app/components/toolbar/toolbar.component.html
+++ b/src-angular/app/components/toolbar/toolbar.component.html
@@ -1,15 +1,15 @@
-")}),e[s.action]&&(!1===s.actionURL?r+='
'+i(e[s.action][s.actionText],n)+"
":r+='
'+i(e[s.action][s.actionText],n)+""),r)},standard:function(e,s,n){var r="",i=k.fn.search.settings.templates.escape;return e[s.results]!==E&&(k.each(e[s.results],function(e,t){t[s.url]?r+='
':r+='',t[s.image]!==E&&(r+=''),r+='',t[s.price]!==E&&(r+='
'+i(t[s.price],n)+"
"),t[s.title]!==E&&(r+='
'+i(t[s.title],n)+"
"),t[s.description]!==E&&(r+='
'+i(t[s.description],n)+"
"),r+="
",r+=""}),e[s.action]&&(!1===s.actionURL?r+='
'+i(e[s.action][s.actionText],n)+"
":r+='
'+i(e[s.action][s.actionText],n)+""),r)}}}}(jQuery,window,document);
\ No newline at end of file
diff --git a/src-angular/assets/semantic/dist/components/segment.css b/src-angular/assets/semantic/dist/components/segment.css
deleted file mode 100644
index c6a621c..0000000
--- a/src-angular/assets/semantic/dist/components/segment.css
+++ /dev/null
@@ -1,858 +0,0 @@
-/*!
- * # Fomantic-UI - Segment
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-
-/*******************************
- Segment
-*******************************/
-
-.ui.segment {
- position: relative;
- background: #FFFFFF;
- -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
- margin: 1rem 0;
- padding: 1em 1em;
- border-radius: 0.28571429rem;
- border: 1px solid rgba(34, 36, 38, 0.15);
-}
-.ui.segment:first-child {
- margin-top: 0;
-}
-.ui.segment:last-child {
- margin-bottom: 0;
-}
-
-/* Vertical */
-.ui.vertical.segment {
- margin: 0;
- padding-left: 0;
- padding-right: 0;
- background: none transparent;
- border-radius: 0;
- -webkit-box-shadow: none;
- box-shadow: none;
- border: none;
- border-bottom: 1px solid rgba(34, 36, 38, 0.15);
-}
-.ui.vertical.segment:last-child {
- border-bottom: none;
-}
-
-/*-------------------
- Loose Coupling
---------------------*/
-
-
-/* Header */
-.ui.inverted.segment > .ui.header > .sub.header,
-.ui.inverted.segment > .ui.header {
- color: #FFFFFF;
-}
-
-/* Label */
-.ui[class*="bottom attached"].segment > [class*="top attached"].label {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
-}
-.ui[class*="top attached"].segment > [class*="bottom attached"].label {
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
-}
-.ui.attached.segment:not(.top):not(.bottom) > [class*="top attached"].label {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
-}
-.ui.attached.segment:not(.top):not(.bottom) > [class*="bottom attached"].label {
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
-}
-
-/* Grid */
-.ui.page.grid.segment,
-.ui.grid > .row > .ui.segment.column,
-.ui.grid > .ui.segment.column {
- padding-top: 2em;
- padding-bottom: 2em;
-}
-.ui.grid.segment {
- margin: 1rem 0;
- border-radius: 0.28571429rem;
-}
-
-/* Table */
-.ui.basic.table.segment {
- background: #FFFFFF;
- border: 1px solid rgba(34, 36, 38, 0.15);
- -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
-}
-.ui[class*="very basic"].table.segment {
- padding: 1em 1em;
-}
-
-/* Tab */
-.ui.segment.tab:last-child {
- margin-bottom: 1rem;
-}
-
-
-/*******************************
- Types
-*******************************/
-
-
-/*-------------------
- Placeholder
- --------------------*/
-
-.ui.placeholder.segment {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- -webkit-box-align: stretch;
- -ms-flex-align: stretch;
- align-items: stretch;
- max-width: initial;
- -webkit-animation: none;
- animation: none;
- overflow: visible;
- padding: 1em 1em;
- min-height: 18rem;
- background: #F9FAFB;
- border-color: rgba(34, 36, 38, 0.15);
- -webkit-box-shadow: 0 2px 25px 0 rgba(34, 36, 38, 0.05) inset;
- box-shadow: 0 2px 25px 0 rgba(34, 36, 38, 0.05) inset;
-}
-.ui.placeholder.segment .button,
-.ui.placeholder.segment textarea {
- display: block;
-}
-.ui.placeholder.segment .field,
-.ui.placeholder.segment textarea,
-.ui.placeholder.segment > .ui.input,
-.ui.placeholder.segment .button {
- max-width: 15rem;
- margin-left: auto;
- margin-right: auto;
-}
-.ui.placeholder.segment .column .button,
-.ui.placeholder.segment .column .field,
-.ui.placeholder.segment .column textarea,
-.ui.placeholder.segment .column > .ui.input {
- max-width: 15rem;
- margin-left: auto;
- margin-right: auto;
-}
-.ui.placeholder.segment > .inline {
- -ms-flex-item-align: center;
- align-self: center;
-}
-.ui.placeholder.segment > .inline > .button {
- display: inline-block;
- width: auto;
- margin: 0 0.35714286rem 0 0;
-}
-.ui.placeholder.segment > .inline > .button:last-child {
- margin-right: 0;
-}
-
-/*-------------------
- Piled
- --------------------*/
-
-.ui.piled.segments,
-.ui.piled.segment {
- margin: 3em 0;
- -webkit-box-shadow: '';
- box-shadow: '';
- z-index: auto;
-}
-.ui.piled.segment:first-child {
- margin-top: 0;
-}
-.ui.piled.segment:last-child {
- margin-bottom: 0;
-}
-.ui.piled.segments:after,
-.ui.piled.segments:before,
-.ui.piled.segment:after,
-.ui.piled.segment:before {
- background-color: #FFFFFF;
- visibility: visible;
- content: '';
- display: block;
- height: 100%;
- left: 0;
- position: absolute;
- width: 100%;
- border: 1px solid rgba(34, 36, 38, 0.15);
- -webkit-box-shadow: '';
- box-shadow: '';
-}
-.ui.piled.segments:before,
-.ui.piled.segment:before {
- -webkit-transform: rotate(-1.2deg);
- transform: rotate(-1.2deg);
- top: 0;
- z-index: -2;
-}
-.ui.piled.segments:after,
-.ui.piled.segment:after {
- -webkit-transform: rotate(1.2deg);
- transform: rotate(1.2deg);
- top: 0;
- z-index: -1;
-}
-
-/* Piled Attached */
-.ui[class*="top attached"].piled.segment {
- margin-top: 3em;
- margin-bottom: 0;
-}
-.ui.piled.segment[class*="top attached"]:first-child {
- margin-top: 0;
-}
-.ui.piled.segment[class*="bottom attached"] {
- margin-top: 0;
- margin-bottom: 3em;
-}
-.ui.piled.segment[class*="bottom attached"]:last-child {
- margin-bottom: 0;
-}
-
-/*-------------------
- Stacked
- --------------------*/
-
-.ui.stacked.segment {
- padding-bottom: 1.4em;
-}
-.ui.stacked.segments:before,
-.ui.stacked.segments:after,
-.ui.stacked.segment:before,
-.ui.stacked.segment:after {
- content: '';
- position: absolute;
- bottom: -3px;
- left: 0;
- border-top: 1px solid rgba(34, 36, 38, 0.15);
- background: rgba(0, 0, 0, 0.03);
- width: 100%;
- height: 6px;
- visibility: visible;
-}
-.ui.stacked.segments:before,
-.ui.stacked.segment:before {
- display: none;
-}
-
-/* Add additional page */
-.ui.tall.stacked.segments:before,
-.ui.tall.stacked.segment:before {
- display: block;
- bottom: 0;
-}
-
-/* Inverted */
-.ui.stacked.inverted.segments:before,
-.ui.stacked.inverted.segments:after,
-.ui.stacked.inverted.segment:before,
-.ui.stacked.inverted.segment:after {
- background-color: rgba(0, 0, 0, 0.03);
- border-top: 1px solid rgba(34, 36, 38, 0.35);
-}
-
-/*-------------------
- Padded
- --------------------*/
-
-.ui.padded.segment {
- padding: 1.5em;
-}
-.ui[class*="very padded"].segment {
- padding: 3em;
-}
-
-/* Padded vertical */
-.ui.padded.segment.vertical.segment,
-.ui[class*="very padded"].vertical.segment {
- padding-left: 0;
- padding-right: 0;
-}
-
-/*-------------------
- Compact
- --------------------*/
-
-.ui.compact.segment {
- display: table;
-}
-
-/* Compact Group */
-.ui.compact.segments {
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
-}
-.ui.compact.segments .segment,
-.ui.segments .compact.segment {
- display: block;
- -webkit-box-flex: 0;
- -ms-flex: 0 1 auto;
- flex: 0 1 auto;
-}
-
-/*-------------------
- Circular
- --------------------*/
-
-.ui.circular.segment {
- display: table-cell;
- padding: 2em;
- text-align: center;
- vertical-align: middle;
- border-radius: 500em;
-}
-
-/*-------------------
- Raised
- --------------------*/
-
-.ui.raised.raised.segments,
-.ui.raised.raised.segment {
- -webkit-box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-
-/*******************************
- Groups
- *******************************/
-
-
-/* Group */
-.ui.segments {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- position: relative;
- margin: 1rem 0;
- border: 1px solid rgba(34, 36, 38, 0.15);
- -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
- border-radius: 0.28571429rem;
-}
-.ui.segments:first-child {
- margin-top: 0;
-}
-.ui.segments:last-child {
- margin-bottom: 0;
-}
-
-/* Nested Segment */
-.ui.segments > .segment {
- top: 0;
- bottom: 0;
- border-radius: 0;
- margin: 0;
- width: auto;
- -webkit-box-shadow: none;
- box-shadow: none;
- border: none;
- border-top: 1px solid rgba(34, 36, 38, 0.15);
-}
-.ui.segments:not(.horizontal) > .segment:first-child {
- top: 0;
- bottom: 0;
- border-top: none;
- margin-top: 0;
- margin-bottom: 0;
- border-radius: 0.28571429rem 0.28571429rem 0 0;
-}
-
-/* Bottom */
-.ui.segments:not(.horizontal) > .segment:last-child {
- top: 0;
- bottom: 0;
- margin-top: 0;
- margin-bottom: 0;
- -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), none;
- box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), none;
- border-radius: 0 0 0.28571429rem 0.28571429rem;
-}
-
-/* Only */
-.ui.segments:not(.horizontal) > .segment:only-child {
- border-radius: 0.28571429rem;
-}
-
-/* Nested Group */
-.ui.segments > .ui.segments {
- border-top: 1px solid rgba(34, 36, 38, 0.15);
- margin: 1rem 1rem;
-}
-.ui.segments > .segments:first-child {
- border-top: none;
-}
-.ui.segments > .segment + .segments:not(.horizontal) {
- margin-top: 0;
-}
-
-/* Horizontal Group */
-.ui.horizontal.segments {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -ms-flex-direction: row;
- flex-direction: row;
- background-color: transparent;
- padding: 0;
- -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
- margin: 1rem 0;
- border-radius: 0.28571429rem;
- border: 1px solid rgba(34, 36, 38, 0.15);
-}
-.ui.stackable.horizontal.segments {
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
-}
-
-/* Nested Horizontal Group */
-.ui.segments > .horizontal.segments {
- margin: 0;
- background-color: transparent;
- border-radius: 0;
- border: none;
- -webkit-box-shadow: none;
- box-shadow: none;
- border-top: 1px solid rgba(34, 36, 38, 0.15);
-}
-
-/* Horizontal Segment */
-.ui.horizontal.segments:not(.compact) > .segment:not(.compact) {
- -webkit-box-flex: 1;
- flex: 1 1 auto;
- -ms-flex: 1 1 0;
-
-/* Solves #2550 MS Flex */
-}
-.ui.horizontal.segments > .segment {
- margin: 0;
- min-width: 0;
- border-radius: 0;
- border: none;
- -webkit-box-shadow: none;
- box-shadow: none;
- border-left: 1px solid rgba(34, 36, 38, 0.15);
-}
-
-/* Border Fixes */
-.ui.segments > .horizontal.segments:first-child {
- border-top: none;
-}
-.ui.horizontal.segments:not(.stackable) > .segment:first-child {
- border-left: none;
-}
-
-
-/*******************************
- States
-*******************************/
-
-
-/*--------------
- Disabled
- ---------------*/
-
-.ui.disabled.segment {
- opacity: 0.45;
- color: rgba(40, 40, 40, 0.3);
-}
-
-/*--------------
- Loading
- ---------------*/
-
-.ui.loading.segment {
- position: relative;
- cursor: default;
- pointer-events: none;
- text-shadow: none !important;
- -webkit-transition: all 0s linear;
- transition: all 0s linear;
-}
-.ui.loading.segment:before {
- position: absolute;
- content: '';
- top: 0;
- left: 0;
- background: rgba(255, 255, 255, 0.8);
- width: 100%;
- height: 100%;
- border-radius: 0.28571429rem;
- z-index: 100;
-}
-.ui.loading.segment:after {
- position: absolute;
- content: '';
- top: 50%;
- left: 50%;
- margin: -1.5em 0 0 -1.5em;
- width: 3em;
- height: 3em;
- -webkit-animation: loader 0.6s infinite linear;
- animation: loader 0.6s infinite linear;
- border: 0.2em solid #767676;
- border-radius: 500rem;
- -webkit-box-shadow: 0 0 0 1px transparent;
- box-shadow: 0 0 0 1px transparent;
- visibility: visible;
- z-index: 101;
-}
-
-
-/*******************************
- Variations
-*******************************/
-
-
-/*-------------------
- Basic
- --------------------*/
-
-.ui.basic.segment,
-.ui.segments .ui.basic.segment,
-.ui.basic.segments {
- background: none transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
- border: none;
- border-radius: 0;
-}
-
-/*-------------------
- Clearing
- --------------------*/
-
-.ui.clearing.segment:after {
- content: "";
- display: block;
- clear: both;
-}
-
-/*-------------------
- Colors
---------------------*/
-
-.ui.red.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #DB2828;
-}
-.ui.inverted.red.segment.segment.segment.segment.segment {
- background-color: #DB2828;
- color: #FFFFFF;
-}
-.ui.orange.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #F2711C;
-}
-.ui.inverted.orange.segment.segment.segment.segment.segment {
- background-color: #F2711C;
- color: #FFFFFF;
-}
-.ui.yellow.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #FBBD08;
-}
-.ui.inverted.yellow.segment.segment.segment.segment.segment {
- background-color: #FBBD08;
- color: #FFFFFF;
-}
-.ui.olive.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #B5CC18;
-}
-.ui.inverted.olive.segment.segment.segment.segment.segment {
- background-color: #B5CC18;
- color: #FFFFFF;
-}
-.ui.green.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #21BA45;
-}
-.ui.inverted.green.segment.segment.segment.segment.segment {
- background-color: #21BA45;
- color: #FFFFFF;
-}
-.ui.teal.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #00B5AD;
-}
-.ui.inverted.teal.segment.segment.segment.segment.segment {
- background-color: #00B5AD;
- color: #FFFFFF;
-}
-.ui.blue.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #2185D0;
-}
-.ui.inverted.blue.segment.segment.segment.segment.segment {
- background-color: #2185D0;
- color: #FFFFFF;
-}
-.ui.violet.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #6435C9;
-}
-.ui.inverted.violet.segment.segment.segment.segment.segment {
- background-color: #6435C9;
- color: #FFFFFF;
-}
-.ui.purple.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #A333C8;
-}
-.ui.inverted.purple.segment.segment.segment.segment.segment {
- background-color: #A333C8;
- color: #FFFFFF;
-}
-.ui.pink.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #E03997;
-}
-.ui.inverted.pink.segment.segment.segment.segment.segment {
- background-color: #E03997;
- color: #FFFFFF;
-}
-.ui.brown.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #A5673F;
-}
-.ui.inverted.brown.segment.segment.segment.segment.segment {
- background-color: #A5673F;
- color: #FFFFFF;
-}
-.ui.grey.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #767676;
-}
-.ui.inverted.grey.segment.segment.segment.segment.segment {
- background-color: #767676;
- color: #FFFFFF;
-}
-.ui.black.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #1B1C1D;
-}
-.ui.inverted.black.segment.segment.segment.segment.segment {
- background-color: #1B1C1D;
- color: #FFFFFF;
-}
-
-/*-------------------
- Aligned
- --------------------*/
-
-.ui[class*="left aligned"].segment {
- text-align: left;
-}
-.ui[class*="right aligned"].segment {
- text-align: right;
-}
-.ui[class*="center aligned"].segment {
- text-align: center;
-}
-
-/*-------------------
- Floated
- --------------------*/
-
-.ui.floated.segment,
-.ui[class*="left floated"].segment {
- float: left;
- margin-right: 1em;
-}
-.ui[class*="right floated"].segment {
- float: right;
- margin-left: 1em;
-}
-
-/*-------------------
- Inverted
- --------------------*/
-
-.ui.inverted.segment {
- border: none;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-.ui.inverted.segment,
-.ui.primary.inverted.segment {
- background: #1B1C1D;
- color: rgba(255, 255, 255, 0.9);
-}
-
-/* Nested */
-.ui.inverted.segment .segment {
- color: rgba(0, 0, 0, 0.87);
-}
-.ui.inverted.segment .inverted.segment {
- color: rgba(255, 255, 255, 0.9);
-}
-
-/* Attached */
-.ui.inverted.attached.segment {
- border-color: #555555;
-}
-
-/* Loading */
-.ui.inverted.loading.segment {
- color: #FFFFFF;
-}
-.ui.inverted.loading.segment:before {
- background: rgba(0, 0, 0, 0.85);
-}
-
-/*-------------------
- Emphasis
---------------------*/
-
-
-/* Secondary */
-.ui.secondary.segment {
- background: #F3F4F5;
- color: rgba(0, 0, 0, 0.6);
-}
-.ui.secondary.inverted.segment {
- background: #4c4f52 -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0.2)), to(rgba(255, 255, 255, 0.2)));
- background: #4c4f52 -webkit-linear-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.2) 100%);
- background: #4c4f52 linear-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.2) 100%);
- color: rgba(255, 255, 255, 0.8);
-}
-
-/* Tertiary */
-.ui.tertiary.segment {
- background: #DCDDDE;
- color: rgba(0, 0, 0, 0.6);
-}
-.ui.tertiary.inverted.segment {
- background: #717579 -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0.35)), to(rgba(255, 255, 255, 0.35)));
- background: #717579 -webkit-linear-gradient(rgba(255, 255, 255, 0.35) 0, rgba(255, 255, 255, 0.35) 100%);
- background: #717579 linear-gradient(rgba(255, 255, 255, 0.35) 0, rgba(255, 255, 255, 0.35) 100%);
- color: rgba(255, 255, 255, 0.8);
-}
-
-/*-------------------
- Attached
- --------------------*/
-
-
-/* Middle */
-.ui.attached.segment {
- top: 0;
- bottom: 0;
- border-radius: 0;
- margin: 0 -1px;
- width: calc(100% + 2px);
- max-width: calc(100% + 2px);
- -webkit-box-shadow: none;
- box-shadow: none;
- border: 1px solid #D4D4D5;
-}
-.ui.attached:not(.message) + .ui.attached.segment:not(.top) {
- border-top: none;
-}
-
-/* Top */
-.ui[class*="top attached"].segment {
- bottom: 0;
- margin-bottom: 0;
- top: 0;
- margin-top: 1rem;
- border-radius: 0.28571429rem 0.28571429rem 0 0;
-}
-.ui.segment[class*="top attached"]:first-child {
- margin-top: 0;
-}
-
-/* Bottom */
-.ui.segment[class*="bottom attached"] {
- bottom: 0;
- margin-top: 0;
- top: 0;
- margin-bottom: 1rem;
- -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), none;
- box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), none;
- border-radius: 0 0 0.28571429rem 0.28571429rem;
-}
-.ui.segment[class*="bottom attached"]:last-child {
- margin-bottom: 1rem;
-}
-
-/*--------------
- Fitted
- ---------------*/
-
-.ui.fitted.segment:not(.horizontally) {
- padding-top: 0;
- padding-bottom: 0;
-}
-.ui.fitted.segment:not(.vertically) {
- padding-left: 0;
- padding-right: 0;
-}
-
-/*-------------------
- Size
---------------------*/
-
-.ui.segments .segment,
-.ui.segment {
- font-size: 1rem;
-}
-.ui.mini.segments .segment,
-.ui.mini.segment {
- font-size: 0.78571429rem;
-}
-.ui.tiny.segments .segment,
-.ui.tiny.segment {
- font-size: 0.85714286rem;
-}
-.ui.small.segments .segment,
-.ui.small.segment {
- font-size: 0.92857143rem;
-}
-.ui.large.segments .segment,
-.ui.large.segment {
- font-size: 1.14285714rem;
-}
-.ui.big.segments .segment,
-.ui.big.segment {
- font-size: 1.28571429rem;
-}
-.ui.huge.segments .segment,
-.ui.huge.segment {
- font-size: 1.42857143rem;
-}
-.ui.massive.segments .segment,
-.ui.massive.segment {
- font-size: 1.71428571rem;
-}
-
-
-/*******************************
- Theme Overrides
-*******************************/
-
-
-
-/*******************************
- Site Overrides
-*******************************/
-
diff --git a/src-angular/assets/semantic/dist/components/segment.min.css b/src-angular/assets/semantic/dist/components/segment.min.css
deleted file mode 100644
index 7f0a1f3..0000000
--- a/src-angular/assets/semantic/dist/components/segment.min.css
+++ /dev/null
@@ -1,9 +0,0 @@
-/*!
- * # Fomantic-UI - Segment
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */.ui.segment{position:relative;background:#fff;-webkit-box-shadow:0 1px 2px 0 rgba(34,36,38,.15);box-shadow:0 1px 2px 0 rgba(34,36,38,.15);margin:1rem 0;padding:1em 1em;border-radius:.28571429rem;border:1px solid rgba(34,36,38,.15)}.ui.segment:first-child{margin-top:0}.ui.segment:last-child{margin-bottom:0}.ui.vertical.segment{margin:0;padding-left:0;padding-right:0;background:none transparent;border-radius:0;-webkit-box-shadow:none;box-shadow:none;border:none;border-bottom:1px solid rgba(34,36,38,.15)}.ui.vertical.segment:last-child{border-bottom:none}.ui.inverted.segment>.ui.header,.ui.inverted.segment>.ui.header>.sub.header{color:#fff}.ui[class*="bottom attached"].segment>[class*="top attached"].label{border-top-left-radius:0;border-top-right-radius:0}.ui[class*="top attached"].segment>[class*="bottom attached"].label{border-bottom-left-radius:0;border-bottom-right-radius:0}.ui.attached.segment:not(.top):not(.bottom)>[class*="top attached"].label{border-top-left-radius:0;border-top-right-radius:0}.ui.attached.segment:not(.top):not(.bottom)>[class*="bottom attached"].label{border-bottom-left-radius:0;border-bottom-right-radius:0}.ui.grid>.row>.ui.segment.column,.ui.grid>.ui.segment.column,.ui.page.grid.segment{padding-top:2em;padding-bottom:2em}.ui.grid.segment{margin:1rem 0;border-radius:.28571429rem}.ui.basic.table.segment{background:#fff;border:1px solid rgba(34,36,38,.15);-webkit-box-shadow:0 1px 2px 0 rgba(34,36,38,.15);box-shadow:0 1px 2px 0 rgba(34,36,38,.15)}.ui[class*="very basic"].table.segment{padding:1em 1em}.ui.segment.tab:last-child{margin-bottom:1rem}.ui.placeholder.segment{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;max-width:initial;-webkit-animation:none;animation:none;overflow:visible;padding:1em 1em;min-height:18rem;background:#f9fafb;border-color:rgba(34,36,38,.15);-webkit-box-shadow:0 2px 25px 0 rgba(34,36,38,.05) inset;box-shadow:0 2px 25px 0 rgba(34,36,38,.05) inset}.ui.placeholder.segment .button,.ui.placeholder.segment textarea{display:block}.ui.placeholder.segment .button,.ui.placeholder.segment .field,.ui.placeholder.segment textarea,.ui.placeholder.segment>.ui.input{max-width:15rem;margin-left:auto;margin-right:auto}.ui.placeholder.segment .column .button,.ui.placeholder.segment .column .field,.ui.placeholder.segment .column textarea,.ui.placeholder.segment .column>.ui.input{max-width:15rem;margin-left:auto;margin-right:auto}.ui.placeholder.segment>.inline{-ms-flex-item-align:center;align-self:center}.ui.placeholder.segment>.inline>.button{display:inline-block;width:auto;margin:0 .35714286rem 0 0}.ui.placeholder.segment>.inline>.button:last-child{margin-right:0}.ui.piled.segment,.ui.piled.segments{margin:3em 0;-webkit-box-shadow:'';box-shadow:'';z-index:auto}.ui.piled.segment:first-child{margin-top:0}.ui.piled.segment:last-child{margin-bottom:0}.ui.piled.segment:after,.ui.piled.segment:before,.ui.piled.segments:after,.ui.piled.segments:before{background-color:#fff;visibility:visible;content:'';display:block;height:100%;left:0;position:absolute;width:100%;border:1px solid rgba(34,36,38,.15);-webkit-box-shadow:'';box-shadow:''}.ui.piled.segment:before,.ui.piled.segments:before{-webkit-transform:rotate(-1.2deg);transform:rotate(-1.2deg);top:0;z-index:-2}.ui.piled.segment:after,.ui.piled.segments:after{-webkit-transform:rotate(1.2deg);transform:rotate(1.2deg);top:0;z-index:-1}.ui[class*="top attached"].piled.segment{margin-top:3em;margin-bottom:0}.ui.piled.segment[class*="top attached"]:first-child{margin-top:0}.ui.piled.segment[class*="bottom attached"]{margin-top:0;margin-bottom:3em}.ui.piled.segment[class*="bottom attached"]:last-child{margin-bottom:0}.ui.stacked.segment{padding-bottom:1.4em}.ui.stacked.segment:after,.ui.stacked.segment:before,.ui.stacked.segments:after,.ui.stacked.segments:before{content:'';position:absolute;bottom:-3px;left:0;border-top:1px solid rgba(34,36,38,.15);background:rgba(0,0,0,.03);width:100%;height:6px;visibility:visible}.ui.stacked.segment:before,.ui.stacked.segments:before{display:none}.ui.tall.stacked.segment:before,.ui.tall.stacked.segments:before{display:block;bottom:0}.ui.stacked.inverted.segment:after,.ui.stacked.inverted.segment:before,.ui.stacked.inverted.segments:after,.ui.stacked.inverted.segments:before{background-color:rgba(0,0,0,.03);border-top:1px solid rgba(34,36,38,.35)}.ui.padded.segment{padding:1.5em}.ui[class*="very padded"].segment{padding:3em}.ui.padded.segment.vertical.segment,.ui[class*="very padded"].vertical.segment{padding-left:0;padding-right:0}.ui.compact.segment{display:table}.ui.compact.segments{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.ui.compact.segments .segment,.ui.segments .compact.segment{display:block;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto}.ui.circular.segment{display:table-cell;padding:2em;text-align:center;vertical-align:middle;border-radius:500em}.ui.raised.raised.segment,.ui.raised.raised.segments{-webkit-box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15);box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15)}.ui.segments{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;position:relative;margin:1rem 0;border:1px solid rgba(34,36,38,.15);-webkit-box-shadow:0 1px 2px 0 rgba(34,36,38,.15);box-shadow:0 1px 2px 0 rgba(34,36,38,.15);border-radius:.28571429rem}.ui.segments:first-child{margin-top:0}.ui.segments:last-child{margin-bottom:0}.ui.segments>.segment{top:0;bottom:0;border-radius:0;margin:0;width:auto;-webkit-box-shadow:none;box-shadow:none;border:none;border-top:1px solid rgba(34,36,38,.15)}.ui.segments:not(.horizontal)>.segment:first-child{top:0;bottom:0;border-top:none;margin-top:0;margin-bottom:0;border-radius:.28571429rem .28571429rem 0 0}.ui.segments:not(.horizontal)>.segment:last-child{top:0;bottom:0;margin-top:0;margin-bottom:0;-webkit-box-shadow:0 1px 2px 0 rgba(34,36,38,.15),none;box-shadow:0 1px 2px 0 rgba(34,36,38,.15),none;border-radius:0 0 .28571429rem .28571429rem}.ui.segments:not(.horizontal)>.segment:only-child{border-radius:.28571429rem}.ui.segments>.ui.segments{border-top:1px solid rgba(34,36,38,.15);margin:1rem 1rem}.ui.segments>.segments:first-child{border-top:none}.ui.segments>.segment+.segments:not(.horizontal){margin-top:0}.ui.horizontal.segments{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;background-color:transparent;padding:0;-webkit-box-shadow:0 1px 2px 0 rgba(34,36,38,.15);box-shadow:0 1px 2px 0 rgba(34,36,38,.15);margin:1rem 0;border-radius:.28571429rem;border:1px solid rgba(34,36,38,.15)}.ui.stackable.horizontal.segments{-ms-flex-wrap:wrap;flex-wrap:wrap}.ui.segments>.horizontal.segments{margin:0;background-color:transparent;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;border-top:1px solid rgba(34,36,38,.15)}.ui.horizontal.segments:not(.compact)>.segment:not(.compact){-webkit-box-flex:1;flex:1 1 auto;-ms-flex:1 1 0}.ui.horizontal.segments>.segment{margin:0;min-width:0;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;border-left:1px solid rgba(34,36,38,.15)}.ui.segments>.horizontal.segments:first-child{border-top:none}.ui.horizontal.segments:not(.stackable)>.segment:first-child{border-left:none}.ui.disabled.segment{opacity:.45;color:rgba(40,40,40,.3)}.ui.loading.segment{position:relative;cursor:default;pointer-events:none;text-shadow:none!important;-webkit-transition:all 0s linear;transition:all 0s linear}.ui.loading.segment:before{position:absolute;content:'';top:0;left:0;background:rgba(255,255,255,.8);width:100%;height:100%;border-radius:.28571429rem;z-index:100}.ui.loading.segment:after{position:absolute;content:'';top:50%;left:50%;margin:-1.5em 0 0 -1.5em;width:3em;height:3em;-webkit-animation:loader .6s infinite linear;animation:loader .6s infinite linear;border:.2em solid #767676;border-radius:500rem;-webkit-box-shadow:0 0 0 1px transparent;box-shadow:0 0 0 1px transparent;visibility:visible;z-index:101}.ui.basic.segment,.ui.basic.segments,.ui.segments .ui.basic.segment{background:none transparent;-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:0}.ui.clearing.segment:after{content:"";display:block;clear:both}.ui.red.segment.segment.segment.segment.segment:not(.inverted){border-top:2px solid #db2828}.ui.inverted.red.segment.segment.segment.segment.segment{background-color:#db2828;color:#fff}.ui.orange.segment.segment.segment.segment.segment:not(.inverted){border-top:2px solid #f2711c}.ui.inverted.orange.segment.segment.segment.segment.segment{background-color:#f2711c;color:#fff}.ui.yellow.segment.segment.segment.segment.segment:not(.inverted){border-top:2px solid #fbbd08}.ui.inverted.yellow.segment.segment.segment.segment.segment{background-color:#fbbd08;color:#fff}.ui.olive.segment.segment.segment.segment.segment:not(.inverted){border-top:2px solid #b5cc18}.ui.inverted.olive.segment.segment.segment.segment.segment{background-color:#b5cc18;color:#fff}.ui.green.segment.segment.segment.segment.segment:not(.inverted){border-top:2px solid #21ba45}.ui.inverted.green.segment.segment.segment.segment.segment{background-color:#21ba45;color:#fff}.ui.teal.segment.segment.segment.segment.segment:not(.inverted){border-top:2px solid #00b5ad}.ui.inverted.teal.segment.segment.segment.segment.segment{background-color:#00b5ad;color:#fff}.ui.blue.segment.segment.segment.segment.segment:not(.inverted){border-top:2px solid #2185d0}.ui.inverted.blue.segment.segment.segment.segment.segment{background-color:#2185d0;color:#fff}.ui.violet.segment.segment.segment.segment.segment:not(.inverted){border-top:2px solid #6435c9}.ui.inverted.violet.segment.segment.segment.segment.segment{background-color:#6435c9;color:#fff}.ui.purple.segment.segment.segment.segment.segment:not(.inverted){border-top:2px solid #a333c8}.ui.inverted.purple.segment.segment.segment.segment.segment{background-color:#a333c8;color:#fff}.ui.pink.segment.segment.segment.segment.segment:not(.inverted){border-top:2px solid #e03997}.ui.inverted.pink.segment.segment.segment.segment.segment{background-color:#e03997;color:#fff}.ui.brown.segment.segment.segment.segment.segment:not(.inverted){border-top:2px solid #a5673f}.ui.inverted.brown.segment.segment.segment.segment.segment{background-color:#a5673f;color:#fff}.ui.grey.segment.segment.segment.segment.segment:not(.inverted){border-top:2px solid #767676}.ui.inverted.grey.segment.segment.segment.segment.segment{background-color:#767676;color:#fff}.ui.black.segment.segment.segment.segment.segment:not(.inverted){border-top:2px solid #1b1c1d}.ui.inverted.black.segment.segment.segment.segment.segment{background-color:#1b1c1d;color:#fff}.ui[class*="left aligned"].segment{text-align:left}.ui[class*="right aligned"].segment{text-align:right}.ui[class*="center aligned"].segment{text-align:center}.ui.floated.segment,.ui[class*="left floated"].segment{float:left;margin-right:1em}.ui[class*="right floated"].segment{float:right;margin-left:1em}.ui.inverted.segment{border:none;-webkit-box-shadow:none;box-shadow:none}.ui.inverted.segment,.ui.primary.inverted.segment{background:#1b1c1d;color:rgba(255,255,255,.9)}.ui.inverted.segment .segment{color:rgba(0,0,0,.87)}.ui.inverted.segment .inverted.segment{color:rgba(255,255,255,.9)}.ui.inverted.attached.segment{border-color:#555}.ui.inverted.loading.segment{color:#fff}.ui.inverted.loading.segment:before{background:rgba(0,0,0,.85)}.ui.secondary.segment{background:#f3f4f5;color:rgba(0,0,0,.6)}.ui.secondary.inverted.segment{background:#4c4f52 -webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(255,255,255,.2)),to(rgba(255,255,255,.2)));background:#4c4f52 -webkit-linear-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.2) 100%);background:#4c4f52 linear-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.2) 100%);color:rgba(255,255,255,.8)}.ui.tertiary.segment{background:#dcddde;color:rgba(0,0,0,.6)}.ui.tertiary.inverted.segment{background:#717579 -webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(255,255,255,.35)),to(rgba(255,255,255,.35)));background:#717579 -webkit-linear-gradient(rgba(255,255,255,.35) 0,rgba(255,255,255,.35) 100%);background:#717579 linear-gradient(rgba(255,255,255,.35) 0,rgba(255,255,255,.35) 100%);color:rgba(255,255,255,.8)}.ui.attached.segment{top:0;bottom:0;border-radius:0;margin:0 -1px;width:calc(100% + 2px);max-width:calc(100% + 2px);-webkit-box-shadow:none;box-shadow:none;border:1px solid #d4d4d5}.ui.attached:not(.message)+.ui.attached.segment:not(.top){border-top:none}.ui[class*="top attached"].segment{bottom:0;margin-bottom:0;top:0;margin-top:1rem;border-radius:.28571429rem .28571429rem 0 0}.ui.segment[class*="top attached"]:first-child{margin-top:0}.ui.segment[class*="bottom attached"]{bottom:0;margin-top:0;top:0;margin-bottom:1rem;-webkit-box-shadow:0 1px 2px 0 rgba(34,36,38,.15),none;box-shadow:0 1px 2px 0 rgba(34,36,38,.15),none;border-radius:0 0 .28571429rem .28571429rem}.ui.segment[class*="bottom attached"]:last-child{margin-bottom:1rem}.ui.fitted.segment:not(.horizontally){padding-top:0;padding-bottom:0}.ui.fitted.segment:not(.vertically){padding-left:0;padding-right:0}.ui.segment,.ui.segments .segment{font-size:1rem}.ui.mini.segment,.ui.mini.segments .segment{font-size:.78571429rem}.ui.tiny.segment,.ui.tiny.segments .segment{font-size:.85714286rem}.ui.small.segment,.ui.small.segments .segment{font-size:.92857143rem}.ui.large.segment,.ui.large.segments .segment{font-size:1.14285714rem}.ui.big.segment,.ui.big.segments .segment{font-size:1.28571429rem}.ui.huge.segment,.ui.huge.segments .segment{font-size:1.42857143rem}.ui.massive.segment,.ui.massive.segments .segment{font-size:1.71428571rem}
\ No newline at end of file
diff --git a/src-angular/assets/semantic/dist/components/shape.css b/src-angular/assets/semantic/dist/components/shape.css
deleted file mode 100644
index f6fed45..0000000
--- a/src-angular/assets/semantic/dist/components/shape.css
+++ /dev/null
@@ -1,159 +0,0 @@
-/*!
- * # Fomantic-UI - Shape
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-
-/*******************************
- Shape
-*******************************/
-
-.ui.shape {
- position: relative;
- vertical-align: top;
- display: inline-block;
- -webkit-perspective: 2000px;
- perspective: 2000px;
- -webkit-transition: left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
- transition: left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
- transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out;
- transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
-}
-.ui.shape .sides {
- -webkit-transform-style: preserve-3d;
- transform-style: preserve-3d;
-}
-.ui.shape .side {
- display: none;
- opacity: 1;
- width: 100%;
- margin: 0 !important;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
-}
-.ui.shape .side * {
- -webkit-backface-visibility: visible !important;
- backface-visibility: visible !important;
-}
-
-
-/*******************************
- Types
-*******************************/
-
-.ui.cube.shape .side {
- min-width: 15em;
- height: 15em;
- padding: 2em;
- background-color: #E6E6E6;
- color: rgba(0, 0, 0, 0.87);
- -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
- box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
-}
-.ui.cube.shape .side > .content {
- width: 100%;
- height: 100%;
- display: table;
- text-align: center;
- -webkit-user-select: text;
- -moz-user-select: text;
- -ms-user-select: text;
- user-select: text;
-}
-.ui.cube.shape .side > .content > div {
- display: table-cell;
- vertical-align: middle;
- font-size: 2em;
-}
-
-
-/*******************************
- Variations
-*******************************/
-
-.ui.text.shape.animating .sides {
- position: static;
-}
-.ui.text.shape .side {
- white-space: nowrap;
-}
-.ui.text.shape .side > * {
- white-space: normal;
-}
-
-
-/*******************************
- States
-*******************************/
-
-
-/*--------------
- Loading
- ---------------*/
-
-.ui.loading.shape {
- position: absolute;
- top: -9999px;
- left: -9999px;
-}
-
-/*--------------
- Animating
----------------*/
-
-.ui.shape .animating.side {
- position: absolute;
- top: 0;
- left: 0;
- display: block;
- z-index: 100;
-}
-.ui.shape .hidden.side {
- opacity: 0.6;
-}
-
-/*--------------
- CSS
----------------*/
-
-.ui.shape.animating .sides {
- position: absolute;
- -webkit-transition: left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
- transition: left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
- transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out;
- transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
-}
-.ui.shape.animating .side {
- -webkit-transition: opacity 0.6s ease-in-out;
- transition: opacity 0.6s ease-in-out;
-}
-.ui.shape .animating.side *,
-.ui.shape.animating .side * {
- -webkit-transition: none;
- transition: none;
-}
-
-/*--------------
- Active
----------------*/
-
-.ui.shape .active.side {
- display: block;
-}
-
-
-/*******************************
- Theme Overrides
-*******************************/
-
-
-
-/*******************************
- User Overrides
-*******************************/
-
diff --git a/src-angular/assets/semantic/dist/components/shape.js b/src-angular/assets/semantic/dist/components/shape.js
deleted file mode 100644
index 1c1229a..0000000
--- a/src-angular/assets/semantic/dist/components/shape.js
+++ /dev/null
@@ -1,848 +0,0 @@
-/*!
- * # Fomantic-UI - Shape
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-;(function ($, window, document, undefined) {
-
-'use strict';
-
-$.isFunction = $.isFunction || function(obj) {
- return typeof obj === "function" && typeof obj.nodeType !== "number";
-};
-
-window = (typeof window != 'undefined' && window.Math == Math)
- ? window
- : (typeof self != 'undefined' && self.Math == Math)
- ? self
- : Function('return this')()
-;
-
-$.fn.shape = function(parameters) {
- var
- $allModules = $(this),
-
- time = new Date().getTime(),
- performance = [],
-
- query = arguments[0],
- methodInvoked = (typeof query == 'string'),
- queryArguments = [].slice.call(arguments, 1),
-
- requestAnimationFrame = window.requestAnimationFrame
- || window.mozRequestAnimationFrame
- || window.webkitRequestAnimationFrame
- || window.msRequestAnimationFrame
- || function(callback) { setTimeout(callback, 0); },
-
- returnedValue
- ;
-
- $allModules
- .each(function() {
- var
- moduleSelector = $allModules.selector || '',
- settings = ( $.isPlainObject(parameters) )
- ? $.extend(true, {}, $.fn.shape.settings, parameters)
- : $.extend({}, $.fn.shape.settings),
-
- // internal aliases
- namespace = settings.namespace,
- selector = settings.selector,
- error = settings.error,
- className = settings.className,
-
- // define namespaces for modules
- eventNamespace = '.' + namespace,
- moduleNamespace = 'module-' + namespace,
-
- // selector cache
- $module = $(this),
- $sides = $module.find('>' + selector.sides),
- $side = $sides.find('>' + selector.side),
-
- // private variables
- nextIndex = false,
- $activeSide,
- $nextSide,
-
- // standard module
- element = this,
- instance = $module.data(moduleNamespace),
- module
- ;
-
- module = {
-
- initialize: function() {
- module.verbose('Initializing module for', element);
- module.set.defaultSide();
- module.instantiate();
- },
-
- instantiate: function() {
- module.verbose('Storing instance of module', module);
- instance = module;
- $module
- .data(moduleNamespace, instance)
- ;
- },
-
- destroy: function() {
- module.verbose('Destroying previous module for', element);
- $module
- .removeData(moduleNamespace)
- .off(eventNamespace)
- ;
- },
-
- refresh: function() {
- module.verbose('Refreshing selector cache for', element);
- $module = $(element);
- $sides = $(this).find(selector.sides);
- $side = $(this).find(selector.side);
- },
-
- repaint: function() {
- module.verbose('Forcing repaint event');
- var
- shape = $sides[0] || document.createElement('div'),
- fakeAssignment = shape.offsetWidth
- ;
- },
-
- animate: function(propertyObject, callback) {
- module.verbose('Animating box with properties', propertyObject);
- callback = callback || function(event) {
- module.verbose('Executing animation callback');
- if(event !== undefined) {
- event.stopPropagation();
- }
- module.reset();
- module.set.active();
- };
- settings.beforeChange.call($nextSide[0]);
- if(module.get.transitionEvent()) {
- module.verbose('Starting CSS animation');
- $module
- .addClass(className.animating)
- ;
- $sides
- .css(propertyObject)
- .one(module.get.transitionEvent(), callback)
- ;
- module.set.duration(settings.duration);
- requestAnimationFrame(function() {
- $module
- .addClass(className.animating)
- ;
- $activeSide
- .addClass(className.hidden)
- ;
- });
- }
- else {
- callback();
- }
- },
-
- queue: function(method) {
- module.debug('Queueing animation of', method);
- $sides
- .one(module.get.transitionEvent(), function() {
- module.debug('Executing queued animation');
- setTimeout(function(){
- $module.shape(method);
- }, 0);
- })
- ;
- },
-
- reset: function() {
- module.verbose('Animating states reset');
- $module
- .removeClass(className.animating)
- .attr('style', '')
- .removeAttr('style')
- ;
- // removeAttr style does not consistently work in safari
- $sides
- .attr('style', '')
- .removeAttr('style')
- ;
- $side
- .attr('style', '')
- .removeAttr('style')
- .removeClass(className.hidden)
- ;
- $nextSide
- .removeClass(className.animating)
- .attr('style', '')
- .removeAttr('style')
- ;
- },
-
- is: {
- complete: function() {
- return ($side.filter('.' + className.active)[0] == $nextSide[0]);
- },
- animating: function() {
- return $module.hasClass(className.animating);
- },
- hidden: function() {
- return $module.closest(':hidden').length > 0;
- }
- },
-
- set: {
-
- defaultSide: function() {
- $activeSide = $side.filter('.' + settings.className.active);
- $nextSide = ( $activeSide.next(selector.side).length > 0 )
- ? $activeSide.next(selector.side)
- : $side.first()
- ;
- nextIndex = false;
- module.verbose('Active side set to', $activeSide);
- module.verbose('Next side set to', $nextSide);
- },
-
- duration: function(duration) {
- duration = duration || settings.duration;
- duration = (typeof duration == 'number')
- ? duration + 'ms'
- : duration
- ;
- module.verbose('Setting animation duration', duration);
- if(settings.duration || settings.duration === 0) {
- $sides.add($side)
- .css({
- '-webkit-transition-duration': duration,
- '-moz-transition-duration': duration,
- '-ms-transition-duration': duration,
- '-o-transition-duration': duration,
- 'transition-duration': duration
- })
- ;
- }
- },
-
- currentStageSize: function() {
- var
- $activeSide = $side.filter('.' + settings.className.active),
- width = $activeSide.outerWidth(true),
- height = $activeSide.outerHeight(true)
- ;
- $module
- .css({
- width: width,
- height: height
- })
- ;
- },
-
- stageSize: function() {
- var
- $clone = $module.clone().addClass(className.loading),
- $side = $clone.find('>' + selector.sides + '>' + selector.side),
- $activeSide = $side.filter('.' + settings.className.active),
- $nextSide = (nextIndex)
- ? $side.eq(nextIndex)
- : ( $activeSide.next(selector.side).length > 0 )
- ? $activeSide.next(selector.side)
- : $side.first(),
- newWidth = (settings.width === 'next')
- ? $nextSide.outerWidth(true)
- : (settings.width === 'initial')
- ? $module.width()
- : settings.width,
- newHeight = (settings.height === 'next')
- ? $nextSide.outerHeight(true)
- : (settings.height === 'initial')
- ? $module.height()
- : settings.height
- ;
- $activeSide.removeClass(className.active);
- $nextSide.addClass(className.active);
- $clone.insertAfter($module);
- $clone.remove();
- if(settings.width !== 'auto') {
- $module.css('width', newWidth + settings.jitter);
- module.verbose('Specifying width during animation', newWidth);
- }
- if(settings.height !== 'auto') {
- $module.css('height', newHeight + settings.jitter);
- module.verbose('Specifying height during animation', newHeight);
- }
- },
-
- nextSide: function(selector) {
- nextIndex = selector;
- $nextSide = $side.filter(selector);
- nextIndex = $side.index($nextSide);
- if($nextSide.length === 0) {
- module.set.defaultSide();
- module.error(error.side);
- }
- module.verbose('Next side manually set to', $nextSide);
- },
-
- active: function() {
- module.verbose('Setting new side to active', $nextSide);
- $side
- .removeClass(className.active)
- ;
- $nextSide
- .addClass(className.active)
- ;
- settings.onChange.call($nextSide[0]);
- module.set.defaultSide();
- }
- },
-
- flip: {
- to: function(type,stage){
- if(module.is.hidden()) {
- module.debug('Module not visible', $nextSide);
- return;
- }
- if(module.is.complete() && !module.is.animating() && !settings.allowRepeats) {
- module.debug('Side already visible', $nextSide);
- return;
- }
- var
- transform = module.get.transform[type]()
- ;
- if( !module.is.animating()) {
- module.debug('Flipping '+type, $nextSide);
- module.set.stageSize();
- module.stage[stage]();
- module.animate(transform);
- }
- else {
- module.queue('flip '+type);
- }
- },
-
- up: function() {
- module.flip.to('up','above');
- },
-
- down: function() {
- module.flip.to('down','below');
- },
-
- left: function() {
- module.flip.to('left','left');
- },
-
- right: function() {
- module.flip.to('right','right');
- },
-
- over: function() {
- module.flip.to('over','behind');
- },
-
- back: function() {
- module.flip.to('back','behind');
- }
-
- },
-
- get: {
-
- transform: {
- up: function() {
- var
- translateZ = $activeSide.outerHeight(true) / 2,
- translateY = $nextSide.outerHeight(true) - translateZ
- ;
- return {
- transform: 'translateY(' + translateY + 'px) translateZ(-'+ translateZ + 'px) rotateX(-90deg)'
- };
- },
-
- down: function() {
- var
- translate = {
- z: $activeSide.outerHeight(true) / 2
- }
- ;
- return {
- transform: 'translateY(-' + translate.z + 'px) translateZ(-'+ translate.z + 'px) rotateX(90deg)'
- };
- },
-
- left: function() {
- var
- translateZ = $activeSide.outerWidth(true) / 2,
- translateX = $nextSide.outerWidth(true) - translateZ
- ;
- return {
- transform: 'translateX(' + translateX + 'px) translateZ(-' + translateZ + 'px) rotateY(90deg)'
- };
- },
-
- right: function() {
- var
- translate = {
- z : $activeSide.outerWidth(true) / 2
- }
- ;
- return {
- transform: 'translateX(-' + translate.z + 'px) translateZ(-' + translate.z + 'px) rotateY(-90deg)'
- };
- },
-
- over: function() {
- var
- translate = {
- x : -(($activeSide.outerWidth(true) - $nextSide.outerWidth(true)) / 2)
- }
- ;
- return {
- transform: 'translateX(' + translate.x + 'px) rotateY(180deg)'
- };
- },
-
- back: function() {
- var
- translate = {
- x : -(($activeSide.outerWidth(true) - $nextSide.outerWidth(true)) / 2)
- }
- ;
- return {
- transform: 'translateX(' + translate.x + 'px) rotateY(-180deg)'
- };
- }
- },
-
- transitionEvent: function() {
- var
- element = document.createElement('element'),
- transitions = {
- 'transition' :'transitionend',
- 'OTransition' :'oTransitionEnd',
- 'MozTransition' :'transitionend',
- 'WebkitTransition' :'webkitTransitionEnd'
- },
- transition
- ;
- for(transition in transitions){
- if( element.style[transition] !== undefined ){
- return transitions[transition];
- }
- }
- },
-
- nextSide: function() {
- return ( $activeSide.next(selector.side).length > 0 )
- ? $activeSide.next(selector.side)
- : $side.first()
- ;
- }
-
- },
-
- stage: {
-
- above: function() {
- var
- box = {
- origin : (($activeSide.outerHeight(true) - $nextSide.outerHeight(true)) / 2),
- depth : {
- active : ($nextSide.outerHeight(true) / 2),
- next : ($activeSide.outerHeight(true) / 2)
- }
- }
- ;
- module.verbose('Setting the initial animation position as above', $nextSide, box);
- $activeSide
- .css({
- 'transform' : 'rotateX(0deg)'
- })
- ;
- $nextSide
- .addClass(className.animating)
- .css({
- 'top' : box.origin + 'px',
- 'transform' : 'rotateX(90deg) translateZ(' + box.depth.next + 'px) translateY(-' + box.depth.active + 'px)'
- })
- ;
- },
-
- below: function() {
- var
- box = {
- origin : (($activeSide.outerHeight(true) - $nextSide.outerHeight(true)) / 2),
- depth : {
- active : ($nextSide.outerHeight(true) / 2),
- next : ($activeSide.outerHeight(true) / 2)
- }
- }
- ;
- module.verbose('Setting the initial animation position as below', $nextSide, box);
- $activeSide
- .css({
- 'transform' : 'rotateX(0deg)'
- })
- ;
- $nextSide
- .addClass(className.animating)
- .css({
- 'top' : box.origin + 'px',
- 'transform' : 'rotateX(-90deg) translateZ(' + box.depth.next + 'px) translateY(' + box.depth.active + 'px)'
- })
- ;
- },
-
- left: function() {
- var
- height = {
- active : $activeSide.outerWidth(true),
- next : $nextSide.outerWidth(true)
- },
- box = {
- origin : ( ( height.active - height.next ) / 2),
- depth : {
- active : (height.next / 2),
- next : (height.active / 2)
- }
- }
- ;
- module.verbose('Setting the initial animation position as left', $nextSide, box);
- $activeSide
- .css({
- 'transform' : 'rotateY(0deg)'
- })
- ;
- $nextSide
- .addClass(className.animating)
- .css({
- 'left' : box.origin + 'px',
- 'transform' : 'rotateY(-90deg) translateZ(' + box.depth.next + 'px) translateX(-' + box.depth.active + 'px)'
- })
- ;
- },
-
- right: function() {
- var
- height = {
- active : $activeSide.outerWidth(true),
- next : $nextSide.outerWidth(true)
- },
- box = {
- origin : ( ( height.active - height.next ) / 2),
- depth : {
- active : (height.next / 2),
- next : (height.active / 2)
- }
- }
- ;
- module.verbose('Setting the initial animation position as right', $nextSide, box);
- $activeSide
- .css({
- 'transform' : 'rotateY(0deg)'
- })
- ;
- $nextSide
- .addClass(className.animating)
- .css({
- 'left' : box.origin + 'px',
- 'transform' : 'rotateY(90deg) translateZ(' + box.depth.next + 'px) translateX(' + box.depth.active + 'px)'
- })
- ;
- },
-
- behind: function() {
- var
- height = {
- active : $activeSide.outerWidth(true),
- next : $nextSide.outerWidth(true)
- },
- box = {
- origin : ( ( height.active - height.next ) / 2),
- depth : {
- active : (height.next / 2),
- next : (height.active / 2)
- }
- }
- ;
- module.verbose('Setting the initial animation position as behind', $nextSide, box);
- $activeSide
- .css({
- 'transform' : 'rotateY(0deg)'
- })
- ;
- $nextSide
- .addClass(className.animating)
- .css({
- 'left' : box.origin + 'px',
- 'transform' : 'rotateY(-180deg)'
- })
- ;
- }
- },
- setting: function(name, value) {
- module.debug('Changing setting', name, value);
- if( $.isPlainObject(name) ) {
- $.extend(true, settings, name);
- }
- else if(value !== undefined) {
- if($.isPlainObject(settings[name])) {
- $.extend(true, settings[name], value);
- }
- else {
- settings[name] = value;
- }
- }
- else {
- return settings[name];
- }
- },
- internal: function(name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, module, name);
- }
- else if(value !== undefined) {
- module[name] = value;
- }
- else {
- return module[name];
- }
- },
- debug: function() {
- if(!settings.silent && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.debug.apply(console, arguments);
- }
- }
- },
- verbose: function() {
- if(!settings.silent && settings.verbose && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.verbose.apply(console, arguments);
- }
- }
- },
- error: function() {
- if(!settings.silent) {
- module.error = Function.prototype.bind.call(console.error, console, settings.name + ':');
- module.error.apply(console, arguments);
- }
- },
- performance: {
- log: function(message) {
- var
- currentTime,
- executionTime,
- previousTime
- ;
- if(settings.performance) {
- currentTime = new Date().getTime();
- previousTime = time || currentTime;
- executionTime = currentTime - previousTime;
- time = currentTime;
- performance.push({
- 'Name' : message[0],
- 'Arguments' : [].slice.call(message, 1) || '',
- 'Element' : element,
- 'Execution Time' : executionTime
- });
- }
- clearTimeout(module.performance.timer);
- module.performance.timer = setTimeout(module.performance.display, 500);
- },
- display: function() {
- var
- title = settings.name + ':',
- totalTime = 0
- ;
- time = false;
- clearTimeout(module.performance.timer);
- $.each(performance, function(index, data) {
- totalTime += data['Execution Time'];
- });
- title += ' ' + totalTime + 'ms';
- if(moduleSelector) {
- title += ' \'' + moduleSelector + '\'';
- }
- if($allModules.length > 1) {
- title += ' ' + '(' + $allModules.length + ')';
- }
- if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) {
- console.groupCollapsed(title);
- if(console.table) {
- console.table(performance);
- }
- else {
- $.each(performance, function(index, data) {
- console.log(data['Name'] + ': ' + data['Execution Time']+'ms');
- });
- }
- console.groupEnd();
- }
- performance = [];
- }
- },
- invoke: function(query, passedArguments, context) {
- var
- object = instance,
- maxDepth,
- found,
- response
- ;
- passedArguments = passedArguments || queryArguments;
- context = element || context;
- if(typeof query == 'string' && object !== undefined) {
- query = query.split(/[\. ]/);
- maxDepth = query.length - 1;
- $.each(query, function(depth, value) {
- var camelCaseValue = (depth != maxDepth)
- ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
- : query
- ;
- if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
- object = object[camelCaseValue];
- }
- else if( object[camelCaseValue] !== undefined ) {
- found = object[camelCaseValue];
- return false;
- }
- else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
- object = object[value];
- }
- else if( object[value] !== undefined ) {
- found = object[value];
- return false;
- }
- else {
- return false;
- }
- });
- }
- if ( $.isFunction( found ) ) {
- response = found.apply(context, passedArguments);
- }
- else if(found !== undefined) {
- response = found;
- }
- if(Array.isArray(returnedValue)) {
- returnedValue.push(response);
- }
- else if(returnedValue !== undefined) {
- returnedValue = [returnedValue, response];
- }
- else if(response !== undefined) {
- returnedValue = response;
- }
- return found;
- }
- };
-
- if(methodInvoked) {
- if(instance === undefined) {
- module.initialize();
- }
- var $inputs = $module.find('input');
- if( $inputs.length > 0) {
- $inputs.blur();
- setTimeout(function(){
- module.invoke(query);
- }, 150);
- } else {
- module.invoke(query);
- }
- }
- else {
- if(instance !== undefined) {
- instance.invoke('destroy');
- }
- module.initialize();
- }
- })
- ;
-
- return (returnedValue !== undefined)
- ? returnedValue
- : this
- ;
-};
-
-$.fn.shape.settings = {
-
- // module info
- name : 'Shape',
-
- // hide all debug content
- silent : false,
-
- // debug content outputted to console
- debug : false,
-
- // verbose debug output
- verbose : false,
-
- // fudge factor in pixels when swapping from 2d to 3d (can be useful to correct rounding errors)
- jitter : 0,
-
- // performance data output
- performance: true,
-
- // event namespace
- namespace : 'shape',
-
- // width during animation, can be set to 'auto', initial', 'next' or pixel amount
- width: 'initial',
-
- // height during animation, can be set to 'auto', 'initial', 'next' or pixel amount
- height: 'initial',
-
- // callback occurs on side change
- beforeChange : function() {},
- onChange : function() {},
-
- // allow animation to same side
- allowRepeats: false,
-
- // animation duration
- duration : false,
-
- // possible errors
- error: {
- side : 'You tried to switch to a side that does not exist.',
- method : 'The method you called is not defined'
- },
-
- // classnames used
- className : {
- animating : 'animating',
- hidden : 'hidden',
- loading : 'loading',
- active : 'active'
- },
-
- // selectors used
- selector : {
- sides : '.sides',
- side : '.side'
- }
-
-};
-
-
-})( jQuery, window, document );
diff --git a/src-angular/assets/semantic/dist/components/shape.min.css b/src-angular/assets/semantic/dist/components/shape.min.css
deleted file mode 100644
index 65d7d6b..0000000
--- a/src-angular/assets/semantic/dist/components/shape.min.css
+++ /dev/null
@@ -1,9 +0,0 @@
-/*!
- * # Fomantic-UI - Shape
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */.ui.shape{position:relative;vertical-align:top;display:inline-block;-webkit-perspective:2000px;perspective:2000px;-webkit-transition:left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out,-webkit-transform .6s ease-in-out;transition:left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out,-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out;transition:transform .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out,-webkit-transform .6s ease-in-out}.ui.shape .sides{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.ui.shape .side{display:none;opacity:1;width:100%;margin:0!important;-webkit-backface-visibility:hidden;backface-visibility:hidden}.ui.shape .side *{-webkit-backface-visibility:visible!important;backface-visibility:visible!important}.ui.cube.shape .side{min-width:15em;height:15em;padding:2em;background-color:#e6e6e6;color:rgba(0,0,0,.87);-webkit-box-shadow:0 0 2px rgba(0,0,0,.3);box-shadow:0 0 2px rgba(0,0,0,.3)}.ui.cube.shape .side>.content{width:100%;height:100%;display:table;text-align:center;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.ui.cube.shape .side>.content>div{display:table-cell;vertical-align:middle;font-size:2em}.ui.text.shape.animating .sides{position:static}.ui.text.shape .side{white-space:nowrap}.ui.text.shape .side>*{white-space:normal}.ui.loading.shape{position:absolute;top:-9999px;left:-9999px}.ui.shape .animating.side{position:absolute;top:0;left:0;display:block;z-index:100}.ui.shape .hidden.side{opacity:.6}.ui.shape.animating .sides{position:absolute;-webkit-transition:left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out,-webkit-transform .6s ease-in-out;transition:left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out,-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out;transition:transform .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out,-webkit-transform .6s ease-in-out}.ui.shape.animating .side{-webkit-transition:opacity .6s ease-in-out;transition:opacity .6s ease-in-out}.ui.shape .animating.side *,.ui.shape.animating .side *{-webkit-transition:none;transition:none}.ui.shape .active.side{display:block}
\ No newline at end of file
diff --git a/src-angular/assets/semantic/dist/components/shape.min.js b/src-angular/assets/semantic/dist/components/shape.min.js
deleted file mode 100644
index 51a805d..0000000
--- a/src-angular/assets/semantic/dist/components/shape.min.js
+++ /dev/null
@@ -1,11 +0,0 @@
- /*
- * # Fomantic UI - 2.8.3
- * https://github.com/fomantic/Fomantic-UI
- * http://fomantic-ui.com/
- *
- * Copyright 2014 Contributors
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-!function(E,e,Y,F){"use strict";E.isFunction=E.isFunction||function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},e=void 0!==e&&e.Math==Math?e:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")(),E.fn.shape=function(b){var x,y=E(this),w=(new Date).getTime(),C=[],S=b,T="string"==typeof S,W=[].slice.call(arguments,1),A=e.requestAnimationFrame||e.mozRequestAnimationFrame||e.webkitRequestAnimationFrame||e.msRequestAnimationFrame||function(e){setTimeout(e,0)};return y.each(function(){var n,o,r,t=y.selector||"",s=E.isPlainObject(b)?E.extend(!0,{},E.fn.shape.settings,b):E.extend({},E.fn.shape.settings),e=s.namespace,d=s.selector,i=s.error,l=s.className,a="."+e,u="module-"+e,c=E(this),f=c.find(">"+d.sides),g=f.find(">"+d.side),h=!1,m=this,p=c.data(u);if(r={initialize:function(){r.verbose("Initializing module for",m),r.set.defaultSide(),r.instantiate()},instantiate:function(){r.verbose("Storing instance of module",r),p=r,c.data(u,p)},destroy:function(){r.verbose("Destroying previous module for",m),c.removeData(u).off(a)},refresh:function(){r.verbose("Refreshing selector cache for",m),c=E(m),f=E(this).find(d.sides),g=E(this).find(d.side)},repaint:function(){r.verbose("Forcing repaint event");(f[0]||Y.createElement("div")).offsetWidth},animate:function(e,t){r.verbose("Animating box with properties",e),t=t||function(e){r.verbose("Executing animation callback"),e!==F&&e.stopPropagation(),r.reset(),r.set.active()},s.beforeChange.call(o[0]),r.get.transitionEvent()?(r.verbose("Starting CSS animation"),c.addClass(l.animating),f.css(e).one(r.get.transitionEvent(),t),r.set.duration(s.duration),A(function(){c.addClass(l.animating),n.addClass(l.hidden)})):t()},queue:function(e){r.debug("Queueing animation of",e),f.one(r.get.transitionEvent(),function(){r.debug("Executing queued animation"),setTimeout(function(){c.shape(e)},0)})},reset:function(){r.verbose("Animating states reset"),c.removeClass(l.animating).attr("style","").removeAttr("style"),f.attr("style","").removeAttr("style"),g.attr("style","").removeAttr("style").removeClass(l.hidden),o.removeClass(l.animating).attr("style","").removeAttr("style")},is:{complete:function(){return g.filter("."+l.active)[0]==o[0]},animating:function(){return c.hasClass(l.animating)},hidden:function(){return 0
"+d.sides+">"+d.side),i=t.filter("."+s.className.active),n=h?t.eq(h):0 * {
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
-}
-
-/*--------------
- Direction
----------------*/
-
-.ui.left.sidebar {
- right: auto;
- left: 0;
- -webkit-transform: translate3d(-100%, 0, 0);
- transform: translate3d(-100%, 0, 0);
-}
-.ui.right.sidebar {
- right: 0 !important;
- left: auto !important;
- -webkit-transform: translate3d(100%, 0, 0);
- transform: translate3d(100%, 0, 0);
-}
-.ui.top.sidebar,
-.ui.bottom.sidebar {
- width: 100% !important;
- height: auto !important;
-}
-.ui.top.sidebar {
- top: 0 !important;
- bottom: auto !important;
- -webkit-transform: translate3d(0, -100%, 0);
- transform: translate3d(0, -100%, 0);
-}
-.ui.bottom.sidebar {
- top: auto !important;
- bottom: 0 !important;
- -webkit-transform: translate3d(0, 100%, 0);
- transform: translate3d(0, 100%, 0);
-}
-
-/*--------------
- Pushable
----------------*/
-
-.pushable {
- height: 100%;
- overflow-x: hidden;
- padding: 0 !important;
-}
-
-/* Whole Page */
-body.pushable {
- background: #545454;
-}
-body.pushable.dimmed {
- background: inherit;
-}
-
-/* Page Context */
-.pushable:not(body) {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
-}
-.pushable:not(body) > .ui.sidebar,
-.pushable:not(body) > .fixed,
-.pushable:not(body) > .pusher:after {
- position: absolute;
-}
-
-/*--------------
- Fixed
----------------*/
-
-.pushable > .fixed {
- position: fixed;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- -webkit-transition: -webkit-transform 500ms ease;
- transition: -webkit-transform 500ms ease;
- transition: transform 500ms ease;
- transition: transform 500ms ease, -webkit-transform 500ms ease;
- will-change: transform;
- z-index: 101;
-}
-
-/*--------------
- Page
----------------*/
-
-.pushable > .pusher {
- position: relative;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- overflow: hidden;
- min-height: 100%;
- -webkit-transition: -webkit-transform 500ms ease;
- transition: -webkit-transform 500ms ease;
- transition: transform 500ms ease;
- transition: transform 500ms ease, -webkit-transform 500ms ease;
- z-index: 2;
-
-/* Pusher should inherit background from context */
- background: inherit;
-}
-body.pushable > .pusher {
- background: #FFFFFF;
-}
-
-/*--------------
- Dimmer
----------------*/
-
-.pushable > .pusher:after {
- position: fixed;
- top: 0;
- right: 0;
- content: '';
- background-color: rgba(0, 0, 0, 0.4);
- overflow: hidden;
- opacity: 0;
- -webkit-transition: opacity 500ms;
- transition: opacity 500ms;
- will-change: opacity;
- z-index: 1000;
-}
-
-/*--------------
- Coupling
----------------*/
-
-.ui.sidebar.menu .item {
- border-radius: 0 !important;
-}
-
-
-/*******************************
- States
-*******************************/
-
-
-/*--------------
- Dimmed
----------------*/
-
-.pushable > .pusher.dimmed:after {
- width: 100% !important;
- height: 100% !important;
- opacity: 1 !important;
-}
-
-/*--------------
- Animating
----------------*/
-
-.ui.animating.sidebar {
- visibility: visible;
-}
-
-/*--------------
- Visible
----------------*/
-
-.ui.visible.sidebar {
- visibility: visible;
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
-}
-
-/* Shadow Direction */
-.ui.left.visible.sidebar,
-.ui.right.visible.sidebar {
- -webkit-box-shadow: 0 0 20px rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 20px rgba(34, 36, 38, 0.15);
-}
-.ui.top.visible.sidebar,
-.ui.bottom.visible.sidebar {
- -webkit-box-shadow: 0 0 20px rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 20px rgba(34, 36, 38, 0.15);
-}
-
-/* Visible On Load */
-.ui.visible.left.sidebar ~ .fixed,
-.ui.visible.left.sidebar ~ .pusher {
- -webkit-transform: translate3d(260px, 0, 0);
- transform: translate3d(260px, 0, 0);
-}
-.ui.visible.right.sidebar ~ .fixed,
-.ui.visible.right.sidebar ~ .pusher {
- -webkit-transform: translate3d(-260px, 0, 0);
- transform: translate3d(-260px, 0, 0);
-}
-.ui.visible.top.sidebar ~ .fixed,
-.ui.visible.top.sidebar ~ .pusher {
- -webkit-transform: translate3d(0, 36px, 0);
- transform: translate3d(0, 36px, 0);
-}
-.ui.visible.bottom.sidebar ~ .fixed,
-.ui.visible.bottom.sidebar ~ .pusher {
- -webkit-transform: translate3d(0, -36px, 0);
- transform: translate3d(0, -36px, 0);
-}
-
-/* opposite sides visible forces content overlay */
-.ui.visible.left.sidebar ~ .ui.visible.right.sidebar ~ .fixed,
-.ui.visible.left.sidebar ~ .ui.visible.right.sidebar ~ .pusher,
-.ui.visible.right.sidebar ~ .ui.visible.left.sidebar ~ .fixed,
-.ui.visible.right.sidebar ~ .ui.visible.left.sidebar ~ .pusher {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
-}
-
-/*--------------
- iOS
----------------*/
-
-
-
-/*******************************
- Variations
-*******************************/
-
-
-/*--------------
- Width
----------------*/
-
-
-/* Left / Right */
-.ui.thin.left.sidebar,
-.ui.thin.right.sidebar {
- width: 150px;
-}
-.ui[class*="very thin"].left.sidebar,
-.ui[class*="very thin"].right.sidebar {
- width: 60px;
-}
-.ui.left.sidebar,
-.ui.right.sidebar {
- width: 260px;
-}
-.ui.wide.left.sidebar,
-.ui.wide.right.sidebar {
- width: 350px;
-}
-.ui[class*="very wide"].left.sidebar,
-.ui[class*="very wide"].right.sidebar {
- width: 475px;
-}
-
-/* Left Visible */
-.ui.visible.thin.left.sidebar ~ .fixed,
-.ui.visible.thin.left.sidebar ~ .pusher {
- -webkit-transform: translate3d(150px, 0, 0);
- transform: translate3d(150px, 0, 0);
-}
-.ui.visible[class*="very thin"].left.sidebar ~ .fixed,
-.ui.visible[class*="very thin"].left.sidebar ~ .pusher {
- -webkit-transform: translate3d(60px, 0, 0);
- transform: translate3d(60px, 0, 0);
-}
-.ui.visible.wide.left.sidebar ~ .fixed,
-.ui.visible.wide.left.sidebar ~ .pusher {
- -webkit-transform: translate3d(350px, 0, 0);
- transform: translate3d(350px, 0, 0);
-}
-.ui.visible[class*="very wide"].left.sidebar ~ .fixed,
-.ui.visible[class*="very wide"].left.sidebar ~ .pusher {
- -webkit-transform: translate3d(475px, 0, 0);
- transform: translate3d(475px, 0, 0);
-}
-
-/* Right Visible */
-.ui.visible.thin.right.sidebar ~ .fixed,
-.ui.visible.thin.right.sidebar ~ .pusher {
- -webkit-transform: translate3d(-150px, 0, 0);
- transform: translate3d(-150px, 0, 0);
-}
-.ui.visible[class*="very thin"].right.sidebar ~ .fixed,
-.ui.visible[class*="very thin"].right.sidebar ~ .pusher {
- -webkit-transform: translate3d(-60px, 0, 0);
- transform: translate3d(-60px, 0, 0);
-}
-.ui.visible.wide.right.sidebar ~ .fixed,
-.ui.visible.wide.right.sidebar ~ .pusher {
- -webkit-transform: translate3d(-350px, 0, 0);
- transform: translate3d(-350px, 0, 0);
-}
-.ui.visible[class*="very wide"].right.sidebar ~ .fixed,
-.ui.visible[class*="very wide"].right.sidebar ~ .pusher {
- -webkit-transform: translate3d(-475px, 0, 0);
- transform: translate3d(-475px, 0, 0);
-}
-
-
-/*******************************
- Animations
-*******************************/
-
-
-/*--------------
- Overlay
- ---------------*/
-
-
-/* Set-up */
-.ui.overlay.sidebar {
- z-index: 102;
-}
-
-/* Initial */
-.ui.left.overlay.sidebar {
- -webkit-transform: translate3d(-100%, 0, 0);
- transform: translate3d(-100%, 0, 0);
-}
-.ui.right.overlay.sidebar {
- -webkit-transform: translate3d(100%, 0, 0);
- transform: translate3d(100%, 0, 0);
-}
-.ui.top.overlay.sidebar {
- -webkit-transform: translate3d(0%, -100%, 0);
- transform: translate3d(0%, -100%, 0);
-}
-.ui.bottom.overlay.sidebar {
- -webkit-transform: translate3d(0%, 100%, 0);
- transform: translate3d(0%, 100%, 0);
-}
-
-/* Animation */
-.animating.ui.overlay.sidebar,
-.ui.visible.overlay.sidebar {
- -webkit-transition: -webkit-transform 500ms ease;
- transition: -webkit-transform 500ms ease;
- transition: transform 500ms ease;
- transition: transform 500ms ease, -webkit-transform 500ms ease;
-}
-
-/* End - Sidebar */
-.ui.visible.left.overlay.sidebar {
- -webkit-transform: translate3d(0%, 0, 0);
- transform: translate3d(0%, 0, 0);
-}
-.ui.visible.right.overlay.sidebar {
- -webkit-transform: translate3d(0%, 0, 0);
- transform: translate3d(0%, 0, 0);
-}
-.ui.visible.top.overlay.sidebar {
- -webkit-transform: translate3d(0%, 0, 0);
- transform: translate3d(0%, 0, 0);
-}
-.ui.visible.bottom.overlay.sidebar {
- -webkit-transform: translate3d(0%, 0, 0);
- transform: translate3d(0%, 0, 0);
-}
-
-/* End - Pusher */
-.ui.visible.overlay.sidebar ~ .fixed,
-.ui.visible.overlay.sidebar ~ .pusher {
- -webkit-transform: none !important;
- transform: none !important;
-}
-
-/*--------------
- Push
- ---------------*/
-
-
-/* Initial */
-.ui.push.sidebar {
- -webkit-transition: -webkit-transform 500ms ease;
- transition: -webkit-transform 500ms ease;
- transition: transform 500ms ease;
- transition: transform 500ms ease, -webkit-transform 500ms ease;
- z-index: 102;
-}
-
-/* Sidebar - Initial */
-.ui.left.push.sidebar {
- -webkit-transform: translate3d(-100%, 0, 0);
- transform: translate3d(-100%, 0, 0);
-}
-.ui.right.push.sidebar {
- -webkit-transform: translate3d(100%, 0, 0);
- transform: translate3d(100%, 0, 0);
-}
-.ui.top.push.sidebar {
- -webkit-transform: translate3d(0%, -100%, 0);
- transform: translate3d(0%, -100%, 0);
-}
-.ui.bottom.push.sidebar {
- -webkit-transform: translate3d(0%, 100%, 0);
- transform: translate3d(0%, 100%, 0);
-}
-
-/* End */
-.ui.visible.push.sidebar {
- -webkit-transform: translate3d(0%, 0, 0);
- transform: translate3d(0%, 0, 0);
-}
-
-/*--------------
- Uncover
- ---------------*/
-
-
-/* Initial */
-.ui.uncover.sidebar {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- z-index: 1;
-}
-
-/* End */
-.ui.visible.uncover.sidebar {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- -webkit-transition: -webkit-transform 500ms ease;
- transition: -webkit-transform 500ms ease;
- transition: transform 500ms ease;
- transition: transform 500ms ease, -webkit-transform 500ms ease;
-}
-
-/*--------------
- Slide Along
- ---------------*/
-
-
-/* Initial */
-.ui.slide.along.sidebar {
- z-index: 1;
-}
-
-/* Sidebar - Initial */
-.ui.left.slide.along.sidebar {
- -webkit-transform: translate3d(-50%, 0, 0);
- transform: translate3d(-50%, 0, 0);
-}
-.ui.right.slide.along.sidebar {
- -webkit-transform: translate3d(50%, 0, 0);
- transform: translate3d(50%, 0, 0);
-}
-.ui.top.slide.along.sidebar {
- -webkit-transform: translate3d(0, -50%, 0);
- transform: translate3d(0, -50%, 0);
-}
-.ui.bottom.slide.along.sidebar {
- -webkit-transform: translate3d(0%, 50%, 0);
- transform: translate3d(0%, 50%, 0);
-}
-
-/* Animation */
-.ui.animating.slide.along.sidebar {
- -webkit-transition: -webkit-transform 500ms ease;
- transition: -webkit-transform 500ms ease;
- transition: transform 500ms ease;
- transition: transform 500ms ease, -webkit-transform 500ms ease;
-}
-
-/* End */
-.ui.visible.slide.along.sidebar {
- -webkit-transform: translate3d(0%, 0, 0);
- transform: translate3d(0%, 0, 0);
-}
-
-/*--------------
- Slide Out
- ---------------*/
-
-
-/* Initial */
-.ui.slide.out.sidebar {
- z-index: 1;
-}
-
-/* Sidebar - Initial */
-.ui.left.slide.out.sidebar {
- -webkit-transform: translate3d(50%, 0, 0);
- transform: translate3d(50%, 0, 0);
-}
-.ui.right.slide.out.sidebar {
- -webkit-transform: translate3d(-50%, 0, 0);
- transform: translate3d(-50%, 0, 0);
-}
-.ui.top.slide.out.sidebar {
- -webkit-transform: translate3d(0%, 50%, 0);
- transform: translate3d(0%, 50%, 0);
-}
-.ui.bottom.slide.out.sidebar {
- -webkit-transform: translate3d(0%, -50%, 0);
- transform: translate3d(0%, -50%, 0);
-}
-
-/* Animation */
-.ui.animating.slide.out.sidebar {
- -webkit-transition: -webkit-transform 500ms ease;
- transition: -webkit-transform 500ms ease;
- transition: transform 500ms ease;
- transition: transform 500ms ease, -webkit-transform 500ms ease;
-}
-
-/* End */
-.ui.visible.slide.out.sidebar {
- -webkit-transform: translate3d(0%, 0, 0);
- transform: translate3d(0%, 0, 0);
-}
-
-/*--------------
- Scale Down
- ---------------*/
-
-
-/* Initial */
-.ui.scale.down.sidebar {
- -webkit-transition: -webkit-transform 500ms ease;
- transition: -webkit-transform 500ms ease;
- transition: transform 500ms ease;
- transition: transform 500ms ease, -webkit-transform 500ms ease;
- z-index: 102;
-}
-.ui.left.scale.down.sidebar {
- -webkit-transform: translate3d(-100%, 0, 0);
- transform: translate3d(-100%, 0, 0);
-}
-.ui.right.scale.down.sidebar {
- -webkit-transform: translate3d(100%, 0, 0);
- transform: translate3d(100%, 0, 0);
-}
-.ui.top.scale.down.sidebar {
- -webkit-transform: translate3d(0%, -100%, 0);
- transform: translate3d(0%, -100%, 0);
-}
-.ui.bottom.scale.down.sidebar {
- -webkit-transform: translate3d(0%, 100%, 0);
- transform: translate3d(0%, 100%, 0);
-}
-
-/* Pusher - Initial */
-.ui.scale.down.left.sidebar ~ .pusher {
- -webkit-transform-origin: 75% 50%;
- transform-origin: 75% 50%;
-}
-.ui.scale.down.right.sidebar ~ .pusher {
- -webkit-transform-origin: 25% 50%;
- transform-origin: 25% 50%;
-}
-.ui.scale.down.top.sidebar ~ .pusher {
- -webkit-transform-origin: 50% 75%;
- transform-origin: 50% 75%;
-}
-.ui.scale.down.bottom.sidebar ~ .pusher {
- -webkit-transform-origin: 50% 25%;
- transform-origin: 50% 25%;
-}
-
-/* Animation */
-.ui.animating.scale.down > .visible.ui.sidebar {
- -webkit-transition: -webkit-transform 500ms ease;
- transition: -webkit-transform 500ms ease;
- transition: transform 500ms ease;
- transition: transform 500ms ease, -webkit-transform 500ms ease;
-}
-.ui.visible.scale.down.sidebar ~ .pusher,
-.ui.animating.scale.down.sidebar ~ .pusher {
- display: block !important;
- width: 100%;
- height: 100%;
- overflow: hidden !important;
-}
-
-/* End */
-.ui.visible.scale.down.sidebar {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
-}
-.ui.visible.scale.down.sidebar ~ .pusher {
- -webkit-transform: scale(0.75);
- transform: scale(0.75);
-}
-
-
-/*******************************
- Theme Overrides
-*******************************/
-
-
-
-/*******************************
- Site Overrides
-*******************************/
-
diff --git a/src-angular/assets/semantic/dist/components/sidebar.js b/src-angular/assets/semantic/dist/components/sidebar.js
deleted file mode 100644
index ed7105c..0000000
--- a/src-angular/assets/semantic/dist/components/sidebar.js
+++ /dev/null
@@ -1,1036 +0,0 @@
-/*!
- * # Fomantic-UI - Sidebar
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-;(function ($, window, document, undefined) {
-
-'use strict';
-
-$.isFunction = $.isFunction || function(obj) {
- return typeof obj === "function" && typeof obj.nodeType !== "number";
-};
-
-window = (typeof window != 'undefined' && window.Math == Math)
- ? window
- : (typeof self != 'undefined' && self.Math == Math)
- ? self
- : Function('return this')()
-;
-
-$.fn.sidebar = function(parameters) {
- var
- $allModules = $(this),
- $window = $(window),
- $document = $(document),
- $html = $('html'),
- $head = $('head'),
-
- moduleSelector = $allModules.selector || '',
-
- time = new Date().getTime(),
- performance = [],
-
- query = arguments[0],
- methodInvoked = (typeof query == 'string'),
- queryArguments = [].slice.call(arguments, 1),
-
- requestAnimationFrame = window.requestAnimationFrame
- || window.mozRequestAnimationFrame
- || window.webkitRequestAnimationFrame
- || window.msRequestAnimationFrame
- || function(callback) { setTimeout(callback, 0); },
-
- returnedValue
- ;
-
- $allModules
- .each(function() {
- var
- settings = ( $.isPlainObject(parameters) )
- ? $.extend(true, {}, $.fn.sidebar.settings, parameters)
- : $.extend({}, $.fn.sidebar.settings),
-
- selector = settings.selector,
- className = settings.className,
- namespace = settings.namespace,
- regExp = settings.regExp,
- error = settings.error,
-
- eventNamespace = '.' + namespace,
- moduleNamespace = 'module-' + namespace,
-
- $module = $(this),
- $context = $(settings.context),
-
- $sidebars = $module.children(selector.sidebar),
- $fixed = $context.children(selector.fixed),
- $pusher = $context.children(selector.pusher),
- $style,
-
- element = this,
- instance = $module.data(moduleNamespace),
-
- elementNamespace,
- id,
- currentScroll,
- transitionEvent,
-
- module
- ;
-
- module = {
-
- initialize: function() {
- module.debug('Initializing sidebar', parameters);
-
- module.create.id();
-
- transitionEvent = module.get.transitionEvent();
-
- // avoids locking rendering if initialized in onReady
- if(settings.delaySetup) {
- requestAnimationFrame(module.setup.layout);
- }
- else {
- module.setup.layout();
- }
-
- requestAnimationFrame(function() {
- module.setup.cache();
- });
-
- module.instantiate();
- },
-
- instantiate: function() {
- module.verbose('Storing instance of module', module);
- instance = module;
- $module
- .data(moduleNamespace, module)
- ;
- },
-
- create: {
- id: function() {
- id = (Math.random().toString(16) + '000000000').substr(2,8);
- elementNamespace = '.' + id;
- module.verbose('Creating unique id for element', id);
- }
- },
-
- destroy: function() {
- module.verbose('Destroying previous module for', $module);
- $module
- .off(eventNamespace)
- .removeData(moduleNamespace)
- ;
- if(module.is.ios()) {
- module.remove.ios();
- }
- // bound by uuid
- $context.off(elementNamespace);
- $window.off(elementNamespace);
- $document.off(elementNamespace);
- },
-
- event: {
- clickaway: function(event) {
- if(settings.closable){
- var
- clickedInPusher = ($pusher.find(event.target).length > 0 || $pusher.is(event.target)),
- clickedContext = ($context.is(event.target))
- ;
- if(clickedInPusher) {
- module.verbose('User clicked on dimmed page');
- module.hide();
- }
- if(clickedContext) {
- module.verbose('User clicked on dimmable context (scaled out page)');
- module.hide();
- }
- }
- },
- touch: function(event) {
- //event.stopPropagation();
- },
- containScroll: function(event) {
- if(element.scrollTop <= 0) {
- element.scrollTop = 1;
- }
- if((element.scrollTop + element.offsetHeight) >= element.scrollHeight) {
- element.scrollTop = element.scrollHeight - element.offsetHeight - 1;
- }
- },
- scroll: function(event) {
- if( $(event.target).closest(selector.sidebar).length === 0 ) {
- event.preventDefault();
- }
- }
- },
-
- bind: {
- clickaway: function() {
- module.verbose('Adding clickaway events to context', $context);
- $context
- .on('click' + elementNamespace, module.event.clickaway)
- .on('touchend' + elementNamespace, module.event.clickaway)
- ;
- },
- scrollLock: function() {
- if(settings.scrollLock) {
- module.debug('Disabling page scroll');
- $window
- .on('DOMMouseScroll' + elementNamespace, module.event.scroll)
- ;
- }
- module.verbose('Adding events to contain sidebar scroll');
- $document
- .on('touchmove' + elementNamespace, module.event.touch)
- ;
- $module
- .on('scroll' + eventNamespace, module.event.containScroll)
- ;
- }
- },
- unbind: {
- clickaway: function() {
- module.verbose('Removing clickaway events from context', $context);
- $context.off(elementNamespace);
- },
- scrollLock: function() {
- module.verbose('Removing scroll lock from page');
- $document.off(elementNamespace);
- $window.off(elementNamespace);
- $module.off('scroll' + eventNamespace);
- }
- },
-
- add: {
- inlineCSS: function() {
- var
- width = module.cache.width || $module.outerWidth(),
- height = module.cache.height || $module.outerHeight(),
- isRTL = module.is.rtl(),
- direction = module.get.direction(),
- distance = {
- left : width,
- right : -width,
- top : height,
- bottom : -height
- },
- style
- ;
-
- if(isRTL){
- module.verbose('RTL detected, flipping widths');
- distance.left = -width;
- distance.right = width;
- }
-
- style = '';
- $style = $(style)
- .appendTo($head)
- ;
- module.debug('Adding sizing css to head', $style);
- }
- },
-
- refresh: function() {
- module.verbose('Refreshing selector cache');
- $context = $(settings.context);
- $sidebars = $context.children(selector.sidebar);
- $pusher = $context.children(selector.pusher);
- $fixed = $context.children(selector.fixed);
- module.clear.cache();
- },
-
- refreshSidebars: function() {
- module.verbose('Refreshing other sidebars');
- $sidebars = $context.children(selector.sidebar);
- },
-
- repaint: function() {
- module.verbose('Forcing repaint event');
- element.style.display = 'none';
- var ignored = element.offsetHeight;
- element.scrollTop = element.scrollTop;
- element.style.display = '';
- },
-
- setup: {
- cache: function() {
- module.cache = {
- width : $module.outerWidth(),
- height : $module.outerHeight()
- };
- },
- layout: function() {
- if( $context.children(selector.pusher).length === 0 ) {
- module.debug('Adding wrapper element for sidebar');
- module.error(error.pusher);
- $pusher = $('');
- $context
- .children()
- .not(selector.omitted)
- .not($sidebars)
- .wrapAll($pusher)
- ;
- module.refresh();
- }
- if($module.nextAll(selector.pusher).length === 0 || $module.nextAll(selector.pusher)[0] !== $pusher[0]) {
- module.debug('Moved sidebar to correct parent element');
- module.error(error.movedSidebar, element);
- $module.detach().prependTo($context);
- module.refresh();
- }
- module.clear.cache();
- module.set.pushable();
- module.set.direction();
- }
- },
-
- attachEvents: function(selector, event) {
- var
- $toggle = $(selector)
- ;
- event = $.isFunction(module[event])
- ? module[event]
- : module.toggle
- ;
- if($toggle.length > 0) {
- module.debug('Attaching sidebar events to element', selector, event);
- $toggle
- .on('click' + eventNamespace, event)
- ;
- }
- else {
- module.error(error.notFound, selector);
- }
- },
-
- show: function(callback) {
- callback = $.isFunction(callback)
- ? callback
- : function(){}
- ;
- if(module.is.hidden()) {
- module.refreshSidebars();
- if(settings.overlay) {
- module.error(error.overlay);
- settings.transition = 'overlay';
- }
- module.refresh();
- if(module.othersActive()) {
- module.debug('Other sidebars currently visible');
- if(settings.exclusive) {
- // if not overlay queue animation after hide
- if(settings.transition != 'overlay') {
- module.hideOthers(module.show);
- return;
- }
- else {
- module.hideOthers();
- }
- }
- else {
- settings.transition = 'overlay';
- }
- }
- module.pushPage(function() {
- callback.call(element);
- settings.onShow.call(element);
- });
- settings.onChange.call(element);
- settings.onVisible.call(element);
- }
- else {
- module.debug('Sidebar is already visible');
- }
- },
-
- hide: function(callback) {
- callback = $.isFunction(callback)
- ? callback
- : function(){}
- ;
- if(module.is.visible() || module.is.animating()) {
- module.debug('Hiding sidebar', callback);
- module.refreshSidebars();
- module.pullPage(function() {
- callback.call(element);
- settings.onHidden.call(element);
- });
- settings.onChange.call(element);
- settings.onHide.call(element);
- }
- },
-
- othersAnimating: function() {
- return ($sidebars.not($module).filter('.' + className.animating).length > 0);
- },
- othersVisible: function() {
- return ($sidebars.not($module).filter('.' + className.visible).length > 0);
- },
- othersActive: function() {
- return(module.othersVisible() || module.othersAnimating());
- },
-
- hideOthers: function(callback) {
- var
- $otherSidebars = $sidebars.not($module).filter('.' + className.visible),
- sidebarCount = $otherSidebars.length,
- callbackCount = 0
- ;
- callback = callback || function(){};
- $otherSidebars
- .sidebar('hide', function() {
- callbackCount++;
- if(callbackCount == sidebarCount) {
- callback();
- }
- })
- ;
- },
-
- toggle: function() {
- module.verbose('Determining toggled direction');
- if(module.is.hidden()) {
- module.show();
- }
- else {
- module.hide();
- }
- },
-
- pushPage: function(callback) {
- var
- transition = module.get.transition(),
- $transition = (transition === 'overlay' || module.othersActive())
- ? $module
- : $pusher,
- animate,
- dim,
- transitionEnd
- ;
- callback = $.isFunction(callback)
- ? callback
- : function(){}
- ;
- if(settings.transition == 'scale down') {
- module.scrollToTop();
- }
- module.set.transition(transition);
- module.repaint();
- animate = function() {
- module.bind.clickaway();
- module.add.inlineCSS();
- module.set.animating();
- module.set.visible();
- };
- dim = function() {
- module.set.dimmed();
- };
- transitionEnd = function(event) {
- if( event.target == $transition[0] ) {
- $transition.off(transitionEvent + elementNamespace, transitionEnd);
- module.remove.animating();
- module.bind.scrollLock();
- callback.call(element);
- }
- };
- $transition.off(transitionEvent + elementNamespace);
- $transition.on(transitionEvent + elementNamespace, transitionEnd);
- requestAnimationFrame(animate);
- if(settings.dimPage && !module.othersVisible()) {
- requestAnimationFrame(dim);
- }
- },
-
- pullPage: function(callback) {
- var
- transition = module.get.transition(),
- $transition = (transition == 'overlay' || module.othersActive())
- ? $module
- : $pusher,
- animate,
- transitionEnd
- ;
- callback = $.isFunction(callback)
- ? callback
- : function(){}
- ;
- module.verbose('Removing context push state', module.get.direction());
-
- module.unbind.clickaway();
- module.unbind.scrollLock();
-
- animate = function() {
- module.set.transition(transition);
- module.set.animating();
- module.remove.visible();
- if(settings.dimPage && !module.othersVisible()) {
- $pusher.removeClass(className.dimmed);
- }
- };
- transitionEnd = function(event) {
- if( event.target == $transition[0] ) {
- $transition.off(transitionEvent + elementNamespace, transitionEnd);
- module.remove.animating();
- module.remove.transition();
- module.remove.inlineCSS();
- if(transition == 'scale down' || (settings.returnScroll && module.is.mobile()) ) {
- module.scrollBack();
- }
- callback.call(element);
- }
- };
- $transition.off(transitionEvent + elementNamespace);
- $transition.on(transitionEvent + elementNamespace, transitionEnd);
- requestAnimationFrame(animate);
- },
-
- scrollToTop: function() {
- module.verbose('Scrolling to top of page to avoid animation issues');
- currentScroll = $(window).scrollTop();
- $module.scrollTop(0);
- window.scrollTo(0, 0);
- },
-
- scrollBack: function() {
- module.verbose('Scrolling back to original page position');
- window.scrollTo(0, currentScroll);
- },
-
- clear: {
- cache: function() {
- module.verbose('Clearing cached dimensions');
- module.cache = {};
- }
- },
-
- set: {
-
- // ios only (scroll on html not document). This prevent auto-resize canvas/scroll in ios
- // (This is no longer necessary in latest iOS)
- ios: function() {
- $html.addClass(className.ios);
- },
-
- // container
- pushed: function() {
- $context.addClass(className.pushed);
- },
- pushable: function() {
- $context.addClass(className.pushable);
- },
-
- // pusher
- dimmed: function() {
- $pusher.addClass(className.dimmed);
- },
-
- // sidebar
- active: function() {
- $module.addClass(className.active);
- },
- animating: function() {
- $module.addClass(className.animating);
- },
- transition: function(transition) {
- transition = transition || module.get.transition();
- $module.addClass(transition);
- },
- direction: function(direction) {
- direction = direction || module.get.direction();
- $module.addClass(className[direction]);
- },
- visible: function() {
- $module.addClass(className.visible);
- },
- overlay: function() {
- $module.addClass(className.overlay);
- }
- },
- remove: {
-
- inlineCSS: function() {
- module.debug('Removing inline css styles', $style);
- if($style && $style.length > 0) {
- $style.remove();
- }
- },
-
- // ios scroll on html not document
- ios: function() {
- $html.removeClass(className.ios);
- },
-
- // context
- pushed: function() {
- $context.removeClass(className.pushed);
- },
- pushable: function() {
- $context.removeClass(className.pushable);
- },
-
- // sidebar
- active: function() {
- $module.removeClass(className.active);
- },
- animating: function() {
- $module.removeClass(className.animating);
- },
- transition: function(transition) {
- transition = transition || module.get.transition();
- $module.removeClass(transition);
- },
- direction: function(direction) {
- direction = direction || module.get.direction();
- $module.removeClass(className[direction]);
- },
- visible: function() {
- $module.removeClass(className.visible);
- },
- overlay: function() {
- $module.removeClass(className.overlay);
- }
- },
-
- get: {
- direction: function() {
- if($module.hasClass(className.top)) {
- return className.top;
- }
- else if($module.hasClass(className.right)) {
- return className.right;
- }
- else if($module.hasClass(className.bottom)) {
- return className.bottom;
- }
- return className.left;
- },
- transition: function() {
- var
- direction = module.get.direction(),
- transition
- ;
- transition = ( module.is.mobile() )
- ? (settings.mobileTransition == 'auto')
- ? settings.defaultTransition.mobile[direction]
- : settings.mobileTransition
- : (settings.transition == 'auto')
- ? settings.defaultTransition.computer[direction]
- : settings.transition
- ;
- module.verbose('Determined transition', transition);
- return transition;
- },
- transitionEvent: function() {
- var
- element = document.createElement('element'),
- transitions = {
- 'transition' :'transitionend',
- 'OTransition' :'oTransitionEnd',
- 'MozTransition' :'transitionend',
- 'WebkitTransition' :'webkitTransitionEnd'
- },
- transition
- ;
- for(transition in transitions){
- if( element.style[transition] !== undefined ){
- return transitions[transition];
- }
- }
- }
- },
-
- is: {
-
- ie: function() {
- var
- isIE11 = (!(window.ActiveXObject) && 'ActiveXObject' in window),
- isIE = ('ActiveXObject' in window)
- ;
- return (isIE11 || isIE);
- },
-
- ios: function() {
- var
- userAgent = navigator.userAgent,
- isIOS = userAgent.match(regExp.ios),
- isMobileChrome = userAgent.match(regExp.mobileChrome)
- ;
- if(isIOS && !isMobileChrome) {
- module.verbose('Browser was found to be iOS', userAgent);
- return true;
- }
- else {
- return false;
- }
- },
- mobile: function() {
- var
- userAgent = navigator.userAgent,
- isMobile = userAgent.match(regExp.mobile)
- ;
- if(isMobile) {
- module.verbose('Browser was found to be mobile', userAgent);
- return true;
- }
- else {
- module.verbose('Browser is not mobile, using regular transition', userAgent);
- return false;
- }
- },
- hidden: function() {
- return !module.is.visible();
- },
- visible: function() {
- return $module.hasClass(className.visible);
- },
- // alias
- open: function() {
- return module.is.visible();
- },
- closed: function() {
- return module.is.hidden();
- },
- vertical: function() {
- return $module.hasClass(className.top);
- },
- animating: function() {
- return $context.hasClass(className.animating);
- },
- rtl: function () {
- if(module.cache.rtl === undefined) {
- module.cache.rtl = $module.attr('dir') === 'rtl' || $module.css('direction') === 'rtl';
- }
- return module.cache.rtl;
- }
- },
-
- setting: function(name, value) {
- module.debug('Changing setting', name, value);
- if( $.isPlainObject(name) ) {
- $.extend(true, settings, name);
- }
- else if(value !== undefined) {
- if($.isPlainObject(settings[name])) {
- $.extend(true, settings[name], value);
- }
- else {
- settings[name] = value;
- }
- }
- else {
- return settings[name];
- }
- },
- internal: function(name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, module, name);
- }
- else if(value !== undefined) {
- module[name] = value;
- }
- else {
- return module[name];
- }
- },
- debug: function() {
- if(!settings.silent && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.debug.apply(console, arguments);
- }
- }
- },
- verbose: function() {
- if(!settings.silent && settings.verbose && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.verbose.apply(console, arguments);
- }
- }
- },
- error: function() {
- if(!settings.silent) {
- module.error = Function.prototype.bind.call(console.error, console, settings.name + ':');
- module.error.apply(console, arguments);
- }
- },
- performance: {
- log: function(message) {
- var
- currentTime,
- executionTime,
- previousTime
- ;
- if(settings.performance) {
- currentTime = new Date().getTime();
- previousTime = time || currentTime;
- executionTime = currentTime - previousTime;
- time = currentTime;
- performance.push({
- 'Name' : message[0],
- 'Arguments' : [].slice.call(message, 1) || '',
- 'Element' : element,
- 'Execution Time' : executionTime
- });
- }
- clearTimeout(module.performance.timer);
- module.performance.timer = setTimeout(module.performance.display, 500);
- },
- display: function() {
- var
- title = settings.name + ':',
- totalTime = 0
- ;
- time = false;
- clearTimeout(module.performance.timer);
- $.each(performance, function(index, data) {
- totalTime += data['Execution Time'];
- });
- title += ' ' + totalTime + 'ms';
- if(moduleSelector) {
- title += ' \'' + moduleSelector + '\'';
- }
- if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) {
- console.groupCollapsed(title);
- if(console.table) {
- console.table(performance);
- }
- else {
- $.each(performance, function(index, data) {
- console.log(data['Name'] + ': ' + data['Execution Time']+'ms');
- });
- }
- console.groupEnd();
- }
- performance = [];
- }
- },
- invoke: function(query, passedArguments, context) {
- var
- object = instance,
- maxDepth,
- found,
- response
- ;
- passedArguments = passedArguments || queryArguments;
- context = element || context;
- if(typeof query == 'string' && object !== undefined) {
- query = query.split(/[\. ]/);
- maxDepth = query.length - 1;
- $.each(query, function(depth, value) {
- var camelCaseValue = (depth != maxDepth)
- ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
- : query
- ;
- if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
- object = object[camelCaseValue];
- }
- else if( object[camelCaseValue] !== undefined ) {
- found = object[camelCaseValue];
- return false;
- }
- else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
- object = object[value];
- }
- else if( object[value] !== undefined ) {
- found = object[value];
- return false;
- }
- else {
- module.error(error.method, query);
- return false;
- }
- });
- }
- if ( $.isFunction( found ) ) {
- response = found.apply(context, passedArguments);
- }
- else if(found !== undefined) {
- response = found;
- }
- if(Array.isArray(returnedValue)) {
- returnedValue.push(response);
- }
- else if(returnedValue !== undefined) {
- returnedValue = [returnedValue, response];
- }
- else if(response !== undefined) {
- returnedValue = response;
- }
- return found;
- }
- }
- ;
-
- if(methodInvoked) {
- if(instance === undefined) {
- module.initialize();
- }
- module.invoke(query);
- }
- else {
- if(instance !== undefined) {
- module.invoke('destroy');
- }
- module.initialize();
- }
- });
-
- return (returnedValue !== undefined)
- ? returnedValue
- : this
- ;
-};
-
-$.fn.sidebar.settings = {
-
- name : 'Sidebar',
- namespace : 'sidebar',
-
- silent : false,
- debug : false,
- verbose : false,
- performance : true,
-
- transition : 'auto',
- mobileTransition : 'auto',
-
- defaultTransition : {
- computer: {
- left : 'uncover',
- right : 'uncover',
- top : 'overlay',
- bottom : 'overlay'
- },
- mobile: {
- left : 'uncover',
- right : 'uncover',
- top : 'overlay',
- bottom : 'overlay'
- }
- },
-
- context : 'body',
- exclusive : false,
- closable : true,
- dimPage : true,
- scrollLock : false,
- returnScroll : false,
- delaySetup : false,
-
- duration : 500,
-
- onChange : function(){},
- onShow : function(){},
- onHide : function(){},
-
- onHidden : function(){},
- onVisible : function(){},
-
- className : {
- active : 'active',
- animating : 'animating',
- dimmed : 'dimmed',
- ios : 'ios',
- pushable : 'pushable',
- pushed : 'pushed',
- right : 'right',
- top : 'top',
- left : 'left',
- bottom : 'bottom',
- visible : 'visible'
- },
-
- selector: {
- fixed : '.fixed',
- omitted : 'script, link, style, .ui.modal, .ui.dimmer, .ui.nag, .ui.fixed',
- pusher : '.pusher',
- sidebar : '.ui.sidebar'
- },
-
- regExp: {
- ios : /(iPad|iPhone|iPod)/g,
- mobileChrome : /(CriOS)/g,
- mobile : /Mobile|iP(hone|od|ad)|Android|BlackBerry|IEMobile|Kindle|NetFront|Silk-Accelerated|(hpw|web)OS|Fennec|Minimo|Opera M(obi|ini)|Blazer|Dolfin|Dolphin|Skyfire|Zune/g
- },
-
- error : {
- method : 'The method you called is not defined.',
- pusher : 'Had to add pusher element. For optimal performance make sure body content is inside a pusher element',
- movedSidebar : 'Had to move sidebar. For optimal performance make sure sidebar and pusher are direct children of your body tag',
- overlay : 'The overlay setting is no longer supported, use animation: overlay',
- notFound : 'There were no elements that matched the specified selector'
- }
-
-};
-
-
-})( jQuery, window, document );
diff --git a/src-angular/assets/semantic/dist/components/sidebar.min.css b/src-angular/assets/semantic/dist/components/sidebar.min.css
deleted file mode 100644
index 8447e54..0000000
--- a/src-angular/assets/semantic/dist/components/sidebar.min.css
+++ /dev/null
@@ -1,9 +0,0 @@
-/*!
- * # Fomantic-UI - Sidebar
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */.ui.sidebar{position:fixed;top:0;left:0;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:none;transition:none;will-change:transform;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);visibility:hidden;-webkit-overflow-scrolling:touch;height:100%!important;max-height:100%;border-radius:0!important;margin:0!important;overflow-y:auto!important;z-index:102}.ui.sidebar>*{-webkit-backface-visibility:hidden;backface-visibility:hidden}.ui.left.sidebar{right:auto;left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.ui.right.sidebar{right:0!important;left:auto!important;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.ui.bottom.sidebar,.ui.top.sidebar{width:100%!important;height:auto!important}.ui.top.sidebar{top:0!important;bottom:auto!important;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.ui.bottom.sidebar{top:auto!important;bottom:0!important;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.pushable{height:100%;overflow-x:hidden;padding:0!important}body.pushable{background:#545454}body.pushable.dimmed{background:inherit}.pushable:not(body){-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.pushable:not(body)>.fixed,.pushable:not(body)>.pusher:after,.pushable:not(body)>.ui.sidebar{position:absolute}.pushable>.fixed{position:fixed;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;will-change:transform;z-index:101}.pushable>.pusher{position:relative;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;min-height:100%;-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;z-index:2;background:inherit}body.pushable>.pusher{background:#fff}.pushable>.pusher:after{position:fixed;top:0;right:0;content:'';background-color:rgba(0,0,0,.4);overflow:hidden;opacity:0;-webkit-transition:opacity .5s;transition:opacity .5s;will-change:opacity;z-index:1000}.ui.sidebar.menu .item{border-radius:0!important}.pushable>.pusher.dimmed:after{width:100%!important;height:100%!important;opacity:1!important}.ui.animating.sidebar{visibility:visible}.ui.visible.sidebar{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.left.visible.sidebar,.ui.right.visible.sidebar{-webkit-box-shadow:0 0 20px rgba(34,36,38,.15);box-shadow:0 0 20px rgba(34,36,38,.15)}.ui.bottom.visible.sidebar,.ui.top.visible.sidebar{-webkit-box-shadow:0 0 20px rgba(34,36,38,.15);box-shadow:0 0 20px rgba(34,36,38,.15)}.ui.visible.left.sidebar~.fixed,.ui.visible.left.sidebar~.pusher{-webkit-transform:translate3d(260px,0,0);transform:translate3d(260px,0,0)}.ui.visible.right.sidebar~.fixed,.ui.visible.right.sidebar~.pusher{-webkit-transform:translate3d(-260px,0,0);transform:translate3d(-260px,0,0)}.ui.visible.top.sidebar~.fixed,.ui.visible.top.sidebar~.pusher{-webkit-transform:translate3d(0,36px,0);transform:translate3d(0,36px,0)}.ui.visible.bottom.sidebar~.fixed,.ui.visible.bottom.sidebar~.pusher{-webkit-transform:translate3d(0,-36px,0);transform:translate3d(0,-36px,0)}.ui.visible.left.sidebar~.ui.visible.right.sidebar~.fixed,.ui.visible.left.sidebar~.ui.visible.right.sidebar~.pusher,.ui.visible.right.sidebar~.ui.visible.left.sidebar~.fixed,.ui.visible.right.sidebar~.ui.visible.left.sidebar~.pusher{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.thin.left.sidebar,.ui.thin.right.sidebar{width:150px}.ui[class*="very thin"].left.sidebar,.ui[class*="very thin"].right.sidebar{width:60px}.ui.left.sidebar,.ui.right.sidebar{width:260px}.ui.wide.left.sidebar,.ui.wide.right.sidebar{width:350px}.ui[class*="very wide"].left.sidebar,.ui[class*="very wide"].right.sidebar{width:475px}.ui.visible.thin.left.sidebar~.fixed,.ui.visible.thin.left.sidebar~.pusher{-webkit-transform:translate3d(150px,0,0);transform:translate3d(150px,0,0)}.ui.visible[class*="very thin"].left.sidebar~.fixed,.ui.visible[class*="very thin"].left.sidebar~.pusher{-webkit-transform:translate3d(60px,0,0);transform:translate3d(60px,0,0)}.ui.visible.wide.left.sidebar~.fixed,.ui.visible.wide.left.sidebar~.pusher{-webkit-transform:translate3d(350px,0,0);transform:translate3d(350px,0,0)}.ui.visible[class*="very wide"].left.sidebar~.fixed,.ui.visible[class*="very wide"].left.sidebar~.pusher{-webkit-transform:translate3d(475px,0,0);transform:translate3d(475px,0,0)}.ui.visible.thin.right.sidebar~.fixed,.ui.visible.thin.right.sidebar~.pusher{-webkit-transform:translate3d(-150px,0,0);transform:translate3d(-150px,0,0)}.ui.visible[class*="very thin"].right.sidebar~.fixed,.ui.visible[class*="very thin"].right.sidebar~.pusher{-webkit-transform:translate3d(-60px,0,0);transform:translate3d(-60px,0,0)}.ui.visible.wide.right.sidebar~.fixed,.ui.visible.wide.right.sidebar~.pusher{-webkit-transform:translate3d(-350px,0,0);transform:translate3d(-350px,0,0)}.ui.visible[class*="very wide"].right.sidebar~.fixed,.ui.visible[class*="very wide"].right.sidebar~.pusher{-webkit-transform:translate3d(-475px,0,0);transform:translate3d(-475px,0,0)}.ui.overlay.sidebar{z-index:102}.ui.left.overlay.sidebar{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.ui.right.overlay.sidebar{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.ui.top.overlay.sidebar{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.ui.bottom.overlay.sidebar{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.animating.ui.overlay.sidebar,.ui.visible.overlay.sidebar{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease}.ui.visible.left.overlay.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.visible.right.overlay.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.visible.top.overlay.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.visible.bottom.overlay.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.visible.overlay.sidebar~.fixed,.ui.visible.overlay.sidebar~.pusher{-webkit-transform:none!important;transform:none!important}.ui.push.sidebar{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;z-index:102}.ui.left.push.sidebar{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.ui.right.push.sidebar{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.ui.top.push.sidebar{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.ui.bottom.push.sidebar{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.ui.visible.push.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.uncover.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);z-index:1}.ui.visible.uncover.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease}.ui.slide.along.sidebar{z-index:1}.ui.left.slide.along.sidebar{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}.ui.right.slide.along.sidebar{-webkit-transform:translate3d(50%,0,0);transform:translate3d(50%,0,0)}.ui.top.slide.along.sidebar{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.ui.bottom.slide.along.sidebar{-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0)}.ui.animating.slide.along.sidebar{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease}.ui.visible.slide.along.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.slide.out.sidebar{z-index:1}.ui.left.slide.out.sidebar{-webkit-transform:translate3d(50%,0,0);transform:translate3d(50%,0,0)}.ui.right.slide.out.sidebar{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}.ui.top.slide.out.sidebar{-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0)}.ui.bottom.slide.out.sidebar{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.ui.animating.slide.out.sidebar{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease}.ui.visible.slide.out.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.scale.down.sidebar{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;z-index:102}.ui.left.scale.down.sidebar{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.ui.right.scale.down.sidebar{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.ui.top.scale.down.sidebar{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.ui.bottom.scale.down.sidebar{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.ui.scale.down.left.sidebar~.pusher{-webkit-transform-origin:75% 50%;transform-origin:75% 50%}.ui.scale.down.right.sidebar~.pusher{-webkit-transform-origin:25% 50%;transform-origin:25% 50%}.ui.scale.down.top.sidebar~.pusher{-webkit-transform-origin:50% 75%;transform-origin:50% 75%}.ui.scale.down.bottom.sidebar~.pusher{-webkit-transform-origin:50% 25%;transform-origin:50% 25%}.ui.animating.scale.down>.visible.ui.sidebar{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease}.ui.animating.scale.down.sidebar~.pusher,.ui.visible.scale.down.sidebar~.pusher{display:block!important;width:100%;height:100%;overflow:hidden!important}.ui.visible.scale.down.sidebar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.ui.visible.scale.down.sidebar~.pusher{-webkit-transform:scale(.75);transform:scale(.75)}
\ No newline at end of file
diff --git a/src-angular/assets/semantic/dist/components/sidebar.min.js b/src-angular/assets/semantic/dist/components/sidebar.min.js
deleted file mode 100644
index b6cbe64..0000000
--- a/src-angular/assets/semantic/dist/components/sidebar.min.js
+++ /dev/null
@@ -1,11 +0,0 @@
- /*
- * # Fomantic UI - 2.8.3
- * https://github.com/fomantic/Fomantic-UI
- * http://fomantic-ui.com/
- *
- * Copyright 2014 Contributors
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-!function(D,j,R,z){"use strict";D.isFunction=D.isFunction||function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},j=void 0!==j&&j.Math==Math?j:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")(),D.fn.sidebar=function(C){var T,e=D(this),k=D(j),w=D(R),S=D("html"),x=D("head"),A=e.selector||"",F=(new Date).getTime(),O=[],P=C,E="string"==typeof P,H=[].slice.call(arguments,1),M=j.requestAnimationFrame||j.mozRequestAnimationFrame||j.webkitRequestAnimationFrame||j.msRequestAnimationFrame||function(e){setTimeout(e,0)};return e.each(function(){var s,a,e,i,l,c,u=D.isPlainObject(C)?D.extend(!0,{},D.fn.sidebar.settings,C):D.extend({},D.fn.sidebar.settings),n=u.selector,r=u.className,t=u.namespace,o=u.regExp,d=u.error,f="."+t,b="module-"+t,h=D(this),m=D(u.context),g=h.children(n.sidebar),v=(m.children(n.fixed),m.children(n.pusher)),p=this,y=h.data(b);c={initialize:function(){c.debug("Initializing sidebar",C),c.create.id(),l=c.get.transitionEvent(),u.delaySetup?M(c.setup.layout):c.setup.layout(),M(function(){c.setup.cache()}),c.instantiate()},instantiate:function(){c.verbose("Storing instance of module",c),y=c,h.data(b,c)},create:{id:function(){e=(Math.random().toString(16)+"000000000").substr(2,8),a="."+e,c.verbose("Creating unique id for element",e)}},destroy:function(){c.verbose("Destroying previous module for",h),h.off(f).removeData(b),c.is.ios()&&c.remove.ios(),m.off(a),k.off(a),w.off(a)},event:{clickaway:function(e){if(u.closable){var i=0=p.scrollHeight&&(p.scrollTop=p.scrollHeight-p.offsetHeight-1)},scroll:function(e){0===D(e.target).closest(n.sidebar).length&&e.preventDefault()}},bind:{clickaway:function(){c.verbose("Adding clickaway events to context",m),m.on("click"+a,c.event.clickaway).on("touchend"+a,c.event.clickaway)},scrollLock:function(){u.scrollLock&&(c.debug("Disabling page scroll"),k.on("DOMMouseScroll"+a,c.event.scroll)),c.verbose("Adding events to contain sidebar scroll"),w.on("touchmove"+a,c.event.touch),h.on("scroll"+f,c.event.containScroll)}},unbind:{clickaway:function(){c.verbose("Removing clickaway events from context",m),m.off(a)},scrollLock:function(){c.verbose("Removing scroll lock from page"),w.off(a),k.off(a),h.off("scroll"+f)}},add:{inlineCSS:function(){var e,i=c.cache.width||h.outerWidth(),n=c.cache.height||h.outerHeight(),t=c.is.rtl(),o=c.get.direction(),r={left:i,right:-i,top:n,bottom:-n};t&&(c.verbose("RTL detected, flipping widths"),r.left=-i,r.right=i),e="").appendTo(x),c.debug("Adding sizing css to head",s)}},refresh:function(){c.verbose("Refreshing selector cache"),m=D(u.context),g=m.children(n.sidebar),v=m.children(n.pusher),m.children(n.fixed),c.clear.cache()},refreshSidebars:function(){c.verbose("Refreshing other sidebars"),g=m.children(n.sidebar)},repaint:function(){c.verbose("Forcing repaint event"),p.style.display="none";p.offsetHeight;p.scrollTop=p.scrollTop,p.style.display=""},setup:{cache:function(){c.cache={width:h.outerWidth(),height:h.outerHeight()}},layout:function(){0===m.children(n.pusher).length&&(c.debug("Adding wrapper element for sidebar"),c.error(d.pusher),v=D(''),m.children().not(n.omitted).not(g).wrapAll(v),c.refresh()),0!==h.nextAll(n.pusher).length&&h.nextAll(n.pusher)[0]===v[0]||(c.debug("Moved sidebar to correct parent element"),c.error(d.movedSidebar,p),h.detach().prependTo(m),c.refresh()),c.clear.cache(),c.set.pushable(),c.set.direction()}},attachEvents:function(e,i){var n=D(e);i=D.isFunction(c[i])?c[i]:c.toggle,0 0) {
- module.verbose('Modifying existing settings', $existingModules);
- $existingModules[name]('setting', setting, value);
- }
- }
- }
- });
- },
- settings: function(newSettings, modules, modifyExisting) {
- modules = (typeof modules === 'string')
- ? [modules]
- : modules || settings.modules
- ;
- modifyExisting = (modifyExisting !== undefined)
- ? modifyExisting
- : true
- ;
- $.each(modules, function(index, name) {
- var
- $existingModules
- ;
- if(module.moduleExists(name)) {
- module.verbose('Changing default setting', newSettings, name);
- $.extend(true, $.fn[name].settings, newSettings);
- if(modifyExisting && namespace) {
- $existingModules = $(':data(module-' + namespace + ')');
- if($existingModules.length > 0) {
- module.verbose('Modifying existing settings', $existingModules);
- $existingModules[name]('setting', newSettings);
- }
- }
- }
- });
- }
- },
-
- enable: {
- console: function() {
- module.console(true);
- },
- debug: function(modules, modifyExisting) {
- modules = modules || settings.modules;
- module.debug('Enabling debug for modules', modules);
- module.change.setting('debug', true, modules, modifyExisting);
- },
- verbose: function(modules, modifyExisting) {
- modules = modules || settings.modules;
- module.debug('Enabling verbose debug for modules', modules);
- module.change.setting('verbose', true, modules, modifyExisting);
- }
- },
- disable: {
- console: function() {
- module.console(false);
- },
- debug: function(modules, modifyExisting) {
- modules = modules || settings.modules;
- module.debug('Disabling debug for modules', modules);
- module.change.setting('debug', false, modules, modifyExisting);
- },
- verbose: function(modules, modifyExisting) {
- modules = modules || settings.modules;
- module.debug('Disabling verbose debug for modules', modules);
- module.change.setting('verbose', false, modules, modifyExisting);
- }
- },
-
- console: function(enable) {
- if(enable) {
- if(instance.cache.console === undefined) {
- module.error(error.console);
- return;
- }
- module.debug('Restoring console function');
- window.console = instance.cache.console;
- }
- else {
- module.debug('Disabling console function');
- instance.cache.console = window.console;
- window.console = {
- clear : function(){},
- error : function(){},
- group : function(){},
- groupCollapsed : function(){},
- groupEnd : function(){},
- info : function(){},
- log : function(){},
- markTimeline : function(){},
- warn : function(){}
- };
- }
- },
-
- destroy: function() {
- module.verbose('Destroying previous site for', $module);
- $module
- .removeData(moduleNamespace)
- ;
- },
-
- cache: {},
-
- setting: function(name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, settings, name);
- }
- else if(value !== undefined) {
- settings[name] = value;
- }
- else {
- return settings[name];
- }
- },
- internal: function(name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, module, name);
- }
- else if(value !== undefined) {
- module[name] = value;
- }
- else {
- return module[name];
- }
- },
- debug: function() {
- if(settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.debug.apply(console, arguments);
- }
- }
- },
- verbose: function() {
- if(settings.verbose && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.verbose.apply(console, arguments);
- }
- }
- },
- error: function() {
- module.error = Function.prototype.bind.call(console.error, console, settings.name + ':');
- module.error.apply(console, arguments);
- },
- performance: {
- log: function(message) {
- var
- currentTime,
- executionTime,
- previousTime
- ;
- if(settings.performance) {
- currentTime = new Date().getTime();
- previousTime = time || currentTime;
- executionTime = currentTime - previousTime;
- time = currentTime;
- performance.push({
- 'Element' : element,
- 'Name' : message[0],
- 'Arguments' : [].slice.call(message, 1) || '',
- 'Execution Time' : executionTime
- });
- }
- clearTimeout(module.performance.timer);
- module.performance.timer = setTimeout(module.performance.display, 500);
- },
- display: function() {
- var
- title = settings.name + ':',
- totalTime = 0
- ;
- time = false;
- clearTimeout(module.performance.timer);
- $.each(performance, function(index, data) {
- totalTime += data['Execution Time'];
- });
- title += ' ' + totalTime + 'ms';
- if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) {
- console.groupCollapsed(title);
- if(console.table) {
- console.table(performance);
- }
- else {
- $.each(performance, function(index, data) {
- console.log(data['Name'] + ': ' + data['Execution Time']+'ms');
- });
- }
- console.groupEnd();
- }
- performance = [];
- }
- },
- invoke: function(query, passedArguments, context) {
- var
- object = instance,
- maxDepth,
- found,
- response
- ;
- passedArguments = passedArguments || queryArguments;
- context = element || context;
- if(typeof query == 'string' && object !== undefined) {
- query = query.split(/[\. ]/);
- maxDepth = query.length - 1;
- $.each(query, function(depth, value) {
- var camelCaseValue = (depth != maxDepth)
- ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
- : query
- ;
- if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
- object = object[camelCaseValue];
- }
- else if( object[camelCaseValue] !== undefined ) {
- found = object[camelCaseValue];
- return false;
- }
- else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
- object = object[value];
- }
- else if( object[value] !== undefined ) {
- found = object[value];
- return false;
- }
- else {
- module.error(error.method, query);
- return false;
- }
- });
- }
- if ( $.isFunction( found ) ) {
- response = found.apply(context, passedArguments);
- }
- else if(found !== undefined) {
- response = found;
- }
- if(Array.isArray(returnedValue)) {
- returnedValue.push(response);
- }
- else if(returnedValue !== undefined) {
- returnedValue = [returnedValue, response];
- }
- else if(response !== undefined) {
- returnedValue = response;
- }
- return found;
- }
- };
-
- if(methodInvoked) {
- if(instance === undefined) {
- module.initialize();
- }
- module.invoke(query);
- }
- else {
- if(instance !== undefined) {
- module.destroy();
- }
- module.initialize();
- }
- return (returnedValue !== undefined)
- ? returnedValue
- : this
- ;
-};
-
-$.site.settings = {
-
- name : 'Site',
- namespace : 'site',
-
- error : {
- console : 'Console cannot be restored, most likely it was overwritten outside of module',
- method : 'The method you called is not defined.'
- },
-
- debug : false,
- verbose : false,
- performance : true,
-
- modules: [
- 'accordion',
- 'api',
- 'calendar',
- 'checkbox',
- 'dimmer',
- 'dropdown',
- 'embed',
- 'form',
- 'modal',
- 'nag',
- 'popup',
- 'slider',
- 'rating',
- 'shape',
- 'sidebar',
- 'state',
- 'sticky',
- 'tab',
- 'toast',
- 'transition',
- 'visibility',
- 'visit'
- ],
-
- siteNamespace : 'site',
- namespaceStub : {
- cache : {},
- config : {},
- sections : {},
- section : {},
- utilities : {}
- }
-
-};
-
-// allows for selection of elements with data attributes
-$.extend($.expr[ ":" ], {
- data: ($.expr.createPseudo)
- ? $.expr.createPseudo(function(dataName) {
- return function(elem) {
- return !!$.data(elem, dataName);
- };
- })
- : function(elem, i, match) {
- // support: jQuery < 1.8
- return !!$.data(elem, match[ 3 ]);
- }
-});
-
-
-})( jQuery, window, document );
diff --git a/src-angular/assets/semantic/dist/components/site.min.css b/src-angular/assets/semantic/dist/components/site.min.css
deleted file mode 100644
index d05b521..0000000
--- a/src-angular/assets/semantic/dist/components/site.min.css
+++ /dev/null
@@ -1,9 +0,0 @@
-/*!
- * # Fomantic-UI - Site
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic&subset=latin&display=swap);body,html{height:100%}html{font-size:14px}body{margin:0;padding:0;overflow-x:hidden;min-width:320px;background:#fff;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:14px;line-height:1.4285em;color:rgba(0,0,0,.87)}h1,h2,h3,h4,h5{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;line-height:1.28571429em;margin:calc(2rem - .1428571428571429em) 0 1rem;font-weight:700;padding:0}h1{min-height:1rem;font-size:2rem}h2{font-size:1.71428571rem}h3{font-size:1.28571429rem}h4{font-size:1.07142857rem}h5{font-size:1rem}h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child{margin-top:0}h1:last-child,h2:last-child,h3:last-child,h4:last-child,h5:last-child{margin-bottom:0}p{margin:0 0 1em;line-height:1.4285em}p:first-child{margin-top:0}p:last-child{margin-bottom:0}a{color:#4183c4;text-decoration:none}a:hover{color:#1e70bf;text-decoration:none}::-webkit-selection{background-color:#cce2ff;color:rgba(0,0,0,.87)}::-moz-selection{background-color:#cce2ff;color:rgba(0,0,0,.87)}::selection{background-color:#cce2ff;color:rgba(0,0,0,.87)}input::-webkit-selection,textarea::-webkit-selection{background-color:rgba(100,100,100,.4);color:rgba(0,0,0,.87)}input::-moz-selection,textarea::-moz-selection{background-color:rgba(100,100,100,.4);color:rgba(0,0,0,.87)}input::selection,textarea::selection{background-color:rgba(100,100,100,.4);color:rgba(0,0,0,.87)}body ::-webkit-scrollbar{-webkit-appearance:none;width:10px;height:10px}body ::-webkit-scrollbar-track{background:rgba(0,0,0,.1);border-radius:0}body ::-webkit-scrollbar-thumb{cursor:pointer;border-radius:5px;background:rgba(0,0,0,.25);-webkit-transition:color .2s ease;transition:color .2s ease}body ::-webkit-scrollbar-thumb:window-inactive{background:rgba(0,0,0,.15)}body ::-webkit-scrollbar-thumb:hover{background:rgba(128,135,139,.8)}body .ui.inverted:not(.dimmer)::-webkit-scrollbar-track{background:rgba(255,255,255,.1)}body .ui.inverted:not(.dimmer)::-webkit-scrollbar-thumb{background:rgba(255,255,255,.25)}body .ui.inverted:not(.dimmer)::-webkit-scrollbar-thumb:window-inactive{background:rgba(255,255,255,.15)}body .ui.inverted:not(.dimmer)::-webkit-scrollbar-thumb:hover{background:rgba(255,255,255,.35)}
\ No newline at end of file
diff --git a/src-angular/assets/semantic/dist/components/site.min.js b/src-angular/assets/semantic/dist/components/site.min.js
deleted file mode 100644
index 314397d..0000000
--- a/src-angular/assets/semantic/dist/components/site.min.js
+++ /dev/null
@@ -1,11 +0,0 @@
- /*
- * # Fomantic UI - 2.8.3
- * https://github.com/fomantic/Fomantic-UI
- * http://fomantic-ui.com/
- *
- * Copyright 2014 Contributors
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-!function(b,p,v,h){b.isFunction=b.isFunction||function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},b.site=b.fn.site=function(e){var a,c,i=(new Date).getTime(),t=[],n=e,o="string"==typeof n,l=[].slice.call(arguments,1),u=b.isPlainObject(e)?b.extend(!0,{},b.site.settings,e):b.extend({},b.site.settings),s=u.namespace,d=u.error,r="module-"+s,m=b(v),f=this,g=m.data(r);return a={initialize:function(){a.instantiate()},instantiate:function(){a.verbose("Storing instance of site",a),g=a,m.data(r,a)},normalize:function(){a.fix.console(),a.fix.requestAnimationFrame()},fix:{console:function(){a.debug("Normalizing window.console"),console!==h&&console.log!==h||(a.verbose("Console not available, normalizing events"),a.disable.console()),void 0!==console.group&&void 0!==console.groupEnd&&void 0!==console.groupCollapsed||(a.verbose("Console group not available, normalizing events"),p.console.group=function(){},p.console.groupEnd=function(){},p.console.groupCollapsed=function(){}),void 0===console.markTimeline&&(a.verbose("Mark timeline not available, normalizing events"),p.console.markTimeline=function(){})},consoleClear:function(){a.debug("Disabling programmatic console clearing"),p.console.clear=function(){}},requestAnimationFrame:function(){a.debug("Normalizing requestAnimationFrame"),p.requestAnimationFrame===h&&(a.debug("RequestAnimationFrame not available, normalizing event"),p.requestAnimationFrame=p.requestAnimationFrame||p.mozRequestAnimationFrame||p.webkitRequestAnimationFrame||p.msRequestAnimationFrame||function(e){setTimeout(e,0)})}},moduleExists:function(e){return b.fn[e]!==h&&b.fn[e].settings!==h},enabled:{modules:function(e){var o=[];return e=e||u.modules,b.each(e,function(e,n){a.moduleExists(n)&&o.push(n)}),o}},disabled:{modules:function(e){var o=[];return e=e||u.modules,b.each(e,function(e,n){a.moduleExists(n)||o.push(n)}),o}},change:{setting:function(t,s,e,r){e="string"==typeof e?"all"===e?u.modules:[e]:e||u.modules,r=r===h||r,b.each(e,function(e,n){var o,i=!a.moduleExists(n)||(b.fn[n].settings.namespace||!1);a.moduleExists(n)&&(a.verbose("Changing default setting",t,s,n),b.fn[n].settings[t]=s,r&&i&&0<(o=b(":data(module-"+i+")")).length&&(a.verbose("Modifying existing settings",o),o[n]("setting",t,s)))})},settings:function(i,e,t){e="string"==typeof e?[e]:e||u.modules,t=t===h||t,b.each(e,function(e,n){var o;a.moduleExists(n)&&(a.verbose("Changing default setting",i,n),b.extend(!0,b.fn[n].settings,i),t&&s&&0<(o=b(":data(module-"+s+")")).length&&(a.verbose("Modifying existing settings",o),o[n]("setting",i)))})}},enable:{console:function(){a.console(!0)},debug:function(e,n){e=e||u.modules,a.debug("Enabling debug for modules",e),a.change.setting("debug",!0,e,n)},verbose:function(e,n){e=e||u.modules,a.debug("Enabling verbose debug for modules",e),a.change.setting("verbose",!0,e,n)}},disable:{console:function(){a.console(!1)},debug:function(e,n){e=e||u.modules,a.debug("Disabling debug for modules",e),a.change.setting("debug",!1,e,n)},verbose:function(e,n){e=e||u.modules,a.debug("Disabling verbose debug for modules",e),a.change.setting("verbose",!1,e,n)}},console:function(e){if(e){if(g.cache.console===h)return void a.error(d.console);a.debug("Restoring console function"),p.console=g.cache.console}else a.debug("Disabling console function"),g.cache.console=p.console,p.console={clear:function(){},error:function(){},group:function(){},groupCollapsed:function(){},groupEnd:function(){},info:function(){},log:function(){},markTimeline:function(){},warn:function(){}}},destroy:function(){a.verbose("Destroying previous site for",m),m.removeData(r)},cache:{},setting:function(e,n){if(b.isPlainObject(e))b.extend(!0,u,e);else{if(n===h)return u[e];u[e]=n}},internal:function(e,n){if(b.isPlainObject(e))b.extend(!0,a,e);else{if(n===h)return a[e];a[e]=n}},debug:function(){u.debug&&(u.performance?a.performance.log(arguments):(a.debug=Function.prototype.bind.call(console.info,console,u.name+":"),a.debug.apply(console,arguments)))},verbose:function(){u.verbose&&u.debug&&(u.performance?a.performance.log(arguments):(a.verbose=Function.prototype.bind.call(console.info,console,u.name+":"),a.verbose.apply(console,arguments)))},error:function(){a.error=Function.prototype.bind.call(console.error,console,u.name+":"),a.error.apply(console,arguments)},performance:{log:function(e){var n,o;u.performance&&(o=(n=(new Date).getTime())-(i||n),i=n,t.push({Element:f,Name:e[0],Arguments:[].slice.call(e,1)||"","Execution Time":o})),clearTimeout(a.performance.timer),a.performance.timer=setTimeout(a.performance.display,500)},display:function(){var e=u.name+":",o=0;i=!1,clearTimeout(a.performance.timer),b.each(t,function(e,n){o+=n["Execution Time"]}),e+=" "+o+"ms",(console.group!==h||console.table!==h)&&0 .labels .label {
- -webkit-transform: translate(-100%, -100%);
- transform: translate(-100%, -100%);
-}
-
-
-/*******************************
- Variations
-*******************************/
-
-
-/*--------------
- Vertical
- ---------------*/
-
-.ui.vertical.slider {
- height: 100%;
- width: 1.5em;
- padding: 0.5em 1em;
-}
-.ui.vertical.slider .inner {
- height: 100%;
-}
-.ui.vertical.slider .inner .track {
- height: 100%;
- width: 0.4em;
- left: 0.55em;
- top: 0;
-}
-.ui.vertical.slider .inner .track-fill {
- width: 0.4em;
- left: 0.55em;
- top: 0;
-}
-
-/* Vertical Reversed */
-.ui.vertical.reversed.slider .inner .thumb {
- top: auto;
- bottom: 0;
-}
-.ui.vertical.reversed.slider .inner .track-fill {
- top: auto;
- bottom: 0;
-}
-
-/*--------------
- Labeled
- ---------------*/
-
-.ui.labeled.slider > .labels {
- height: 1.5em;
- width: auto;
- margin: 0;
- padding: 0;
- position: absolute;
- top: 50%;
- left: 0;
- right: 0;
-}
-.ui.labeled.slider:not(.vertical) > .labels {
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
-}
-.ui.labeled.slider > .labels .label {
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
- position: absolute;
- -webkit-transform: translate(-50%, -100%);
- transform: translate(-50%, -100%);
-}
-.ui.labeled.ticked.slider > .labels .label:after {
- content: ' ';
- height: 1.5em;
- width: 1px;
- background: #ccc;
- position: absolute;
- top: 100%;
- left: 50%;
-}
-.ui.labeled.ticked.slider > .labels .halftick.label:after {
- height: 0.75em;
-}
-
-/* Vertical Labels */
-.ui.labeled.vertical.slider > .labels {
- width: 1.5em;
- height: auto;
- left: 50%;
- top: 0;
- bottom: 0;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
-}
-.ui.labeled.vertical.slider > .labels .label {
- -webkit-transform: translate(-100%, -50%);
- transform: translate(-100%, -50%);
-}
-.ui.labeled.vertical.slider > .labels .label:after {
- width: 1.5em;
- height: 1px;
- left: 100%;
- top: 50%;
-}
-.ui.labeled.vertical.slider > .labels .halftick.label:after {
- width: 0.75em;
- height: 1px;
-}
-
-/* Vertical Reversed Labels */
-.ui.labeled.vertical.reversed.slider > .labels .label {
- -webkit-transform: translate(-100%, 50%);
- transform: translate(-100%, 50%);
-}
-
-/*--------------
- Hover
----------------*/
-
-.ui.hover.slider .inner .thumb {
- opacity: 0;
- -webkit-transition: opacity 0.2s linear;
- transition: opacity 0.2s linear;
-}
-.ui.hover.slider:not(.disabled):hover .inner .thumb,
-.ui.hover.slider:not(.disabled):focus .inner .thumb {
- opacity: 1;
-}
-
-/*--------------
- Inverted
- ---------------*/
-
-.ui.inverted.slider .inner .track-fill {
- background-color: #545454;
-}
-.ui.inverted.slider .inner .track {
- background-color: rgba(255, 255, 255, 0.08);
-}
-
-/*--------------
- Colors
----------------*/
-
-
-/* Standard */
-.ui.primary.slider .inner .track-fill {
- background-color: #2185D0;
-}
-.ui.primary.inverted.slider .inner .track-fill {
- background-color: #54C8FF;
-}
-
-/* Basic */
-.ui.primary.slider.basic .inner .thumb {
- background-color: #2185D0;
-}
-.ui.primary.slider.basic .inner .thumb:hover,
-.ui.primary.slider.basic:focus .inner .thumb {
- background-color: #1678c2;
-}
-
-/* Basic Inverted */
-.ui.primary.inverted.slider.basic .inner .thumb {
- background-color: #54C8FF;
-}
-.ui.primary.inverted.slider.basic .inner .thumb:hover,
-.ui.primary.inverted.slider.basic:focus .inner .thumb {
- background-color: #21b8ff;
-}
-
-/* Standard */
-.ui.secondary.slider .inner .track-fill {
- background-color: #1B1C1D;
-}
-.ui.secondary.inverted.slider .inner .track-fill {
- background-color: #545454;
-}
-
-/* Basic */
-.ui.secondary.slider.basic .inner .thumb {
- background-color: #1B1C1D;
-}
-.ui.secondary.slider.basic .inner .thumb:hover,
-.ui.secondary.slider.basic:focus .inner .thumb {
- background-color: #27292a;
-}
-
-/* Basic Inverted */
-.ui.secondary.inverted.slider.basic .inner .thumb {
- background-color: #545454;
-}
-.ui.secondary.inverted.slider.basic .inner .thumb:hover,
-.ui.secondary.inverted.slider.basic:focus .inner .thumb {
- background-color: #6e6e6e;
-}
-
-/* Standard */
-.ui.red.slider .inner .track-fill {
- background-color: #DB2828;
-}
-.ui.red.inverted.slider .inner .track-fill {
- background-color: #FF695E;
-}
-
-/* Basic */
-.ui.red.slider.basic .inner .thumb {
- background-color: #DB2828;
-}
-.ui.red.slider.basic .inner .thumb:hover,
-.ui.red.slider.basic:focus .inner .thumb {
- background-color: #d01919;
-}
-
-/* Basic Inverted */
-.ui.red.inverted.slider.basic .inner .thumb {
- background-color: #FF695E;
-}
-.ui.red.inverted.slider.basic .inner .thumb:hover,
-.ui.red.inverted.slider.basic:focus .inner .thumb {
- background-color: #ff392b;
-}
-
-/* Standard */
-.ui.orange.slider .inner .track-fill {
- background-color: #F2711C;
-}
-.ui.orange.inverted.slider .inner .track-fill {
- background-color: #FF851B;
-}
-
-/* Basic */
-.ui.orange.slider.basic .inner .thumb {
- background-color: #F2711C;
-}
-.ui.orange.slider.basic .inner .thumb:hover,
-.ui.orange.slider.basic:focus .inner .thumb {
- background-color: #f26202;
-}
-
-/* Basic Inverted */
-.ui.orange.inverted.slider.basic .inner .thumb {
- background-color: #FF851B;
-}
-.ui.orange.inverted.slider.basic .inner .thumb:hover,
-.ui.orange.inverted.slider.basic:focus .inner .thumb {
- background-color: #e76b00;
-}
-
-/* Standard */
-.ui.yellow.slider .inner .track-fill {
- background-color: #FBBD08;
-}
-.ui.yellow.inverted.slider .inner .track-fill {
- background-color: #FFE21F;
-}
-
-/* Basic */
-.ui.yellow.slider.basic .inner .thumb {
- background-color: #FBBD08;
-}
-.ui.yellow.slider.basic .inner .thumb:hover,
-.ui.yellow.slider.basic:focus .inner .thumb {
- background-color: #eaae00;
-}
-
-/* Basic Inverted */
-.ui.yellow.inverted.slider.basic .inner .thumb {
- background-color: #FFE21F;
-}
-.ui.yellow.inverted.slider.basic .inner .thumb:hover,
-.ui.yellow.inverted.slider.basic:focus .inner .thumb {
- background-color: #ebcd00;
-}
-
-/* Standard */
-.ui.olive.slider .inner .track-fill {
- background-color: #B5CC18;
-}
-.ui.olive.inverted.slider .inner .track-fill {
- background-color: #D9E778;
-}
-
-/* Basic */
-.ui.olive.slider.basic .inner .thumb {
- background-color: #B5CC18;
-}
-.ui.olive.slider.basic .inner .thumb:hover,
-.ui.olive.slider.basic:focus .inner .thumb {
- background-color: #a7bd0d;
-}
-
-/* Basic Inverted */
-.ui.olive.inverted.slider.basic .inner .thumb {
- background-color: #D9E778;
-}
-.ui.olive.inverted.slider.basic .inner .thumb:hover,
-.ui.olive.inverted.slider.basic:focus .inner .thumb {
- background-color: #d2e745;
-}
-
-/* Standard */
-.ui.green.slider .inner .track-fill {
- background-color: #21BA45;
-}
-.ui.green.inverted.slider .inner .track-fill {
- background-color: #2ECC40;
-}
-
-/* Basic */
-.ui.green.slider.basic .inner .thumb {
- background-color: #21BA45;
-}
-.ui.green.slider.basic .inner .thumb:hover,
-.ui.green.slider.basic:focus .inner .thumb {
- background-color: #16ab39;
-}
-
-/* Basic Inverted */
-.ui.green.inverted.slider.basic .inner .thumb {
- background-color: #2ECC40;
-}
-.ui.green.inverted.slider.basic .inner .thumb:hover,
-.ui.green.inverted.slider.basic:focus .inner .thumb {
- background-color: #1ea92e;
-}
-
-/* Standard */
-.ui.teal.slider .inner .track-fill {
- background-color: #00B5AD;
-}
-.ui.teal.inverted.slider .inner .track-fill {
- background-color: #6DFFFF;
-}
-
-/* Basic */
-.ui.teal.slider.basic .inner .thumb {
- background-color: #00B5AD;
-}
-.ui.teal.slider.basic .inner .thumb:hover,
-.ui.teal.slider.basic:focus .inner .thumb {
- background-color: #009c95;
-}
-
-/* Basic Inverted */
-.ui.teal.inverted.slider.basic .inner .thumb {
- background-color: #6DFFFF;
-}
-.ui.teal.inverted.slider.basic .inner .thumb:hover,
-.ui.teal.inverted.slider.basic:focus .inner .thumb {
- background-color: #3affff;
-}
-
-/* Standard */
-.ui.blue.slider .inner .track-fill {
- background-color: #2185D0;
-}
-.ui.blue.inverted.slider .inner .track-fill {
- background-color: #54C8FF;
-}
-
-/* Basic */
-.ui.blue.slider.basic .inner .thumb {
- background-color: #2185D0;
-}
-.ui.blue.slider.basic .inner .thumb:hover,
-.ui.blue.slider.basic:focus .inner .thumb {
- background-color: #1678c2;
-}
-
-/* Basic Inverted */
-.ui.blue.inverted.slider.basic .inner .thumb {
- background-color: #54C8FF;
-}
-.ui.blue.inverted.slider.basic .inner .thumb:hover,
-.ui.blue.inverted.slider.basic:focus .inner .thumb {
- background-color: #21b8ff;
-}
-
-/* Standard */
-.ui.violet.slider .inner .track-fill {
- background-color: #6435C9;
-}
-.ui.violet.inverted.slider .inner .track-fill {
- background-color: #A291FB;
-}
-
-/* Basic */
-.ui.violet.slider.basic .inner .thumb {
- background-color: #6435C9;
-}
-.ui.violet.slider.basic .inner .thumb:hover,
-.ui.violet.slider.basic:focus .inner .thumb {
- background-color: #5829bb;
-}
-
-/* Basic Inverted */
-.ui.violet.inverted.slider.basic .inner .thumb {
- background-color: #A291FB;
-}
-.ui.violet.inverted.slider.basic .inner .thumb:hover,
-.ui.violet.inverted.slider.basic:focus .inner .thumb {
- background-color: #745aff;
-}
-
-/* Standard */
-.ui.purple.slider .inner .track-fill {
- background-color: #A333C8;
-}
-.ui.purple.inverted.slider .inner .track-fill {
- background-color: #DC73FF;
-}
-
-/* Basic */
-.ui.purple.slider.basic .inner .thumb {
- background-color: #A333C8;
-}
-.ui.purple.slider.basic .inner .thumb:hover,
-.ui.purple.slider.basic:focus .inner .thumb {
- background-color: #9627ba;
-}
-
-/* Basic Inverted */
-.ui.purple.inverted.slider.basic .inner .thumb {
- background-color: #DC73FF;
-}
-.ui.purple.inverted.slider.basic .inner .thumb:hover,
-.ui.purple.inverted.slider.basic:focus .inner .thumb {
- background-color: #cf40ff;
-}
-
-/* Standard */
-.ui.pink.slider .inner .track-fill {
- background-color: #E03997;
-}
-.ui.pink.inverted.slider .inner .track-fill {
- background-color: #FF8EDF;
-}
-
-/* Basic */
-.ui.pink.slider.basic .inner .thumb {
- background-color: #E03997;
-}
-.ui.pink.slider.basic .inner .thumb:hover,
-.ui.pink.slider.basic:focus .inner .thumb {
- background-color: #e61a8d;
-}
-
-/* Basic Inverted */
-.ui.pink.inverted.slider.basic .inner .thumb {
- background-color: #FF8EDF;
-}
-.ui.pink.inverted.slider.basic .inner .thumb:hover,
-.ui.pink.inverted.slider.basic:focus .inner .thumb {
- background-color: #ff5bd1;
-}
-
-/* Standard */
-.ui.brown.slider .inner .track-fill {
- background-color: #A5673F;
-}
-.ui.brown.inverted.slider .inner .track-fill {
- background-color: #D67C1C;
-}
-
-/* Basic */
-.ui.brown.slider.basic .inner .thumb {
- background-color: #A5673F;
-}
-.ui.brown.slider.basic .inner .thumb:hover,
-.ui.brown.slider.basic:focus .inner .thumb {
- background-color: #975b33;
-}
-
-/* Basic Inverted */
-.ui.brown.inverted.slider.basic .inner .thumb {
- background-color: #D67C1C;
-}
-.ui.brown.inverted.slider.basic .inner .thumb:hover,
-.ui.brown.inverted.slider.basic:focus .inner .thumb {
- background-color: #b0620f;
-}
-
-/* Standard */
-.ui.grey.slider .inner .track-fill {
- background-color: #767676;
-}
-.ui.grey.inverted.slider .inner .track-fill {
- background-color: #DCDDDE;
-}
-
-/* Basic */
-.ui.grey.slider.basic .inner .thumb {
- background-color: #767676;
-}
-.ui.grey.slider.basic .inner .thumb:hover,
-.ui.grey.slider.basic:focus .inner .thumb {
- background-color: #838383;
-}
-
-/* Basic Inverted */
-.ui.grey.inverted.slider.basic .inner .thumb {
- background-color: #DCDDDE;
-}
-.ui.grey.inverted.slider.basic .inner .thumb:hover,
-.ui.grey.inverted.slider.basic:focus .inner .thumb {
- background-color: #c2c4c5;
-}
-
-/* Standard */
-.ui.black.slider .inner .track-fill {
- background-color: #1B1C1D;
-}
-.ui.black.inverted.slider .inner .track-fill {
- background-color: #545454;
-}
-
-/* Basic */
-.ui.black.slider.basic .inner .thumb {
- background-color: #1B1C1D;
-}
-.ui.black.slider.basic .inner .thumb:hover,
-.ui.black.slider.basic:focus .inner .thumb {
- background-color: #27292a;
-}
-
-/* Basic Inverted */
-.ui.black.inverted.slider.basic .inner .thumb {
- background-color: #545454;
-}
-.ui.black.inverted.slider.basic .inner .thumb:hover,
-.ui.black.inverted.slider.basic:focus .inner .thumb {
- background-color: #000000;
-}
-
-/*--------------
- Basic
- ---------------*/
-
-
-/* Standard */
-.ui.slider.basic .inner .thumb {
- background-color: #1B1C1D;
-}
-.ui.slider.basic .inner .thumb:hover,
-.ui.slider.basic:focus .inner .thumb {
- background-color: #27292a;
-}
-
-/*--------------
- Basic Inverted
- ---------------*/
-
-
-/* Standard */
-.ui.inverted.slider.basic .inner .thumb {
- background-color: #545454;
-}
-.ui.inverted.slider.basic .inner .thumb:hover,
-.ui.inverted.slider.basic:focus .inner .thumb {
- background-color: #000000;
-}
-
-/*--------------
- Sizing
----------------*/
-
-.ui.slider.small .inner .thumb {
- height: 1em;
- width: 1em;
-}
-.ui.slider.small:not(.vertical) .inner {
- height: 1em;
-}
-.ui.slider.small:not(.vertical) .inner .track,
-.ui.slider.small:not(.vertical) .inner .track-fill {
- height: 0.3em;
- top: 0.35em;
-}
-.ui.small.labeled.slider:not(.vertical) > .labels,
-.ui.small.labeled.slider:not(.vertical) > .labels .label:after {
- height: 1em;
-}
-.ui.small.labeled.slider:not(.vertical) > .labels .halftick.label:after {
- height: 0.5em;
-}
-
-/* Small Vertical */
-.ui.slider.small.vertical .inner {
- width: 1em;
-}
-.ui.slider.small.vertical .inner .track,
-.ui.slider.small.vertical .inner .track-fill {
- width: 0.3em;
- left: 0.35em;
-}
-.ui.small.labeled.vertical.slider > .labels,
-.ui.small.labeled.vertical.slider > .labels .label:after {
- width: 1em;
-}
-.ui.small.labeled.vertical.slider > .labels .halftick.label:after {
- width: 0.5em;
-}
-.ui.slider.large .inner .thumb {
- height: 2em;
- width: 2em;
-}
-.ui.slider.large:not(.vertical) .inner {
- height: 2em;
-}
-.ui.slider.large:not(.vertical) .inner .track,
-.ui.slider.large:not(.vertical) .inner .track-fill {
- height: 0.5em;
- top: 0.75em;
-}
-.ui.large.labeled.slider:not(.vertical) > .labels,
-.ui.large.labeled.slider:not(.vertical) > .labels .label:after {
- height: 2em;
-}
-.ui.large.labeled.slider:not(.vertical) > .labels .halftick.label:after {
- height: 1em;
-}
-
-/* Small Vertical */
-.ui.slider.large.vertical .inner {
- width: 2em;
-}
-.ui.slider.large.vertical .inner .track,
-.ui.slider.large.vertical .inner .track-fill {
- width: 0.5em;
- left: 0.75em;
-}
-.ui.large.labeled.vertical.slider > .labels,
-.ui.large.labeled.vertical.slider > .labels .label:after {
- width: 2em;
-}
-.ui.large.labeled.vertical.slider > .labels .halftick.label:after {
- width: 1em;
-}
-.ui.slider.big .inner .thumb {
- height: 2.5em;
- width: 2.5em;
-}
-.ui.slider.big:not(.vertical) .inner {
- height: 2.5em;
-}
-.ui.slider.big:not(.vertical) .inner .track,
-.ui.slider.big:not(.vertical) .inner .track-fill {
- height: 0.6em;
- top: 0.95em;
-}
-.ui.big.labeled.slider:not(.vertical) > .labels,
-.ui.big.labeled.slider:not(.vertical) > .labels .label:after {
- height: 2.5em;
-}
-.ui.big.labeled.slider:not(.vertical) > .labels .halftick.label:after {
- height: 1.25em;
-}
-
-/* Small Vertical */
-.ui.slider.big.vertical .inner {
- width: 2.5em;
-}
-.ui.slider.big.vertical .inner .track,
-.ui.slider.big.vertical .inner .track-fill {
- width: 0.6em;
- left: 0.95em;
-}
-.ui.big.labeled.vertical.slider > .labels,
-.ui.big.labeled.vertical.slider > .labels .label:after {
- width: 2.5em;
-}
-.ui.big.labeled.vertical.slider > .labels .halftick.label:after {
- width: 1.25em;
-}
-
-
-/*******************************
- Slider Overrides
-*******************************/
-
diff --git a/src-angular/assets/semantic/dist/components/slider.js b/src-angular/assets/semantic/dist/components/slider.js
deleted file mode 100644
index e4974dc..0000000
--- a/src-angular/assets/semantic/dist/components/slider.js
+++ /dev/null
@@ -1,1314 +0,0 @@
-/*!
- * # Fomantic-UI - Slider
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-;(function ( $, window, document, undefined ) {
-
-"use strict";
-
-window = (typeof window != 'undefined' && window.Math == Math)
- ? window
- : (typeof self != 'undefined' && self.Math == Math)
- ? self
- : Function('return this')()
-;
-
-$.fn.slider = function(parameters) {
-
- var
- $allModules = $(this),
- $window = $(window),
-
- moduleSelector = $allModules.selector || '',
-
- time = new Date().getTime(),
- performance = [],
-
- query = arguments[0],
- methodInvoked = (typeof query == 'string'),
- queryArguments = [].slice.call(arguments, 1),
-
- alphabet = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'],
-
- SINGLE_STEP = 1,
- BIG_STEP = 2,
- NO_STEP = 0,
- SINGLE_BACKSTEP = -1,
- BIG_BACKSTEP = -2,
-
- // Used to manage document bound events.
- // Use this so that we can distinguish between which document events are bound to which range.
- currentRange = 0,
-
- returnedValue
- ;
-
- $allModules
- .each(function() {
-
- var
- settings = ( $.isPlainObject(parameters) )
- ? $.extend(true, {}, $.fn.slider.settings, parameters)
- : $.extend({}, $.fn.slider.settings),
-
- className = settings.className,
- metadata = settings.metadata,
- namespace = settings.namespace,
- error = settings.error,
- keys = settings.keys,
- interpretLabel = settings.interpretLabel,
-
- isHover = false,
- eventNamespace = '.' + namespace,
- moduleNamespace = 'module-' + namespace,
-
- $module = $(this),
- $currThumb,
- $thumb,
- $secondThumb,
- $track,
- $trackFill,
- $labels,
-
- element = this,
- instance = $module.data(moduleNamespace),
-
- documentEventID,
-
- value,
- position,
- secondPos,
- offset,
- precision,
- isTouch,
- gapRatio = 1,
-
- initialPosition,
- initialLoad,
- module
- ;
-
- module = {
-
- initialize: function() {
- module.debug('Initializing slider', settings);
- initialLoad = true;
-
- currentRange += 1;
- documentEventID = currentRange;
-
- isTouch = module.setup.testOutTouch();
- module.setup.layout();
- module.setup.labels();
-
- if(!module.is.disabled()) {
- module.bind.events();
- }
-
- module.read.metadata();
- module.read.settings();
-
- initialLoad = false;
- module.instantiate();
- },
-
- instantiate: function() {
- module.verbose('Storing instance of slider', module);
- instance = module;
- $module
- .data(moduleNamespace, module)
- ;
- },
-
- destroy: function() {
- module.verbose('Destroying previous slider for', $module);
- clearInterval(instance.interval);
- module.unbind.events();
- module.unbind.slidingEvents();
- $module.removeData(moduleNamespace);
- instance = undefined;
- },
-
- setup: {
- layout: function() {
- if( $module.attr('tabindex') === undefined) {
- $module.attr('tabindex', 0);
- }
- if($module.find('.inner').length == 0) {
- $module.append(""
- + "
"
- + "
"
- + "
"
- + "
");
- }
- precision = module.get.precision();
- $thumb = $module.find('.thumb:not(.second)');
- $currThumb = $thumb;
- if(module.is.range()) {
- if($module.find('.thumb.second').length == 0) {
- $module.find('.inner').append("");
- }
- $secondThumb = $module.find('.thumb.second');
- }
- $track = $module.find('.track');
- $trackFill = $module.find('.track-fill');
- offset = $thumb.width() / 2;
- },
- labels: function() {
- if(module.is.labeled()) {
- $labels = $module.find('.labels:not(.auto)');
- if($labels.length != 0) {
- module.setup.customLabel();
- } else {
- module.setup.autoLabel();
- }
-
- if (settings.showLabelTicks) {
- $module.addClass(className.ticked)
- }
- }
- },
- testOutTouch: function() {
- try {
- document.createEvent('TouchEvent');
- return true;
- } catch (e) {
- return false;
- }
- },
- customLabel: function() {
- var
- $children = $labels.find('.label'),
- numChildren = $children.length,
- min = module.get.min(),
- max = module.get.max(),
- ratio
- ;
- $children.each(function(index) {
- var
- $child = $(this),
- attrValue = $child.attr('data-value')
- ;
- if(attrValue) {
- attrValue = attrValue > max ? max : attrValue < min ? min : attrValue;
- ratio = (attrValue - min) / (max - min);
- } else {
- ratio = (index + 1) / (numChildren + 1);
- }
- module.update.labelPosition(ratio, $(this));
- });
- },
- autoLabel: function() {
- if(module.get.step() != 0) {
- $labels = $module.find('.labels');
- if($labels.length != 0) {
- $labels.empty();
- }
- else {
- $labels = $module.append('').find('.labels');
- }
- for(var i = 0, len = module.get.numLabels(); i <= len; i++) {
- var
- labelText = module.get.label(i),
- $label = (labelText !== "")
- ? !(i % module.get.gapRatio())
- ? $('' + labelText + '')
- : $('')
- : null,
- ratio = i / len
- ;
- if($label) {
- module.update.labelPosition(ratio, $label);
- $labels.append($label);
- }
- }
- }
- }
- },
-
- bind: {
- events: function() {
- module.bind.globalKeyboardEvents();
- module.bind.keyboardEvents();
- module.bind.mouseEvents();
- if(module.is.touch()) {
- module.bind.touchEvents();
- }
- if (settings.autoAdjustLabels) {
- module.bind.windowEvents();
- }
- },
- keyboardEvents: function() {
- module.verbose('Binding keyboard events');
- $module.on('keydown' + eventNamespace, module.event.keydown);
- },
- globalKeyboardEvents: function() {
- $(document).on('keydown' + eventNamespace + documentEventID, module.event.activateFocus);
- },
- mouseEvents: function() {
- module.verbose('Binding mouse events');
- $module.find('.track, .thumb, .inner').on('mousedown' + eventNamespace, function(event) {
- event.stopImmediatePropagation();
- event.preventDefault();
- module.event.down(event);
- });
- $module.on('mousedown' + eventNamespace, module.event.down);
- $module.on('mouseenter' + eventNamespace, function(event) {
- isHover = true;
- });
- $module.on('mouseleave' + eventNamespace, function(event) {
- isHover = false;
- });
- },
- touchEvents: function() {
- module.verbose('Binding touch events');
- $module.find('.track, .thumb, .inner').on('touchstart' + eventNamespace, function(event) {
- event.stopImmediatePropagation();
- event.preventDefault();
- module.event.down(event);
- });
- $module.on('touchstart' + eventNamespace, module.event.down);
- },
- slidingEvents: function() {
- // these don't need the identifier because we only ever want one of them to be registered with document
- module.verbose('Binding page wide events while handle is being draged');
- if(module.is.touch()) {
- $(document).on('touchmove' + eventNamespace, module.event.move);
- $(document).on('touchend' + eventNamespace, module.event.up);
- }
- else {
- $(document).on('mousemove' + eventNamespace, module.event.move);
- $(document).on('mouseup' + eventNamespace, module.event.up);
- }
- },
- windowEvents: function() {
- $window.on('resize' + eventNamespace, module.event.resize);
- }
- },
-
- unbind: {
- events: function() {
- $module.find('.track, .thumb, .inner').off('mousedown' + eventNamespace);
- $module.find('.track, .thumb, .inner').off('touchstart' + eventNamespace);
- $module.off('mousedown' + eventNamespace);
- $module.off('mouseenter' + eventNamespace);
- $module.off('mouseleave' + eventNamespace);
- $module.off('touchstart' + eventNamespace);
- $module.off('keydown' + eventNamespace);
- $module.off('focusout' + eventNamespace);
- $(document).off('keydown' + eventNamespace + documentEventID, module.event.activateFocus);
- $window.off('resize' + eventNamespace);
- },
- slidingEvents: function() {
- if(module.is.touch()) {
- $(document).off('touchmove' + eventNamespace);
- $(document).off('touchend' + eventNamespace);
- } else {
- $(document).off('mousemove' + eventNamespace);
- $(document).off('mouseup' + eventNamespace);
- }
- },
- },
-
- event: {
- down: function(event) {
- event.preventDefault();
- if(module.is.range()) {
- var
- eventPos = module.determine.eventPos(event),
- newPos = module.determine.pos(eventPos)
- ;
- // Special handling if range mode and both thumbs have the same value
- if(settings.preventCrossover && module.is.range() && module.thumbVal === module.secondThumbVal) {
- initialPosition = newPos;
- $currThumb = undefined;
- } else {
- $currThumb = module.determine.closestThumb(newPos);
- }
- }
- if(!module.is.disabled()) {
- module.bind.slidingEvents();
- }
- },
- move: function(event) {
- event.preventDefault();
- var value = module.determine.valueFromEvent(event);
- if($currThumb === undefined) {
- var
- eventPos = module.determine.eventPos(event),
- newPos = module.determine.pos(eventPos)
- ;
- $currThumb = initialPosition > newPos ? $thumb : $secondThumb;
- }
- if(module.get.step() == 0 || module.is.smooth()) {
- var
- thumbVal = module.thumbVal,
- secondThumbVal = module.secondThumbVal,
- thumbSmoothVal = module.determine.smoothValueFromEvent(event)
- ;
- if(!$currThumb.hasClass('second')) {
- if(settings.preventCrossover && module.is.range()) {
- value = Math.min(secondThumbVal, value);
- thumbSmoothVal = Math.min(secondThumbVal, thumbSmoothVal);
- }
- thumbVal = value;
- } else {
- if(settings.preventCrossover && module.is.range()) {
- value = Math.max(thumbVal, value);
- thumbSmoothVal = Math.max(thumbVal, thumbSmoothVal);
- }
- secondThumbVal = value;
- }
- value = Math.abs(thumbVal - (secondThumbVal || 0));
- module.update.position(thumbSmoothVal);
- settings.onMove.call(element, value, thumbVal, secondThumbVal);
- } else {
- module.update.value(value, function(value, thumbVal, secondThumbVal) {
- settings.onMove.call(element, value, thumbVal, secondThumbVal);
- });
- }
- },
- up: function(event) {
- event.preventDefault();
- var value = module.determine.valueFromEvent(event);
- module.set.value(value);
- module.unbind.slidingEvents();
- },
- keydown: function(event, first) {
- if(settings.preventCrossover && module.is.range() && module.thumbVal === module.secondThumbVal) {
- $currThumb = undefined;
- }
- if(module.is.focused()) {
- $(document).trigger(event);
- }
- if(first || module.is.focused()) {
- var step = module.determine.keyMovement(event);
- if(step != NO_STEP) {
- event.preventDefault();
- switch(step) {
- case SINGLE_STEP:
- module.takeStep();
- break;
- case BIG_STEP:
- module.takeStep(module.get.multiplier());
- break;
- case SINGLE_BACKSTEP:
- module.backStep();
- break;
- case BIG_BACKSTEP:
- module.backStep(module.get.multiplier());
- break;
- }
- }
- }
- },
- activateFocus: function(event) {
- if(!module.is.focused() && module.is.hover() && module.determine.keyMovement(event) != NO_STEP) {
- event.preventDefault();
- module.event.keydown(event, true);
- $module.focus();
- }
- },
- resize: function(_event) {
- // To avoid a useless performance cost, we only call the label refresh when its necessary
- if (gapRatio != module.get.gapRatio()) {
- module.setup.labels();
- gapRatio = module.get.gapRatio();
- }
- }
- },
-
- resync: function() {
- module.verbose('Resyncing thumb position based on value');
- if(module.is.range()) {
- module.update.position(module.secondThumbVal, $secondThumb);
- }
- module.update.position(module.thumbVal, $thumb);
- module.setup.labels();
- },
- takeStep: function(multiplier) {
- var
- multiplier = multiplier != undefined ? multiplier : 1,
- step = module.get.step(),
- currValue = module.get.currentThumbValue()
- ;
- module.verbose('Taking a step');
- if(step > 0) {
- module.set.value(currValue + step * multiplier);
- } else if (step == 0){
- var
- precision = module.get.precision(),
- newValue = currValue + (multiplier/precision)
- ;
- module.set.value(Math.round(newValue * precision) / precision);
- }
- },
-
- backStep: function(multiplier) {
- var
- multiplier = multiplier != undefined ? multiplier : 1,
- step = module.get.step(),
- currValue = module.get.currentThumbValue()
- ;
- module.verbose('Going back a step');
- if(step > 0) {
- module.set.value(currValue - step * multiplier);
- } else if (step == 0) {
- var
- precision = module.get.precision(),
- newValue = currValue - (multiplier/precision)
- ;
- module.set.value(Math.round(newValue * precision) / precision);
- }
- },
-
- is: {
- range: function() {
- return $module.hasClass(settings.className.range);
- },
- hover: function() {
- return isHover;
- },
- focused: function() {
- return $module.is(':focus');
- },
- disabled: function() {
- return $module.hasClass(settings.className.disabled);
- },
- labeled: function() {
- return $module.hasClass(settings.className.labeled);
- },
- reversed: function() {
- return $module.hasClass(settings.className.reversed);
- },
- vertical: function() {
- return $module.hasClass(settings.className.vertical);
- },
- smooth: function() {
- return settings.smooth || $module.hasClass(settings.className.smooth);
- },
- touch: function() {
- return isTouch;
- }
- },
-
- get: {
- trackOffset: function() {
- if (module.is.vertical()) {
- return $track.offset().top;
- } else {
- return $track.offset().left;
- }
- },
- trackLength: function() {
- if (module.is.vertical()) {
- return $track.height();
- } else {
- return $track.width();
- }
- },
- trackLeft: function() {
- if (module.is.vertical()) {
- return $track.position().top;
- } else {
- return $track.position().left;
- }
- },
- trackStartPos: function() {
- return module.is.reversed() ? module.get.trackLeft() + module.get.trackLength() : module.get.trackLeft();
- },
- trackEndPos: function() {
- return module.is.reversed() ? module.get.trackLeft() : module.get.trackLeft() + module.get.trackLength();
- },
- trackStartMargin: function () {
- var margin;
- if (module.is.vertical()) {
- margin = module.is.reversed() ? $module.css('padding-bottom') : $module.css('padding-top');
- } else {
- margin = module.is.reversed() ? $module.css('padding-right') : $module.css('padding-left');
- }
- return margin || '0px';
- },
- trackEndMargin: function () {
- var margin;
- if (module.is.vertical()) {
- margin = module.is.reversed() ? $module.css('padding-top') : $module.css('padding-bottom');
- } else {
- margin = module.is.reversed() ? $module.css('padding-left') : $module.css('padding-right');
- }
- return margin || '0px';
- },
- precision: function() {
- var
- decimalPlaces,
- step = module.get.step()
- ;
- if(step != 0) {
- var split = String(step).split('.');
- if(split.length == 2) {
- decimalPlaces = split[1].length;
- } else {
- decimalPlaces = 0;
- }
- } else {
- decimalPlaces = settings.decimalPlaces;
- }
- var precision = Math.pow(10, decimalPlaces);
- module.debug('Precision determined', precision);
- return precision;
- },
- min: function() {
- return settings.min;
- },
- max: function() {
- var step = module.get.step(),
- min = module.get.min(),
- quotient = step === 0 ? 0 : Math.floor((settings.max - min) / step),
- remainder = step === 0 ? 0 : (settings.max - min) % step;
- return remainder === 0 ? settings.max : min + quotient * step;
- },
- step: function() {
- return settings.step;
- },
- numLabels: function() {
- var value = Math.round((module.get.max() - module.get.min()) / module.get.step());
- module.debug('Determined that there should be ' + value + ' labels');
- return value;
- },
- labelType: function() {
- return settings.labelType;
- },
- label: function(value) {
- if(interpretLabel) {
- return interpretLabel(value);
- }
-
- switch (settings.labelType) {
- case settings.labelTypes.number:
- return Math.round(((value * module.get.step()) + module.get.min()) * precision ) / precision;
- case settings.labelTypes.letter:
- return alphabet[(value) % 26];
- default:
- return value;
- }
- },
- value: function() {
- return value;
- },
- currentThumbValue: function() {
- return $currThumb !== undefined && $currThumb.hasClass('second') ? module.secondThumbVal : module.thumbVal;
- },
- thumbValue: function(which) {
- switch(which) {
- case 'second':
- if(module.is.range()) {
- return module.secondThumbVal;
- }
- else {
- module.error(error.notrange);
- break;
- }
- case 'first':
- default:
- return module.thumbVal;
- }
- },
- multiplier: function() {
- return settings.pageMultiplier;
- },
- thumbPosition: function(which) {
- switch(which) {
- case 'second':
- if(module.is.range()) {
- return secondPos;
- }
- else {
- module.error(error.notrange);
- break;
- }
- case 'first':
- default:
- return position;
- }
- },
- gapRatio: function() {
- var gapRatio = 1;
-
- if( settings.autoAdjustLabels ) {
- var
- numLabels = module.get.numLabels(),
- trackLength = module.get.trackLength(),
- gapCounter = 1
- ;
-
- // While the distance between two labels is too short,
- // we divide the number of labels at each iteration
- // and apply only if the modulo of the operation is an odd number.
- if(trackLength>0){
- while ((trackLength / numLabels) * gapCounter < settings.labelDistance) {
- if( !(numLabels % gapCounter) ) {
- gapRatio = gapCounter;
- }
- gapCounter += 1;
- }
- }
- }
- return gapRatio;
- }
- },
-
- determine: {
- pos: function(pagePos) {
- return module.is.reversed()
- ?
- module.get.trackStartPos() - pagePos + module.get.trackOffset()
- :
- pagePos - module.get.trackOffset() - module.get.trackStartPos()
- ;
- },
- closestThumb: function(eventPos) {
- var
- thumbPos = parseFloat(module.determine.thumbPos($thumb)),
- thumbDelta = Math.abs(eventPos - thumbPos),
- secondThumbPos = parseFloat(module.determine.thumbPos($secondThumb)),
- secondThumbDelta = Math.abs(eventPos - secondThumbPos)
- ;
- if(thumbDelta === secondThumbDelta && module.get.thumbValue() === module.get.min()) {
- return $secondThumb;
- }
- return thumbDelta <= secondThumbDelta ? $thumb : $secondThumb;
- },
- closestThumbPos: function(eventPos) {
- var
- thumbPos = parseFloat(module.determine.thumbPos($thumb)),
- thumbDelta = Math.abs(eventPos - thumbPos),
- secondThumbPos = parseFloat(module.determine.thumbPos($secondThumb)),
- secondThumbDelta = Math.abs(eventPos - secondThumbPos)
- ;
- return thumbDelta <= secondThumbDelta ? thumbPos : secondThumbPos;
- },
- thumbPos: function($element) {
- var pos =
- module.is.vertical()
- ?
- module.is.reversed() ? $element.css('bottom') : $element.css('top')
- :
- module.is.reversed() ? $element.css('right') : $element.css('left')
- ;
- return pos;
- },
- positionFromValue: function(value) {
- var
- min = module.get.min(),
- max = module.get.max(),
- value = value > max ? max : value < min ? min : value,
- trackLength = module.get.trackLength(),
- ratio = (value - min) / (max - min),
- position = Math.round(ratio * trackLength)
- ;
- module.verbose('Determined position: ' + position + ' from value: ' + value);
- return position;
- },
- positionFromRatio: function(ratio) {
- var
- trackLength = module.get.trackLength(),
- step = module.get.step(),
- position = Math.round(ratio * trackLength),
- adjustedPos = (step == 0) ? position : Math.round(position / step) * step
- ;
- return adjustedPos;
- },
- valueFromEvent: function(event) {
- var
- eventPos = module.determine.eventPos(event),
- newPos = module.determine.pos(eventPos),
- value
- ;
- if(eventPos < module.get.trackOffset()) {
- value = module.is.reversed() ? module.get.max() : module.get.min();
- } else if(eventPos > module.get.trackOffset() + module.get.trackLength()) {
- value = module.is.reversed() ? module.get.min() : module.get.max();
- } else {
- value = module.determine.value(newPos);
- }
- return value;
- },
- smoothValueFromEvent: function(event) {
- var
- min = module.get.min(),
- max = module.get.max(),
- trackLength = module.get.trackLength(),
- eventPos = module.determine.eventPos(event),
- newPos = eventPos - module.get.trackOffset(),
- ratio,
- value
- ;
- newPos = newPos < 0 ? 0 : newPos > trackLength ? trackLength : newPos;
- ratio = newPos / trackLength;
- if (module.is.reversed()) {
- ratio = 1 - ratio;
- }
- value = ratio * (max - min) + min;
- return value;
- },
- eventPos: function(event) {
- if(module.is.touch()) {
- var
- touchEvent = event.changedTouches ? event : event.originalEvent,
- touches = touchEvent.changedTouches[0] ? touchEvent.changedTouches : touchEvent.touches,
- touchY = touches[0].pageY,
- touchX = touches[0].pageX
- ;
- return module.is.vertical() ? touchY : touchX;
- }
- var
- clickY = event.pageY || event.originalEvent.pageY,
- clickX = event.pageX || event.originalEvent.pageX
- ;
- return module.is.vertical() ? clickY : clickX;
- },
- value: function(position) {
- var
- startPos = module.is.reversed() ? module.get.trackEndPos() : module.get.trackStartPos(),
- endPos = module.is.reversed() ? module.get.trackStartPos() : module.get.trackEndPos(),
- ratio = (position - startPos) / (endPos - startPos),
- range = module.get.max() - module.get.min(),
- step = module.get.step(),
- value = (ratio * range),
- difference = (step == 0) ? value : Math.round(value / step) * step
- ;
- module.verbose('Determined value based upon position: ' + position + ' as: ' + value);
- if(value != difference) {
- module.verbose('Rounding value to closest step: ' + difference);
- }
- // Use precision to avoid ugly Javascript floating point rounding issues
- // (like 35 * .01 = 0.35000000000000003)
- difference = Math.round(difference * precision) / precision;
- module.verbose('Cutting off additional decimal places');
- return difference + module.get.min();
- },
- keyMovement: function(event) {
- var
- key = event.which,
- downArrow =
- module.is.vertical()
- ?
- module.is.reversed() ? keys.downArrow : keys.upArrow
- :
- keys.downArrow
- ,
- upArrow =
- module.is.vertical()
- ?
- module.is.reversed() ? keys.upArrow : keys.downArrow
- :
- keys.upArrow
- ,
- leftArrow =
- !module.is.vertical()
- ?
- module.is.reversed() ? keys.rightArrow : keys.leftArrow
- :
- keys.leftArrow
- ,
- rightArrow =
- !module.is.vertical()
- ?
- module.is.reversed() ? keys.leftArrow : keys.rightArrow
- :
- keys.rightArrow
- ;
- if(key == downArrow || key == leftArrow) {
- return SINGLE_BACKSTEP;
- } else if(key == upArrow || key == rightArrow) {
- return SINGLE_STEP;
- } else if (key == keys.pageDown) {
- return BIG_BACKSTEP;
- } else if (key == keys.pageUp) {
- return BIG_STEP;
- } else {
- return NO_STEP;
- }
- }
- },
-
- handleNewValuePosition: function(val) {
- var
- min = module.get.min(),
- max = module.get.max(),
- newPos
- ;
- if (val <= min) {
- val = min;
- } else if (val >= max) {
- val = max;
- }
- newPos = module.determine.positionFromValue(val);
- return newPos;
- },
-
- set: {
- value: function(newValue) {
- module.update.value(newValue, function(value, thumbVal, secondThumbVal) {
- if (!initialLoad || settings.fireOnInit){
- settings.onChange.call(element, value, thumbVal, secondThumbVal);
- settings.onMove.call(element, value, thumbVal, secondThumbVal);
- }
- });
- },
- rangeValue: function(first, second) {
- if(module.is.range()) {
- var
- min = module.get.min(),
- max = module.get.max()
- ;
- if (first <= min) {
- first = min;
- } else if(first >= max){
- first = max;
- }
- if (second <= min) {
- second = min;
- } else if(second >= max){
- second = max;
- }
- module.thumbVal = first;
- module.secondThumbVal = second;
- value = Math.abs(module.thumbVal - module.secondThumbVal);
- module.update.position(module.thumbVal, $thumb);
- module.update.position(module.secondThumbVal, $secondThumb);
- if (!initialLoad || settings.fireOnInit) {
- settings.onChange.call(element, value, module.thumbVal, module.secondThumbVal);
- settings.onMove.call(element, value, module.thumbVal, module.secondThumbVal);
- }
- } else {
- module.error(error.notrange);
- }
- },
- position: function(position, which) {
- var thumbVal = module.determine.value(position);
- switch (which) {
- case 'second':
- module.secondThumbVal = thumbVal;
- module.update.position(thumbVal, $secondThumb);
- break;
- default:
- module.thumbVal = thumbVal;
- module.update.position(thumbVal, $thumb);
- }
- value = Math.abs(module.thumbVal - (module.secondThumbVal || 0));
- module.set.value(value);
- }
- },
-
- update: {
- value: function(newValue, callback) {
- var
- min = module.get.min(),
- max = module.get.max()
- ;
- if (newValue <= min) {
- newValue = min;
- } else if(newValue >= max){
- newValue = max;
- }
- if(!module.is.range()) {
- value = newValue;
- module.thumbVal = value;
- } else {
- if($currThumb === undefined) {
- $currThumb = newValue <= module.get.currentThumbValue() ? $thumb : $secondThumb;
- }
- if(!$currThumb.hasClass('second')) {
- if(settings.preventCrossover && module.is.range()) {
- newValue = Math.min(module.secondThumbVal, newValue);
- }
- module.thumbVal = newValue;
- } else {
- if(settings.preventCrossover && module.is.range()) {
- newValue = Math.max(module.thumbVal, newValue);
- }
- module.secondThumbVal = newValue;
- }
- value = Math.abs(module.thumbVal - module.secondThumbVal);
- }
- module.update.position(newValue);
- module.debug('Setting slider value to ' + value);
- if(typeof callback === 'function') {
- callback(value, module.thumbVal, module.secondThumbVal);
- }
- },
- position: function(newValue, $element) {
- var
- newPos = module.handleNewValuePosition(newValue),
- $targetThumb = $element != undefined ? $element : $currThumb,
- thumbVal = module.thumbVal || module.get.min(),
- secondThumbVal = module.secondThumbVal || module.get.min()
- ;
- if(module.is.range()) {
- if(!$targetThumb.hasClass('second')) {
- position = newPos;
- thumbVal = newValue;
- } else {
- secondPos = newPos;
- secondThumbVal = newValue;
- }
- } else {
- position = newPos;
- thumbVal = newValue;
- }
- var
- trackPosValue,
- thumbPosValue,
- min = module.get.min(),
- max = module.get.max(),
- thumbPosPercent = 100 * (newValue - min) / (max - min),
- trackStartPosPercent = 100 * (Math.min(thumbVal, secondThumbVal) - min) / (max - min),
- trackEndPosPercent = 100 * (1 - (Math.max(thumbVal, secondThumbVal) - min) / (max - min))
- ;
- if (module.is.vertical()) {
- if (module.is.reversed()) {
- thumbPosValue = {bottom: 'calc(' + thumbPosPercent + '% - ' + offset + 'px)', top: 'auto'};
- trackPosValue = {bottom: trackStartPosPercent + '%', top: trackEndPosPercent + '%'};
- }
- else {
- thumbPosValue = {top: 'calc(' + thumbPosPercent + '% - ' + offset + 'px)', bottom: 'auto'};
- trackPosValue = {top: trackStartPosPercent + '%', bottom: trackEndPosPercent + '%'};
- }
- } else {
- if (module.is.reversed()) {
- thumbPosValue = {right: 'calc(' + thumbPosPercent + '% - ' + offset + 'px)', left: 'auto'};
- trackPosValue = {right: trackStartPosPercent + '%', left: trackEndPosPercent + '%'};
- }
- else {
- thumbPosValue = {left: 'calc(' + thumbPosPercent + '% - ' + offset + 'px)', right: 'auto'};
- trackPosValue = {left: trackStartPosPercent + '%', right: trackEndPosPercent + '%'};
- }
- }
- $targetThumb.css(thumbPosValue);
- $trackFill.css(trackPosValue);
- module.debug('Setting slider position to ' + newPos);
- },
- labelPosition: function (ratio, $label) {
- var
- startMargin = module.get.trackStartMargin(),
- endMargin = module.get.trackEndMargin(),
- posDir =
- module.is.vertical()
- ?
- module.is.reversed() ? 'bottom' : 'top'
- :
- module.is.reversed() ? 'right' : 'left',
- startMarginMod = module.is.reversed() && !module.is.vertical() ? ' - ' : ' + '
- ;
- var position = '(100% - ' + startMargin + ' - ' + endMargin + ') * ' + ratio;
- $label.css(posDir, 'calc(' + position + startMarginMod + startMargin + ')');
- }
- },
-
- goto: {
- max: function() {
- module.set.value(module.get.max());
- },
- min: function() {
- module.set.value(module.get.min());
- },
- },
-
- read: {
- metadata: function() {
- var
- data = {
- thumbVal : $module.data(metadata.thumbVal),
- secondThumbVal : $module.data(metadata.secondThumbVal)
- }
- ;
- if(data.thumbVal) {
- if(module.is.range() && data.secondThumbVal) {
- module.debug('Current value set from metadata', data.thumbVal, data.secondThumbVal);
- module.set.rangeValue(data.thumbVal, data.secondThumbVal);
- } else {
- module.debug('Current value set from metadata', data.thumbVal);
- module.set.value(data.thumbVal);
- }
- }
- },
- settings: function() {
- if(settings.start !== false) {
- if(module.is.range()) {
- module.debug('Start position set from settings', settings.start, settings.end);
- module.set.rangeValue(settings.start, settings.end);
- } else {
- module.debug('Start position set from settings', settings.start);
- module.set.value(settings.start);
- }
- }
- }
- },
-
- setting: function(name, value) {
- module.debug('Changing setting', name, value);
- if( $.isPlainObject(name) ) {
- $.extend(true, settings, name);
- }
- else if(value !== undefined) {
- if($.isPlainObject(settings[name])) {
- $.extend(true, settings[name], value);
- }
- else {
- settings[name] = value;
- }
- }
- else {
- return settings[name];
- }
- },
- internal: function(name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, module, name);
- }
- else if(value !== undefined) {
- module[name] = value;
- }
- else {
- return module[name];
- }
- },
- debug: function() {
- if(!settings.silent && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.debug.apply(console, arguments);
- }
- }
- },
- verbose: function() {
- if(!settings.silent && settings.verbose && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.verbose.apply(console, arguments);
- }
- }
- },
- error: function() {
- if(!settings.silent) {
- module.error = Function.prototype.bind.call(console.error, console, settings.name + ':');
- module.error.apply(console, arguments);
- }
- },
-
- performance: {
- log: function(message) {
- var
- currentTime,
- executionTime,
- previousTime
- ;
- if(settings.performance) {
- currentTime = new Date().getTime();
- previousTime = time || currentTime;
- executionTime = currentTime - previousTime;
- time = currentTime;
- performance.push({
- 'Name' : message[0],
- 'Arguments' : [].slice.call(message, 1) || '',
- 'Element' : element,
- 'Execution Time' : executionTime
- });
- }
- clearTimeout(module.performance.timer);
- module.performance.timer = setTimeout(module.performance.display, 500);
- },
- display: function() {
- var
- title = settings.name + ':',
- totalTime = 0
- ;
- time = false;
- clearTimeout(module.performance.timer);
- $.each(performance, function(index, data) {
- totalTime += data['Execution Time'];
- });
- title += ' ' + totalTime + 'ms';
- if(moduleSelector) {
- title += ' \'' + moduleSelector + '\'';
- }
- if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) {
- console.groupCollapsed(title);
- if(console.table) {
- console.table(performance);
- }
- else {
- $.each(performance, function(index, data) {
- console.log(data['Name'] + ': ' + data['Execution Time']+'ms');
- });
- }
- console.groupEnd();
- }
- performance = [];
- }
- },
-
- invoke: function(query, passedArguments, context) {
- var
- object = instance,
- maxDepth,
- found,
- response
- ;
- passedArguments = passedArguments || queryArguments;
- context = element || context;
- if(typeof query == 'string' && object !== undefined) {
- query = query.split(/[\. ]/);
- maxDepth = query.length - 1;
- $.each(query, function(depth, value) {
- var camelCaseValue = (depth != maxDepth)
- ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
- : query
- ;
- if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
- object = object[camelCaseValue];
- }
- else if( object[camelCaseValue] !== undefined ) {
- found = object[camelCaseValue];
- return false;
- }
- else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
- object = object[value];
- }
- else if( object[value] !== undefined ) {
- found = object[value];
- return false;
- }
- else {
- module.error(error.method, query);
- return false;
- }
- });
- }
- if ( $.isFunction( found ) ) {
- response = found.apply(context, passedArguments);
- }
- else if(found !== undefined) {
- response = found;
- }
- if($.isArray(returnedValue)) {
- returnedValue.push(response);
- }
- else if(returnedValue !== undefined) {
- returnedValue = [returnedValue, response];
- }
- else if(response !== undefined) {
- returnedValue = response;
- }
- return found;
- }
- };
-
- if(methodInvoked) {
- if(instance === undefined) {
- module.initialize();
- }
- module.invoke(query);
- }
- else {
- if(instance !== undefined) {
- instance.invoke('destroy');
- }
- module.initialize();
- }
- })
- ;
-
- return (returnedValue !== undefined)
- ? returnedValue
- : this
- ;
-
-};
-
-$.fn.slider.settings = {
-
- silent : false,
- debug : false,
- verbose : false,
- performance : true,
-
- name : 'Slider',
- namespace : 'slider',
-
- error : {
- method : 'The method you called is not defined.',
- notrange : 'This slider is not a range slider'
- },
-
- metadata: {
- thumbVal : 'thumbVal',
- secondThumbVal : 'secondThumbVal'
- },
-
- min : 0,
- max : 20,
- step : 1,
- start : 0,
- end : 20,
- labelType : 'number',
- showLabelTicks : false,
- smooth : false,
- autoAdjustLabels : true,
- labelDistance : 100,
- preventCrossover : true,
- fireOnInit : false,
-
- //the decimal place to round to if step is undefined
- decimalPlaces : 2,
-
- // page up/down multiplier. How many more times the steps to take on page up/down press
- pageMultiplier : 2,
-
- selector: {
-
- },
-
- className : {
- reversed : 'reversed',
- disabled : 'disabled',
- labeled : 'labeled',
- ticked : 'ticked',
- vertical : 'vertical',
- range : 'range',
- smooth : 'smooth'
- },
-
- keys : {
- pageUp : 33,
- pageDown : 34,
- leftArrow : 37,
- upArrow : 38,
- rightArrow : 39,
- downArrow : 40
- },
-
- labelTypes : {
- number : 'number',
- letter : 'letter'
- },
-
- onChange : function(value, thumbVal, secondThumbVal){},
- onMove : function(value, thumbVal, secondThumbVal){},
-};
-
-
-})( jQuery, window, document );
diff --git a/src-angular/assets/semantic/dist/components/slider.min.css b/src-angular/assets/semantic/dist/components/slider.min.css
deleted file mode 100644
index 0431091..0000000
--- a/src-angular/assets/semantic/dist/components/slider.min.css
+++ /dev/null
@@ -1 +0,0 @@
-.ui.slider:not(.vertical):not(.checkbox){width:100%;padding:1em .5em}.ui.slider:not(.checkbox){position:relative}.ui.slider:not(.checkbox):focus{outline:0}.ui.slider .inner{position:relative;z-index:2}.ui.slider:not(.vertical) .inner{height:1.5em}.ui.slider .inner:hover{cursor:auto}.ui.slider .inner .track{position:absolute;border-radius:4px;background-color:rgba(0,0,0,.05)}.ui.slider:not(.vertical) .inner .track{width:100%;height:.4em;top:.55em;left:0}.ui.slider .inner .track-fill{position:absolute;border-radius:4px;background-color:#1b1c1d}.ui.slider:not(.vertical) .inner .track-fill{height:.4em;top:.55em;left:0}.ui.slider .inner .thumb{position:absolute;left:0;top:0;height:1.5em;width:1.5em;background:#fff -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,.05)));background:#fff -webkit-linear-gradient(transparent,rgba(0,0,0,.05));background:#fff linear-gradient(transparent,rgba(0,0,0,.05));border-radius:100%;-webkit-box-shadow:0 1px 2px 0 rgba(34,36,38,.15),0 0 0 1px rgba(34,36,38,.15) inset;box-shadow:0 1px 2px 0 rgba(34,36,38,.15),0 0 0 1px rgba(34,36,38,.15) inset;-webkit-transition:background .3s ease;transition:background .3s ease}.ui.slider:not(.disabled) .inner .thumb:hover{cursor:pointer;background:#f2f2f2 -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,.05)));background:#f2f2f2 -webkit-linear-gradient(transparent,rgba(0,0,0,.05));background:#f2f2f2 linear-gradient(transparent,rgba(0,0,0,.05))}.ui.slider:not(.disabled):focus .inner .thumb{background:#f2f2f2 -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,.05)));background:#f2f2f2 -webkit-linear-gradient(transparent,rgba(0,0,0,.05));background:#f2f2f2 linear-gradient(transparent,rgba(0,0,0,.05))}.ui.disabled.slider:not(.checkbox){opacity:.5}.ui.disabled.slider .inner:hover{cursor:auto}.ui.disabled.slider .inner .track-fill{background:#ccc}.ui.reversed.slider .inner .track-fill{left:auto;right:0}.ui.reversed.slider:not(.vertical) .inner .thumb{left:auto;right:0}.ui.reversed.vertical.slider .inner .thumb{left:.03em}.ui.labeled.reversed.slider>.labels .label{-webkit-transform:translate(-100%,-100%);transform:translate(-100%,-100%)}.ui.vertical.slider{height:100%;width:1.5em;padding:.5em 1em}.ui.vertical.slider .inner{height:100%}.ui.vertical.slider .inner .track{height:100%;width:.4em;left:.55em;top:0}.ui.vertical.slider .inner .track-fill{width:.4em;left:.55em;top:0}.ui.vertical.reversed.slider .inner .thumb{top:auto;bottom:0}.ui.vertical.reversed.slider .inner .track-fill{top:auto;bottom:0}.ui.labeled.slider>.labels{height:1.5em;width:auto;margin:0;padding:0;position:absolute;top:50%;left:0;right:0}.ui.labeled.slider:not(.vertical)>.labels{-webkit-transform:translateY(-50%);transform:translateY(-50%)}.ui.labeled.slider>.labels .label{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;position:absolute;-webkit-transform:translate(-50%,-100%);transform:translate(-50%,-100%)}.ui.labeled.ticked.slider>.labels .label:after{content:' ';height:1.5em;width:1px;background:#ccc;position:absolute;top:100%;left:50%}.ui.labeled.ticked.slider>.labels .halftick.label:after{height:.75em}.ui.labeled.vertical.slider>.labels{width:1.5em;height:auto;left:50%;top:0;bottom:0;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.ui.labeled.vertical.slider>.labels .label{-webkit-transform:translate(-100%,-50%);transform:translate(-100%,-50%)}.ui.labeled.vertical.slider>.labels .label:after{width:1.5em;height:1px;left:100%;top:50%}.ui.labeled.vertical.slider>.labels .halftick.label:after{width:.75em;height:1px}.ui.labeled.vertical.reversed.slider>.labels .label{-webkit-transform:translate(-100%,50%);transform:translate(-100%,50%)}.ui.hover.slider .inner .thumb{opacity:0;-webkit-transition:opacity .2s linear;transition:opacity .2s linear}.ui.hover.slider:not(.disabled):focus .inner .thumb,.ui.hover.slider:not(.disabled):hover .inner .thumb{opacity:1}.ui.inverted.slider .inner .track-fill{background-color:#545454}.ui.inverted.slider .inner .track{background-color:rgba(255,255,255,.08)}.ui.primary.slider .inner .track-fill{background-color:#2185d0}.ui.primary.inverted.slider .inner .track-fill{background-color:#54c8ff}.ui.primary.slider.basic .inner .thumb{background-color:#2185d0}.ui.primary.slider.basic .inner .thumb:hover,.ui.primary.slider.basic:focus .inner .thumb{background-color:#1678c2}.ui.primary.inverted.slider.basic .inner .thumb{background-color:#54c8ff}.ui.primary.inverted.slider.basic .inner .thumb:hover,.ui.primary.inverted.slider.basic:focus .inner .thumb{background-color:#21b8ff}.ui.secondary.slider .inner .track-fill{background-color:#1b1c1d}.ui.secondary.inverted.slider .inner .track-fill{background-color:#545454}.ui.secondary.slider.basic .inner .thumb{background-color:#1b1c1d}.ui.secondary.slider.basic .inner .thumb:hover,.ui.secondary.slider.basic:focus .inner .thumb{background-color:#27292a}.ui.secondary.inverted.slider.basic .inner .thumb{background-color:#545454}.ui.secondary.inverted.slider.basic .inner .thumb:hover,.ui.secondary.inverted.slider.basic:focus .inner .thumb{background-color:#6e6e6e}.ui.red.slider .inner .track-fill{background-color:#db2828}.ui.red.inverted.slider .inner .track-fill{background-color:#ff695e}.ui.red.slider.basic .inner .thumb{background-color:#db2828}.ui.red.slider.basic .inner .thumb:hover,.ui.red.slider.basic:focus .inner .thumb{background-color:#d01919}.ui.red.inverted.slider.basic .inner .thumb{background-color:#ff695e}.ui.red.inverted.slider.basic .inner .thumb:hover,.ui.red.inverted.slider.basic:focus .inner .thumb{background-color:#ff392b}.ui.orange.slider .inner .track-fill{background-color:#f2711c}.ui.orange.inverted.slider .inner .track-fill{background-color:#ff851b}.ui.orange.slider.basic .inner .thumb{background-color:#f2711c}.ui.orange.slider.basic .inner .thumb:hover,.ui.orange.slider.basic:focus .inner .thumb{background-color:#f26202}.ui.orange.inverted.slider.basic .inner .thumb{background-color:#ff851b}.ui.orange.inverted.slider.basic .inner .thumb:hover,.ui.orange.inverted.slider.basic:focus .inner .thumb{background-color:#e76b00}.ui.yellow.slider .inner .track-fill{background-color:#fbbd08}.ui.yellow.inverted.slider .inner .track-fill{background-color:#ffe21f}.ui.yellow.slider.basic .inner .thumb{background-color:#fbbd08}.ui.yellow.slider.basic .inner .thumb:hover,.ui.yellow.slider.basic:focus .inner .thumb{background-color:#eaae00}.ui.yellow.inverted.slider.basic .inner .thumb{background-color:#ffe21f}.ui.yellow.inverted.slider.basic .inner .thumb:hover,.ui.yellow.inverted.slider.basic:focus .inner .thumb{background-color:#ebcd00}.ui.olive.slider .inner .track-fill{background-color:#b5cc18}.ui.olive.inverted.slider .inner .track-fill{background-color:#d9e778}.ui.olive.slider.basic .inner .thumb{background-color:#b5cc18}.ui.olive.slider.basic .inner .thumb:hover,.ui.olive.slider.basic:focus .inner .thumb{background-color:#a7bd0d}.ui.olive.inverted.slider.basic .inner .thumb{background-color:#d9e778}.ui.olive.inverted.slider.basic .inner .thumb:hover,.ui.olive.inverted.slider.basic:focus .inner .thumb{background-color:#d2e745}.ui.green.slider .inner .track-fill{background-color:#21ba45}.ui.green.inverted.slider .inner .track-fill{background-color:#2ecc40}.ui.green.slider.basic .inner .thumb{background-color:#21ba45}.ui.green.slider.basic .inner .thumb:hover,.ui.green.slider.basic:focus .inner .thumb{background-color:#16ab39}.ui.green.inverted.slider.basic .inner .thumb{background-color:#2ecc40}.ui.green.inverted.slider.basic .inner .thumb:hover,.ui.green.inverted.slider.basic:focus .inner .thumb{background-color:#1ea92e}.ui.teal.slider .inner .track-fill{background-color:#00b5ad}.ui.teal.inverted.slider .inner .track-fill{background-color:#6dffff}.ui.teal.slider.basic .inner .thumb{background-color:#00b5ad}.ui.teal.slider.basic .inner .thumb:hover,.ui.teal.slider.basic:focus .inner .thumb{background-color:#009c95}.ui.teal.inverted.slider.basic .inner .thumb{background-color:#6dffff}.ui.teal.inverted.slider.basic .inner .thumb:hover,.ui.teal.inverted.slider.basic:focus .inner .thumb{background-color:#3affff}.ui.blue.slider .inner .track-fill{background-color:#2185d0}.ui.blue.inverted.slider .inner .track-fill{background-color:#54c8ff}.ui.blue.slider.basic .inner .thumb{background-color:#2185d0}.ui.blue.slider.basic .inner .thumb:hover,.ui.blue.slider.basic:focus .inner .thumb{background-color:#1678c2}.ui.blue.inverted.slider.basic .inner .thumb{background-color:#54c8ff}.ui.blue.inverted.slider.basic .inner .thumb:hover,.ui.blue.inverted.slider.basic:focus .inner .thumb{background-color:#21b8ff}.ui.violet.slider .inner .track-fill{background-color:#6435c9}.ui.violet.inverted.slider .inner .track-fill{background-color:#a291fb}.ui.violet.slider.basic .inner .thumb{background-color:#6435c9}.ui.violet.slider.basic .inner .thumb:hover,.ui.violet.slider.basic:focus .inner .thumb{background-color:#5829bb}.ui.violet.inverted.slider.basic .inner .thumb{background-color:#a291fb}.ui.violet.inverted.slider.basic .inner .thumb:hover,.ui.violet.inverted.slider.basic:focus .inner .thumb{background-color:#745aff}.ui.purple.slider .inner .track-fill{background-color:#a333c8}.ui.purple.inverted.slider .inner .track-fill{background-color:#dc73ff}.ui.purple.slider.basic .inner .thumb{background-color:#a333c8}.ui.purple.slider.basic .inner .thumb:hover,.ui.purple.slider.basic:focus .inner .thumb{background-color:#9627ba}.ui.purple.inverted.slider.basic .inner .thumb{background-color:#dc73ff}.ui.purple.inverted.slider.basic .inner .thumb:hover,.ui.purple.inverted.slider.basic:focus .inner .thumb{background-color:#cf40ff}.ui.pink.slider .inner .track-fill{background-color:#e03997}.ui.pink.inverted.slider .inner .track-fill{background-color:#ff8edf}.ui.pink.slider.basic .inner .thumb{background-color:#e03997}.ui.pink.slider.basic .inner .thumb:hover,.ui.pink.slider.basic:focus .inner .thumb{background-color:#e61a8d}.ui.pink.inverted.slider.basic .inner .thumb{background-color:#ff8edf}.ui.pink.inverted.slider.basic .inner .thumb:hover,.ui.pink.inverted.slider.basic:focus .inner .thumb{background-color:#ff5bd1}.ui.brown.slider .inner .track-fill{background-color:#a5673f}.ui.brown.inverted.slider .inner .track-fill{background-color:#d67c1c}.ui.brown.slider.basic .inner .thumb{background-color:#a5673f}.ui.brown.slider.basic .inner .thumb:hover,.ui.brown.slider.basic:focus .inner .thumb{background-color:#975b33}.ui.brown.inverted.slider.basic .inner .thumb{background-color:#d67c1c}.ui.brown.inverted.slider.basic .inner .thumb:hover,.ui.brown.inverted.slider.basic:focus .inner .thumb{background-color:#b0620f}.ui.grey.slider .inner .track-fill{background-color:#767676}.ui.grey.inverted.slider .inner .track-fill{background-color:#dcddde}.ui.grey.slider.basic .inner .thumb{background-color:#767676}.ui.grey.slider.basic .inner .thumb:hover,.ui.grey.slider.basic:focus .inner .thumb{background-color:#838383}.ui.grey.inverted.slider.basic .inner .thumb{background-color:#dcddde}.ui.grey.inverted.slider.basic .inner .thumb:hover,.ui.grey.inverted.slider.basic:focus .inner .thumb{background-color:#c2c4c5}.ui.black.slider .inner .track-fill{background-color:#1b1c1d}.ui.black.inverted.slider .inner .track-fill{background-color:#545454}.ui.black.slider.basic .inner .thumb{background-color:#1b1c1d}.ui.black.slider.basic .inner .thumb:hover,.ui.black.slider.basic:focus .inner .thumb{background-color:#27292a}.ui.black.inverted.slider.basic .inner .thumb{background-color:#545454}.ui.black.inverted.slider.basic .inner .thumb:hover,.ui.black.inverted.slider.basic:focus .inner .thumb{background-color:#000}.ui.slider.basic .inner .thumb{background-color:#1b1c1d}.ui.slider.basic .inner .thumb:hover,.ui.slider.basic:focus .inner .thumb{background-color:#27292a}.ui.inverted.slider.basic .inner .thumb{background-color:#545454}.ui.inverted.slider.basic .inner .thumb:hover,.ui.inverted.slider.basic:focus .inner .thumb{background-color:#000}.ui.slider.small .inner .thumb{height:1em;width:1em}.ui.slider.small:not(.vertical) .inner{height:1em}.ui.slider.small:not(.vertical) .inner .track,.ui.slider.small:not(.vertical) .inner .track-fill{height:.3em;top:.35em}.ui.small.labeled.slider:not(.vertical)>.labels,.ui.small.labeled.slider:not(.vertical)>.labels .label:after{height:1em}.ui.small.labeled.slider:not(.vertical)>.labels .halftick.label:after{height:.5em}.ui.slider.small.vertical .inner{width:1em}.ui.slider.small.vertical .inner .track,.ui.slider.small.vertical .inner .track-fill{width:.3em;left:.35em}.ui.small.labeled.vertical.slider>.labels,.ui.small.labeled.vertical.slider>.labels .label:after{width:1em}.ui.small.labeled.vertical.slider>.labels .halftick.label:after{width:.5em}.ui.slider.large .inner .thumb{height:2em;width:2em}.ui.slider.large:not(.vertical) .inner{height:2em}.ui.slider.large:not(.vertical) .inner .track,.ui.slider.large:not(.vertical) .inner .track-fill{height:.5em;top:.75em}.ui.large.labeled.slider:not(.vertical)>.labels,.ui.large.labeled.slider:not(.vertical)>.labels .label:after{height:2em}.ui.large.labeled.slider:not(.vertical)>.labels .halftick.label:after{height:1em}.ui.slider.large.vertical .inner{width:2em}.ui.slider.large.vertical .inner .track,.ui.slider.large.vertical .inner .track-fill{width:.5em;left:.75em}.ui.large.labeled.vertical.slider>.labels,.ui.large.labeled.vertical.slider>.labels .label:after{width:2em}.ui.large.labeled.vertical.slider>.labels .halftick.label:after{width:1em}.ui.slider.big .inner .thumb{height:2.5em;width:2.5em}.ui.slider.big:not(.vertical) .inner{height:2.5em}.ui.slider.big:not(.vertical) .inner .track,.ui.slider.big:not(.vertical) .inner .track-fill{height:.6em;top:.95em}.ui.big.labeled.slider:not(.vertical)>.labels,.ui.big.labeled.slider:not(.vertical)>.labels .label:after{height:2.5em}.ui.big.labeled.slider:not(.vertical)>.labels .halftick.label:after{height:1.25em}.ui.slider.big.vertical .inner{width:2.5em}.ui.slider.big.vertical .inner .track,.ui.slider.big.vertical .inner .track-fill{width:.6em;left:.95em}.ui.big.labeled.vertical.slider>.labels,.ui.big.labeled.vertical.slider>.labels .label:after{width:2.5em}.ui.big.labeled.vertical.slider>.labels .halftick.label:after{width:1.25em}
\ No newline at end of file
diff --git a/src-angular/assets/semantic/dist/components/slider.min.js b/src-angular/assets/semantic/dist/components/slider.min.js
deleted file mode 100644
index feb8bbf..0000000
--- a/src-angular/assets/semantic/dist/components/slider.min.js
+++ /dev/null
@@ -1,11 +0,0 @@
- /*
- * # Fomantic UI - 2.8.3
- * https://github.com/fomantic/Fomantic-UI
- * http://fomantic-ui.com/
- *
- * Copyright 2014 Contributors
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-!function(U,t,X,Y){"use strict";t=void 0!==t&&t.Math==Math?t:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")(),U.fn.slider=function(F){var S,e=U(this),A=U(t),D=e.selector||"",O=(new Date).getTime(),N=[],j=F,z="string"==typeof j,I=[].slice.call(arguments,1),R=["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"],B=0;return e.each(function(){var f,i,u,e,v,o,t,s,g,h,b,l,n,c,r,p,d=U.isPlainObject(F)?U.extend(!0,{},U.fn.slider.settings,F):U.extend({},U.fn.slider.settings),a=d.className,m=d.metadata,k=d.namespace,V=d.error,T=d.keys,w=d.interpretLabel,y=!1,M="."+k,x="module-"+k,P=U(this),E=this,C=P.data(x),L=1;p={initialize:function(){p.debug("Initializing slider",d),r=!0,t=B+=1,n=p.setup.testOutTouch(),p.setup.layout(),p.setup.labels(),p.is.disabled()||p.bind.events(),p.read.metadata(),p.read.settings(),r=!1,p.instantiate()},instantiate:function(){p.verbose("Storing instance of slider",p),C=p,P.data(x,p)},destroy:function(){p.verbose("Destroying previous slider for",P),clearInterval(C.interval),p.unbind.events(),p.unbind.slidingEvents(),P.removeData(x),C=Y},setup:{layout:function(){P.attr("tabindex")===Y&&P.attr("tabindex",0),0==P.find(".inner").length&&P.append(""),l=p.get.precision(),i=P.find(".thumb:not(.second)"),f=i,p.is.range()&&(0==P.find(".thumb.second").length&&P.find(".inner").append(""),u=P.find(".thumb.second")),e=P.find(".track"),v=P.find(".track-fill"),b=i.width()/2},labels:function(){p.is.labeled()&&(0!=(o=P.find(".labels:not(.auto)")).length?p.setup.customLabel():p.setup.autoLabel(),d.showLabelTicks&&P.addClass(a.ticked))},testOutTouch:function(){try{return X.createEvent("TouchEvent"),!0}catch(e){return!1}},customLabel:function(){var n,e=o.find(".label"),a=e.length,s=p.get.min(),r=p.get.max();e.each(function(e){var t=U(this).attr("data-value");n=t?((t=r').find(".labels");for(var e=0,t=p.get.numLabels();e<=t;e++){var n=p.get.label(e),a=""!==n?e%p.get.gapRatio()?U(''):U(''+n+""):null,s=e/t;a&&(p.update.labelPosition(s,a),o.append(a))}}}},bind:{events:function(){p.bind.globalKeyboardEvents(),p.bind.keyboardEvents(),p.bind.mouseEvents(),p.is.touch()&&p.bind.touchEvents(),d.autoAdjustLabels&&p.bind.windowEvents()},keyboardEvents:function(){p.verbose("Binding keyboard events"),P.on("keydown"+M,p.event.keydown)},globalKeyboardEvents:function(){U(X).on("keydown"+M+t,p.event.activateFocus)},mouseEvents:function(){p.verbose("Binding mouse events"),P.find(".track, .thumb, .inner").on("mousedown"+M,function(e){e.stopImmediatePropagation(),e.preventDefault(),p.event.down(e)}),P.on("mousedown"+M,p.event.down),P.on("mouseenter"+M,function(e){y=!0}),P.on("mouseleave"+M,function(e){y=!1})},touchEvents:function(){p.verbose("Binding touch events"),P.find(".track, .thumb, .inner").on("touchstart"+M,function(e){e.stopImmediatePropagation(),e.preventDefault(),p.event.down(e)}),P.on("touchstart"+M,p.event.down)},slidingEvents:function(){p.verbose("Binding page wide events while handle is being draged"),p.is.touch()?(U(X).on("touchmove"+M,p.event.move),U(X).on("touchend"+M,p.event.up)):(U(X).on("mousemove"+M,p.event.move),U(X).on("mouseup"+M,p.event.up))},windowEvents:function(){A.on("resize"+M,p.event.resize)}},unbind:{events:function(){P.find(".track, .thumb, .inner").off("mousedown"+M),P.find(".track, .thumb, .inner").off("touchstart"+M),P.off("mousedown"+M),P.off("mouseenter"+M),P.off("mouseleave"+M),P.off("touchstart"+M),P.off("keydown"+M),P.off("focusout"+M),U(X).off("keydown"+M+t,p.event.activateFocus),A.off("resize"+M)},slidingEvents:function(){p.is.touch()?(U(X).off("touchmove"+M),U(X).off("touchend"+M)):(U(X).off("mousemove"+M),U(X).off("mouseup"+M))}},event:{down:function(e){if(e.preventDefault(),p.is.range()){var t=p.determine.eventPos(e),n=p.determine.pos(t);f=d.preventCrossover&&p.is.range()&&p.thumbVal===p.secondThumbVal?(c=n,Y):p.determine.closestThumb(n)}p.is.disabled()||p.bind.slidingEvents()},move:function(e){e.preventDefault();var t=p.determine.valueFromEvent(e);if(f===Y){var n=p.determine.eventPos(e),a=p.determine.pos(n);f=ap.get.trackOffset()+p.get.trackLength()?p.is.reversed()?p.get.min():p.get.max():p.determine.value(n)},smoothValueFromEvent:function(e){var t,n=p.get.min(),a=p.get.max(),s=p.get.trackLength(),r=p.determine.eventPos(e)-p.get.trackOffset();return t=(r=r<0?0:s 0) {
- console.groupCollapsed(title);
- if(console.table) {
- console.table(performance);
- }
- else {
- $.each(performance, function(index, data) {
- console.log(data['Name'] + ': ' + data['Execution Time']+'ms');
- });
- }
- console.groupEnd();
- }
- performance = [];
- }
- },
- invoke: function(query, passedArguments, context) {
- var
- object = instance,
- maxDepth,
- found,
- response
- ;
- passedArguments = passedArguments || queryArguments;
- context = element || context;
- if(typeof query == 'string' && object !== undefined) {
- query = query.split(/[\. ]/);
- maxDepth = query.length - 1;
- $.each(query, function(depth, value) {
- var camelCaseValue = (depth != maxDepth)
- ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
- : query
- ;
- if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
- object = object[camelCaseValue];
- }
- else if( object[camelCaseValue] !== undefined ) {
- found = object[camelCaseValue];
- return false;
- }
- else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
- object = object[value];
- }
- else if( object[value] !== undefined ) {
- found = object[value];
- return false;
- }
- else {
- module.error(error.method, query);
- return false;
- }
- });
- }
- if ( $.isFunction( found ) ) {
- response = found.apply(context, passedArguments);
- }
- else if(found !== undefined) {
- response = found;
- }
- if(Array.isArray(returnedValue)) {
- returnedValue.push(response);
- }
- else if(returnedValue !== undefined) {
- returnedValue = [returnedValue, response];
- }
- else if(response !== undefined) {
- returnedValue = response;
- }
- return found;
- }
- };
-
- if(methodInvoked) {
- if(instance === undefined) {
- module.initialize();
- }
- module.invoke(query);
- }
- else {
- if(instance !== undefined) {
- instance.invoke('destroy');
- }
- module.initialize();
- }
- })
- ;
-
- return (returnedValue !== undefined)
- ? returnedValue
- : this
- ;
-};
-
-$.fn.state.settings = {
-
- // module info
- name : 'State',
-
- // debug output
- debug : false,
-
- // verbose debug output
- verbose : false,
-
- // namespace for events
- namespace : 'state',
-
- // debug data includes performance
- performance : true,
-
- // callback occurs on state change
- onActivate : function() {},
- onDeactivate : function() {},
- onChange : function() {},
-
- // state test functions
- activateTest : function() { return true; },
- deactivateTest : function() { return true; },
-
- // whether to automatically map default states
- automatic : true,
-
- // activate / deactivate changes all elements instantiated at same time
- sync : false,
-
- // default flash text duration, used for temporarily changing text of an element
- flashDuration : 1000,
-
- // selector filter
- filter : {
- text : '.loading, .disabled',
- active : '.disabled'
- },
-
- context : false,
-
- // error
- error: {
- beforeSend : 'The before send function has cancelled state change',
- method : 'The method you called is not defined.'
- },
-
- // metadata
- metadata: {
- promise : 'promise',
- storedText : 'stored-text'
- },
-
- // change class on state
- className: {
- active : 'active',
- disabled : 'disabled',
- error : 'error',
- loading : 'loading',
- success : 'success',
- warning : 'warning'
- },
-
- selector: {
- // selector for text node
- text: false
- },
-
- defaults : {
- input: {
- disabled : true,
- loading : true,
- active : true
- },
- button: {
- disabled : true,
- loading : true,
- active : true,
- },
- progress: {
- active : true,
- success : true,
- warning : true,
- error : true
- }
- },
-
- states : {
- active : true,
- disabled : true,
- error : true,
- loading : true,
- success : true,
- warning : true
- },
-
- text : {
- disabled : false,
- flash : false,
- hover : false,
- active : false,
- inactive : false,
- activate : false,
- deactivate : false
- }
-
-};
-
-
-
-})( jQuery, window, document );
diff --git a/src-angular/assets/semantic/dist/components/state.min.js b/src-angular/assets/semantic/dist/components/state.min.js
deleted file mode 100644
index 20b2a71..0000000
--- a/src-angular/assets/semantic/dist/components/state.min.js
+++ /dev/null
@@ -1,11 +0,0 @@
- /*
- * # Fomantic UI - 2.8.3
- * https://github.com/fomantic/Fomantic-UI
- * http://fomantic-ui.com/
- *
- * Copyright 2014 Contributors
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-!function(w,e,C){"use strict";w.isFunction=w.isFunction||function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},e=void 0!==e&&e.Math==Math?e:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")(),w.fn.state=function(v){var g,b=w(this),x=b.selector||"",p=(new Date).getTime(),h=[],m=v,T="string"==typeof m,y=[].slice.call(arguments,1);return b.each(function(){var c,i=w.isPlainObject(v)?w.extend(!0,{},w.fn.state.settings,v):w.extend({},w.fn.state.settings),r=i.error,n=i.metadata,t=i.className,e=i.namespace,a=i.states,o=i.text,s="."+e,l=e+"-module",u=w(this),d=this,f=u.data(l);c={initialize:function(){c.verbose("Initializing module"),i.automatic&&c.add.defaults(),i.context&&""!==x?w(i.context).on(x,"mouseenter"+s,c.change.text).on(x,"mouseleave"+s,c.reset.text).on(x,"click"+s,c.toggle.state):u.on("mouseenter"+s,c.change.text).on("mouseleave"+s,c.reset.text).on("click"+s,c.toggle.state),c.instantiate()},instantiate:function(){c.verbose("Storing instance of module",c),f=c,u.data(l,c)},destroy:function(){c.verbose("Destroying previous module",f),u.off(s).removeData(l)},refresh:function(){c.verbose("Refreshing selector cache"),u=w(d)},add:{defaults:function(){var n=v&&w.isPlainObject(v.states)?v.states:{};w.each(i.defaults,function(e,t){c.is[e]!==C&&c.is[e]()&&(c.verbose("Adding default states",e,d),w.extend(i.states,t,n))})}},is:{active:function(){return u.hasClass(t.active)},loading:function(){return u.hasClass(t.loading)},inactive:function(){return!u.hasClass(t.active)},state:function(e){return t[e]!==C&&u.hasClass(t[e])},enabled:function(){return!u.is(i.filter.active)},disabled:function(){return u.is(i.filter.active)},textEnabled:function(){return!u.is(i.filter.text)},button:function(){return u.is(".button:not(a, .submit)")},input:function(){return u.is("input")},progress:function(){return u.is(".ui.progress")}},allow:function(e){c.debug("Now allowing state",e),a[e]=!0},disallow:function(e){c.debug("No longer allowing",e),a[e]=!1},allows:function(e){return a[e]||!1},enable:function(){u.removeClass(t.disabled)},disable:function(){u.addClass(t.disabled)},setState:function(e){c.allows(e)&&u.addClass(t[e])},removeState:function(e){c.allows(e)&&u.removeClass(t[e])},toggle:{state:function(){var e;if(c.allows("active")&&c.is.enabled()){if(c.refresh(),w.fn.api!==C)if(e=u.api("get request"),u.api("was cancelled"))c.debug("API Request cancelled by beforesend"),i.activateTest=function(){return!1},i.deactivateTest=function(){return!1};else if(e)return void c.listenTo(e);c.change.state()}}},listenTo:function(e){c.debug("API request detected, waiting for state signal",e),e&&(o.loading&&c.update.text(o.loading),w.when(e).then(function(){"resolved"==e.state()?(c.debug("API request succeeded"),i.activateTest=function(){return!0},i.deactivateTest=function(){return!0}):(c.debug("API request failed"),i.activateTest=function(){return!1},i.deactivateTest=function(){return!1}),c.change.state()}))},change:{state:function(){c.debug("Determining state change direction"),c.is.inactive()?c.activate():c.deactivate(),i.sync&&c.sync(),i.onChange.call(d)},text:function(){c.is.textEnabled()&&(c.is.disabled()?(c.verbose("Changing text to disabled text",o.hover),c.update.text(o.disabled)):c.is.active()?o.hover?(c.verbose("Changing text to hover text",o.hover),c.update.text(o.hover)):o.deactivate&&(c.verbose("Changing text to deactivating text",o.deactivate),c.update.text(o.deactivate)):o.hover?(c.verbose("Changing text to hover text",o.hover),c.update.text(o.hover)):o.activate&&(c.verbose("Changing text to activating text",o.activate),c.update.text(o.activate)))}},activate:function(){i.activateTest.call(d)&&(c.debug("Setting state to active"),u.addClass(t.active),c.update.text(o.active),i.onActivate.call(d))},deactivate:function(){i.deactivateTest.call(d)&&(c.debug("Setting state to inactive"),u.removeClass(t.active),c.update.text(o.inactive),i.onDeactivate.call(d))},sync:function(){c.verbose("Syncing other buttons to current state"),c.is.active()?b.not(u).state("activate"):b.not(u).state("deactivate")},get:{text:function(){return i.selector.text?u.find(i.selector.text).text():u.html()},textFor:function(e){return o[e]||!1}},flash:{text:function(e,t,n){var a=c.get.text();c.debug("Flashing text message",e,t),e=e||i.text.flash,t=t||i.flashDuration,n=n||function(){},c.update.text(e),setTimeout(function(){c.update.text(a),n.call(d)},t)}},reset:{text:function(){var e=o.active||u.data(n.storedText),t=o.inactive||u.data(n.storedText);c.is.textEnabled()&&(c.is.active()&&e?(c.verbose("Resetting active text",e),c.update.text(e)):t&&(c.verbose("Resetting inactive text",e),c.update.text(t)))}},update:{text:function(e){var t=c.get.text();e&&e!==t?(c.debug("Updating text",e),i.selector.text?u.data(n.storedText,e).find(i.selector.text).text(e):u.data(n.storedText,e).html(e)):c.debug("Text is already set, ignoring update",e)}},setting:function(e,t){if(c.debug("Changing setting",e,t),w.isPlainObject(e))w.extend(!0,i,e);else{if(t===C)return i[e];w.isPlainObject(i[e])?w.extend(!0,i[e],t):i[e]=t}},internal:function(e,t){if(w.isPlainObject(e))w.extend(!0,c,e);else{if(t===C)return c[e];c[e]=t}},debug:function(){!i.silent&&i.debug&&(i.performance?c.performance.log(arguments):(c.debug=Function.prototype.bind.call(console.info,console,i.name+":"),c.debug.apply(console,arguments)))},verbose:function(){!i.silent&&i.verbose&&i.debug&&(i.performance?c.performance.log(arguments):(c.verbose=Function.prototype.bind.call(console.info,console,i.name+":"),c.verbose.apply(console,arguments)))},error:function(){i.silent||(c.error=Function.prototype.bind.call(console.error,console,i.name+":"),c.error.apply(console,arguments))},performance:{log:function(e){var t,n;i.performance&&(n=(t=(new Date).getTime())-(p||t),p=t,h.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:d,"Execution Time":n})),clearTimeout(c.performance.timer),c.performance.timer=setTimeout(c.performance.display,500)},display:function(){var e=i.name+":",n=0;p=!1,clearTimeout(c.performance.timer),w.each(h,function(e,t){n+=t["Execution Time"]}),e+=" "+n+"ms",x&&(e+=" '"+x+"'"),(console.group!==C||console.table!==C)&&0 .statistic {
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
- -webkit-box-flex: 0;
- -ms-flex: 0 1 auto;
- flex: 0 1 auto;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- margin: 0 1.5em 1em;
- max-width: none;
-}
-.ui.statistics {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- margin: 1em -1.5em -1em;
-}
-
-/* Clearing */
-.ui.statistics:after {
- display: block;
- content: ' ';
- height: 0;
- clear: both;
- overflow: hidden;
- visibility: hidden;
-}
-.ui.statistics:first-child {
- margin-top: 0;
-}
-
-
-/*******************************
- Content
-*******************************/
-
-
-/*--------------
- Value
----------------*/
-
-.ui.statistics .statistic > .value,
-.ui.statistic > .value {
- font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
- font-size: 4rem;
- font-weight: normal;
- line-height: 1em;
- color: #1B1C1D;
- text-transform: uppercase;
- text-align: center;
-}
-
-/*--------------
- Label
----------------*/
-
-.ui.statistics .statistic > .label,
-.ui.statistic > .label {
- font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
- font-size: 1em;
- font-weight: bold;
- color: rgba(0, 0, 0, 0.87);
- text-transform: uppercase;
- text-align: center;
-}
-
-/* Top Label */
-.ui.statistics .statistic > .label ~ .value,
-.ui.statistic > .label ~ .value {
- margin-top: 0;
-}
-
-/* Bottom Label */
-.ui.statistics .statistic > .value ~ .label,
-.ui.statistic > .value ~ .label {
- margin-top: 0;
-}
-
-
-/*******************************
- Types
-*******************************/
-
-
-/*--------------
- Icon Value
----------------*/
-
-.ui.statistics .statistic > .value .icon,
-.ui.statistic > .value .icon {
- opacity: 1;
- width: auto;
- margin: 0;
-}
-
-/*--------------
- Text Value
----------------*/
-
-.ui.statistics .statistic > .text.value,
-.ui.statistic > .text.value {
- line-height: 1em;
- min-height: 2em;
- font-weight: bold;
- text-align: center;
-}
-.ui.statistics .statistic > .text.value + .label,
-.ui.statistic > .text.value + .label {
- text-align: center;
-}
-
-/*--------------
- Image Value
----------------*/
-
-.ui.statistics .statistic > .value img,
-.ui.statistic > .value img {
- max-height: 3rem;
- vertical-align: baseline;
-}
-
-
-/*******************************
- Variations
-*******************************/
-
-
-/*--------------
- Count
----------------*/
-
-.ui.ten.statistics {
- margin: 0 0 -1em;
-}
-.ui.ten.statistics .statistic {
- min-width: 10%;
- margin: 0 0 1em;
-}
-.ui.nine.statistics {
- margin: 0 0 -1em;
-}
-.ui.nine.statistics .statistic {
- min-width: 11.11111111%;
- margin: 0 0 1em;
-}
-.ui.eight.statistics {
- margin: 0 0 -1em;
-}
-.ui.eight.statistics .statistic {
- min-width: 12.5%;
- margin: 0 0 1em;
-}
-.ui.seven.statistics {
- margin: 0 0 -1em;
-}
-.ui.seven.statistics .statistic {
- min-width: 14.28571429%;
- margin: 0 0 1em;
-}
-.ui.six.statistics {
- margin: 0 0 -1em;
-}
-.ui.six.statistics .statistic {
- min-width: 16.66666667%;
- margin: 0 0 1em;
-}
-.ui.five.statistics {
- margin: 0 0 -1em;
-}
-.ui.five.statistics .statistic {
- min-width: 20%;
- margin: 0 0 1em;
-}
-.ui.four.statistics {
- margin: 0 0 -1em;
-}
-.ui.four.statistics .statistic {
- min-width: 25%;
- margin: 0 0 1em;
-}
-.ui.three.statistics {
- margin: 0 0 -1em;
-}
-.ui.three.statistics .statistic {
- min-width: 33.33333333%;
- margin: 0 0 1em;
-}
-.ui.two.statistics {
- margin: 0 0 -1em;
-}
-.ui.two.statistics .statistic {
- min-width: 50%;
- margin: 0 0 1em;
-}
-.ui.one.statistics {
- margin: 0 0 -1em;
-}
-.ui.one.statistics .statistic {
- min-width: 100%;
- margin: 0 0 1em;
-}
-
-/*--------------
- Horizontal
- ---------------*/
-
-.ui.horizontal.statistic {
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -ms-flex-direction: row;
- flex-direction: row;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
-}
-.ui.horizontal.statistics {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- margin: 0;
- max-width: none;
-}
-.ui.horizontal.statistics .statistic {
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -ms-flex-direction: row;
- flex-direction: row;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- max-width: none;
- margin: 1em 0;
-}
-.ui.horizontal.statistic > .text.value,
-.ui.horizontal.statistics > .statistic > .text.value {
- min-height: 0 !important;
-}
-.ui.horizontal.statistics .statistic > .value .icon,
-.ui.horizontal.statistic > .value .icon {
- width: 1.18em;
-}
-.ui.horizontal.statistics .statistic > .value,
-.ui.horizontal.statistic > .value {
- display: inline-block;
- vertical-align: middle;
-}
-.ui.horizontal.statistics .statistic > .label,
-.ui.horizontal.statistic > .label {
- display: inline-block;
- vertical-align: middle;
- margin: 0 0 0 0.75em;
-}
-
-/*--------------
- Inverted
- ---------------*/
-
-.ui.inverted.statistics .statistic > .value,
-.ui.inverted.statistic .value {
- color: #FFFFFF;
-}
-.ui.inverted.statistics .statistic > .label,
-.ui.inverted.statistic .label {
- color: rgba(255, 255, 255, 0.9);
-}
-
-/*--------------
- Colors
----------------*/
-
-.ui.primary.statistics .statistic > .value,
-.ui.statistics .primary.statistic > .value,
-.ui.primary.statistic > .value {
- color: #2185D0;
-}
-.ui.inverted.primary.statistics .statistic > .value,
-.ui.statistics .inverted.primary.statistic > .value,
-.ui.inverted.primary.statistic > .value {
- color: #54C8FF;
-}
-.ui.secondary.statistics .statistic > .value,
-.ui.statistics .secondary.statistic > .value,
-.ui.secondary.statistic > .value {
- color: #1B1C1D;
-}
-.ui.inverted.secondary.statistics .statistic > .value,
-.ui.statistics .inverted.secondary.statistic > .value,
-.ui.inverted.secondary.statistic > .value {
- color: #545454;
-}
-.ui.red.statistics .statistic > .value,
-.ui.statistics .red.statistic > .value,
-.ui.red.statistic > .value {
- color: #DB2828;
-}
-.ui.inverted.red.statistics .statistic > .value,
-.ui.statistics .inverted.red.statistic > .value,
-.ui.inverted.red.statistic > .value {
- color: #FF695E;
-}
-.ui.orange.statistics .statistic > .value,
-.ui.statistics .orange.statistic > .value,
-.ui.orange.statistic > .value {
- color: #F2711C;
-}
-.ui.inverted.orange.statistics .statistic > .value,
-.ui.statistics .inverted.orange.statistic > .value,
-.ui.inverted.orange.statistic > .value {
- color: #FF851B;
-}
-.ui.yellow.statistics .statistic > .value,
-.ui.statistics .yellow.statistic > .value,
-.ui.yellow.statistic > .value {
- color: #FBBD08;
-}
-.ui.inverted.yellow.statistics .statistic > .value,
-.ui.statistics .inverted.yellow.statistic > .value,
-.ui.inverted.yellow.statistic > .value {
- color: #FFE21F;
-}
-.ui.olive.statistics .statistic > .value,
-.ui.statistics .olive.statistic > .value,
-.ui.olive.statistic > .value {
- color: #B5CC18;
-}
-.ui.inverted.olive.statistics .statistic > .value,
-.ui.statistics .inverted.olive.statistic > .value,
-.ui.inverted.olive.statistic > .value {
- color: #D9E778;
-}
-.ui.green.statistics .statistic > .value,
-.ui.statistics .green.statistic > .value,
-.ui.green.statistic > .value {
- color: #21BA45;
-}
-.ui.inverted.green.statistics .statistic > .value,
-.ui.statistics .inverted.green.statistic > .value,
-.ui.inverted.green.statistic > .value {
- color: #2ECC40;
-}
-.ui.teal.statistics .statistic > .value,
-.ui.statistics .teal.statistic > .value,
-.ui.teal.statistic > .value {
- color: #00B5AD;
-}
-.ui.inverted.teal.statistics .statistic > .value,
-.ui.statistics .inverted.teal.statistic > .value,
-.ui.inverted.teal.statistic > .value {
- color: #6DFFFF;
-}
-.ui.blue.statistics .statistic > .value,
-.ui.statistics .blue.statistic > .value,
-.ui.blue.statistic > .value {
- color: #2185D0;
-}
-.ui.inverted.blue.statistics .statistic > .value,
-.ui.statistics .inverted.blue.statistic > .value,
-.ui.inverted.blue.statistic > .value {
- color: #54C8FF;
-}
-.ui.violet.statistics .statistic > .value,
-.ui.statistics .violet.statistic > .value,
-.ui.violet.statistic > .value {
- color: #6435C9;
-}
-.ui.inverted.violet.statistics .statistic > .value,
-.ui.statistics .inverted.violet.statistic > .value,
-.ui.inverted.violet.statistic > .value {
- color: #A291FB;
-}
-.ui.purple.statistics .statistic > .value,
-.ui.statistics .purple.statistic > .value,
-.ui.purple.statistic > .value {
- color: #A333C8;
-}
-.ui.inverted.purple.statistics .statistic > .value,
-.ui.statistics .inverted.purple.statistic > .value,
-.ui.inverted.purple.statistic > .value {
- color: #DC73FF;
-}
-.ui.pink.statistics .statistic > .value,
-.ui.statistics .pink.statistic > .value,
-.ui.pink.statistic > .value {
- color: #E03997;
-}
-.ui.inverted.pink.statistics .statistic > .value,
-.ui.statistics .inverted.pink.statistic > .value,
-.ui.inverted.pink.statistic > .value {
- color: #FF8EDF;
-}
-.ui.brown.statistics .statistic > .value,
-.ui.statistics .brown.statistic > .value,
-.ui.brown.statistic > .value {
- color: #A5673F;
-}
-.ui.inverted.brown.statistics .statistic > .value,
-.ui.statistics .inverted.brown.statistic > .value,
-.ui.inverted.brown.statistic > .value {
- color: #D67C1C;
-}
-.ui.grey.statistics .statistic > .value,
-.ui.statistics .grey.statistic > .value,
-.ui.grey.statistic > .value {
- color: #767676;
-}
-.ui.inverted.grey.statistics .statistic > .value,
-.ui.statistics .inverted.grey.statistic > .value,
-.ui.inverted.grey.statistic > .value {
- color: #DCDDDE;
-}
-.ui.black.statistics .statistic > .value,
-.ui.statistics .black.statistic > .value,
-.ui.black.statistic > .value {
- color: #1B1C1D;
-}
-.ui.inverted.black.statistics .statistic > .value,
-.ui.statistics .inverted.black.statistic > .value,
-.ui.inverted.black.statistic > .value {
- color: #545454;
-}
-
-/*--------------
- Floated
- ---------------*/
-
-.ui[class*="left floated"].statistic {
- float: left;
- margin: 0 2em 1em 0;
-}
-.ui[class*="right floated"].statistic {
- float: right;
- margin: 0 0 1em 2em;
-}
-.ui.floated.statistic:last-child {
- margin-bottom: 0;
-}
-
-/*--------------
- Stackable
- ---------------*/
-
-@media only screen and (max-width: 767.98px) {
- .ui.stackable.statistics {
- width: auto;
- margin-left: 0 !important;
- margin-right: 0 !important;
- }
- .ui.stackable.statistics > .statistic {
- width: 100% !important;
- margin: 0 0 !important;
- padding: 1rem 1rem !important;
- }
-}
-
-/*--------------
- Sizes
----------------*/
-
-
-/* Medium */
-.ui.statistics .statistic > .value,
-.ui.statistic > .value {
- font-size: 4rem;
-}
-.ui.horizontal.statistics .statistic > .value,
-.ui.horizontal.statistic > .value {
- font-size: 3rem;
-}
-.ui.statistics .statistic > .text.value,
-.ui.statistic > .text.value {
- font-size: 2rem;
-}
-.ui.mini.statistics .statistic > .value,
-.ui.mini.statistic > .value {
- font-size: 1.5rem;
-}
-.ui.mini.horizontal.statistics .statistic > .value,
-.ui.mini.horizontal.statistic > .value {
- font-size: 1.5rem;
-}
-.ui.mini.statistics .statistic > .text.value,
-.ui.mini.statistic > .text.value {
- font-size: 1rem;
-}
-.ui.tiny.statistics .statistic > .value,
-.ui.tiny.statistic > .value {
- font-size: 2rem;
-}
-.ui.tiny.horizontal.statistics .statistic > .value,
-.ui.tiny.horizontal.statistic > .value {
- font-size: 2rem;
-}
-.ui.tiny.statistics .statistic > .text.value,
-.ui.tiny.statistic > .text.value {
- font-size: 1rem;
-}
-.ui.small.statistics .statistic > .value,
-.ui.small.statistic > .value {
- font-size: 3rem;
-}
-.ui.small.horizontal.statistics .statistic > .value,
-.ui.small.horizontal.statistic > .value {
- font-size: 2rem;
-}
-.ui.small.statistics .statistic > .text.value,
-.ui.small.statistic > .text.value {
- font-size: 1rem;
-}
-.ui.large.statistics .statistic > .value,
-.ui.large.statistic > .value {
- font-size: 5rem;
-}
-.ui.large.horizontal.statistics .statistic > .value,
-.ui.large.horizontal.statistic > .value {
- font-size: 4rem;
-}
-.ui.large.statistics .statistic > .text.value,
-.ui.large.statistic > .text.value {
- font-size: 2.5rem;
-}
-.ui.big.statistics .statistic > .value,
-.ui.big.statistic > .value {
- font-size: 5.5rem;
-}
-.ui.big.horizontal.statistics .statistic > .value,
-.ui.big.horizontal.statistic > .value {
- font-size: 4.5rem;
-}
-.ui.big.statistics .statistic > .text.value,
-.ui.big.statistic > .text.value {
- font-size: 2.5rem;
-}
-.ui.huge.statistics .statistic > .value,
-.ui.huge.statistic > .value {
- font-size: 6rem;
-}
-.ui.huge.horizontal.statistics .statistic > .value,
-.ui.huge.horizontal.statistic > .value {
- font-size: 5rem;
-}
-.ui.huge.statistics .statistic > .text.value,
-.ui.huge.statistic > .text.value {
- font-size: 2.5rem;
-}
-.ui.massive.statistics .statistic > .value,
-.ui.massive.statistic > .value {
- font-size: 7rem;
-}
-.ui.massive.horizontal.statistics .statistic > .value,
-.ui.massive.horizontal.statistic > .value {
- font-size: 6rem;
-}
-.ui.massive.statistics .statistic > .text.value,
-.ui.massive.statistic > .text.value {
- font-size: 3rem;
-}
-
-
-/*******************************
- Theme Overrides
-*******************************/
-
-
-
-/*******************************
- User Variable Overrides
-*******************************/
-
diff --git a/src-angular/assets/semantic/dist/components/statistic.min.css b/src-angular/assets/semantic/dist/components/statistic.min.css
deleted file mode 100644
index 42f71b6..0000000
--- a/src-angular/assets/semantic/dist/components/statistic.min.css
+++ /dev/null
@@ -1,9 +0,0 @@
-/*!
- * # Fomantic-UI - Statistic
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */.ui.statistic{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin:1em 0;max-width:none}.ui.statistic+.ui.statistic{margin:0 0 0 1.5em}.ui.statistic:first-child{margin-top:0}.ui.statistic:last-child{margin-bottom:0}.ui.statistics{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap}.ui.statistics>.statistic{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin:0 1.5em 1em;max-width:none}.ui.statistics{display:-webkit-box;display:-ms-flexbox;display:flex;margin:1em -1.5em -1em}.ui.statistics:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.statistics:first-child{margin-top:0}.ui.statistic>.value,.ui.statistics .statistic>.value{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:4rem;font-weight:400;line-height:1em;color:#1b1c1d;text-transform:uppercase;text-align:center}.ui.statistic>.label,.ui.statistics .statistic>.label{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1em;font-weight:700;color:rgba(0,0,0,.87);text-transform:uppercase;text-align:center}.ui.statistic>.label~.value,.ui.statistics .statistic>.label~.value{margin-top:0}.ui.statistic>.value~.label,.ui.statistics .statistic>.value~.label{margin-top:0}.ui.statistic>.value .icon,.ui.statistics .statistic>.value .icon{opacity:1;width:auto;margin:0}.ui.statistic>.text.value,.ui.statistics .statistic>.text.value{line-height:1em;min-height:2em;font-weight:700;text-align:center}.ui.statistic>.text.value+.label,.ui.statistics .statistic>.text.value+.label{text-align:center}.ui.statistic>.value img,.ui.statistics .statistic>.value img{max-height:3rem;vertical-align:baseline}.ui.ten.statistics{margin:0 0 -1em}.ui.ten.statistics .statistic{min-width:10%;margin:0 0 1em}.ui.nine.statistics{margin:0 0 -1em}.ui.nine.statistics .statistic{min-width:11.11111111%;margin:0 0 1em}.ui.eight.statistics{margin:0 0 -1em}.ui.eight.statistics .statistic{min-width:12.5%;margin:0 0 1em}.ui.seven.statistics{margin:0 0 -1em}.ui.seven.statistics .statistic{min-width:14.28571429%;margin:0 0 1em}.ui.six.statistics{margin:0 0 -1em}.ui.six.statistics .statistic{min-width:16.66666667%;margin:0 0 1em}.ui.five.statistics{margin:0 0 -1em}.ui.five.statistics .statistic{min-width:20%;margin:0 0 1em}.ui.four.statistics{margin:0 0 -1em}.ui.four.statistics .statistic{min-width:25%;margin:0 0 1em}.ui.three.statistics{margin:0 0 -1em}.ui.three.statistics .statistic{min-width:33.33333333%;margin:0 0 1em}.ui.two.statistics{margin:0 0 -1em}.ui.two.statistics .statistic{min-width:50%;margin:0 0 1em}.ui.one.statistics{margin:0 0 -1em}.ui.one.statistics .statistic{min-width:100%;margin:0 0 1em}.ui.horizontal.statistic{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ui.horizontal.statistics{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin:0;max-width:none}.ui.horizontal.statistics .statistic{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;max-width:none;margin:1em 0}.ui.horizontal.statistic>.text.value,.ui.horizontal.statistics>.statistic>.text.value{min-height:0!important}.ui.horizontal.statistic>.value .icon,.ui.horizontal.statistics .statistic>.value .icon{width:1.18em}.ui.horizontal.statistic>.value,.ui.horizontal.statistics .statistic>.value{display:inline-block;vertical-align:middle}.ui.horizontal.statistic>.label,.ui.horizontal.statistics .statistic>.label{display:inline-block;vertical-align:middle;margin:0 0 0 .75em}.ui.inverted.statistic .value,.ui.inverted.statistics .statistic>.value{color:#fff}.ui.inverted.statistic .label,.ui.inverted.statistics .statistic>.label{color:rgba(255,255,255,.9)}.ui.primary.statistic>.value,.ui.primary.statistics .statistic>.value,.ui.statistics .primary.statistic>.value{color:#2185d0}.ui.inverted.primary.statistic>.value,.ui.inverted.primary.statistics .statistic>.value,.ui.statistics .inverted.primary.statistic>.value{color:#54c8ff}.ui.secondary.statistic>.value,.ui.secondary.statistics .statistic>.value,.ui.statistics .secondary.statistic>.value{color:#1b1c1d}.ui.inverted.secondary.statistic>.value,.ui.inverted.secondary.statistics .statistic>.value,.ui.statistics .inverted.secondary.statistic>.value{color:#545454}.ui.red.statistic>.value,.ui.red.statistics .statistic>.value,.ui.statistics .red.statistic>.value{color:#db2828}.ui.inverted.red.statistic>.value,.ui.inverted.red.statistics .statistic>.value,.ui.statistics .inverted.red.statistic>.value{color:#ff695e}.ui.orange.statistic>.value,.ui.orange.statistics .statistic>.value,.ui.statistics .orange.statistic>.value{color:#f2711c}.ui.inverted.orange.statistic>.value,.ui.inverted.orange.statistics .statistic>.value,.ui.statistics .inverted.orange.statistic>.value{color:#ff851b}.ui.statistics .yellow.statistic>.value,.ui.yellow.statistic>.value,.ui.yellow.statistics .statistic>.value{color:#fbbd08}.ui.inverted.yellow.statistic>.value,.ui.inverted.yellow.statistics .statistic>.value,.ui.statistics .inverted.yellow.statistic>.value{color:#ffe21f}.ui.olive.statistic>.value,.ui.olive.statistics .statistic>.value,.ui.statistics .olive.statistic>.value{color:#b5cc18}.ui.inverted.olive.statistic>.value,.ui.inverted.olive.statistics .statistic>.value,.ui.statistics .inverted.olive.statistic>.value{color:#d9e778}.ui.green.statistic>.value,.ui.green.statistics .statistic>.value,.ui.statistics .green.statistic>.value{color:#21ba45}.ui.inverted.green.statistic>.value,.ui.inverted.green.statistics .statistic>.value,.ui.statistics .inverted.green.statistic>.value{color:#2ecc40}.ui.statistics .teal.statistic>.value,.ui.teal.statistic>.value,.ui.teal.statistics .statistic>.value{color:#00b5ad}.ui.inverted.teal.statistic>.value,.ui.inverted.teal.statistics .statistic>.value,.ui.statistics .inverted.teal.statistic>.value{color:#6dffff}.ui.blue.statistic>.value,.ui.blue.statistics .statistic>.value,.ui.statistics .blue.statistic>.value{color:#2185d0}.ui.inverted.blue.statistic>.value,.ui.inverted.blue.statistics .statistic>.value,.ui.statistics .inverted.blue.statistic>.value{color:#54c8ff}.ui.statistics .violet.statistic>.value,.ui.violet.statistic>.value,.ui.violet.statistics .statistic>.value{color:#6435c9}.ui.inverted.violet.statistic>.value,.ui.inverted.violet.statistics .statistic>.value,.ui.statistics .inverted.violet.statistic>.value{color:#a291fb}.ui.purple.statistic>.value,.ui.purple.statistics .statistic>.value,.ui.statistics .purple.statistic>.value{color:#a333c8}.ui.inverted.purple.statistic>.value,.ui.inverted.purple.statistics .statistic>.value,.ui.statistics .inverted.purple.statistic>.value{color:#dc73ff}.ui.pink.statistic>.value,.ui.pink.statistics .statistic>.value,.ui.statistics .pink.statistic>.value{color:#e03997}.ui.inverted.pink.statistic>.value,.ui.inverted.pink.statistics .statistic>.value,.ui.statistics .inverted.pink.statistic>.value{color:#ff8edf}.ui.brown.statistic>.value,.ui.brown.statistics .statistic>.value,.ui.statistics .brown.statistic>.value{color:#a5673f}.ui.inverted.brown.statistic>.value,.ui.inverted.brown.statistics .statistic>.value,.ui.statistics .inverted.brown.statistic>.value{color:#d67c1c}.ui.grey.statistic>.value,.ui.grey.statistics .statistic>.value,.ui.statistics .grey.statistic>.value{color:#767676}.ui.inverted.grey.statistic>.value,.ui.inverted.grey.statistics .statistic>.value,.ui.statistics .inverted.grey.statistic>.value{color:#dcddde}.ui.black.statistic>.value,.ui.black.statistics .statistic>.value,.ui.statistics .black.statistic>.value{color:#1b1c1d}.ui.inverted.black.statistic>.value,.ui.inverted.black.statistics .statistic>.value,.ui.statistics .inverted.black.statistic>.value{color:#545454}.ui[class*="left floated"].statistic{float:left;margin:0 2em 1em 0}.ui[class*="right floated"].statistic{float:right;margin:0 0 1em 2em}.ui.floated.statistic:last-child{margin-bottom:0}@media only screen and (max-width:767.98px){.ui.stackable.statistics{width:auto;margin-left:0!important;margin-right:0!important}.ui.stackable.statistics>.statistic{width:100%!important;margin:0 0!important;padding:1rem 1rem!important}}.ui.statistic>.value,.ui.statistics .statistic>.value{font-size:4rem}.ui.horizontal.statistic>.value,.ui.horizontal.statistics .statistic>.value{font-size:3rem}.ui.statistic>.text.value,.ui.statistics .statistic>.text.value{font-size:2rem}.ui.mini.statistic>.value,.ui.mini.statistics .statistic>.value{font-size:1.5rem}.ui.mini.horizontal.statistic>.value,.ui.mini.horizontal.statistics .statistic>.value{font-size:1.5rem}.ui.mini.statistic>.text.value,.ui.mini.statistics .statistic>.text.value{font-size:1rem}.ui.tiny.statistic>.value,.ui.tiny.statistics .statistic>.value{font-size:2rem}.ui.tiny.horizontal.statistic>.value,.ui.tiny.horizontal.statistics .statistic>.value{font-size:2rem}.ui.tiny.statistic>.text.value,.ui.tiny.statistics .statistic>.text.value{font-size:1rem}.ui.small.statistic>.value,.ui.small.statistics .statistic>.value{font-size:3rem}.ui.small.horizontal.statistic>.value,.ui.small.horizontal.statistics .statistic>.value{font-size:2rem}.ui.small.statistic>.text.value,.ui.small.statistics .statistic>.text.value{font-size:1rem}.ui.large.statistic>.value,.ui.large.statistics .statistic>.value{font-size:5rem}.ui.large.horizontal.statistic>.value,.ui.large.horizontal.statistics .statistic>.value{font-size:4rem}.ui.large.statistic>.text.value,.ui.large.statistics .statistic>.text.value{font-size:2.5rem}.ui.big.statistic>.value,.ui.big.statistics .statistic>.value{font-size:5.5rem}.ui.big.horizontal.statistic>.value,.ui.big.horizontal.statistics .statistic>.value{font-size:4.5rem}.ui.big.statistic>.text.value,.ui.big.statistics .statistic>.text.value{font-size:2.5rem}.ui.huge.statistic>.value,.ui.huge.statistics .statistic>.value{font-size:6rem}.ui.huge.horizontal.statistic>.value,.ui.huge.horizontal.statistics .statistic>.value{font-size:5rem}.ui.huge.statistic>.text.value,.ui.huge.statistics .statistic>.text.value{font-size:2.5rem}.ui.massive.statistic>.value,.ui.massive.statistics .statistic>.value{font-size:7rem}.ui.massive.horizontal.statistic>.value,.ui.massive.horizontal.statistics .statistic>.value{font-size:6rem}.ui.massive.statistic>.text.value,.ui.massive.statistics .statistic>.text.value{font-size:3rem}
\ No newline at end of file
diff --git a/src-angular/assets/semantic/dist/components/step.css b/src-angular/assets/semantic/dist/components/step.css
deleted file mode 100644
index 72d9215..0000000
--- a/src-angular/assets/semantic/dist/components/step.css
+++ /dev/null
@@ -1,693 +0,0 @@
-/*!
- * # Fomantic-UI - Step
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-
-/*******************************
- Plural
-*******************************/
-
-.ui.steps {
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -ms-flex-direction: row;
- flex-direction: row;
- -webkit-box-align: stretch;
- -ms-flex-align: stretch;
- align-items: stretch;
- margin: 1em 0;
- background: '';
- -webkit-box-shadow: none;
- box-shadow: none;
- line-height: 1.14285714em;
- border-radius: 0.28571429rem;
- border: 1px solid rgba(34, 36, 38, 0.15);
-}
-.ui.steps:not(.unstackable) {
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
-}
-
-/* First Steps */
-.ui.steps:first-child {
- margin-top: 0;
-}
-
-/* Last Steps */
-.ui.steps:last-child {
- margin-bottom: 0;
-}
-
-
-/*******************************
- Singular
-*******************************/
-
-.ui.steps .step {
- position: relative;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-flex: 1;
- -ms-flex: 1 0 auto;
- flex: 1 0 auto;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -ms-flex-direction: row;
- flex-direction: row;
- vertical-align: middle;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- margin: 0 0;
- padding: 1.14285714em 2em;
- background: #FFFFFF;
- color: rgba(0, 0, 0, 0.87);
- -webkit-box-shadow: none;
- box-shadow: none;
- border-radius: 0;
- border: none;
- border-right: 1px solid rgba(34, 36, 38, 0.15);
- -webkit-transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease;
- transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease;
- transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease;
- transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, -webkit-box-shadow 0.1s ease;
-}
-
-/* Arrow */
-.ui.steps .step:after {
- display: none;
- position: absolute;
- z-index: 2;
- content: '';
- top: 50%;
- right: 0;
- background-color: #FFFFFF;
- width: 1.14285714em;
- height: 1.14285714em;
- border-style: solid;
- border-color: rgba(34, 36, 38, 0.15);
- border-width: 0 1px 1px 0;
- -webkit-transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease;
- transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease;
- transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease;
- transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, -webkit-box-shadow 0.1s ease;
- -webkit-transform: translateY(-50%) translateX(50%) rotate(-45deg);
- transform: translateY(-50%) translateX(50%) rotate(-45deg);
-}
-
-/* First Step */
-.ui.steps .step:first-child {
- padding-left: 2em;
- border-radius: 0.28571429rem 0 0 0.28571429rem;
-}
-
-/* Last Step */
-.ui.steps .step:last-child {
- border-radius: 0 0.28571429rem 0.28571429rem 0;
- border-right: none;
- margin-right: 0;
-}
-
-/* Only Step */
-.ui.steps .step:only-child {
- border-radius: 0.28571429rem;
-}
-
-
-/*******************************
- Content
-*******************************/
-
-
-/* Title */
-.ui.steps .step .title {
- font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
- font-size: 1.14285714em;
- font-weight: bold;
-}
-.ui.steps .step > .title {
- width: 100%;
-}
-
-/* Description */
-.ui.steps .step .description {
- font-weight: normal;
- font-size: 0.92857143em;
- color: rgba(0, 0, 0, 0.87);
-}
-.ui.steps .step > .description {
- width: 100%;
-}
-.ui.steps .step .title ~ .description {
- margin-top: 0.25em;
-}
-
-/* Icon */
-.ui.steps .step > .icon {
- line-height: 1;
- font-size: 2.5em;
- margin: 0 1rem 0 0;
-}
-.ui.steps .step > .icon,
-.ui.steps .step > .icon ~ .content {
- display: block;
- -webkit-box-flex: 0;
- -ms-flex: 0 1 auto;
- flex: 0 1 auto;
- -ms-flex-item-align: middle;
- align-self: middle;
-}
-
-/* Horizontal Icon */
-.ui.steps:not(.vertical) .step > .icon {
- width: auto;
-}
-
-/* Link */
-.ui.steps .link.step,
-.ui.steps a.step {
- cursor: pointer;
-}
-
-
-/*******************************
- Types
-*******************************/
-
-
-/*--------------
- Ordered
- ---------------*/
-
-.ui.ordered.steps {
- counter-reset: ordered;
-}
-.ui.ordered.steps .step:before {
- display: block;
- position: static;
- text-align: center;
- content: counter(ordered);
- -ms-flex-item-align: middle;
- align-self: middle;
- margin-right: 1rem;
- font-size: 2.5em;
- counter-increment: ordered;
- font-family: inherit;
- font-weight: bold;
-}
-.ui.ordered.steps .step > * {
- display: block;
- -ms-flex-item-align: middle;
- align-self: middle;
-}
-
-/*--------------
- Vertical
- ---------------*/
-
-.ui.vertical.steps {
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- overflow: visible;
-}
-.ui.vertical.steps .step {
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
- border-radius: 0;
- padding: 1.14285714em 2em;
- border-right: none;
- border-bottom: 1px solid rgba(34, 36, 38, 0.15);
-}
-.ui.vertical.steps .step:first-child {
- padding: 1.14285714em 2em;
- border-radius: 0.28571429rem 0.28571429rem 0 0;
-}
-.ui.vertical.steps .step:last-child {
- border-bottom: none;
- border-radius: 0 0 0.28571429rem 0.28571429rem;
-}
-.ui.vertical.steps .step:only-child {
- border-radius: 0.28571429rem;
-}
-
-/* Arrow */
-.ui.vertical.steps .step:after {
- top: 50%;
- right: 0;
- border-width: 0 1px 1px 0;
- display: none;
-}
-.ui.vertical.steps .active.step:after {
- display: block;
-}
-.ui.vertical.steps .step:last-child:after {
- display: none;
-}
-.ui.vertical.steps .active.step:last-child:after {
- display: block;
-}
-
-/*---------------
- Responsive
-----------------*/
-
-
-/* Mobile (Default) */
-@media only screen and (max-width: 767.98px) {
- .ui.steps:not(.unstackable) {
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
- overflow: visible;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- }
- .ui.steps:not(.unstackable) .step {
- width: 100% !important;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- border-radius: 0;
- padding: 1.14285714em 2em;
- border-right: none;
- border-bottom: 1px solid rgba(34, 36, 38, 0.15);
- }
- .ui.steps:not(.unstackable) .step:first-child {
- padding: 1.14285714em 2em;
- border-radius: 0.28571429rem 0.28571429rem 0 0;
- }
- .ui.steps:not(.unstackable) .step:last-child {
- border-radius: 0 0 0.28571429rem 0.28571429rem;
- border-bottom: none;
- }
-
-/* Arrow */
- .ui.steps:not(.unstackable) .step:after {
- top: unset;
- bottom: -1.14285714em;
- right: 50%;
- -webkit-transform: translateY(-50%) translateX(50%) rotate(45deg);
- transform: translateY(-50%) translateX(50%) rotate(45deg);
- }
- .ui.vertical.steps .active.step:last-child:after {
- display: none;
- }
-
-/* Content */
- .ui.steps:not(.unstackable) .step .content {
- text-align: center;
- }
-
-/* Icon */
- .ui.steps:not(.unstackable) .step > .icon,
- .ui.ordered.steps:not(.unstackable) .step:before {
- margin: 0 0 1rem 0;
- }
-}
-
-
-/*******************************
- States
-*******************************/
-
-
-/* Link Hover */
-.ui.steps .link.step:hover::after,
-.ui.steps .link.step:hover,
-.ui.steps a.step:hover::after,
-.ui.steps a.step:hover {
- background: #F9FAFB;
- color: rgba(0, 0, 0, 0.8);
-}
-
-/* Link Down */
-.ui.steps .link.step:active::after,
-.ui.steps .link.step:active,
-.ui.steps a.step:active::after,
-.ui.steps a.step:active {
- background: #F3F4F5;
- color: rgba(0, 0, 0, 0.9);
-}
-
-/* Active */
-.ui.steps .step.active {
- cursor: auto;
- background: #F3F4F5;
-}
-.ui.steps .step.active:after {
- background: #F3F4F5;
-}
-.ui.steps .step.active .title {
- color: #4183C4;
-}
-.ui.ordered.steps .step.active:before,
-.ui.steps .active.step .icon {
- color: rgba(0, 0, 0, 0.85);
-}
-
-/* Active Arrow */
-.ui.steps .step:after {
- display: block;
-}
-.ui.steps .active.step:after {
- display: block;
-}
-.ui.steps .step:last-child:after {
- display: none;
-}
-.ui.steps .active.step:last-child:after {
- display: none;
-}
-
-/* Active Hover */
-.ui.steps .link.active.step:hover::after,
-.ui.steps .link.active.step:hover,
-.ui.steps a.active.step:hover::after,
-.ui.steps a.active.step:hover {
- cursor: pointer;
- background: #DCDDDE;
- color: rgba(0, 0, 0, 0.87);
-}
-
-/* Completed */
-.ui.steps .step.completed > .icon:before,
-.ui.ordered.steps .step.completed:before {
- color: #21BA45;
-}
-
-/* Disabled */
-.ui.steps .disabled.step {
- cursor: auto;
- background: #FFFFFF;
- pointer-events: none;
-}
-.ui.steps .disabled.step,
-.ui.steps .disabled.step .title,
-.ui.steps .disabled.step .description {
- color: rgba(40, 40, 40, 0.3);
-}
-.ui.steps .disabled.step:after {
- background: #FFFFFF;
-}
-
-
-/*******************************
- Variations
-*******************************/
-
-
-/*--------------
- Stackable
- ---------------*/
-
-
-/* Tablet Or Below */
-@media only screen and (max-width: 991.98px) {
- .ui[class*="tablet stackable"].steps {
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
- overflow: visible;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- }
-
-/* Steps */
- .ui[class*="tablet stackable"].steps .step {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- border-radius: 0;
- padding: 1.14285714em 2em;
- border-right: none;
- border-bottom: 1px solid rgba(34, 36, 38, 0.15);
- }
- .ui[class*="tablet stackable"].steps .step:first-child {
- padding: 1.14285714em 2em;
- border-radius: 0.28571429rem 0.28571429rem 0 0;
- }
- .ui[class*="tablet stackable"].steps .step:last-child {
- border-radius: 0 0 0.28571429rem 0.28571429rem;
- border-bottom: none;
- }
-
-/* Arrow */
- .ui[class*="tablet stackable"].steps .step:after {
- top: unset;
- bottom: -1.14285714em;
- right: 50%;
- -webkit-transform: translateY(-50%) translateX(50%) rotate(45deg);
- transform: translateY(-50%) translateX(50%) rotate(45deg);
- }
-
-/* Content */
- .ui[class*="tablet stackable"].steps .step .content {
- text-align: center;
- }
-
-/* Icon */
- .ui[class*="tablet stackable"].steps .step > .icon,
- .ui[class*="tablet stackable"].ordered.steps .step:before {
- margin: 0 0 1rem 0;
- }
-}
-
-/*--------------
- Fluid
- ---------------*/
-
-
-/* Fluid */
-.ui.fluid.steps {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- width: 100%;
-}
-
-/*--------------
- Attached
- ---------------*/
-
-
-/* Top */
-.ui.attached.steps {
- width: calc(100% + 2px) !important;
- margin: 0 -1px 0;
- max-width: calc(100% + 2px);
- border-radius: 0.28571429rem 0.28571429rem 0 0;
-}
-.ui.attached.steps .step:first-child {
- border-radius: 0.28571429rem 0 0 0;
-}
-.ui.attached.steps .step:last-child {
- border-radius: 0 0.28571429rem 0 0;
-}
-
-/* Bottom */
-.ui.bottom.attached.steps {
- margin: 0 -1px 0;
- border-radius: 0 0 0.28571429rem 0.28571429rem;
-}
-.ui.bottom.attached.steps .step:first-child {
- border-radius: 0 0 0 0.28571429rem;
-}
-.ui.bottom.attached.steps .step:last-child {
- border-radius: 0 0 0.28571429rem 0;
-}
-
-/*-------------------
- Evenly Divided
---------------------*/
-
-.ui.one.steps,
-.ui.two.steps,
-.ui.three.steps,
-.ui.four.steps,
-.ui.five.steps,
-.ui.six.steps,
-.ui.seven.steps,
-.ui.eight.steps {
- width: 100%;
-}
-.ui.one.steps > .step,
-.ui.two.steps > .step,
-.ui.three.steps > .step,
-.ui.four.steps > .step,
-.ui.five.steps > .step,
-.ui.six.steps > .step,
-.ui.seven.steps > .step,
-.ui.eight.steps > .step {
- -ms-flex-wrap: nowrap;
- flex-wrap: nowrap;
-}
-.ui.one.steps > .step {
- width: 100%;
-}
-.ui.two.steps > .step {
- width: 50%;
-}
-.ui.three.steps > .step {
- width: 33.333%;
-}
-.ui.four.steps > .step {
- width: 25%;
-}
-.ui.five.steps > .step {
- width: 20%;
-}
-.ui.six.steps > .step {
- width: 16.666%;
-}
-.ui.seven.steps > .step {
- width: 14.285%;
-}
-.ui.eight.steps > .step {
- width: 12.5%;
-}
-
-/*-------------------
- Sizes
---------------------*/
-
-.ui.steps .step,
-.ui.step {
- font-size: 1rem;
-}
-.ui.mini.steps .step,
-.ui.mini.step {
- font-size: 0.78571429rem;
-}
-.ui.tiny.steps .step,
-.ui.tiny.step {
- font-size: 0.85714286rem;
-}
-.ui.small.steps .step,
-.ui.small.step {
- font-size: 0.92857143rem;
-}
-.ui.large.steps .step,
-.ui.large.step {
- font-size: 1.14285714rem;
-}
-.ui.big.steps .step,
-.ui.big.step {
- font-size: 1.28571429rem;
-}
-.ui.huge.steps .step,
-.ui.huge.step {
- font-size: 1.42857143rem;
-}
-.ui.massive.steps .step,
-.ui.massive.step {
- font-size: 1.71428571rem;
-}
-
-/*--------------
- Inverted
- ---------------*/
-
-.ui.inverted.steps {
- border: 1px solid #555555;
-}
-.ui.inverted.steps .step {
- color: rgba(255, 255, 255, 0.9);
- background: #1B1C1D;
- border-color: #555555;
-}
-.ui.inverted.steps .step:after {
- background-color: #1B1C1D;
- border-color: #555555;
-}
-.ui.inverted.steps .step .description {
- color: rgba(255, 255, 255, 0.9);
-}
-
-/* Active */
-.ui.inverted.steps .step.active,
-.ui.inverted.steps .step.active:after {
- background: #333333;
-}
-.ui.inverted.ordered.steps .step.active:before,
-.ui.inverted.steps .active.step .icon {
- color: #ffffff;
-}
-
-/* Disabled */
-.ui.inverted.steps .disabled.step,
-.ui.inverted.steps .disabled.step:after {
- background: #222222;
-}
-.ui.inverted.steps .disabled.step,
-.ui.inverted.steps .disabled.step .title,
-.ui.inverted.steps .disabled.step .description {
- color: rgba(225, 225, 225, 0.3);
-}
-
-/* Link Hover */
-.ui.inverted.steps .link.step:hover::after,
-.ui.inverted.steps .link.step:hover,
-.ui.inverted.steps a.step:hover::after,
-.ui.inverted.steps a.step:hover {
- background: #3F3F3F;
- color: #ffffff;
-}
-
-/* Link Down */
-.ui.inverted.steps .link.step:active::after,
-.ui.inverted.steps .link.step:active,
-.ui.inverted.steps a.step:active::after,
-.ui.inverted.steps a.step:active {
- background: #444444;
- color: #ffffff;
-}
-
-
-/*******************************
- Theme Overrides
-*******************************/
-
-@font-face {
- font-family: 'Step';
- src: url(data:application/x-font-ttf;charset=utf-8;;base64,AAEAAAAOAIAAAwBgT1MvMj3hSQEAAADsAAAAVmNtYXDQEhm3AAABRAAAAUpjdnQgBkn/lAAABuwAAAAcZnBnbYoKeDsAAAcIAAAJkWdhc3AAAAAQAAAG5AAAAAhnbHlm32cEdgAAApAAAAC2aGVhZAErPHsAAANIAAAANmhoZWEHUwNNAAADgAAAACRobXR4CykAAAAAA6QAAAAMbG9jYQA4AFsAAAOwAAAACG1heHAApgm8AAADuAAAACBuYW1lzJ0aHAAAA9gAAALNcG9zdK69QJgAAAaoAAAAO3ByZXCSoZr/AAAQnAAAAFYAAQO4AZAABQAIAnoCvAAAAIwCegK8AAAB4AAxAQIAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA6ADoAQNS/2oAWgMLAE8AAAABAAAAAAAAAAAAAwAAAAMAAAAcAAEAAAAAAEQAAwABAAAAHAAEACgAAAAGAAQAAQACAADoAf//AAAAAOgA//8AABgBAAEAAAAAAAAAAAEGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADpAKYABUAHEAZDwEAAQFCAAIBAmoAAQABagAAAGEUFxQDEisBFAcBBiInASY0PwE2Mh8BATYyHwEWA6QP/iAQLBD+6g8PTBAsEKQBbhAsEEwPAhYWEP4gDw8BFhAsEEwQEKUBbxAQTBAAAAH//f+xA18DCwAMABJADwABAQpDAAAACwBEFRMCESsBFA4BIi4CPgEyHgEDWXLG6MhuBnq89Lp+AV51xHR0xOrEdHTEAAAAAAEAAAABAADDeRpdXw889QALA+gAAAAAzzWYjQAAAADPNWBN//3/sQOkAwsAAAAIAAIAAAAAAAAAAQAAA1L/agBaA+gAAP/3A6QAAQAAAAAAAAAAAAAAAAAAAAMD6AAAA+gAAANZAAAAAAAAADgAWwABAAAAAwAWAAEAAAAAAAIABgATAG4AAAAtCZEAAAAAAAAAEgDeAAEAAAAAAAAANQAAAAEAAAAAAAEACAA1AAEAAAAAAAIABwA9AAEAAAAAAAMACABEAAEAAAAAAAQACABMAAEAAAAAAAUACwBUAAEAAAAAAAYACABfAAEAAAAAAAoAKwBnAAEAAAAAAAsAEwCSAAMAAQQJAAAAagClAAMAAQQJAAEAEAEPAAMAAQQJAAIADgEfAAMAAQQJAAMAEAEtAAMAAQQJAAQAEAE9AAMAAQQJAAUAFgFNAAMAAQQJAAYAEAFjAAMAAQQJAAoAVgFzAAMAAQQJAAsAJgHJQ29weXJpZ2h0IChDKSAyMDE0IGJ5IG9yaWdpbmFsIGF1dGhvcnMgQCBmb250ZWxsby5jb21mb250ZWxsb1JlZ3VsYXJmb250ZWxsb2ZvbnRlbGxvVmVyc2lvbiAxLjBmb250ZWxsb0dlbmVyYXRlZCBieSBzdmcydHRmIGZyb20gRm9udGVsbG8gcHJvamVjdC5odHRwOi8vZm9udGVsbG8uY29tAEMAbwBwAHkAcgBpAGcAaAB0ACAAKABDACkAIAAyADAAMQA0ACAAYgB5ACAAbwByAGkAZwBpAG4AYQBsACAAYQB1AHQAaABvAHIAcwAgAEAAIABmAG8AbgB0AGUAbABsAG8ALgBjAG8AbQBmAG8AbgB0AGUAbABsAG8AUgBlAGcAdQBsAGEAcgBmAG8AbgB0AGUAbABsAG8AZgBvAG4AdABlAGwAbABvAFYAZQByAHMAaQBvAG4AIAAxAC4AMABmAG8AbgB0AGUAbABsAG8ARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABzAHYAZwAyAHQAdABmACAAZgByAG8AbQAgAEYAbwBuAHQAZQBsAGwAbwAgAHAAcgBvAGoAZQBjAHQALgBoAHQAdABwADoALwAvAGYAbwBuAHQAZQBsAGwAbwAuAGMAbwBtAAAAAAIAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAQIBAwljaGVja21hcmsGY2lyY2xlAAAAAAEAAf//AA8AAAAAAAAAAAAAAAAAAAAAADIAMgML/7EDC/+xsAAssCBgZi2wASwgZCCwwFCwBCZasARFW1ghIyEbilggsFBQWCGwQFkbILA4UFghsDhZWSCwCkVhZLAoUFghsApFILAwUFghsDBZGyCwwFBYIGYgiophILAKUFhgGyCwIFBYIbAKYBsgsDZQWCGwNmAbYFlZWRuwACtZWSOwAFBYZVlZLbACLCBFILAEJWFkILAFQ1BYsAUjQrAGI0IbISFZsAFgLbADLCMhIyEgZLEFYkIgsAYjQrIKAAIqISCwBkMgiiCKsAArsTAFJYpRWGBQG2FSWVgjWSEgsEBTWLAAKxshsEBZI7AAUFhlWS2wBCywB0MrsgACAENgQi2wBSywByNCIyCwACNCYbCAYrABYLAEKi2wBiwgIEUgsAJFY7ABRWJgRLABYC2wBywgIEUgsAArI7ECBCVgIEWKI2EgZCCwIFBYIbAAG7AwUFiwIBuwQFlZI7AAUFhlWbADJSNhRESwAWAtsAgssQUFRbABYUQtsAkssAFgICCwCUNKsABQWCCwCSNCWbAKQ0qwAFJYILAKI0JZLbAKLCC4BABiILgEAGOKI2GwC0NgIIpgILALI0IjLbALLEtUWLEHAURZJLANZSN4LbAMLEtRWEtTWLEHAURZGyFZJLATZSN4LbANLLEADENVWLEMDEOwAWFCsAorWbAAQ7ACJUKxCQIlQrEKAiVCsAEWIyCwAyVQWLEBAENgsAQlQoqKIIojYbAJKiEjsAFhIIojYbAJKiEbsQEAQ2CwAiVCsAIlYbAJKiFZsAlDR7AKQ0dgsIBiILACRWOwAUViYLEAABMjRLABQ7AAPrIBAQFDYEItsA4ssQAFRVRYALAMI0IgYLABYbUNDQEACwBCQopgsQ0FK7BtKxsiWS2wDyyxAA4rLbAQLLEBDistsBEssQIOKy2wEiyxAw4rLbATLLEEDistsBQssQUOKy2wFSyxBg4rLbAWLLEHDistsBcssQgOKy2wGCyxCQ4rLbAZLLAIK7EABUVUWACwDCNCIGCwAWG1DQ0BAAsAQkKKYLENBSuwbSsbIlktsBossQAZKy2wGyyxARkrLbAcLLECGSstsB0ssQMZKy2wHiyxBBkrLbAfLLEFGSstsCAssQYZKy2wISyxBxkrLbAiLLEIGSstsCMssQkZKy2wJCwgPLABYC2wJSwgYLANYCBDI7ABYEOwAiVhsAFgsCQqIS2wJiywJSuwJSotsCcsICBHICCwAkVjsAFFYmAjYTgjIIpVWCBHICCwAkVjsAFFYmAjYTgbIVktsCgssQAFRVRYALABFrAnKrABFTAbIlktsCkssAgrsQAFRVRYALABFrAnKrABFTAbIlktsCosIDWwAWAtsCssALADRWOwAUVisAArsAJFY7ABRWKwACuwABa0AAAAAABEPiM4sSoBFSotsCwsIDwgRyCwAkVjsAFFYmCwAENhOC2wLSwuFzwtsC4sIDwgRyCwAkVjsAFFYmCwAENhsAFDYzgtsC8ssQIAFiUgLiBHsAAjQrACJUmKikcjRyNhIFhiGyFZsAEjQrIuAQEVFCotsDAssAAWsAQlsAQlRyNHI2GwBkUrZYouIyAgPIo4LbAxLLAAFrAEJbAEJSAuRyNHI2EgsAQjQrAGRSsgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjILAIQyCKI0cjRyNhI0ZgsARDsIBiYCCwACsgiophILACQ2BkI7ADQ2FkUFiwAkNhG7ADQ2BZsAMlsIBiYSMgILAEJiNGYTgbI7AIQ0awAiWwCENHI0cjYWAgsARDsIBiYCMgsAArI7AEQ2CwACuwBSVhsAUlsIBisAQmYSCwBCVgZCOwAyVgZFBYIRsjIVkjICCwBCYjRmE4WS2wMiywABYgICCwBSYgLkcjRyNhIzw4LbAzLLAAFiCwCCNCICAgRiNHsAArI2E4LbA0LLAAFrADJbACJUcjRyNhsABUWC4gPCMhG7ACJbACJUcjRyNhILAFJbAEJUcjRyNhsAYlsAUlSbACJWGwAUVjIyBYYhshWWOwAUViYCMuIyAgPIo4IyFZLbA1LLAAFiCwCEMgLkcjRyNhIGCwIGBmsIBiIyAgPIo4LbA2LCMgLkawAiVGUlggPFkusSYBFCstsDcsIyAuRrACJUZQWCA8WS6xJgEUKy2wOCwjIC5GsAIlRlJYIDxZIyAuRrACJUZQWCA8WS6xJgEUKy2wOSywMCsjIC5GsAIlRlJYIDxZLrEmARQrLbA6LLAxK4ogIDywBCNCijgjIC5GsAIlRlJYIDxZLrEmARQrsARDLrAmKy2wOyywABawBCWwBCYgLkcjRyNhsAZFKyMgPCAuIzixJgEUKy2wPCyxCAQlQrAAFrAEJbAEJSAuRyNHI2EgsAQjQrAGRSsgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjIEewBEOwgGJgILAAKyCKimEgsAJDYGQjsANDYWRQWLACQ2EbsANDYFmwAyWwgGJhsAIlRmE4IyA8IzgbISAgRiNHsAArI2E4IVmxJgEUKy2wPSywMCsusSYBFCstsD4ssDErISMgIDywBCNCIzixJgEUK7AEQy6wJistsD8ssAAVIEewACNCsgABARUUEy6wLCotsEAssAAVIEewACNCsgABARUUEy6wLCotsEEssQABFBOwLSotsEIssC8qLbBDLLAAFkUjIC4gRoojYTixJgEUKy2wRCywCCNCsEMrLbBFLLIAADwrLbBGLLIAATwrLbBHLLIBADwrLbBILLIBATwrLbBJLLIAAD0rLbBKLLIAAT0rLbBLLLIBAD0rLbBMLLIBAT0rLbBNLLIAADkrLbBOLLIAATkrLbBPLLIBADkrLbBQLLIBATkrLbBRLLIAADsrLbBSLLIAATsrLbBTLLIBADsrLbBULLIBATsrLbBVLLIAAD4rLbBWLLIAAT4rLbBXLLIBAD4rLbBYLLIBAT4rLbBZLLIAADorLbBaLLIAATorLbBbLLIBADorLbBcLLIBATorLbBdLLAyKy6xJgEUKy2wXiywMiuwNistsF8ssDIrsDcrLbBgLLAAFrAyK7A4Ky2wYSywMysusSYBFCstsGIssDMrsDYrLbBjLLAzK7A3Ky2wZCywMyuwOCstsGUssDQrLrEmARQrLbBmLLA0K7A2Ky2wZyywNCuwNystsGgssDQrsDgrLbBpLLA1Ky6xJgEUKy2waiywNSuwNistsGsssDUrsDcrLbBsLLA1K7A4Ky2wbSwrsAhlsAMkUHiwARUwLQAAAEu4AMhSWLEBAY5ZuQgACABjILABI0SwAyNwsgQoCUVSRLIKAgcqsQYBRLEkAYhRWLBAiFixBgNEsSYBiFFYuAQAiFixBgFEWVlZWbgB/4WwBI2xBQBEAAA=) format('truetype'), url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAoUAA4AAAAAEPQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABRAAAAEQAAABWPeFJAWNtYXAAAAGIAAAAOgAAAUrQEhm3Y3Z0IAAAAcQAAAAUAAAAHAZJ/5RmcGdtAAAB2AAABPkAAAmRigp4O2dhc3AAAAbUAAAACAAAAAgAAAAQZ2x5ZgAABtwAAACuAAAAtt9nBHZoZWFkAAAHjAAAADUAAAA2ASs8e2hoZWEAAAfEAAAAIAAAACQHUwNNaG10eAAAB+QAAAAMAAAADAspAABsb2NhAAAH8AAAAAgAAAAIADgAW21heHAAAAf4AAAAIAAAACAApgm8bmFtZQAACBgAAAF3AAACzcydGhxwb3N0AAAJkAAAACoAAAA7rr1AmHByZXAAAAm8AAAAVgAAAFaSoZr/eJxjYGTewTiBgZWBg6mKaQ8DA0MPhGZ8wGDIyMTAwMTAysyAFQSkuaYwOLxgeMHIHPQ/iyGKmZvBHyjMCJIDAPe9C2B4nGNgYGBmgGAZBkYGEHAB8hjBfBYGDSDNBqQZGZgYGF4w/v8PUvCCAURLMELVAwEjG8OIBwBk5AavAAB4nGNgQANGDEbM3P83gjAAELQD4XicnVXZdtNWFJU8ZHASOmSgoA7X3DhQ68qEKRgwaSrFdiEdHAitBB2kDHTkncc+62uOQrtWH/m07n09JLR0rbYsls++R1tn2DrnRhwjKn0aiGvUoZKXA6msPZZK90lc13Uvj5UMBnFdthJPSZuonSRKat3sUC7xWOsqWSdYJ+PlIFZPVZ5noAziFB5lSUQbRBuplyZJ4onjJ4kWZxAfJUkgJaMQp9LIUEI1GsRS1aFM6dCr1xNx00DKRqMedVhU90PFJ8c1p9SsA0YqVznCFevVRr4bpwMve5DEOsGzrYcxHnisfpQqkIqR6cg/dkpOlIaBVHHUoVbi6DCTX/eRTCrNQKaMYkWl7oG43f102xYxPXQ6vi5KlUaqurnOKJrt0fGogygP2cbppNzQ2fbw5RlTVKtdcbPtQGYNXErJbHSfRAAdJlLj6QFONZwCqRn1R8XZ588BEslclKo8VTKHegOZMzt7cTHtbiersnCknwcyb3Z2452HQ6dXh3/R+hdM4cxHj+Jifj5C+lBqfiJOJKVGWMzyp4YfcVcgQrkxiAsXyuBThDl0RdrZZl3jtTH2hs/5SqlhPQna6KP4fgr9TiQrHGdRo/VInM1j13Wt3GdQS7W7Fzsyr0OVIu7vCwuuM+eEYZ4WC1VfnvneBTT/Bohn/EDeNIVL+5YpSrRvm6JMu2iKCu0SVKVdNsUU7YoppmnPmmKG9h1TzNKeMzLj/8vc55H7HN7xkJv2XeSmfQ+5ad9HbtoPkJtWITdtHblpLyA3rUZu2lWjOnYEGgZpF1IVQdA0svph3Fab9UDWjDR8aWDyLmLI+upER521tcofxX914gsHcmmip7siF5viLq/bFj483e6rj5pG3bDV+MaR8jAeRnocmtBZ+c3hv+1N3S6a7jKqMugBFUwKwABl7UAC0zrbCaT1mqf48gdgXIZ4zkpDtVSfO4am7+V5X/exOfG+x+3GLrdcd3kJWdYNcmP28N9SZKrrH+UtrVQnR6wrJ49VaxhDKrwour6SlHu0tRu/KKmy8l6U1srnk5CbPYMbQlu27mGwI0xpyiUeXlOlKD3UUo6yQyxvKco84JSLC1qGxLgOdQ9qa8TpoXoYGwshhqG0vRBwSCldFd+0ynfxHqtr2Oj4xRXh6XpyEhGf4ir7UfBU10b96A7avGbdMoMpVaqn+4xPsa/b9lFZaaSOsxe3VAfXNOsaORXTT+Rr4HRvOGjdAz1UfDRBI1U1x+jGKGM0ljXl3wR0MVZ+w2jVYvs93E+dpFWsuUuY7JsT9+C0u/0q+7WcW0bW/dcGvW3kip8jMb8tCvw7B2K3ZA3UO5OBGAvIWdAYxhYmdxiug23EbfY/Jqf/34aFRXJXOxq7eerD1ZNRJXfZ8rjLTXZZ16M2R9VOGvsIjS0PN+bY4XIstsRgQbb+wf8x7gF3aVEC4NDIZZiI2nShnurh6h6rsW04VxIBds2x43QAegAuQd8cu9bzCYD13CPnLsB9cgh2yCH4lByCz8i5BfA5OQRfkEMwIIdgl5w7AA/IIXhIDsEeOQSPyNkE+JIcgq/IIYjJIUjIuQ3wmByCJ+QQfE0OwTdGrk5k/pYH2QD6zqKbQKmdGhzaOGRGrk3Y+zxY9oFFZB9aROqRkesT6lMeLPV7i0j9wSJSfzRyY0L9iQdL/dkiUn+xiNRnxpeZIymvDp7zjg7+BJfqrV4AAAAAAQAB//8AD3icY2BkAALmJUwzGEQZZBwk+RkZGBmdGJgYmbIYgMwsoGSiiLgIs5A2owg7I5uSOqOaiT2jmZE8I5gQY17C/09BQEfg3yt+fh8gvYQxD0j68DOJiQn8U+DnZxQDcQUEljLmCwBpBgbG/3//b2SOZ+Zm4GEQcuAH2sblDLSEm8FFVJhJEGgLH6OSHpMdo5EcI3Nk0bEXJ/LYqvZ82VXHGFd6pKTkyCsQwQAAq+QkqAAAeJxjYGRgYADiw5VSsfH8Nl8ZuJlfAEUYzpvO6IXQCb7///7fyLyEmRvI5WBgAokCAFb/DJAAAAB4nGNgZGBgDvqfxRDF/IKB4f935iUMQBEUwAwAi5YFpgPoAAAD6AAAA1kAAAAAAAAAOABbAAEAAAADABYAAQAAAAAAAgAGABMAbgAAAC0JkQAAAAB4nHWQy2rCQBSG//HSi0JbWui2sypKabxgN4IgWHTTbqS4LTHGJBIzMhkFX6Pv0IfpS/RZ+puMpShNmMx3vjlz5mQAXOMbAvnzxJGzwBmjnAs4Rc9ykf7Zcon8YrmMKt4sn9C/W67gAYHlKm7wwQqidM5ogU/LAlfi0nIBF+LOcpH+0XKJ3LNcxq14tXxC71muYCJSy1Xci6+BWm11FIRG1gZ12W62OnK6lYoqStxYumsTKp3KvpyrxPhxrBxPLfc89oN17Op9uJ8nvk4jlciW09yrkZ/42jX+bFc93QRtY+ZyrtVSDm2GXGm18D3jhMasuo3G3/MwgMIKW2hEvKoQBhI12jrnNppooUOaMkMyM8+KkMBFTONizR1htpIy7nPMGSW0PjNisgOP3+WRH5MC7o9ZRR+tHsYT0u6MKPOSfTns7jBrREqyTDezs9/eU2x4WpvWcNeuS511JTE8qCF5H7u1BY1H72S3Ymi7aPD95/9+AN1fhEsAeJxjYGKAAC4G7ICZgYGRiZGZMzkjNTk7N7Eomy05syg5J5WBAQBE1QZBAABLuADIUlixAQGOWbkIAAgAYyCwASNEsAMjcLIEKAlFUkSyCgIHKrEGAUSxJAGIUViwQIhYsQYDRLEmAYhRWLgEAIhYsQYBRFlZWVm4Af+FsASNsQUARAAA) format('woff');
-}
-.ui.steps .step.completed > .icon:before,
-.ui.ordered.steps .step.completed:before {
- font-family: 'Step';
- content: '\e800';
-
-/* '' */
-}
-
-
-/*******************************
- Site Overrides
-*******************************/
-
diff --git a/src-angular/assets/semantic/dist/components/step.min.css b/src-angular/assets/semantic/dist/components/step.min.css
deleted file mode 100644
index 9bec332..0000000
--- a/src-angular/assets/semantic/dist/components/step.min.css
+++ /dev/null
@@ -1,9 +0,0 @@
-/*!
- * # Fomantic-UI - Step
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */.ui.steps{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;margin:1em 0;background:'';-webkit-box-shadow:none;box-shadow:none;line-height:1.14285714em;border-radius:.28571429rem;border:1px solid rgba(34,36,38,.15)}.ui.steps:not(.unstackable){-ms-flex-wrap:wrap;flex-wrap:wrap}.ui.steps:first-child{margin-top:0}.ui.steps:last-child{margin-bottom:0}.ui.steps .step{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;vertical-align:middle;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0 0;padding:1.14285714em 2em;background:#fff;color:rgba(0,0,0,.87);-webkit-box-shadow:none;box-shadow:none;border-radius:0;border:none;border-right:1px solid rgba(34,36,38,.15);-webkit-transition:background-color .1s ease,opacity .1s ease,color .1s ease,-webkit-box-shadow .1s ease;transition:background-color .1s ease,opacity .1s ease,color .1s ease,-webkit-box-shadow .1s ease;transition:background-color .1s ease,opacity .1s ease,color .1s ease,box-shadow .1s ease;transition:background-color .1s ease,opacity .1s ease,color .1s ease,box-shadow .1s ease,-webkit-box-shadow .1s ease}.ui.steps .step:after{display:none;position:absolute;z-index:2;content:'';top:50%;right:0;background-color:#fff;width:1.14285714em;height:1.14285714em;border-style:solid;border-color:rgba(34,36,38,.15);border-width:0 1px 1px 0;-webkit-transition:background-color .1s ease,opacity .1s ease,color .1s ease,-webkit-box-shadow .1s ease;transition:background-color .1s ease,opacity .1s ease,color .1s ease,-webkit-box-shadow .1s ease;transition:background-color .1s ease,opacity .1s ease,color .1s ease,box-shadow .1s ease;transition:background-color .1s ease,opacity .1s ease,color .1s ease,box-shadow .1s ease,-webkit-box-shadow .1s ease;-webkit-transform:translateY(-50%) translateX(50%) rotate(-45deg);transform:translateY(-50%) translateX(50%) rotate(-45deg)}.ui.steps .step:first-child{padding-left:2em;border-radius:.28571429rem 0 0 .28571429rem}.ui.steps .step:last-child{border-radius:0 .28571429rem .28571429rem 0;border-right:none;margin-right:0}.ui.steps .step:only-child{border-radius:.28571429rem}.ui.steps .step .title{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1.14285714em;font-weight:700}.ui.steps .step>.title{width:100%}.ui.steps .step .description{font-weight:400;font-size:.92857143em;color:rgba(0,0,0,.87)}.ui.steps .step>.description{width:100%}.ui.steps .step .title~.description{margin-top:.25em}.ui.steps .step>.icon{line-height:1;font-size:2.5em;margin:0 1rem 0 0}.ui.steps .step>.icon,.ui.steps .step>.icon~.content{display:block;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;-ms-flex-item-align:middle;align-self:middle}.ui.steps:not(.vertical) .step>.icon{width:auto}.ui.steps .link.step,.ui.steps a.step{cursor:pointer}.ui.ordered.steps{counter-reset:ordered}.ui.ordered.steps .step:before{display:block;position:static;text-align:center;content:counter(ordered);-ms-flex-item-align:middle;align-self:middle;margin-right:1rem;font-size:2.5em;counter-increment:ordered;font-family:inherit;font-weight:700}.ui.ordered.steps .step>*{display:block;-ms-flex-item-align:middle;align-self:middle}.ui.vertical.steps{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;overflow:visible}.ui.vertical.steps .step{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;border-radius:0;padding:1.14285714em 2em;border-right:none;border-bottom:1px solid rgba(34,36,38,.15)}.ui.vertical.steps .step:first-child{padding:1.14285714em 2em;border-radius:.28571429rem .28571429rem 0 0}.ui.vertical.steps .step:last-child{border-bottom:none;border-radius:0 0 .28571429rem .28571429rem}.ui.vertical.steps .step:only-child{border-radius:.28571429rem}.ui.vertical.steps .step:after{top:50%;right:0;border-width:0 1px 1px 0;display:none}.ui.vertical.steps .active.step:after{display:block}.ui.vertical.steps .step:last-child:after{display:none}.ui.vertical.steps .active.step:last-child:after{display:block}@media only screen and (max-width:767.98px){.ui.steps:not(.unstackable){display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;overflow:visible;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.ui.steps:not(.unstackable) .step{width:100%!important;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;border-radius:0;padding:1.14285714em 2em;border-right:none;border-bottom:1px solid rgba(34,36,38,.15)}.ui.steps:not(.unstackable) .step:first-child{padding:1.14285714em 2em;border-radius:.28571429rem .28571429rem 0 0}.ui.steps:not(.unstackable) .step:last-child{border-radius:0 0 .28571429rem .28571429rem;border-bottom:none}.ui.steps:not(.unstackable) .step:after{top:unset;bottom:-1.14285714em;right:50%;-webkit-transform:translateY(-50%) translateX(50%) rotate(45deg);transform:translateY(-50%) translateX(50%) rotate(45deg)}.ui.vertical.steps .active.step:last-child:after{display:none}.ui.steps:not(.unstackable) .step .content{text-align:center}.ui.ordered.steps:not(.unstackable) .step:before,.ui.steps:not(.unstackable) .step>.icon{margin:0 0 1rem 0}}.ui.steps .link.step:hover,.ui.steps .link.step:hover::after,.ui.steps a.step:hover,.ui.steps a.step:hover::after{background:#f9fafb;color:rgba(0,0,0,.8)}.ui.steps .link.step:active,.ui.steps .link.step:active::after,.ui.steps a.step:active,.ui.steps a.step:active::after{background:#f3f4f5;color:rgba(0,0,0,.9)}.ui.steps .step.active{cursor:auto;background:#f3f4f5}.ui.steps .step.active:after{background:#f3f4f5}.ui.steps .step.active .title{color:#4183c4}.ui.ordered.steps .step.active:before,.ui.steps .active.step .icon{color:rgba(0,0,0,.85)}.ui.steps .step:after{display:block}.ui.steps .active.step:after{display:block}.ui.steps .step:last-child:after{display:none}.ui.steps .active.step:last-child:after{display:none}.ui.steps .link.active.step:hover,.ui.steps .link.active.step:hover::after,.ui.steps a.active.step:hover,.ui.steps a.active.step:hover::after{cursor:pointer;background:#dcddde;color:rgba(0,0,0,.87)}.ui.ordered.steps .step.completed:before,.ui.steps .step.completed>.icon:before{color:#21ba45}.ui.steps .disabled.step{cursor:auto;background:#fff;pointer-events:none}.ui.steps .disabled.step,.ui.steps .disabled.step .description,.ui.steps .disabled.step .title{color:rgba(40,40,40,.3)}.ui.steps .disabled.step:after{background:#fff}@media only screen and (max-width:991.98px){.ui[class*="tablet stackable"].steps{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;overflow:visible;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.ui[class*="tablet stackable"].steps .step{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;border-radius:0;padding:1.14285714em 2em;border-right:none;border-bottom:1px solid rgba(34,36,38,.15)}.ui[class*="tablet stackable"].steps .step:first-child{padding:1.14285714em 2em;border-radius:.28571429rem .28571429rem 0 0}.ui[class*="tablet stackable"].steps .step:last-child{border-radius:0 0 .28571429rem .28571429rem;border-bottom:none}.ui[class*="tablet stackable"].steps .step:after{top:unset;bottom:-1.14285714em;right:50%;-webkit-transform:translateY(-50%) translateX(50%) rotate(45deg);transform:translateY(-50%) translateX(50%) rotate(45deg)}.ui[class*="tablet stackable"].steps .step .content{text-align:center}.ui[class*="tablet stackable"].ordered.steps .step:before,.ui[class*="tablet stackable"].steps .step>.icon{margin:0 0 1rem 0}}.ui.fluid.steps{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%}.ui.attached.steps{width:calc(100% + 2px)!important;margin:0 -1px 0;max-width:calc(100% + 2px);border-radius:.28571429rem .28571429rem 0 0}.ui.attached.steps .step:first-child{border-radius:.28571429rem 0 0 0}.ui.attached.steps .step:last-child{border-radius:0 .28571429rem 0 0}.ui.bottom.attached.steps{margin:0 -1px 0;border-radius:0 0 .28571429rem .28571429rem}.ui.bottom.attached.steps .step:first-child{border-radius:0 0 0 .28571429rem}.ui.bottom.attached.steps .step:last-child{border-radius:0 0 .28571429rem 0}.ui.eight.steps,.ui.five.steps,.ui.four.steps,.ui.one.steps,.ui.seven.steps,.ui.six.steps,.ui.three.steps,.ui.two.steps{width:100%}.ui.eight.steps>.step,.ui.five.steps>.step,.ui.four.steps>.step,.ui.one.steps>.step,.ui.seven.steps>.step,.ui.six.steps>.step,.ui.three.steps>.step,.ui.two.steps>.step{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.ui.one.steps>.step{width:100%}.ui.two.steps>.step{width:50%}.ui.three.steps>.step{width:33.333%}.ui.four.steps>.step{width:25%}.ui.five.steps>.step{width:20%}.ui.six.steps>.step{width:16.666%}.ui.seven.steps>.step{width:14.285%}.ui.eight.steps>.step{width:12.5%}.ui.step,.ui.steps .step{font-size:1rem}.ui.mini.step,.ui.mini.steps .step{font-size:.78571429rem}.ui.tiny.step,.ui.tiny.steps .step{font-size:.85714286rem}.ui.small.step,.ui.small.steps .step{font-size:.92857143rem}.ui.large.step,.ui.large.steps .step{font-size:1.14285714rem}.ui.big.step,.ui.big.steps .step{font-size:1.28571429rem}.ui.huge.step,.ui.huge.steps .step{font-size:1.42857143rem}.ui.massive.step,.ui.massive.steps .step{font-size:1.71428571rem}.ui.inverted.steps{border:1px solid #555}.ui.inverted.steps .step{color:rgba(255,255,255,.9);background:#1b1c1d;border-color:#555}.ui.inverted.steps .step:after{background-color:#1b1c1d;border-color:#555}.ui.inverted.steps .step .description{color:rgba(255,255,255,.9)}.ui.inverted.steps .step.active,.ui.inverted.steps .step.active:after{background:#333}.ui.inverted.ordered.steps .step.active:before,.ui.inverted.steps .active.step .icon{color:#fff}.ui.inverted.steps .disabled.step,.ui.inverted.steps .disabled.step:after{background:#222}.ui.inverted.steps .disabled.step,.ui.inverted.steps .disabled.step .description,.ui.inverted.steps .disabled.step .title{color:rgba(225,225,225,.3)}.ui.inverted.steps .link.step:hover,.ui.inverted.steps .link.step:hover::after,.ui.inverted.steps a.step:hover,.ui.inverted.steps a.step:hover::after{background:#3f3f3f;color:#fff}.ui.inverted.steps .link.step:active,.ui.inverted.steps .link.step:active::after,.ui.inverted.steps a.step:active,.ui.inverted.steps a.step:active::after{background:#444;color:#fff}@font-face{font-family:Step;src:url(data:application/x-font-ttf;charset=utf-8;;base64,AAEAAAAOAIAAAwBgT1MvMj3hSQEAAADsAAAAVmNtYXDQEhm3AAABRAAAAUpjdnQgBkn/lAAABuwAAAAcZnBnbYoKeDsAAAcIAAAJkWdhc3AAAAAQAAAG5AAAAAhnbHlm32cEdgAAApAAAAC2aGVhZAErPHsAAANIAAAANmhoZWEHUwNNAAADgAAAACRobXR4CykAAAAAA6QAAAAMbG9jYQA4AFsAAAOwAAAACG1heHAApgm8AAADuAAAACBuYW1lzJ0aHAAAA9gAAALNcG9zdK69QJgAAAaoAAAAO3ByZXCSoZr/AAAQnAAAAFYAAQO4AZAABQAIAnoCvAAAAIwCegK8AAAB4AAxAQIAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA6ADoAQNS/2oAWgMLAE8AAAABAAAAAAAAAAAAAwAAAAMAAAAcAAEAAAAAAEQAAwABAAAAHAAEACgAAAAGAAQAAQACAADoAf//AAAAAOgA//8AABgBAAEAAAAAAAAAAAEGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADpAKYABUAHEAZDwEAAQFCAAIBAmoAAQABagAAAGEUFxQDEisBFAcBBiInASY0PwE2Mh8BATYyHwEWA6QP/iAQLBD+6g8PTBAsEKQBbhAsEEwPAhYWEP4gDw8BFhAsEEwQEKUBbxAQTBAAAAH//f+xA18DCwAMABJADwABAQpDAAAACwBEFRMCESsBFA4BIi4CPgEyHgEDWXLG6MhuBnq89Lp+AV51xHR0xOrEdHTEAAAAAAEAAAABAADDeRpdXw889QALA+gAAAAAzzWYjQAAAADPNWBN//3/sQOkAwsAAAAIAAIAAAAAAAAAAQAAA1L/agBaA+gAAP/3A6QAAQAAAAAAAAAAAAAAAAAAAAMD6AAAA+gAAANZAAAAAAAAADgAWwABAAAAAwAWAAEAAAAAAAIABgATAG4AAAAtCZEAAAAAAAAAEgDeAAEAAAAAAAAANQAAAAEAAAAAAAEACAA1AAEAAAAAAAIABwA9AAEAAAAAAAMACABEAAEAAAAAAAQACABMAAEAAAAAAAUACwBUAAEAAAAAAAYACABfAAEAAAAAAAoAKwBnAAEAAAAAAAsAEwCSAAMAAQQJAAAAagClAAMAAQQJAAEAEAEPAAMAAQQJAAIADgEfAAMAAQQJAAMAEAEtAAMAAQQJAAQAEAE9AAMAAQQJAAUAFgFNAAMAAQQJAAYAEAFjAAMAAQQJAAoAVgFzAAMAAQQJAAsAJgHJQ29weXJpZ2h0IChDKSAyMDE0IGJ5IG9yaWdpbmFsIGF1dGhvcnMgQCBmb250ZWxsby5jb21mb250ZWxsb1JlZ3VsYXJmb250ZWxsb2ZvbnRlbGxvVmVyc2lvbiAxLjBmb250ZWxsb0dlbmVyYXRlZCBieSBzdmcydHRmIGZyb20gRm9udGVsbG8gcHJvamVjdC5odHRwOi8vZm9udGVsbG8uY29tAEMAbwBwAHkAcgBpAGcAaAB0ACAAKABDACkAIAAyADAAMQA0ACAAYgB5ACAAbwByAGkAZwBpAG4AYQBsACAAYQB1AHQAaABvAHIAcwAgAEAAIABmAG8AbgB0AGUAbABsAG8ALgBjAG8AbQBmAG8AbgB0AGUAbABsAG8AUgBlAGcAdQBsAGEAcgBmAG8AbgB0AGUAbABsAG8AZgBvAG4AdABlAGwAbABvAFYAZQByAHMAaQBvAG4AIAAxAC4AMABmAG8AbgB0AGUAbABsAG8ARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABzAHYAZwAyAHQAdABmACAAZgByAG8AbQAgAEYAbwBuAHQAZQBsAGwAbwAgAHAAcgBvAGoAZQBjAHQALgBoAHQAdABwADoALwAvAGYAbwBuAHQAZQBsAGwAbwAuAGMAbwBtAAAAAAIAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAQIBAwljaGVja21hcmsGY2lyY2xlAAAAAAEAAf//AA8AAAAAAAAAAAAAAAAAAAAAADIAMgML/7EDC/+xsAAssCBgZi2wASwgZCCwwFCwBCZasARFW1ghIyEbilggsFBQWCGwQFkbILA4UFghsDhZWSCwCkVhZLAoUFghsApFILAwUFghsDBZGyCwwFBYIGYgiophILAKUFhgGyCwIFBYIbAKYBsgsDZQWCGwNmAbYFlZWRuwACtZWSOwAFBYZVlZLbACLCBFILAEJWFkILAFQ1BYsAUjQrAGI0IbISFZsAFgLbADLCMhIyEgZLEFYkIgsAYjQrIKAAIqISCwBkMgiiCKsAArsTAFJYpRWGBQG2FSWVgjWSEgsEBTWLAAKxshsEBZI7AAUFhlWS2wBCywB0MrsgACAENgQi2wBSywByNCIyCwACNCYbCAYrABYLAEKi2wBiwgIEUgsAJFY7ABRWJgRLABYC2wBywgIEUgsAArI7ECBCVgIEWKI2EgZCCwIFBYIbAAG7AwUFiwIBuwQFlZI7AAUFhlWbADJSNhRESwAWAtsAgssQUFRbABYUQtsAkssAFgICCwCUNKsABQWCCwCSNCWbAKQ0qwAFJYILAKI0JZLbAKLCC4BABiILgEAGOKI2GwC0NgIIpgILALI0IjLbALLEtUWLEHAURZJLANZSN4LbAMLEtRWEtTWLEHAURZGyFZJLATZSN4LbANLLEADENVWLEMDEOwAWFCsAorWbAAQ7ACJUKxCQIlQrEKAiVCsAEWIyCwAyVQWLEBAENgsAQlQoqKIIojYbAJKiEjsAFhIIojYbAJKiEbsQEAQ2CwAiVCsAIlYbAJKiFZsAlDR7AKQ0dgsIBiILACRWOwAUViYLEAABMjRLABQ7AAPrIBAQFDYEItsA4ssQAFRVRYALAMI0IgYLABYbUNDQEACwBCQopgsQ0FK7BtKxsiWS2wDyyxAA4rLbAQLLEBDistsBEssQIOKy2wEiyxAw4rLbATLLEEDistsBQssQUOKy2wFSyxBg4rLbAWLLEHDistsBcssQgOKy2wGCyxCQ4rLbAZLLAIK7EABUVUWACwDCNCIGCwAWG1DQ0BAAsAQkKKYLENBSuwbSsbIlktsBossQAZKy2wGyyxARkrLbAcLLECGSstsB0ssQMZKy2wHiyxBBkrLbAfLLEFGSstsCAssQYZKy2wISyxBxkrLbAiLLEIGSstsCMssQkZKy2wJCwgPLABYC2wJSwgYLANYCBDI7ABYEOwAiVhsAFgsCQqIS2wJiywJSuwJSotsCcsICBHICCwAkVjsAFFYmAjYTgjIIpVWCBHICCwAkVjsAFFYmAjYTgbIVktsCgssQAFRVRYALABFrAnKrABFTAbIlktsCkssAgrsQAFRVRYALABFrAnKrABFTAbIlktsCosIDWwAWAtsCssALADRWOwAUVisAArsAJFY7ABRWKwACuwABa0AAAAAABEPiM4sSoBFSotsCwsIDwgRyCwAkVjsAFFYmCwAENhOC2wLSwuFzwtsC4sIDwgRyCwAkVjsAFFYmCwAENhsAFDYzgtsC8ssQIAFiUgLiBHsAAjQrACJUmKikcjRyNhIFhiGyFZsAEjQrIuAQEVFCotsDAssAAWsAQlsAQlRyNHI2GwBkUrZYouIyAgPIo4LbAxLLAAFrAEJbAEJSAuRyNHI2EgsAQjQrAGRSsgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjILAIQyCKI0cjRyNhI0ZgsARDsIBiYCCwACsgiophILACQ2BkI7ADQ2FkUFiwAkNhG7ADQ2BZsAMlsIBiYSMgILAEJiNGYTgbI7AIQ0awAiWwCENHI0cjYWAgsARDsIBiYCMgsAArI7AEQ2CwACuwBSVhsAUlsIBisAQmYSCwBCVgZCOwAyVgZFBYIRsjIVkjICCwBCYjRmE4WS2wMiywABYgICCwBSYgLkcjRyNhIzw4LbAzLLAAFiCwCCNCICAgRiNHsAArI2E4LbA0LLAAFrADJbACJUcjRyNhsABUWC4gPCMhG7ACJbACJUcjRyNhILAFJbAEJUcjRyNhsAYlsAUlSbACJWGwAUVjIyBYYhshWWOwAUViYCMuIyAgPIo4IyFZLbA1LLAAFiCwCEMgLkcjRyNhIGCwIGBmsIBiIyAgPIo4LbA2LCMgLkawAiVGUlggPFkusSYBFCstsDcsIyAuRrACJUZQWCA8WS6xJgEUKy2wOCwjIC5GsAIlRlJYIDxZIyAuRrACJUZQWCA8WS6xJgEUKy2wOSywMCsjIC5GsAIlRlJYIDxZLrEmARQrLbA6LLAxK4ogIDywBCNCijgjIC5GsAIlRlJYIDxZLrEmARQrsARDLrAmKy2wOyywABawBCWwBCYgLkcjRyNhsAZFKyMgPCAuIzixJgEUKy2wPCyxCAQlQrAAFrAEJbAEJSAuRyNHI2EgsAQjQrAGRSsgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjIEewBEOwgGJgILAAKyCKimEgsAJDYGQjsANDYWRQWLACQ2EbsANDYFmwAyWwgGJhsAIlRmE4IyA8IzgbISAgRiNHsAArI2E4IVmxJgEUKy2wPSywMCsusSYBFCstsD4ssDErISMgIDywBCNCIzixJgEUK7AEQy6wJistsD8ssAAVIEewACNCsgABARUUEy6wLCotsEAssAAVIEewACNCsgABARUUEy6wLCotsEEssQABFBOwLSotsEIssC8qLbBDLLAAFkUjIC4gRoojYTixJgEUKy2wRCywCCNCsEMrLbBFLLIAADwrLbBGLLIAATwrLbBHLLIBADwrLbBILLIBATwrLbBJLLIAAD0rLbBKLLIAAT0rLbBLLLIBAD0rLbBMLLIBAT0rLbBNLLIAADkrLbBOLLIAATkrLbBPLLIBADkrLbBQLLIBATkrLbBRLLIAADsrLbBSLLIAATsrLbBTLLIBADsrLbBULLIBATsrLbBVLLIAAD4rLbBWLLIAAT4rLbBXLLIBAD4rLbBYLLIBAT4rLbBZLLIAADorLbBaLLIAATorLbBbLLIBADorLbBcLLIBATorLbBdLLAyKy6xJgEUKy2wXiywMiuwNistsF8ssDIrsDcrLbBgLLAAFrAyK7A4Ky2wYSywMysusSYBFCstsGIssDMrsDYrLbBjLLAzK7A3Ky2wZCywMyuwOCstsGUssDQrLrEmARQrLbBmLLA0K7A2Ky2wZyywNCuwNystsGgssDQrsDgrLbBpLLA1Ky6xJgEUKy2waiywNSuwNistsGsssDUrsDcrLbBsLLA1K7A4Ky2wbSwrsAhlsAMkUHiwARUwLQAAAEu4AMhSWLEBAY5ZuQgACABjILABI0SwAyNwsgQoCUVSRLIKAgcqsQYBRLEkAYhRWLBAiFixBgNEsSYBiFFYuAQAiFixBgFEWVlZWbgB/4WwBI2xBQBEAAA=) format('truetype'),url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAoUAA4AAAAAEPQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABRAAAAEQAAABWPeFJAWNtYXAAAAGIAAAAOgAAAUrQEhm3Y3Z0IAAAAcQAAAAUAAAAHAZJ/5RmcGdtAAAB2AAABPkAAAmRigp4O2dhc3AAAAbUAAAACAAAAAgAAAAQZ2x5ZgAABtwAAACuAAAAtt9nBHZoZWFkAAAHjAAAADUAAAA2ASs8e2hoZWEAAAfEAAAAIAAAACQHUwNNaG10eAAAB+QAAAAMAAAADAspAABsb2NhAAAH8AAAAAgAAAAIADgAW21heHAAAAf4AAAAIAAAACAApgm8bmFtZQAACBgAAAF3AAACzcydGhxwb3N0AAAJkAAAACoAAAA7rr1AmHByZXAAAAm8AAAAVgAAAFaSoZr/eJxjYGTewTiBgZWBg6mKaQ8DA0MPhGZ8wGDIyMTAwMTAysyAFQSkuaYwOLxgeMHIHPQ/iyGKmZvBHyjMCJIDAPe9C2B4nGNgYGBmgGAZBkYGEHAB8hjBfBYGDSDNBqQZGZgYGF4w/v8PUvCCAURLMELVAwEjG8OIBwBk5AavAAB4nGNgQANGDEbM3P83gjAAELQD4XicnVXZdtNWFJU8ZHASOmSgoA7X3DhQ68qEKRgwaSrFdiEdHAitBB2kDHTkncc+62uOQrtWH/m07n09JLR0rbYsls++R1tn2DrnRhwjKn0aiGvUoZKXA6msPZZK90lc13Uvj5UMBnFdthJPSZuonSRKat3sUC7xWOsqWSdYJ+PlIFZPVZ5noAziFB5lSUQbRBuplyZJ4onjJ4kWZxAfJUkgJaMQp9LIUEI1GsRS1aFM6dCr1xNx00DKRqMedVhU90PFJ8c1p9SsA0YqVznCFevVRr4bpwMve5DEOsGzrYcxHnisfpQqkIqR6cg/dkpOlIaBVHHUoVbi6DCTX/eRTCrNQKaMYkWl7oG43f102xYxPXQ6vi5KlUaqurnOKJrt0fGogygP2cbppNzQ2fbw5RlTVKtdcbPtQGYNXErJbHSfRAAdJlLj6QFONZwCqRn1R8XZ588BEslclKo8VTKHegOZMzt7cTHtbiersnCknwcyb3Z2452HQ6dXh3/R+hdM4cxHj+Jifj5C+lBqfiJOJKVGWMzyp4YfcVcgQrkxiAsXyuBThDl0RdrZZl3jtTH2hs/5SqlhPQna6KP4fgr9TiQrHGdRo/VInM1j13Wt3GdQS7W7Fzsyr0OVIu7vCwuuM+eEYZ4WC1VfnvneBTT/Bohn/EDeNIVL+5YpSrRvm6JMu2iKCu0SVKVdNsUU7YoppmnPmmKG9h1TzNKeMzLj/8vc55H7HN7xkJv2XeSmfQ+5ad9HbtoPkJtWITdtHblpLyA3rUZu2lWjOnYEGgZpF1IVQdA0svph3Fab9UDWjDR8aWDyLmLI+upER521tcofxX914gsHcmmip7siF5viLq/bFj483e6rj5pG3bDV+MaR8jAeRnocmtBZ+c3hv+1N3S6a7jKqMugBFUwKwABl7UAC0zrbCaT1mqf48gdgXIZ4zkpDtVSfO4am7+V5X/exOfG+x+3GLrdcd3kJWdYNcmP28N9SZKrrH+UtrVQnR6wrJ49VaxhDKrwour6SlHu0tRu/KKmy8l6U1srnk5CbPYMbQlu27mGwI0xpyiUeXlOlKD3UUo6yQyxvKco84JSLC1qGxLgOdQ9qa8TpoXoYGwshhqG0vRBwSCldFd+0ynfxHqtr2Oj4xRXh6XpyEhGf4ir7UfBU10b96A7avGbdMoMpVaqn+4xPsa/b9lFZaaSOsxe3VAfXNOsaORXTT+Rr4HRvOGjdAz1UfDRBI1U1x+jGKGM0ljXl3wR0MVZ+w2jVYvs93E+dpFWsuUuY7JsT9+C0u/0q+7WcW0bW/dcGvW3kip8jMb8tCvw7B2K3ZA3UO5OBGAvIWdAYxhYmdxiug23EbfY/Jqf/34aFRXJXOxq7eerD1ZNRJXfZ8rjLTXZZ16M2R9VOGvsIjS0PN+bY4XIstsRgQbb+wf8x7gF3aVEC4NDIZZiI2nShnurh6h6rsW04VxIBds2x43QAegAuQd8cu9bzCYD13CPnLsB9cgh2yCH4lByCz8i5BfA5OQRfkEMwIIdgl5w7AA/IIXhIDsEeOQSPyNkE+JIcgq/IIYjJIUjIuQ3wmByCJ+QQfE0OwTdGrk5k/pYH2QD6zqKbQKmdGhzaOGRGrk3Y+zxY9oFFZB9aROqRkesT6lMeLPV7i0j9wSJSfzRyY0L9iQdL/dkiUn+xiNRnxpeZIymvDp7zjg7+BJfqrV4AAAAAAQAB//8AD3icY2BkAALmJUwzGEQZZBwk+RkZGBmdGJgYmbIYgMwsoGSiiLgIs5A2owg7I5uSOqOaiT2jmZE8I5gQY17C/09BQEfg3yt+fh8gvYQxD0j68DOJiQn8U+DnZxQDcQUEljLmCwBpBgbG/3//b2SOZ+Zm4GEQcuAH2sblDLSEm8FFVJhJEGgLH6OSHpMdo5EcI3Nk0bEXJ/LYqvZ82VXHGFd6pKTkyCsQwQAAq+QkqAAAeJxjYGRgYADiw5VSsfH8Nl8ZuJlfAEUYzpvO6IXQCb7///7fyLyEmRvI5WBgAokCAFb/DJAAAAB4nGNgZGBgDvqfxRDF/IKB4f935iUMQBEUwAwAi5YFpgPoAAAD6AAAA1kAAAAAAAAAOABbAAEAAAADABYAAQAAAAAAAgAGABMAbgAAAC0JkQAAAAB4nHWQy2rCQBSG//HSi0JbWui2sypKabxgN4IgWHTTbqS4LTHGJBIzMhkFX6Pv0IfpS/RZ+puMpShNmMx3vjlz5mQAXOMbAvnzxJGzwBmjnAs4Rc9ykf7Zcon8YrmMKt4sn9C/W67gAYHlKm7wwQqidM5ogU/LAlfi0nIBF+LOcpH+0XKJ3LNcxq14tXxC71muYCJSy1Xci6+BWm11FIRG1gZ12W62OnK6lYoqStxYumsTKp3KvpyrxPhxrBxPLfc89oN17Op9uJ8nvk4jlciW09yrkZ/42jX+bFc93QRtY+ZyrtVSDm2GXGm18D3jhMasuo3G3/MwgMIKW2hEvKoQBhI12jrnNppooUOaMkMyM8+KkMBFTONizR1htpIy7nPMGSW0PjNisgOP3+WRH5MC7o9ZRR+tHsYT0u6MKPOSfTns7jBrREqyTDezs9/eU2x4WpvWcNeuS511JTE8qCF5H7u1BY1H72S3Ymi7aPD95/9+AN1fhEsAeJxjYGKAAC4G7ICZgYGRiZGZMzkjNTk7N7Eomy05syg5J5WBAQBE1QZBAABLuADIUlixAQGOWbkIAAgAYyCwASNEsAMjcLIEKAlFUkSyCgIHKrEGAUSxJAGIUViwQIhYsQYDRLEmAYhRWLgEAIhYsQYBRFlZWVm4Af+FsASNsQUARAAA) format('woff')}.ui.ordered.steps .step.completed:before,.ui.steps .step.completed>.icon:before{font-family:Step;content:'\e800'}
\ No newline at end of file
diff --git a/src-angular/assets/semantic/dist/components/sticky.css b/src-angular/assets/semantic/dist/components/sticky.css
deleted file mode 100644
index fcca4b0..0000000
--- a/src-angular/assets/semantic/dist/components/sticky.css
+++ /dev/null
@@ -1,78 +0,0 @@
-/*!
- * # Fomantic-UI - Sticky
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-
-/*******************************
- Sticky
-*******************************/
-
-.ui.sticky {
- position: static;
- -webkit-transition: none;
- transition: none;
- z-index: 800;
-}
-
-
-/*******************************
- States
-*******************************/
-
-
-/* Bound */
-.ui.sticky.bound {
- position: absolute;
- left: auto;
- right: auto;
-}
-
-/* Fixed */
-.ui.sticky.fixed {
- position: fixed;
- left: auto;
- right: auto;
-}
-
-/* Bound/Fixed Position */
-.ui.sticky.bound.top,
-.ui.sticky.fixed.top {
- top: 0;
- bottom: auto;
-}
-.ui.sticky.bound.bottom,
-.ui.sticky.fixed.bottom {
- top: auto;
- bottom: 0;
-}
-
-
-/*******************************
- Types
-*******************************/
-
-.ui.native.sticky {
- position: -webkit-sticky;
- position: -moz-sticky;
- position: -ms-sticky;
- position: -o-sticky;
- position: sticky;
-}
-
-
-/*******************************
- Theme Overrides
-*******************************/
-
-
-
-/*******************************
- Site Overrides
-*******************************/
-
diff --git a/src-angular/assets/semantic/dist/components/sticky.js b/src-angular/assets/semantic/dist/components/sticky.js
deleted file mode 100644
index 561213f..0000000
--- a/src-angular/assets/semantic/dist/components/sticky.js
+++ /dev/null
@@ -1,957 +0,0 @@
-/*!
- * # Fomantic-UI - Sticky
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-;(function ($, window, document, undefined) {
-
-'use strict';
-
-$.isFunction = $.isFunction || function(obj) {
- return typeof obj === "function" && typeof obj.nodeType !== "number";
-};
-
-window = (typeof window != 'undefined' && window.Math == Math)
- ? window
- : (typeof self != 'undefined' && self.Math == Math)
- ? self
- : Function('return this')()
-;
-
-$.fn.sticky = function(parameters) {
- var
- $allModules = $(this),
- moduleSelector = $allModules.selector || '',
-
- time = new Date().getTime(),
- performance = [],
-
- query = arguments[0],
- methodInvoked = (typeof query == 'string'),
- queryArguments = [].slice.call(arguments, 1),
- returnedValue
- ;
-
- $allModules
- .each(function() {
- var
- settings = ( $.isPlainObject(parameters) )
- ? $.extend(true, {}, $.fn.sticky.settings, parameters)
- : $.extend({}, $.fn.sticky.settings),
-
- className = settings.className,
- namespace = settings.namespace,
- error = settings.error,
-
- eventNamespace = '.' + namespace,
- moduleNamespace = 'module-' + namespace,
-
- $module = $(this),
- $window = $(window),
- $scroll = $(settings.scrollContext),
- $container,
- $context,
-
- instance = $module.data(moduleNamespace),
-
- requestAnimationFrame = window.requestAnimationFrame
- || window.mozRequestAnimationFrame
- || window.webkitRequestAnimationFrame
- || window.msRequestAnimationFrame
- || function(callback) { setTimeout(callback, 0); },
-
- element = this,
-
- documentObserver,
- observer,
- module
- ;
-
- module = {
-
- initialize: function() {
-
- module.determineContainer();
- module.determineContext();
- module.verbose('Initializing sticky', settings, $container);
-
- module.save.positions();
- module.checkErrors();
- module.bind.events();
-
- if(settings.observeChanges) {
- module.observeChanges();
- }
- module.instantiate();
- },
-
- instantiate: function() {
- module.verbose('Storing instance of module', module);
- instance = module;
- $module
- .data(moduleNamespace, module)
- ;
- },
-
- destroy: function() {
- module.verbose('Destroying previous instance');
- module.reset();
- if(documentObserver) {
- documentObserver.disconnect();
- }
- if(observer) {
- observer.disconnect();
- }
- $window
- .off('load' + eventNamespace, module.event.load)
- .off('resize' + eventNamespace, module.event.resize)
- ;
- $scroll
- .off('scrollchange' + eventNamespace, module.event.scrollchange)
- ;
- $module.removeData(moduleNamespace);
- },
-
- observeChanges: function() {
- if('MutationObserver' in window) {
- documentObserver = new MutationObserver(module.event.documentChanged);
- observer = new MutationObserver(module.event.changed);
- documentObserver.observe(document, {
- childList : true,
- subtree : true
- });
- observer.observe(element, {
- childList : true,
- subtree : true
- });
- observer.observe($context[0], {
- childList : true,
- subtree : true
- });
- module.debug('Setting up mutation observer', observer);
- }
- },
-
- determineContainer: function() {
- if(settings.container) {
- $container = $(settings.container);
- }
- else {
- $container = $module.offsetParent();
- }
- },
-
- determineContext: function() {
- if(settings.context) {
- $context = $(settings.context);
- }
- else {
- $context = $container;
- }
- if($context.length === 0) {
- module.error(error.invalidContext, settings.context, $module);
- return;
- }
- },
-
- checkErrors: function() {
- if( module.is.hidden() ) {
- module.error(error.visible, $module);
- }
- if(module.cache.element.height > module.cache.context.height) {
- module.reset();
- module.error(error.elementSize, $module);
- return;
- }
- },
-
- bind: {
- events: function() {
- $window
- .on('load' + eventNamespace, module.event.load)
- .on('resize' + eventNamespace, module.event.resize)
- ;
- // pub/sub pattern
- $scroll
- .off('scroll' + eventNamespace)
- .on('scroll' + eventNamespace, module.event.scroll)
- .on('scrollchange' + eventNamespace, module.event.scrollchange)
- ;
- }
- },
-
- event: {
- changed: function(mutations) {
- clearTimeout(module.timer);
- module.timer = setTimeout(function() {
- module.verbose('DOM tree modified, updating sticky menu', mutations);
- module.refresh();
- }, 100);
- },
- documentChanged: function(mutations) {
- [].forEach.call(mutations, function(mutation) {
- if(mutation.removedNodes) {
- [].forEach.call(mutation.removedNodes, function(node) {
- if(node == element || $(node).find(element).length > 0) {
- module.debug('Element removed from DOM, tearing down events');
- module.destroy();
- }
- });
- }
- });
- },
- load: function() {
- module.verbose('Page contents finished loading');
- requestAnimationFrame(module.refresh);
- },
- resize: function() {
- module.verbose('Window resized');
- requestAnimationFrame(module.refresh);
- },
- scroll: function() {
- requestAnimationFrame(function() {
- $scroll.triggerHandler('scrollchange' + eventNamespace, $scroll.scrollTop() );
- });
- },
- scrollchange: function(event, scrollPosition) {
- module.stick(scrollPosition);
- settings.onScroll.call(element);
- }
- },
-
- refresh: function(hardRefresh) {
- module.reset();
- if(!settings.context) {
- module.determineContext();
- }
- if(hardRefresh) {
- module.determineContainer();
- }
- module.save.positions();
- module.stick();
- settings.onReposition.call(element);
- },
-
- supports: {
- sticky: function() {
- var
- $element = $('')
- ;
- $element.addClass(className.supported);
- return($element.css('position').match('sticky'));
- }
- },
-
- save: {
- lastScroll: function(scroll) {
- module.lastScroll = scroll;
- },
- elementScroll: function(scroll) {
- module.elementScroll = scroll;
- },
- positions: function() {
- var
- scrollContext = {
- height : $scroll.height()
- },
- element = {
- margin: {
- top : parseInt($module.css('margin-top'), 10),
- bottom : parseInt($module.css('margin-bottom'), 10),
- },
- offset : $module.offset(),
- width : $module.outerWidth(),
- height : $module.outerHeight()
- },
- context = {
- offset : $context.offset(),
- height : $context.outerHeight()
- }
- ;
- if( !module.is.standardScroll() ) {
- module.debug('Non-standard scroll. Removing scroll offset from element offset');
-
- scrollContext.top = $scroll.scrollTop();
- scrollContext.left = $scroll.scrollLeft();
-
- element.offset.top += scrollContext.top;
- context.offset.top += scrollContext.top;
- element.offset.left += scrollContext.left;
- context.offset.left += scrollContext.left;
- }
- module.cache = {
- fits : ( (element.height + settings.offset) <= scrollContext.height),
- sameHeight : (element.height == context.height),
- scrollContext : {
- height : scrollContext.height
- },
- element: {
- margin : element.margin,
- top : element.offset.top - element.margin.top,
- left : element.offset.left,
- width : element.width,
- height : element.height,
- bottom : element.offset.top + element.height
- },
- context: {
- top : context.offset.top,
- height : context.height,
- bottom : context.offset.top + context.height
- }
- };
- module.set.containerSize();
-
- module.stick();
- module.debug('Caching element positions', module.cache);
- }
- },
-
- get: {
- direction: function(scroll) {
- var
- direction = 'down'
- ;
- scroll = scroll || $scroll.scrollTop();
- if(module.lastScroll !== undefined) {
- if(module.lastScroll < scroll) {
- direction = 'down';
- }
- else if(module.lastScroll > scroll) {
- direction = 'up';
- }
- }
- return direction;
- },
- scrollChange: function(scroll) {
- scroll = scroll || $scroll.scrollTop();
- return (module.lastScroll)
- ? (scroll - module.lastScroll)
- : 0
- ;
- },
- currentElementScroll: function() {
- if(module.elementScroll) {
- return module.elementScroll;
- }
- return ( module.is.top() )
- ? Math.abs(parseInt($module.css('top'), 10)) || 0
- : Math.abs(parseInt($module.css('bottom'), 10)) || 0
- ;
- },
-
- elementScroll: function(scroll) {
- scroll = scroll || $scroll.scrollTop();
- var
- element = module.cache.element,
- scrollContext = module.cache.scrollContext,
- delta = module.get.scrollChange(scroll),
- maxScroll = (element.height - scrollContext.height + settings.offset),
- elementScroll = module.get.currentElementScroll(),
- possibleScroll = (elementScroll + delta)
- ;
- if(module.cache.fits || possibleScroll < 0) {
- elementScroll = 0;
- }
- else if(possibleScroll > maxScroll ) {
- elementScroll = maxScroll;
- }
- else {
- elementScroll = possibleScroll;
- }
- return elementScroll;
- }
- },
-
- remove: {
- lastScroll: function() {
- delete module.lastScroll;
- },
- elementScroll: function(scroll) {
- delete module.elementScroll;
- },
- minimumSize: function() {
- $container
- .css('min-height', '')
- ;
- },
- offset: function() {
- $module.css('margin-top', '');
- }
- },
-
- set: {
- offset: function() {
- module.verbose('Setting offset on element', settings.offset);
- $module
- .css('margin-top', settings.offset)
- ;
- },
- containerSize: function() {
- var
- tagName = $container.get(0).tagName
- ;
- if(tagName === 'HTML' || tagName == 'body') {
- // this can trigger for too many reasons
- //module.error(error.container, tagName, $module);
- module.determineContainer();
- }
- else {
- if( Math.abs($container.outerHeight() - module.cache.context.height) > settings.jitter) {
- module.debug('Context has padding, specifying exact height for container', module.cache.context.height);
- $container.css({
- height: module.cache.context.height
- });
- }
- }
- },
- minimumSize: function() {
- var
- element = module.cache.element
- ;
- $container
- .css('min-height', element.height)
- ;
- },
- scroll: function(scroll) {
- module.debug('Setting scroll on element', scroll);
- if(module.elementScroll == scroll) {
- return;
- }
- if( module.is.top() ) {
- $module
- .css('bottom', '')
- .css('top', -scroll)
- ;
- }
- if( module.is.bottom() ) {
- $module
- .css('top', '')
- .css('bottom', scroll)
- ;
- }
- },
- size: function() {
- if(module.cache.element.height !== 0 && module.cache.element.width !== 0) {
- element.style.setProperty('width', module.cache.element.width + 'px', 'important');
- element.style.setProperty('height', module.cache.element.height + 'px', 'important');
- }
- }
- },
-
- is: {
- standardScroll: function() {
- return ($scroll[0] == window);
- },
- top: function() {
- return $module.hasClass(className.top);
- },
- bottom: function() {
- return $module.hasClass(className.bottom);
- },
- initialPosition: function() {
- return (!module.is.fixed() && !module.is.bound());
- },
- hidden: function() {
- return (!$module.is(':visible'));
- },
- bound: function() {
- return $module.hasClass(className.bound);
- },
- fixed: function() {
- return $module.hasClass(className.fixed);
- }
- },
-
- stick: function(scroll) {
- var
- cachedPosition = scroll || $scroll.scrollTop(),
- cache = module.cache,
- fits = cache.fits,
- sameHeight = cache.sameHeight,
- element = cache.element,
- scrollContext = cache.scrollContext,
- context = cache.context,
- offset = (module.is.bottom() && settings.pushing)
- ? settings.bottomOffset
- : settings.offset,
- scroll = {
- top : cachedPosition + offset,
- bottom : cachedPosition + offset + scrollContext.height
- },
- elementScroll = (fits)
- ? 0
- : module.get.elementScroll(scroll.top),
-
- // shorthand
- doesntFit = !fits,
- elementVisible = (element.height !== 0)
- ;
- if(elementVisible && !sameHeight) {
-
- if( module.is.initialPosition() ) {
- if(scroll.top >= context.bottom) {
- module.debug('Initial element position is bottom of container');
- module.bindBottom();
- }
- else if(scroll.top > element.top) {
- if( (element.height + scroll.top - elementScroll) >= context.bottom ) {
- module.debug('Initial element position is bottom of container');
- module.bindBottom();
- }
- else {
- module.debug('Initial element position is fixed');
- module.fixTop();
- }
- }
-
- }
- else if( module.is.fixed() ) {
-
- // currently fixed top
- if( module.is.top() ) {
- if( scroll.top <= element.top ) {
- module.debug('Fixed element reached top of container');
- module.setInitialPosition();
- }
- else if( (element.height + scroll.top - elementScroll) >= context.bottom ) {
- module.debug('Fixed element reached bottom of container');
- module.bindBottom();
- }
- // scroll element if larger than screen
- else if(doesntFit) {
- module.set.scroll(elementScroll);
- module.save.lastScroll(scroll.top);
- module.save.elementScroll(elementScroll);
- }
- }
-
- // currently fixed bottom
- else if(module.is.bottom() ) {
-
- // top edge
- if( (scroll.bottom - element.height) <= element.top) {
- module.debug('Bottom fixed rail has reached top of container');
- module.setInitialPosition();
- }
- // bottom edge
- else if(scroll.bottom >= context.bottom) {
- module.debug('Bottom fixed rail has reached bottom of container');
- module.bindBottom();
- }
- // scroll element if larger than screen
- else if(doesntFit) {
- module.set.scroll(elementScroll);
- module.save.lastScroll(scroll.top);
- module.save.elementScroll(elementScroll);
- }
-
- }
- }
- else if( module.is.bottom() ) {
- if( scroll.top <= element.top ) {
- module.debug('Jumped from bottom fixed to top fixed, most likely used home/end button');
- module.setInitialPosition();
- }
- else {
- if(settings.pushing) {
- if(module.is.bound() && scroll.bottom <= context.bottom ) {
- module.debug('Fixing bottom attached element to bottom of browser.');
- module.fixBottom();
- }
- }
- else {
- if(module.is.bound() && (scroll.top <= context.bottom - element.height) ) {
- module.debug('Fixing bottom attached element to top of browser.');
- module.fixTop();
- }
- }
- }
- }
- }
- },
-
- bindTop: function() {
- module.debug('Binding element to top of parent container');
- module.remove.offset();
- $module
- .css({
- left : '',
- top : '',
- marginBottom : ''
- })
- .removeClass(className.fixed)
- .removeClass(className.bottom)
- .addClass(className.bound)
- .addClass(className.top)
- ;
- settings.onTop.call(element);
- settings.onUnstick.call(element);
- },
- bindBottom: function() {
- module.debug('Binding element to bottom of parent container');
- module.remove.offset();
- $module
- .css({
- left : '',
- top : ''
- })
- .removeClass(className.fixed)
- .removeClass(className.top)
- .addClass(className.bound)
- .addClass(className.bottom)
- ;
- settings.onBottom.call(element);
- settings.onUnstick.call(element);
- },
-
- setInitialPosition: function() {
- module.debug('Returning to initial position');
- module.unfix();
- module.unbind();
- },
-
-
- fixTop: function() {
- module.debug('Fixing element to top of page');
- if(settings.setSize) {
- module.set.size();
- }
- module.set.minimumSize();
- module.set.offset();
- $module
- .css({
- left : module.cache.element.left,
- bottom : '',
- marginBottom : ''
- })
- .removeClass(className.bound)
- .removeClass(className.bottom)
- .addClass(className.fixed)
- .addClass(className.top)
- ;
- settings.onStick.call(element);
- },
-
- fixBottom: function() {
- module.debug('Sticking element to bottom of page');
- if(settings.setSize) {
- module.set.size();
- }
- module.set.minimumSize();
- module.set.offset();
- $module
- .css({
- left : module.cache.element.left,
- bottom : '',
- marginBottom : ''
- })
- .removeClass(className.bound)
- .removeClass(className.top)
- .addClass(className.fixed)
- .addClass(className.bottom)
- ;
- settings.onStick.call(element);
- },
-
- unbind: function() {
- if( module.is.bound() ) {
- module.debug('Removing container bound position on element');
- module.remove.offset();
- $module
- .removeClass(className.bound)
- .removeClass(className.top)
- .removeClass(className.bottom)
- ;
- }
- },
-
- unfix: function() {
- if( module.is.fixed() ) {
- module.debug('Removing fixed position on element');
- module.remove.minimumSize();
- module.remove.offset();
- $module
- .removeClass(className.fixed)
- .removeClass(className.top)
- .removeClass(className.bottom)
- ;
- settings.onUnstick.call(element);
- }
- },
-
- reset: function() {
- module.debug('Resetting elements position');
- module.unbind();
- module.unfix();
- module.resetCSS();
- module.remove.offset();
- module.remove.lastScroll();
- },
-
- resetCSS: function() {
- $module
- .css({
- width : '',
- height : ''
- })
- ;
- $container
- .css({
- height: ''
- })
- ;
- },
-
- setting: function(name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, settings, name);
- }
- else if(value !== undefined) {
- settings[name] = value;
- }
- else {
- return settings[name];
- }
- },
- internal: function(name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, module, name);
- }
- else if(value !== undefined) {
- module[name] = value;
- }
- else {
- return module[name];
- }
- },
- debug: function() {
- if(!settings.silent && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.debug.apply(console, arguments);
- }
- }
- },
- verbose: function() {
- if(!settings.silent && settings.verbose && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.verbose.apply(console, arguments);
- }
- }
- },
- error: function() {
- if(!settings.silent) {
- module.error = Function.prototype.bind.call(console.error, console, settings.name + ':');
- module.error.apply(console, arguments);
- }
- },
- performance: {
- log: function(message) {
- var
- currentTime,
- executionTime,
- previousTime
- ;
- if(settings.performance) {
- currentTime = new Date().getTime();
- previousTime = time || currentTime;
- executionTime = currentTime - previousTime;
- time = currentTime;
- performance.push({
- 'Name' : message[0],
- 'Arguments' : [].slice.call(message, 1) || '',
- 'Element' : element,
- 'Execution Time' : executionTime
- });
- }
- clearTimeout(module.performance.timer);
- module.performance.timer = setTimeout(module.performance.display, 0);
- },
- display: function() {
- var
- title = settings.name + ':',
- totalTime = 0
- ;
- time = false;
- clearTimeout(module.performance.timer);
- $.each(performance, function(index, data) {
- totalTime += data['Execution Time'];
- });
- title += ' ' + totalTime + 'ms';
- if(moduleSelector) {
- title += ' \'' + moduleSelector + '\'';
- }
- if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) {
- console.groupCollapsed(title);
- if(console.table) {
- console.table(performance);
- }
- else {
- $.each(performance, function(index, data) {
- console.log(data['Name'] + ': ' + data['Execution Time']+'ms');
- });
- }
- console.groupEnd();
- }
- performance = [];
- }
- },
- invoke: function(query, passedArguments, context) {
- var
- object = instance,
- maxDepth,
- found,
- response
- ;
- passedArguments = passedArguments || queryArguments;
- context = element || context;
- if(typeof query == 'string' && object !== undefined) {
- query = query.split(/[\. ]/);
- maxDepth = query.length - 1;
- $.each(query, function(depth, value) {
- var camelCaseValue = (depth != maxDepth)
- ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
- : query
- ;
- if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
- object = object[camelCaseValue];
- }
- else if( object[camelCaseValue] !== undefined ) {
- found = object[camelCaseValue];
- return false;
- }
- else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
- object = object[value];
- }
- else if( object[value] !== undefined ) {
- found = object[value];
- return false;
- }
- else {
- return false;
- }
- });
- }
- if ( $.isFunction( found ) ) {
- response = found.apply(context, passedArguments);
- }
- else if(found !== undefined) {
- response = found;
- }
- if(Array.isArray(returnedValue)) {
- returnedValue.push(response);
- }
- else if(returnedValue !== undefined) {
- returnedValue = [returnedValue, response];
- }
- else if(response !== undefined) {
- returnedValue = response;
- }
- return found;
- }
- };
-
- if(methodInvoked) {
- if(instance === undefined) {
- module.initialize();
- }
- module.invoke(query);
- }
- else {
- if(instance !== undefined) {
- instance.invoke('destroy');
- }
- module.initialize();
- }
- })
- ;
-
- return (returnedValue !== undefined)
- ? returnedValue
- : this
- ;
-};
-
-$.fn.sticky.settings = {
-
- name : 'Sticky',
- namespace : 'sticky',
-
- silent : false,
- debug : false,
- verbose : true,
- performance : true,
-
- // whether to stick in the opposite direction on scroll up
- pushing : false,
-
- context : false,
- container : false,
-
- // Context to watch scroll events
- scrollContext : window,
-
- // Offset to adjust scroll
- offset : 0,
-
- // Offset to adjust scroll when attached to bottom of screen
- bottomOffset : 0,
-
- // will only set container height if difference between context and container is larger than this number
- jitter : 5,
-
- // set width of sticky element when it is fixed to page (used to make sure 100% width is maintained if no fixed size set)
- setSize : true,
-
- // Whether to automatically observe changes with Mutation Observers
- observeChanges : false,
-
- // Called when position is recalculated
- onReposition : function(){},
-
- // Called on each scroll
- onScroll : function(){},
-
- // Called when element is stuck to viewport
- onStick : function(){},
-
- // Called when element is unstuck from viewport
- onUnstick : function(){},
-
- // Called when element reaches top of context
- onTop : function(){},
-
- // Called when element reaches bottom of context
- onBottom : function(){},
-
- error : {
- container : 'Sticky element must be inside a relative container',
- visible : 'Element is hidden, you must call refresh after element becomes visible. Use silent setting to surpress this warning in production.',
- method : 'The method you called is not defined.',
- invalidContext : 'Context specified does not exist',
- elementSize : 'Sticky element is larger than its container, cannot create sticky.'
- },
-
- className : {
- bound : 'bound',
- fixed : 'fixed',
- supported : 'native',
- top : 'top',
- bottom : 'bottom'
- }
-
-};
-
-})( jQuery, window, document );
diff --git a/src-angular/assets/semantic/dist/components/sticky.min.css b/src-angular/assets/semantic/dist/components/sticky.min.css
deleted file mode 100644
index 188ec1e..0000000
--- a/src-angular/assets/semantic/dist/components/sticky.min.css
+++ /dev/null
@@ -1,9 +0,0 @@
-/*!
- * # Fomantic-UI - Sticky
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */.ui.sticky{position:static;-webkit-transition:none;transition:none;z-index:800}.ui.sticky.bound{position:absolute;left:auto;right:auto}.ui.sticky.fixed{position:fixed;left:auto;right:auto}.ui.sticky.bound.top,.ui.sticky.fixed.top{top:0;bottom:auto}.ui.sticky.bound.bottom,.ui.sticky.fixed.bottom{top:auto;bottom:0}.ui.native.sticky{position:-webkit-sticky;position:-moz-sticky;position:-ms-sticky;position:-o-sticky;position:sticky}
\ No newline at end of file
diff --git a/src-angular/assets/semantic/dist/components/sticky.min.js b/src-angular/assets/semantic/dist/components/sticky.min.js
deleted file mode 100644
index 0df0387..0000000
--- a/src-angular/assets/semantic/dist/components/sticky.min.js
+++ /dev/null
@@ -1,11 +0,0 @@
- /*
- * # Fomantic UI - 2.8.3
- * https://github.com/fomantic/Fomantic-UI
- * http://fomantic-ui.com/
- *
- * Copyright 2014 Contributors
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-!function(T,w,B,F){"use strict";T.isFunction=T.isFunction||function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},w=void 0!==w&&w.Math==Math?w:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")(),T.fn.sticky=function(b){var v,e=T(this),x=e.selector||"",C=(new Date).getTime(),S=[],y=b,k="string"==typeof y,z=[].slice.call(arguments,1);return e.each(function(){var t,n,e,o,m,u=T.isPlainObject(b)?T.extend(!0,{},T.fn.sticky.settings,b):T.extend({},T.fn.sticky.settings),i=u.className,s=u.namespace,r=u.error,c="."+s,l="module-"+s,a=T(this),f=T(w),d=T(u.scrollContext),h=a.data(l),g=w.requestAnimationFrame||w.mozRequestAnimationFrame||w.webkitRequestAnimationFrame||w.msRequestAnimationFrame||function(e){setTimeout(e,0)},p=this;m={initialize:function(){m.determineContainer(),m.determineContext(),m.verbose("Initializing sticky",u,t),m.save.positions(),m.checkErrors(),m.bind.events(),u.observeChanges&&m.observeChanges(),m.instantiate()},instantiate:function(){m.verbose("Storing instance of module",m),h=m,a.data(l,m)},destroy:function(){m.verbose("Destroying previous instance"),m.reset(),e&&e.disconnect(),o&&o.disconnect(),f.off("load"+c,m.event.load).off("resize"+c,m.event.resize),d.off("scrollchange"+c,m.event.scrollchange),a.removeData(l)},observeChanges:function(){"MutationObserver"in w&&(e=new MutationObserver(m.event.documentChanged),o=new MutationObserver(m.event.changed),e.observe(B,{childList:!0,subtree:!0}),o.observe(p,{childList:!0,subtree:!0}),o.observe(n[0],{childList:!0,subtree:!0}),m.debug("Setting up mutation observer",o))},determineContainer:function(){t=u.container?T(u.container):a.offsetParent()},determineContext:function(){0!==(n=u.context?T(u.context):t).length||m.error(r.invalidContext,u.context,a)},checkErrors:function(){if(m.is.hidden()&&m.error(r.visible,a),m.cache.element.height>m.cache.context.height)return m.reset(),void m.error(r.elementSize,a)},bind:{events:function(){f.on("load"+c,m.event.load).on("resize"+c,m.event.resize),d.off("scroll"+c).on("scroll"+c,m.event.scroll).on("scrollchange"+c,m.event.scrollchange)}},event:{changed:function(e){clearTimeout(m.timer),m.timer=setTimeout(function(){m.verbose("DOM tree modified, updating sticky menu",e),m.refresh()},100)},documentChanged:function(e){[].forEach.call(e,function(e){e.removedNodes&&[].forEach.call(e.removedNodes,function(e){(e==p||0");return e.addClass(i.supported),e.css("position").match("sticky")}},save:{lastScroll:function(e){m.lastScroll=e},elementScroll:function(e){m.elementScroll=e},positions:function(){var e={height:d.height()},t={margin:{top:parseInt(a.css("margin-top"),10),bottom:parseInt(a.css("margin-bottom"),10)},offset:a.offset(),width:a.outerWidth(),height:a.outerHeight()},o={offset:n.offset(),height:n.outerHeight()};m.is.standardScroll()||(m.debug("Non-standard scroll. Removing scroll offset from element offset"),e.top=d.scrollTop(),e.left=d.scrollLeft(),t.offset.top+=e.top,o.offset.top+=e.top,t.offset.left+=e.left,o.offset.left+=e.left),m.cache={fits:t.height+u.offset<=e.height,sameHeight:t.height==o.height,scrollContext:{height:e.height},element:{margin:t.margin,top:t.offset.top-t.margin.top,left:t.offset.left,width:t.width,height:t.height,bottom:t.offset.top+t.height},context:{top:o.offset.top,height:o.height,bottom:o.offset.top+o.height}},m.set.containerSize(),m.stick(),m.debug("Caching element positions",m.cache)}},get:{direction:function(e){var t="down";return e=e||d.scrollTop(),m.lastScroll!==F&&(m.lastScrolle&&(t="up")),t},scrollChange:function(e){return e=e||d.scrollTop(),m.lastScroll?e-m.lastScroll:0},currentElementScroll:function(){return m.elementScroll?m.elementScroll:m.is.top()?Math.abs(parseInt(a.css("top"),10))||0:Math.abs(parseInt(a.css("bottom"),10))||0},elementScroll:function(e){e=e||d.scrollTop();var t=m.cache.element,o=m.cache.scrollContext,n=m.get.scrollChange(e),i=t.height-o.height+u.offset,s=m.get.currentElementScroll(),r=s+n;return s=m.cache.fits||r<0?0:iu.jitter&&(m.debug("Context has padding, specifying exact height for container",m.cache.context.height),t.css({height:m.cache.context.height}))},minimumSize:function(){var e=m.cache.element;t.css("min-height",e.height)},scroll:function(e){m.debug("Setting scroll on element",e),m.elementScroll!=e&&(m.is.top()&&a.css("bottom","").css("top",-e),m.is.bottom()&&a.css("top","").css("bottom",e))},size:function(){0!==m.cache.element.height&&0!==m.cache.element.width&&(p.style.setProperty("width",m.cache.element.width+"px","important"),p.style.setProperty("height",m.cache.element.height+"px","important"))}},is:{standardScroll:function(){return d[0]==w},top:function(){return a.hasClass(i.top)},bottom:function(){return a.hasClass(i.bottom)},initialPosition:function(){return!m.is.fixed()&&!m.is.bound()},hidden:function(){return!a.is(":visible")},bound:function(){return a.hasClass(i.bound)},fixed:function(){return a.hasClass(i.fixed)}},stick:function(e){var t=e||d.scrollTop(),o=m.cache,n=o.fits,i=o.sameHeight,s=o.element,r=o.scrollContext,c=o.context,l=m.is.bottom()&&u.pushing?u.bottomOffset:u.offset,a=(e={top:t+l,bottom:t+l+r.height},n?0:m.get.elementScroll(e.top)),f=!n;0===s.height||i||(m.is.initialPosition()?e.top>=c.bottom?(m.debug("Initial element position is bottom of container"),m.bindBottom()):e.top>s.top&&(s.height+e.top-a>=c.bottom?(m.debug("Initial element position is bottom of container"),m.bindBottom()):(m.debug("Initial element position is fixed"),m.fixTop())):m.is.fixed()?m.is.top()?e.top<=s.top?(m.debug("Fixed element reached top of container"),m.setInitialPosition()):s.height+e.top-a>=c.bottom?(m.debug("Fixed element reached bottom of container"),m.bindBottom()):f&&(m.set.scroll(a),m.save.lastScroll(e.top),m.save.elementScroll(a)):m.is.bottom()&&(e.bottom-s.height<=s.top?(m.debug("Bottom fixed rail has reached top of container"),m.setInitialPosition()):e.bottom>=c.bottom?(m.debug("Bottom fixed rail has reached bottom of container"),m.bindBottom()):f&&(m.set.scroll(a),m.save.lastScroll(e.top),m.save.elementScroll(a))):m.is.bottom()&&(e.top<=s.top?(m.debug("Jumped from bottom fixed to top fixed, most likely used home/end button"),m.setInitialPosition()):u.pushing?m.is.bound()&&e.bottom<=c.bottom&&(m.debug("Fixing bottom attached element to bottom of browser."),m.fixBottom()):m.is.bound()&&e.top<=c.bottom-s.height&&(m.debug("Fixing bottom attached element to top of browser."),m.fixTop())))},bindTop:function(){m.debug("Binding element to top of parent container"),m.remove.offset(),a.css({left:"",top:"",marginBottom:""}).removeClass(i.fixed).removeClass(i.bottom).addClass(i.bound).addClass(i.top),u.onTop.call(p),u.onUnstick.call(p)},bindBottom:function(){m.debug("Binding element to bottom of parent container"),m.remove.offset(),a.css({left:"",top:""}).removeClass(i.fixed).removeClass(i.top).addClass(i.bound).addClass(i.bottom),u.onBottom.call(p),u.onUnstick.call(p)},setInitialPosition:function(){m.debug("Returning to initial position"),m.unfix(),m.unbind()},fixTop:function(){m.debug("Fixing element to top of page"),u.setSize&&m.set.size(),m.set.minimumSize(),m.set.offset(),a.css({left:m.cache.element.left,bottom:"",marginBottom:""}).removeClass(i.bound).removeClass(i.bottom).addClass(i.fixed).addClass(i.top),u.onStick.call(p)},fixBottom:function(){m.debug("Sticking element to bottom of page"),u.setSize&&m.set.size(),m.set.minimumSize(),m.set.offset(),a.css({left:m.cache.element.left,bottom:"",marginBottom:""}).removeClass(i.bound).removeClass(i.top).addClass(i.fixed).addClass(i.bottom),u.onStick.call(p)},unbind:function(){m.is.bound()&&(m.debug("Removing container bound position on element"),m.remove.offset(),a.removeClass(i.bound).removeClass(i.top).removeClass(i.bottom))},unfix:function(){m.is.fixed()&&(m.debug("Removing fixed position on element"),m.remove.minimumSize(),m.remove.offset(),a.removeClass(i.fixed).removeClass(i.top).removeClass(i.bottom),u.onUnstick.call(p))},reset:function(){m.debug("Resetting elements position"),m.unbind(),m.unfix(),m.resetCSS(),m.remove.offset(),m.remove.lastScroll()},resetCSS:function(){a.css({width:"",height:""}),t.css({height:""})},setting:function(e,t){if(T.isPlainObject(e))T.extend(!0,u,e);else{if(t===F)return u[e];u[e]=t}},internal:function(e,t){if(T.isPlainObject(e))T.extend(!0,m,e);else{if(t===F)return m[e];m[e]=t}},debug:function(){!u.silent&&u.debug&&(u.performance?m.performance.log(arguments):(m.debug=Function.prototype.bind.call(console.info,console,u.name+":"),m.debug.apply(console,arguments)))},verbose:function(){!u.silent&&u.verbose&&u.debug&&(u.performance?m.performance.log(arguments):(m.verbose=Function.prototype.bind.call(console.info,console,u.name+":"),m.verbose.apply(console,arguments)))},error:function(){u.silent||(m.error=Function.prototype.bind.call(console.error,console,u.name+":"),m.error.apply(console,arguments))},performance:{log:function(e){var t,o;u.performance&&(o=(t=(new Date).getTime())-(C||t),C=t,S.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:p,"Execution Time":o})),clearTimeout(m.performance.timer),m.performance.timer=setTimeout(m.performance.display,0)},display:function(){var e=u.name+":",o=0;C=!1,clearTimeout(m.performance.timer),T.each(S,function(e,t){o+=t["Execution Time"]}),e+=" "+o+"ms",x&&(e+=" '"+x+"'"),(console.group!==F||console.table!==F)&&0 0) {
- $reference = $module.closest(selector.ui);
- module.verbose('Using closest UI element as parent', $reference);
- }
- else {
- $reference = $module;
- }
- $context = $reference.parent();
- module.verbose('Determined parent element for creating context', $context);
- }
- else if(settings.context) {
- $context = $(settings.context);
- module.verbose('Using selector for tab context', settings.context, $context);
- }
- else {
- $context = $('body');
- }
- // find tabs
- if(settings.childrenOnly) {
- $tabs = $context.children(selector.tabs);
- module.debug('Searching tab context children for tabs', $context, $tabs);
- }
- else {
- $tabs = $context.find(selector.tabs);
- module.debug('Searching tab context for tabs', $context, $tabs);
- }
- },
-
- fix: {
- callbacks: function() {
- if( $.isPlainObject(parameters) && (parameters.onTabLoad || parameters.onTabInit) ) {
- if(parameters.onTabLoad) {
- parameters.onLoad = parameters.onTabLoad;
- delete parameters.onTabLoad;
- module.error(error.legacyLoad, parameters.onLoad);
- }
- if(parameters.onTabInit) {
- parameters.onFirstLoad = parameters.onTabInit;
- delete parameters.onTabInit;
- module.error(error.legacyInit, parameters.onFirstLoad);
- }
- settings = $.extend(true, {}, $.fn.tab.settings, parameters);
- }
- }
- },
-
- initializeHistory: function() {
- module.debug('Initializing page state');
- if( $.address === undefined ) {
- module.error(error.state);
- return false;
- }
- else {
- if(settings.historyType == 'state') {
- module.debug('Using HTML5 to manage state');
- if(settings.path !== false) {
- $.address
- .history(true)
- .state(settings.path)
- ;
- }
- else {
- module.error(error.path);
- return false;
- }
- }
- $.address
- .bind('change', module.event.history.change)
- ;
- }
- },
-
- event: {
- click: function(event) {
- var
- tabPath = $(this).data(metadata.tab)
- ;
- if(tabPath !== undefined) {
- if(settings.history) {
- module.verbose('Updating page state', event);
- $.address.value(tabPath);
- }
- else {
- module.verbose('Changing tab', event);
- module.changeTab(tabPath);
- }
- event.preventDefault();
- }
- else {
- module.debug('No tab specified');
- }
- },
- history: {
- change: function(event) {
- var
- tabPath = event.pathNames.join('/') || module.get.initialPath(),
- pageTitle = settings.templates.determineTitle(tabPath) || false
- ;
- module.performance.display();
- module.debug('History change event', tabPath, event);
- historyEvent = event;
- if(tabPath !== undefined) {
- module.changeTab(tabPath);
- }
- if(pageTitle) {
- $.address.title(pageTitle);
- }
- }
- }
- },
-
- refresh: function() {
- if(activeTabPath) {
- module.debug('Refreshing tab', activeTabPath);
- module.changeTab(activeTabPath);
- }
- },
-
- cache: {
-
- read: function(cacheKey) {
- return (cacheKey !== undefined)
- ? cache[cacheKey]
- : false
- ;
- },
- add: function(cacheKey, content) {
- cacheKey = cacheKey || activeTabPath;
- module.debug('Adding cached content for', cacheKey);
- cache[cacheKey] = content;
- },
- remove: function(cacheKey) {
- cacheKey = cacheKey || activeTabPath;
- module.debug('Removing cached content for', cacheKey);
- delete cache[cacheKey];
- }
- },
-
- escape: {
- string: function(text) {
- text = String(text);
- return text.replace(regExp.escape, '\\$&');
- }
- },
-
- set: {
- auto: function() {
- var
- url = (typeof settings.path == 'string')
- ? settings.path.replace(/\/$/, '') + '/{$tab}'
- : '/{$tab}'
- ;
- module.verbose('Setting up automatic tab retrieval from server', url);
- if($.isPlainObject(settings.apiSettings)) {
- settings.apiSettings.url = url;
- }
- else {
- settings.apiSettings = {
- url: url
- };
- }
- },
- loading: function(tabPath) {
- var
- $tab = module.get.tabElement(tabPath),
- isLoading = $tab.hasClass(className.loading)
- ;
- if(!isLoading) {
- module.verbose('Setting loading state for', $tab);
- $tab
- .addClass(className.loading)
- .siblings($tabs)
- .removeClass(className.active + ' ' + className.loading)
- ;
- if($tab.length > 0) {
- settings.onRequest.call($tab[0], tabPath);
- }
- }
- },
- state: function(state) {
- $.address.value(state);
- }
- },
-
- changeTab: function(tabPath) {
- var
- pushStateAvailable = (window.history && window.history.pushState),
- shouldIgnoreLoad = (pushStateAvailable && settings.ignoreFirstLoad && firstLoad),
- remoteContent = (settings.auto || $.isPlainObject(settings.apiSettings) ),
- // only add default path if not remote content
- pathArray = (remoteContent && !shouldIgnoreLoad)
- ? module.utilities.pathToArray(tabPath)
- : module.get.defaultPathArray(tabPath)
- ;
- tabPath = module.utilities.arrayToPath(pathArray);
- $.each(pathArray, function(index, tab) {
- var
- currentPathArray = pathArray.slice(0, index + 1),
- currentPath = module.utilities.arrayToPath(currentPathArray),
-
- isTab = module.is.tab(currentPath),
- isLastIndex = (index + 1 == pathArray.length),
-
- $tab = module.get.tabElement(currentPath),
- $anchor,
- nextPathArray,
- nextPath,
- isLastTab
- ;
- module.verbose('Looking for tab', tab);
- if(isTab) {
- module.verbose('Tab was found', tab);
- // scope up
- activeTabPath = currentPath;
- parameterArray = module.utilities.filterArray(pathArray, currentPathArray);
-
- if(isLastIndex) {
- isLastTab = true;
- }
- else {
- nextPathArray = pathArray.slice(0, index + 2);
- nextPath = module.utilities.arrayToPath(nextPathArray);
- isLastTab = ( !module.is.tab(nextPath) );
- if(isLastTab) {
- module.verbose('Tab parameters found', nextPathArray);
- }
- }
- if(isLastTab && remoteContent) {
- if(!shouldIgnoreLoad) {
- module.activate.navigation(currentPath);
- module.fetch.content(currentPath, tabPath);
- }
- else {
- module.debug('Ignoring remote content on first tab load', currentPath);
- firstLoad = false;
- module.cache.add(tabPath, $tab.html());
- module.activate.all(currentPath);
- settings.onFirstLoad.call($tab[0], currentPath, parameterArray, historyEvent);
- settings.onLoad.call($tab[0], currentPath, parameterArray, historyEvent);
- }
- return false;
- }
- else {
- module.debug('Opened local tab', currentPath);
- module.activate.all(currentPath);
- if( !module.cache.read(currentPath) ) {
- module.cache.add(currentPath, true);
- module.debug('First time tab loaded calling tab init');
- settings.onFirstLoad.call($tab[0], currentPath, parameterArray, historyEvent);
- }
- settings.onLoad.call($tab[0], currentPath, parameterArray, historyEvent);
- }
-
- }
- else if(tabPath.search('/') == -1 && tabPath !== '') {
- // look for in page anchor
- tabPath = module.escape.string(tabPath);
- $anchor = $('#' + tabPath + ', a[name="' + tabPath + '"]');
- currentPath = $anchor.closest('[data-tab]').data(metadata.tab);
- $tab = module.get.tabElement(currentPath);
- // if anchor exists use parent tab
- if($anchor && $anchor.length > 0 && currentPath) {
- module.debug('Anchor link used, opening parent tab', $tab, $anchor);
- if( !$tab.hasClass(className.active) ) {
- setTimeout(function() {
- module.scrollTo($anchor);
- }, 0);
- }
- module.activate.all(currentPath);
- if( !module.cache.read(currentPath) ) {
- module.cache.add(currentPath, true);
- module.debug('First time tab loaded calling tab init');
- settings.onFirstLoad.call($tab[0], currentPath, parameterArray, historyEvent);
- }
- settings.onLoad.call($tab[0], currentPath, parameterArray, historyEvent);
- return false;
- }
- }
- else {
- module.error(error.missingTab, $module, $context, currentPath);
- return false;
- }
- });
- },
-
- scrollTo: function($element) {
- var
- scrollOffset = ($element && $element.length > 0)
- ? $element.offset().top
- : false
- ;
- if(scrollOffset !== false) {
- module.debug('Forcing scroll to an in-page link in a hidden tab', scrollOffset, $element);
- $(document).scrollTop(scrollOffset);
- }
- },
-
- update: {
- content: function(tabPath, html, evaluateScripts) {
- var
- $tab = module.get.tabElement(tabPath),
- tab = $tab[0]
- ;
- evaluateScripts = (evaluateScripts !== undefined)
- ? evaluateScripts
- : settings.evaluateScripts
- ;
- if(typeof settings.cacheType == 'string' && settings.cacheType.toLowerCase() == 'dom' && typeof html !== 'string') {
- $tab
- .empty()
- .append($(html).clone(true))
- ;
- }
- else {
- if(evaluateScripts) {
- module.debug('Updating HTML and evaluating inline scripts', tabPath, html);
- $tab.html(html);
- }
- else {
- module.debug('Updating HTML', tabPath, html);
- tab.innerHTML = html;
- }
- }
- }
- },
-
- fetch: {
-
- content: function(tabPath, fullTabPath) {
- var
- $tab = module.get.tabElement(tabPath),
- apiSettings = {
- dataType : 'html',
- encodeParameters : false,
- on : 'now',
- cache : settings.alwaysRefresh,
- headers : {
- 'X-Remote': true
- },
- onSuccess : function(response) {
- if(settings.cacheType == 'response') {
- module.cache.add(fullTabPath, response);
- }
- module.update.content(tabPath, response);
- if(tabPath == activeTabPath) {
- module.debug('Content loaded', tabPath);
- module.activate.tab(tabPath);
- }
- else {
- module.debug('Content loaded in background', tabPath);
- }
- settings.onFirstLoad.call($tab[0], tabPath, parameterArray, historyEvent);
- settings.onLoad.call($tab[0], tabPath, parameterArray, historyEvent);
-
- if(settings.loadOnce) {
- module.cache.add(fullTabPath, true);
- }
- else if(typeof settings.cacheType == 'string' && settings.cacheType.toLowerCase() == 'dom' && $tab.children().length > 0) {
- setTimeout(function() {
- var
- $clone = $tab.children().clone(true)
- ;
- $clone = $clone.not('script');
- module.cache.add(fullTabPath, $clone);
- }, 0);
- }
- else {
- module.cache.add(fullTabPath, $tab.html());
- }
- },
- urlData: {
- tab: fullTabPath
- }
- },
- request = $tab.api('get request') || false,
- existingRequest = ( request && request.state() === 'pending' ),
- requestSettings,
- cachedContent
- ;
-
- fullTabPath = fullTabPath || tabPath;
- cachedContent = module.cache.read(fullTabPath);
-
-
- if(settings.cache && cachedContent) {
- module.activate.tab(tabPath);
- module.debug('Adding cached content', fullTabPath);
- if(!settings.loadOnce) {
- if(settings.evaluateScripts == 'once') {
- module.update.content(tabPath, cachedContent, false);
- }
- else {
- module.update.content(tabPath, cachedContent);
- }
- }
- settings.onLoad.call($tab[0], tabPath, parameterArray, historyEvent);
- }
- else if(existingRequest) {
- module.set.loading(tabPath);
- module.debug('Content is already loading', fullTabPath);
- }
- else if($.api !== undefined) {
- requestSettings = $.extend(true, {}, settings.apiSettings, apiSettings);
- module.debug('Retrieving remote content', fullTabPath, requestSettings);
- module.set.loading(tabPath);
- $tab.api(requestSettings);
- }
- else {
- module.error(error.api);
- }
- }
- },
-
- activate: {
- all: function(tabPath) {
- module.activate.tab(tabPath);
- module.activate.navigation(tabPath);
- },
- tab: function(tabPath) {
- var
- $tab = module.get.tabElement(tabPath),
- $deactiveTabs = (settings.deactivate == 'siblings')
- ? $tab.siblings($tabs)
- : $tabs.not($tab),
- isActive = $tab.hasClass(className.active)
- ;
- module.verbose('Showing tab content for', $tab);
- if(!isActive) {
- $tab
- .addClass(className.active)
- ;
- $deactiveTabs
- .removeClass(className.active + ' ' + className.loading)
- ;
- if($tab.length > 0) {
- settings.onVisible.call($tab[0], tabPath);
- }
- }
- },
- navigation: function(tabPath) {
- var
- $navigation = module.get.navElement(tabPath),
- $deactiveNavigation = (settings.deactivate == 'siblings')
- ? $navigation.siblings($allModules)
- : $allModules.not($navigation),
- isActive = $navigation.hasClass(className.active)
- ;
- module.verbose('Activating tab navigation for', $navigation, tabPath);
- if(!isActive) {
- $navigation
- .addClass(className.active)
- ;
- $deactiveNavigation
- .removeClass(className.active + ' ' + className.loading)
- ;
- }
- }
- },
-
- deactivate: {
- all: function() {
- module.deactivate.navigation();
- module.deactivate.tabs();
- },
- navigation: function() {
- $allModules
- .removeClass(className.active)
- ;
- },
- tabs: function() {
- $tabs
- .removeClass(className.active + ' ' + className.loading)
- ;
- }
- },
-
- is: {
- tab: function(tabName) {
- return (tabName !== undefined)
- ? ( module.get.tabElement(tabName).length > 0 )
- : false
- ;
- }
- },
-
- get: {
- initialPath: function() {
- return $allModules.eq(0).data(metadata.tab) || $tabs.eq(0).data(metadata.tab);
- },
- path: function() {
- return $.address.value();
- },
- // adds default tabs to tab path
- defaultPathArray: function(tabPath) {
- return module.utilities.pathToArray( module.get.defaultPath(tabPath) );
- },
- defaultPath: function(tabPath) {
- var
- $defaultNav = $allModules.filter('[data-' + metadata.tab + '^="' + module.escape.string(tabPath) + '/"]').eq(0),
- defaultTab = $defaultNav.data(metadata.tab) || false
- ;
- if( defaultTab ) {
- module.debug('Found default tab', defaultTab);
- if(recursionDepth < settings.maxDepth) {
- recursionDepth++;
- return module.get.defaultPath(defaultTab);
- }
- module.error(error.recursion);
- }
- else {
- module.debug('No default tabs found for', tabPath, $tabs);
- }
- recursionDepth = 0;
- return tabPath;
- },
- navElement: function(tabPath) {
- tabPath = tabPath || activeTabPath;
- return $allModules.filter('[data-' + metadata.tab + '="' + module.escape.string(tabPath) + '"]');
- },
- tabElement: function(tabPath) {
- var
- $fullPathTab,
- $simplePathTab,
- tabPathArray,
- lastTab
- ;
- tabPath = tabPath || activeTabPath;
- tabPathArray = module.utilities.pathToArray(tabPath);
- lastTab = module.utilities.last(tabPathArray);
- $fullPathTab = $tabs.filter('[data-' + metadata.tab + '="' + module.escape.string(tabPath) + '"]');
- $simplePathTab = $tabs.filter('[data-' + metadata.tab + '="' + module.escape.string(lastTab) + '"]');
- return ($fullPathTab.length > 0)
- ? $fullPathTab
- : $simplePathTab
- ;
- },
- tab: function() {
- return activeTabPath;
- }
- },
-
- determine: {
- activeTab: function() {
- var activeTab = null;
-
- $tabs.each(function(_index, tab) {
- var $tab = $(tab);
-
- if( $tab.hasClass(className.active) ) {
- var
- tabPath = $(this).data(metadata.tab),
- $anchor = $allModules.filter('[data-' + metadata.tab + '="' + module.escape.string(tabPath) + '"]')
- ;
-
- if( $anchor.hasClass(className.active) ) {
- activeTab = tabPath;
- }
- }
- });
-
- return activeTab;
- }
- },
-
- utilities: {
- filterArray: function(keepArray, removeArray) {
- return $.grep(keepArray, function(keepValue) {
- return ( $.inArray(keepValue, removeArray) == -1);
- });
- },
- last: function(array) {
- return Array.isArray(array)
- ? array[ array.length - 1]
- : false
- ;
- },
- pathToArray: function(pathName) {
- if(pathName === undefined) {
- pathName = activeTabPath;
- }
- return typeof pathName == 'string'
- ? pathName.split('/')
- : [pathName]
- ;
- },
- arrayToPath: function(pathArray) {
- return Array.isArray(pathArray)
- ? pathArray.join('/')
- : false
- ;
- }
- },
-
- setting: function(name, value) {
- module.debug('Changing setting', name, value);
- if( $.isPlainObject(name) ) {
- $.extend(true, settings, name);
- }
- else if(value !== undefined) {
- if($.isPlainObject(settings[name])) {
- $.extend(true, settings[name], value);
- }
- else {
- settings[name] = value;
- }
- }
- else {
- return settings[name];
- }
- },
- internal: function(name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, module, name);
- }
- else if(value !== undefined) {
- module[name] = value;
- }
- else {
- return module[name];
- }
- },
- debug: function() {
- if(!settings.silent && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.debug.apply(console, arguments);
- }
- }
- },
- verbose: function() {
- if(!settings.silent && settings.verbose && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.verbose.apply(console, arguments);
- }
- }
- },
- error: function() {
- if(!settings.silent) {
- module.error = Function.prototype.bind.call(console.error, console, settings.name + ':');
- module.error.apply(console, arguments);
- }
- },
- performance: {
- log: function(message) {
- var
- currentTime,
- executionTime,
- previousTime
- ;
- if(settings.performance) {
- currentTime = new Date().getTime();
- previousTime = time || currentTime;
- executionTime = currentTime - previousTime;
- time = currentTime;
- performance.push({
- 'Name' : message[0],
- 'Arguments' : [].slice.call(message, 1) || '',
- 'Element' : element,
- 'Execution Time' : executionTime
- });
- }
- clearTimeout(module.performance.timer);
- module.performance.timer = setTimeout(module.performance.display, 500);
- },
- display: function() {
- var
- title = settings.name + ':',
- totalTime = 0
- ;
- time = false;
- clearTimeout(module.performance.timer);
- $.each(performance, function(index, data) {
- totalTime += data['Execution Time'];
- });
- title += ' ' + totalTime + 'ms';
- if(moduleSelector) {
- title += ' \'' + moduleSelector + '\'';
- }
- if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) {
- console.groupCollapsed(title);
- if(console.table) {
- console.table(performance);
- }
- else {
- $.each(performance, function(index, data) {
- console.log(data['Name'] + ': ' + data['Execution Time']+'ms');
- });
- }
- console.groupEnd();
- }
- performance = [];
- }
- },
- invoke: function(query, passedArguments, context) {
- var
- object = instance,
- maxDepth,
- found,
- response
- ;
- passedArguments = passedArguments || queryArguments;
- context = element || context;
- if(typeof query == 'string' && object !== undefined) {
- query = query.split(/[\. ]/);
- maxDepth = query.length - 1;
- $.each(query, function(depth, value) {
- var camelCaseValue = (depth != maxDepth)
- ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
- : query
- ;
- if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
- object = object[camelCaseValue];
- }
- else if( object[camelCaseValue] !== undefined ) {
- found = object[camelCaseValue];
- return false;
- }
- else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
- object = object[value];
- }
- else if( object[value] !== undefined ) {
- found = object[value];
- return false;
- }
- else {
- module.error(error.method, query);
- return false;
- }
- });
- }
- if ( $.isFunction( found ) ) {
- response = found.apply(context, passedArguments);
- }
- else if(found !== undefined) {
- response = found;
- }
- if(Array.isArray(returnedValue)) {
- returnedValue.push(response);
- }
- else if(returnedValue !== undefined) {
- returnedValue = [returnedValue, response];
- }
- else if(response !== undefined) {
- returnedValue = response;
- }
- return found;
- }
- };
- if(methodInvoked) {
- if(instance === undefined) {
- module.initialize();
- }
- module.invoke(query);
- }
- else {
- if(instance !== undefined) {
- instance.invoke('destroy');
- }
- module.initialize();
- }
- })
- ;
- return (returnedValue !== undefined)
- ? returnedValue
- : this
- ;
-
-};
-
-// shortcut for tabbed content with no defined navigation
-$.tab = function() {
- $(window).tab.apply(this, arguments);
-};
-
-$.fn.tab.settings = {
-
- name : 'Tab',
- namespace : 'tab',
-
- silent : false,
- debug : false,
- verbose : false,
- performance : true,
-
- auto : false, // uses pjax style endpoints fetching content from same url with remote-content headers
- history : false, // use browser history
- historyType : 'hash', // #/ or html5 state
- path : false, // base path of url
-
- context : false, // specify a context that tabs must appear inside
- childrenOnly : false, // use only tabs that are children of context
- maxDepth : 25, // max depth a tab can be nested
-
- deactivate : 'siblings', // whether tabs should deactivate sibling menu elements or all elements initialized together
-
- alwaysRefresh : false, // load tab content new every tab click
- cache : true, // cache the content requests to pull locally
- loadOnce : false, // Whether tab data should only be loaded once when using remote content
- cacheType : 'response', // Whether to cache exact response, or to html cache contents after scripts execute
- ignoreFirstLoad : false, // don't load remote content on first load
-
- apiSettings : false, // settings for api call
- evaluateScripts : 'once', // whether inline scripts should be parsed (true/false/once). Once will not re-evaluate on cached content
-
- onFirstLoad : function(tabPath, parameterArray, historyEvent) {}, // called first time loaded
- onLoad : function(tabPath, parameterArray, historyEvent) {}, // called on every load
- onVisible : function(tabPath, parameterArray, historyEvent) {}, // called every time tab visible
- onRequest : function(tabPath, parameterArray, historyEvent) {}, // called ever time a tab beings loading remote content
-
- templates : {
- determineTitle: function(tabArray) {} // returns page title for path
- },
-
- error: {
- api : 'You attempted to load content without API module',
- method : 'The method you called is not defined',
- missingTab : 'Activated tab cannot be found. Tabs are case-sensitive.',
- noContent : 'The tab you specified is missing a content url.',
- path : 'History enabled, but no path was specified',
- recursion : 'Max recursive depth reached',
- legacyInit : 'onTabInit has been renamed to onFirstLoad in 2.0, please adjust your code.',
- legacyLoad : 'onTabLoad has been renamed to onLoad in 2.0. Please adjust your code',
- state : 'History requires Asual\'s Address library '
- },
-
- regExp : {
- escape : /[-[\]{}()*+?.,\\^$|#\s:=@]/g
- },
-
- metadata : {
- tab : 'tab',
- loaded : 'loaded',
- promise: 'promise'
- },
-
- className : {
- loading : 'loading',
- active : 'active'
- },
-
- selector : {
- tabs : '.ui.tab',
- ui : '.ui'
- }
-
-};
-
-})( jQuery, window, document );
diff --git a/src-angular/assets/semantic/dist/components/tab.min.css b/src-angular/assets/semantic/dist/components/tab.min.css
deleted file mode 100644
index d4b9570..0000000
--- a/src-angular/assets/semantic/dist/components/tab.min.css
+++ /dev/null
@@ -1,9 +0,0 @@
-/*!
- * # Fomantic-UI - Tab
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */.ui.tab{display:none}.ui.tab.active,.ui.tab.open{display:block}.ui.tab.loading{position:relative;overflow:hidden;display:block;min-height:250px}.ui.tab.loading *{position:relative!important;left:-10000px!important}.ui.tab.loading.segment:before,.ui.tab.loading:before{position:absolute;content:'';top:50%;left:50%;margin:-1.25em 0 0 -1.25em;width:2.5em;height:2.5em;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.tab.loading.segment:after,.ui.tab.loading:after{position:absolute;content:'';top:50%;left:50%;margin:-1.25em 0 0 -1.25em;width:2.5em;height:2.5em;-webkit-animation:loader .6s infinite linear;animation:loader .6s infinite linear;border:.2em solid #767676;border-radius:500rem;-webkit-box-shadow:0 0 0 1px transparent;box-shadow:0 0 0 1px transparent}
\ No newline at end of file
diff --git a/src-angular/assets/semantic/dist/components/tab.min.js b/src-angular/assets/semantic/dist/components/tab.min.js
deleted file mode 100644
index 43c81fe..0000000
--- a/src-angular/assets/semantic/dist/components/tab.min.js
+++ /dev/null
@@ -1,11 +0,0 @@
- /*
- * # Fomantic UI - 2.8.3
- * https://github.com/fomantic/Fomantic-UI
- * http://fomantic-ui.com/
- *
- * Copyright 2014 Contributors
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-!function(j,O,k,I){"use strict";j.isWindow=j.isWindow||function(e){return null!=e&&e===e.window},j.isFunction=j.isFunction||function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},O=void 0!==O&&O.Math==Math?O:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")(),j.fn.tab=function(l){var d,u=j.isFunction(this)?j(O):j(this),b=u.selector||"",g=(new Date).getTime(),f=[],F=l,w="string"==typeof F,S=[].slice.call(arguments,1),E=!1;return u.each(function(){var h,o,p,v,m,y,T=j.isPlainObject(l)?j.extend(!0,{},j.fn.tab.settings,l):j.extend({},j.fn.tab.settings),L=T.className,x=T.metadata,t=T.selector,A=T.error,a=T.regExp,e="."+T.namespace,n="module-"+T.namespace,P=j(this),i={},C=!0,r=0,s=this,c=P.data(n);m={initialize:function(){m.debug("Initializing tab menu item",P),m.fix.callbacks(),m.determineTabs(),m.debug("Determining tabs",T.context,o),T.auto&&m.set.auto(),m.bind.events(),T.history&&!E&&(m.initializeHistory(),E=!0),c===I&&null==m.determine.activeTab()&&(m.debug("No active tab detected, setting first tab active",m.get.initialPath()),m.changeTab(m.get.initialPath())),m.instantiate()},instantiate:function(){m.verbose("Storing instance of module",m),c=m,P.data(n,m)},destroy:function(){m.debug("Destroying tabs",P),P.removeData(n).off(e)},bind:{events:function(){j.isWindow(s)||(m.debug("Attaching tab activation events to element",P),P.on("click"+e,m.event.click))}},determineTabs:function(){var e;"parent"===T.context?(0"},regExp:{escape:/[-[\]{}()*+?.,\\^$|#\s:=@]/g},metadata:{tab:"tab",loaded:"loaded",promise:"promise"},className:{loading:"loading",active:"active"},selector:{tabs:".ui.tab",ui:".ui"}}}(jQuery,window,document);
\ No newline at end of file
diff --git a/src-angular/assets/semantic/dist/components/table.css b/src-angular/assets/semantic/dist/components/table.css
deleted file mode 100644
index 88c68ab..0000000
--- a/src-angular/assets/semantic/dist/components/table.css
+++ /dev/null
@@ -1,2203 +0,0 @@
-/*!
- * # Fomantic-UI - Table
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-
-/*******************************
- Table
-*******************************/
-
-
-/* Prototype */
-.ui.table {
- width: 100%;
- background: #FFFFFF;
- margin: 1em 0;
- border: 1px solid rgba(34, 36, 38, 0.15);
- -webkit-box-shadow: none;
- box-shadow: none;
- border-radius: 0.28571429rem;
- text-align: left;
- vertical-align: middle;
- color: rgba(0, 0, 0, 0.87);
- border-collapse: separate;
- border-spacing: 0;
-}
-.ui.table:first-child {
- margin-top: 0;
-}
-.ui.table:last-child {
- margin-bottom: 0;
-}
-.ui.table > thead,
-.ui.table > tbody {
- text-align: inherit;
- vertical-align: inherit;
-}
-
-
-/*******************************
- Parts
-*******************************/
-
-
-/* Table Content */
-.ui.table th,
-.ui.table td {
- -webkit-transition: background 0.1s ease, color 0.1s ease;
- transition: background 0.1s ease, color 0.1s ease;
-}
-
-/* Headers */
-.ui.table > thead {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-.ui.table > thead > tr > th {
- cursor: auto;
- background: #F9FAFB;
- text-align: inherit;
- color: rgba(0, 0, 0, 0.87);
- padding: 0.92857143em 0.78571429em;
- vertical-align: inherit;
- font-style: none;
- font-weight: bold;
- text-transform: none;
- border-bottom: 1px solid rgba(34, 36, 38, 0.1);
- border-left: none;
-}
-.ui.table > thead > tr > th:first-child {
- border-left: none;
-}
-.ui.table > thead > tr:first-child > th:first-child {
- border-radius: 0.28571429rem 0 0 0;
-}
-.ui.table > thead > tr:first-child > th:last-child {
- border-radius: 0 0.28571429rem 0 0;
-}
-.ui.table > thead > tr:first-child > th:only-child {
- border-radius: 0.28571429rem 0.28571429rem 0 0;
-}
-
-/* Footer */
-.ui.table > tfoot {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-.ui.table > tfoot > tr > th,
-.ui.table > tfoot > tr > td {
- cursor: auto;
- border-top: 1px solid rgba(34, 36, 38, 0.15);
- background: #F9FAFB;
- text-align: inherit;
- color: rgba(0, 0, 0, 0.87);
- padding: 0.78571429em 0.78571429em;
- vertical-align: middle;
- font-style: normal;
- font-weight: normal;
- text-transform: none;
-}
-.ui.table > tfoot > tr > th:first-child,
-.ui.table > tfoot > tr > td:first-child {
- border-left: none;
-}
-.ui.table > tfoot > tr:first-child > th:first-child,
-.ui.table > tfoot > tr:first-child > td:first-child {
- border-radius: 0 0 0 0.28571429rem;
-}
-.ui.table > tfoot > tr:first-child > th:last-child,
-.ui.table > tfoot > tr:first-child > td:last-child {
- border-radius: 0 0 0.28571429rem 0;
-}
-.ui.table > tfoot > tr:first-child > th:only-child,
-.ui.table > tfoot > tr:first-child > td:only-child {
- border-radius: 0 0 0.28571429rem 0.28571429rem;
-}
-
-/* Table Row */
-.ui.table > tr > td,
-.ui.table > tbody > tr > td {
- border-top: 1px solid rgba(34, 36, 38, 0.1);
-}
-.ui.table > tr:first-child > td,
-.ui.table > tbody > tr:first-child > td {
- border-top: none;
-}
-
-/* Repeated tbody */
-.ui.table > tbody + tbody tr:first-child > td {
- border-top: 1px solid rgba(34, 36, 38, 0.1);
-}
-
-/* Table Cells */
-.ui.table > tbody > tr > td,
-.ui.table > tr > td {
- padding: 0.78571429em 0.78571429em;
- text-align: inherit;
-}
-
-/* Icons */
-.ui.table > .icon {
- vertical-align: baseline;
-}
-.ui.table > .icon:only-child {
- margin: 0;
-}
-
-/* Table Segment */
-.ui.table.segment {
- padding: 0;
-}
-.ui.table.segment:after {
- display: none;
-}
-.ui.table.segment.stacked:after {
- display: block;
-}
-
-/* Responsive */
-@media only screen and (max-width: 767.98px) {
- .ui.table:not(.unstackable) {
- width: 100%;
- padding: 0;
- }
- .ui.table:not(.unstackable) > thead,
- .ui.table:not(.unstackable) > thead > tr,
- .ui.table:not(.unstackable) > tfoot,
- .ui.table:not(.unstackable) > tfoot > tr,
- .ui.table:not(.unstackable) > tbody,
- .ui.table:not(.unstackable) > tr,
- .ui.table:not(.unstackable) > tbody > tr,
- .ui.table:not(.unstackable) > tr > th,
- .ui.table:not(.unstackable) > thead > tr > th,
- .ui.table:not(.unstackable) > tbody > tr > th,
- .ui.table:not(.unstackable) > tfoot > tr > th,
- .ui.table:not(.unstackable) > tr > td,
- .ui.table:not(.unstackable) > tbody > tr > td,
- .ui.table:not(.unstackable) > tfoot > tr > td {
- display: block !important;
- width: auto !important;
- }
- .ui.table:not(.unstackable) > thead {
- display: block;
- }
- .ui.table:not(.unstackable) > tfoot {
- display: block;
- }
- .ui.ui.ui.ui.table:not(.unstackable) > tr,
- .ui.ui.ui.ui.table:not(.unstackable) > thead > tr,
- .ui.ui.ui.ui.table:not(.unstackable) > tbody > tr,
- .ui.ui.ui.ui.table:not(.unstackable) > tfoot > tr {
- padding-top: 1em;
- padding-bottom: 1em;
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) > tr > th,
- .ui.ui.ui.ui.table:not(.unstackable) > thead > tr > th,
- .ui.ui.ui.ui.table:not(.unstackable) > tbody > tr > th,
- .ui.ui.ui.ui.table:not(.unstackable) > tfoot > tr > th,
- .ui.ui.ui.ui.table:not(.unstackable) > tr > td,
- .ui.ui.ui.ui.table:not(.unstackable) > tbody > tr > td,
- .ui.ui.ui.ui.table:not(.unstackable) > tfoot > tr > td {
- background: none;
- border: none;
- padding: 0.25em 0.75em;
- -webkit-box-shadow: none;
- box-shadow: none;
- }
- .ui.table:not(.unstackable) > tr > th:first-child,
- .ui.table:not(.unstackable) > thead > tr > th:first-child,
- .ui.table:not(.unstackable) > tbody > tr > th:first-child,
- .ui.table:not(.unstackable) > tfoot > tr > th:first-child,
- .ui.table:not(.unstackable) > tr > td:first-child,
- .ui.table:not(.unstackable) > tbody > tr > td:first-child,
- .ui.table:not(.unstackable) > tfoot > tr > td:first-child {
- font-weight: bold;
- }
-
-/* Definition Table */
- .ui.definition.table:not(.unstackable) > thead > tr > th:first-child {
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.primary.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #2185D0 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #2185D0 inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.primary.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #2185D0 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #2185D0 inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.primary.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #54C8FF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #54C8FF inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.primary.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #54C8FF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #54C8FF inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.secondary.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #1B1C1D inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #1B1C1D inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.secondary.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #1B1C1D inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #1B1C1D inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.secondary.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #545454 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #545454 inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.secondary.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #545454 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #545454 inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.red.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #DB2828 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #DB2828 inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.red.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #DB2828 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #DB2828 inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.red.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FF695E inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FF695E inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.red.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FF695E inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FF695E inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.orange.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #F2711C inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #F2711C inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.orange.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #F2711C inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #F2711C inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.orange.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FF851B inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FF851B inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.orange.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FF851B inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FF851B inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.yellow.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FBBD08 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FBBD08 inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.yellow.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FBBD08 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FBBD08 inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.yellow.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FFE21F inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FFE21F inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.yellow.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FFE21F inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FFE21F inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.olive.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #B5CC18 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #B5CC18 inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.olive.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #B5CC18 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #B5CC18 inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.olive.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #D9E778 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #D9E778 inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.olive.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #D9E778 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #D9E778 inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.green.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #21BA45 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #21BA45 inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.green.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #21BA45 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #21BA45 inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.green.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #2ECC40 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #2ECC40 inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.green.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #2ECC40 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #2ECC40 inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.teal.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #00B5AD inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #00B5AD inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.teal.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #00B5AD inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #00B5AD inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.teal.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #6DFFFF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #6DFFFF inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.teal.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #6DFFFF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #6DFFFF inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.blue.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #2185D0 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #2185D0 inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.blue.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #2185D0 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #2185D0 inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.blue.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #54C8FF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #54C8FF inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.blue.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #54C8FF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #54C8FF inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.violet.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #6435C9 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #6435C9 inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.violet.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #6435C9 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #6435C9 inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.violet.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #A291FB inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #A291FB inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.violet.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #A291FB inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #A291FB inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.purple.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #A333C8 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #A333C8 inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.purple.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #A333C8 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #A333C8 inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.purple.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #DC73FF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #DC73FF inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.purple.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #DC73FF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #DC73FF inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.pink.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #E03997 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #E03997 inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.pink.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #E03997 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #E03997 inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.pink.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FF8EDF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FF8EDF inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.pink.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FF8EDF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FF8EDF inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.brown.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #A5673F inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #A5673F inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.brown.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #A5673F inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #A5673F inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.brown.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #D67C1C inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #D67C1C inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.brown.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #D67C1C inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #D67C1C inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.grey.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #767676 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #767676 inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.grey.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #767676 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #767676 inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.grey.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #DCDDDE inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #DCDDDE inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.grey.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #DCDDDE inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #DCDDDE inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.black.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #1B1C1D inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #1B1C1D inset;
- }
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.black.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #1B1C1D inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #1B1C1D inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.black.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #545454 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #545454 inset;
- }
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.black.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #545454 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #545454 inset;
- }
-}
-
-
-/*******************************
- Coupling
-*******************************/
-
-
-/* UI Image */
-.ui.table .collapsing .image,
-.ui.table .collapsing .image img {
- max-width: none;
-}
-
-
-/*******************************
- Types
-*******************************/
-
-
-/*--------------
- Complex
----------------*/
-
-.ui.structured.table {
- border-collapse: collapse;
-}
-.ui.structured.table > thead > tr > th {
- border-left: none;
- border-right: none;
-}
-.ui.structured.sortable.table > thead > tr > th {
- border-left: 1px solid rgba(34, 36, 38, 0.15);
- border-right: 1px solid rgba(34, 36, 38, 0.15);
-}
-.ui.structured.basic.table > tr > th,
-.ui.structured.basic.table > thead > tr > th,
-.ui.structured.basic.table > tbody > tr > th,
-.ui.structured.basic.table > tfoot > tr > th {
- border-left: none;
- border-right: none;
-}
-.ui.structured.celled.table > tr > th,
-.ui.structured.celled.table > thead > tr > th,
-.ui.structured.celled.table > tbody > tr > th,
-.ui.structured.celled.table > tfoot > tr > th,
-.ui.structured.celled.table > tr > td,
-.ui.structured.celled.table > tbody > tr > td,
-.ui.structured.celled.table > tfoot > tr > td {
- border-left: 1px solid rgba(34, 36, 38, 0.1);
- border-right: 1px solid rgba(34, 36, 38, 0.1);
-}
-
-/*--------------
- Definition
- ---------------*/
-
-.ui.definition.table > thead:not(.full-width) > tr > th:first-child {
- pointer-events: none;
- background: #FFFFFF;
- font-weight: normal;
- color: rgba(0, 0, 0, 0.4);
- -webkit-box-shadow: -0.1em -0.2em 0 0.1em #FFFFFF;
- box-shadow: -0.1em -0.2em 0 0.1em #FFFFFF;
- -moz-transform: scale(1);
-}
-.ui.definition.table > tfoot:not(.full-width) > tr > th:first-child {
- pointer-events: none;
- background: #FFFFFF;
- font-weight: normal;
- color: rgba(0, 0, 0, 0.4);
- -webkit-box-shadow: -0.1em 0.2em 0 0.1em #FFFFFF;
- box-shadow: -0.1em 0.2em 0 0.1em #FFFFFF;
- -moz-transform: scale(1);
-}
-
-/* Highlight Defining Column */
-.ui.definition.table > tr > td:first-child:not(.ignored),
-.ui.definition.table > tbody > tr > td:first-child:not(.ignored),
-.ui.definition.table > tfoot > tr > td:first-child:not(.ignored),
-.ui.definition.table tr td.definition {
- background: rgba(0, 0, 0, 0.03);
- font-weight: bold;
- color: rgba(0, 0, 0, 0.95);
- text-transform: '';
- -webkit-box-shadow: '';
- box-shadow: '';
- text-align: '';
- font-size: 1em;
- padding-left: '';
- padding-right: '';
-}
-
-/* Fix 2nd Column */
-.ui.definition.table > thead:not(.full-width) > tr > th:nth-child(2) {
- border-left: 1px solid rgba(34, 36, 38, 0.15);
-}
-.ui.definition.table > tfoot:not(.full-width) > tr > th:nth-child(2),
-.ui.definition.table > tfoot:not(.full-width) > tr > td:nth-child(2) {
- border-left: 1px solid rgba(34, 36, 38, 0.15);
-}
-.ui.definition.table > tr > td:nth-child(2),
-.ui.definition.table > tbody > tr > td:nth-child(2) {
- border-left: 1px solid rgba(34, 36, 38, 0.15);
-}
-
-
-/*******************************
- States
-*******************************/
-
-
-/*--------------
- Positive
- ---------------*/
-
-.ui.ui.ui.ui.table tr.positive,
-.ui.ui.table td.positive {
- -webkit-box-shadow: 0 0 0 #A3C293 inset;
- box-shadow: 0 0 0 #A3C293 inset;
- background: #FCFFF5;
- color: #2C662D;
-}
-
-/*--------------
- Negative
- ---------------*/
-
-.ui.ui.ui.ui.table tr.negative,
-.ui.ui.table td.negative {
- -webkit-box-shadow: 0 0 0 #E0B4B4 inset;
- box-shadow: 0 0 0 #E0B4B4 inset;
- background: #FFF6F6;
- color: #9F3A38;
-}
-
-/*--------------
- Error
- ---------------*/
-
-.ui.ui.ui.ui.table tr.error,
-.ui.ui.table td.error {
- -webkit-box-shadow: 0 0 0 #E0B4B4 inset;
- box-shadow: 0 0 0 #E0B4B4 inset;
- background: #FFF6F6;
- color: #9F3A38;
-}
-
-/*--------------
- Warning
- ---------------*/
-
-.ui.ui.ui.ui.table tr.warning,
-.ui.ui.table td.warning {
- -webkit-box-shadow: 0 0 0 #C9BA9B inset;
- box-shadow: 0 0 0 #C9BA9B inset;
- background: #FFFAF3;
- color: #573A08;
-}
-
-/*--------------
- Active
- ---------------*/
-
-.ui.ui.ui.ui.table tr.active,
-.ui.ui.table td.active {
- -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.87) inset;
- box-shadow: 0 0 0 rgba(0, 0, 0, 0.87) inset;
- background: #E0E0E0;
- color: rgba(0, 0, 0, 0.87);
-}
-
-/*--------------
- Disabled
- ---------------*/
-
-.ui.table tr.disabled td,
-.ui.table tr td.disabled,
-.ui.table tr.disabled:hover,
-.ui.table tr:hover td.disabled {
- pointer-events: none;
- color: rgba(40, 40, 40, 0.3);
-}
-
-
-/*******************************
- Variations
-*******************************/
-
-
-/*--------------
- Stackable
- ---------------*/
-
-@media only screen and (max-width: 991.98px) {
- .ui[class*="tablet stackable"].table,
- .ui[class*="tablet stackable"].table > thead,
- .ui[class*="tablet stackable"].table > thead > tr,
- .ui[class*="tablet stackable"].table > tfoot,
- .ui[class*="tablet stackable"].table > tfoot > tr,
- .ui[class*="tablet stackable"].table > tbody,
- .ui[class*="tablet stackable"].table > tbody > tr,
- .ui[class*="tablet stackable"].table > tr,
- .ui[class*="tablet stackable"].table > thead > tr > th,
- .ui[class*="tablet stackable"].table > tbody > tr > th,
- .ui[class*="tablet stackable"].table > tfoot > tr > th,
- .ui[class*="tablet stackable"].table > tr > th,
- .ui[class*="tablet stackable"].table > tbody > tr > td,
- .ui[class*="tablet stackable"].table > tfoot > tr > td,
- .ui[class*="tablet stackable"].table > tr > td {
- display: block !important;
- width: 100% !important;
- }
- .ui[class*="tablet stackable"].table {
- padding: 0;
- }
- .ui[class*="tablet stackable"].table > thead {
- display: block;
- }
- .ui[class*="tablet stackable"].table > tfoot {
- display: block;
- }
- .ui.ui.ui.ui[class*="tablet stackable"].table > thead > tr,
- .ui.ui.ui.ui[class*="tablet stackable"].table > tbody > tr,
- .ui.ui.ui.ui[class*="tablet stackable"].table > tfoot > tr,
- .ui.ui.ui.ui[class*="tablet stackable"].table > tr {
- padding-top: 1em;
- padding-bottom: 1em;
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
- }
- .ui[class*="tablet stackable"].table > thead > tr > th,
- .ui[class*="tablet stackable"].table > tbody > tr > th,
- .ui[class*="tablet stackable"].table > tfoot > tr > th,
- .ui[class*="tablet stackable"].table > tr > th,
- .ui[class*="tablet stackable"].table > tbody > tr > td,
- .ui[class*="tablet stackable"].table > tfoot > tr > td,
- .ui[class*="tablet stackable"].table > tr > td {
- background: none;
- border: none !important;
- padding: 0.25em 0.75em;
- -webkit-box-shadow: none;
- box-shadow: none;
- }
-
-/* Definition Table */
- .ui.definition[class*="tablet stackable"].table > thead > tr > th:first-child {
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
- }
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.primary.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #2185D0 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #2185D0 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.primary.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #2185D0 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #2185D0 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.primary.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #54C8FF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #54C8FF inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.primary.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #54C8FF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #54C8FF inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.secondary.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #1B1C1D inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #1B1C1D inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.secondary.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #1B1C1D inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #1B1C1D inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.secondary.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #545454 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #545454 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.secondary.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #545454 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #545454 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.red.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #DB2828 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #DB2828 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.red.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #DB2828 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #DB2828 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.red.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FF695E inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FF695E inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.red.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FF695E inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FF695E inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.orange.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #F2711C inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #F2711C inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.orange.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #F2711C inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #F2711C inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.orange.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FF851B inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FF851B inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.orange.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FF851B inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FF851B inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.yellow.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FBBD08 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FBBD08 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.yellow.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FBBD08 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FBBD08 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.yellow.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FFE21F inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FFE21F inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.yellow.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FFE21F inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FFE21F inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.olive.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #B5CC18 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #B5CC18 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.olive.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #B5CC18 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #B5CC18 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.olive.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #D9E778 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #D9E778 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.olive.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #D9E778 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #D9E778 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.green.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #21BA45 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #21BA45 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.green.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #21BA45 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #21BA45 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.green.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #2ECC40 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #2ECC40 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.green.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #2ECC40 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #2ECC40 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.teal.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #00B5AD inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #00B5AD inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.teal.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #00B5AD inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #00B5AD inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.teal.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #6DFFFF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #6DFFFF inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.teal.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #6DFFFF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #6DFFFF inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.blue.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #2185D0 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #2185D0 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.blue.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #2185D0 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #2185D0 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.blue.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #54C8FF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #54C8FF inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.blue.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #54C8FF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #54C8FF inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.violet.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #6435C9 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #6435C9 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.violet.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #6435C9 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #6435C9 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.violet.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #A291FB inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #A291FB inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.violet.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #A291FB inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #A291FB inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.purple.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #A333C8 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #A333C8 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.purple.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #A333C8 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #A333C8 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.purple.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #DC73FF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #DC73FF inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.purple.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #DC73FF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #DC73FF inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.pink.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #E03997 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #E03997 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.pink.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #E03997 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #E03997 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.pink.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FF8EDF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FF8EDF inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.pink.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FF8EDF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FF8EDF inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.brown.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #A5673F inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #A5673F inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.brown.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #A5673F inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #A5673F inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.brown.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #D67C1C inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #D67C1C inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.brown.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #D67C1C inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #D67C1C inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.grey.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #767676 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #767676 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.grey.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #767676 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #767676 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.grey.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #DCDDDE inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #DCDDDE inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.grey.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #DCDDDE inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #DCDDDE inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.black.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #1B1C1D inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #1B1C1D inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.black.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #1B1C1D inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #1B1C1D inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.black.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #545454 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #545454 inset;
-}
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.black.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #545454 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #545454 inset;
-}
-
-/*--------------
- Text Alignment
- ---------------*/
-
-.ui.table[class*="left aligned"],
-.ui.table [class*="left aligned"] {
- text-align: left;
-}
-.ui.table[class*="center aligned"],
-.ui.table [class*="center aligned"] {
- text-align: center;
-}
-.ui.table[class*="right aligned"],
-.ui.table [class*="right aligned"] {
- text-align: right;
-}
-
-/*------------------
- Vertical Alignment
- ------------------*/
-
-.ui.table[class*="top aligned"],
-.ui.table [class*="top aligned"] {
- vertical-align: top;
-}
-.ui.table[class*="middle aligned"],
-.ui.table [class*="middle aligned"] {
- vertical-align: middle;
-}
-.ui.table[class*="bottom aligned"],
-.ui.table [class*="bottom aligned"] {
- vertical-align: bottom;
-}
-
-/*--------------
- Collapsing
- ---------------*/
-
-.ui.table th.collapsing,
-.ui.table td.collapsing {
- width: 1px;
- white-space: nowrap;
-}
-
-/*--------------
- Fixed
- ---------------*/
-
-.ui.fixed.table {
- table-layout: fixed;
-}
-.ui.fixed.table th,
-.ui.fixed.table td {
- overflow: hidden;
- text-overflow: ellipsis;
-}
-
-/*--------------
- Selectable
- ---------------*/
-
-.ui.ui.selectable.table > tbody > tr:hover,
-.ui.table tbody tr td.selectable:hover {
- background: rgba(0, 0, 0, 0.05);
- color: rgba(0, 0, 0, 0.95);
-}
-.ui.ui.selectable.inverted.table > tbody > tr:hover,
-.ui.inverted.table tbody tr td.selectable:hover {
- background: rgba(255, 255, 255, 0.08);
- color: #ffffff;
-}
-
-/* Selectable Cell Link */
-.ui.table tbody tr td.selectable {
- padding: 0;
-}
-.ui.table tbody tr td.selectable > a:not(.ui) {
- display: block;
- color: inherit;
- padding: 0.78571429em 0.78571429em;
-}
-.ui.table > tr > td.selectable,
-.ui.table > tbody > tr > td.selectable,
-.ui.selectable.table > tbody > tr,
-.ui.selectable.table > tr {
- cursor: pointer;
-}
-
-/* Other States */
-.ui.ui.selectable.table tr.error:hover,
-.ui.table tr td.selectable.error:hover,
-.ui.selectable.table tr:hover td.error {
- background: #ffe7e7;
- color: #943634;
-}
-.ui.ui.selectable.table tr.warning:hover,
-.ui.table tr td.selectable.warning:hover,
-.ui.selectable.table tr:hover td.warning {
- background: #fff4e4;
- color: #493107;
-}
-.ui.ui.selectable.table tr.active:hover,
-.ui.table tr td.selectable.active:hover,
-.ui.selectable.table tr:hover td.active {
- background: #E0E0E0;
- color: rgba(0, 0, 0, 0.87);
-}
-.ui.ui.selectable.table tr.positive:hover,
-.ui.table tr td.selectable.positive:hover,
-.ui.selectable.table tr:hover td.positive {
- background: #f7ffe6;
- color: #275b28;
-}
-.ui.ui.selectable.table tr.negative:hover,
-.ui.table tr td.selectable.negative:hover,
-.ui.selectable.table tr:hover td.negative {
- background: #ffe7e7;
- color: #943634;
-}
-
-/*-------------------
- Attached
- --------------------*/
-
-
-/* Middle */
-.ui.attached.table {
- top: 0;
- bottom: 0;
- border-radius: 0;
- margin: 0 -1px;
- width: calc(100% + 2px);
- max-width: calc(100% + 2px);
- -webkit-box-shadow: none;
- box-shadow: none;
- border: 1px solid #D4D4D5;
-}
-.ui.attached + .ui.attached.table:not(.top) {
- border-top: none;
-}
-
-/* Top */
-.ui[class*="top attached"].table {
- bottom: 0;
- margin-bottom: 0;
- top: 0;
- margin-top: 1em;
- border-radius: 0.28571429rem 0.28571429rem 0 0;
-}
-.ui.table[class*="top attached"]:first-child {
- margin-top: 0;
-}
-
-/* Bottom */
-.ui[class*="bottom attached"].table {
- bottom: 0;
- margin-top: 0;
- top: 0;
- margin-bottom: 1em;
- -webkit-box-shadow: none, none;
- box-shadow: none, none;
- border-radius: 0 0 0.28571429rem 0.28571429rem;
-}
-.ui[class*="bottom attached"].table:last-child {
- margin-bottom: 0;
-}
-
-/*--------------
- Striped
- ---------------*/
-
-
-/* Table Striping */
-.ui.striped.table > tr:nth-child(2n),
-.ui.striped.table > tbody > tr:nth-child(2n) {
- background-color: rgba(0, 0, 50, 0.02);
-}
-
-/* Stripes */
-.ui.inverted.striped.table > tr:nth-child(2n),
-.ui.inverted.striped.table > tbody > tr:nth-child(2n) {
- background-color: rgba(255, 255, 255, 0.05);
-}
-
-/* Allow striped active hover */
-.ui.striped.selectable.selectable.selectable.table tbody tr.active:hover {
- background: #EFEFEF;
- color: rgba(0, 0, 0, 0.95);
-}
-
-/*--------------
- Single Line
----------------*/
-
-.ui.table[class*="single line"],
-.ui.table [class*="single line"] {
- white-space: nowrap;
-}
-
-/*-------------------
- Colors
---------------------*/
-
-.ui.primary.table {
- border-top: 0.2em solid #2185D0;
-}
-.ui.inverted.primary.table {
- background-color: #2185D0;
- color: #FFFFFF;
-}
-.ui.ui.ui.ui.table tr.primary:not(.marked),
-.ui.ui.table td.primary:not(.marked) {
- background: #ddf4ff;
- color: rgba(255, 255, 255, 0.9);
-}
-.ui.ui.selectable.table tr.primary:not(.marked):hover,
-.ui.table tr td.selectable.primary:not(.marked):hover,
-.ui.selectable.table tr:hover td.primary:not(.marked) {
- background: #d3f1ff;
- color: rgba(255, 255, 255, 0.9);
-}
-.ui.table td.marked.primary.left,
-.ui.table tr.marked.primary.left {
- -webkit-box-shadow: 0.2em 0 0 0 #2185D0 inset;
- box-shadow: 0.2em 0 0 0 #2185D0 inset;
-}
-.ui.table td.marked.primary.right,
-.ui.table tr.marked.primary.right {
- -webkit-box-shadow: -0.2em 0 0 0 #2185D0 inset;
- box-shadow: -0.2em 0 0 0 #2185D0 inset;
-}
-.ui.inverted.table td.marked.primary.left,
-.ui.inverted.table tr.marked.primary.left {
- -webkit-box-shadow: 0.2em 0 0 0 #54C8FF inset;
- box-shadow: 0.2em 0 0 0 #54C8FF inset;
-}
-.ui.inverted.table td.marked.primary.right,
-.ui.inverted.table tr.marked.primary.right {
- -webkit-box-shadow: -0.2em 0 0 0 #54C8FF inset;
- box-shadow: -0.2em 0 0 0 #54C8FF inset;
-}
-.ui.secondary.table {
- border-top: 0.2em solid #1B1C1D;
-}
-.ui.inverted.secondary.table {
- background-color: #1B1C1D;
- color: #FFFFFF;
-}
-.ui.ui.ui.ui.table tr.secondary:not(.marked),
-.ui.ui.table td.secondary:not(.marked) {
- background: #dddddd;
- color: rgba(255, 255, 255, 0.9);
-}
-.ui.ui.selectable.table tr.secondary:not(.marked):hover,
-.ui.table tr td.selectable.secondary:not(.marked):hover,
-.ui.selectable.table tr:hover td.secondary:not(.marked) {
- background: #e2e2e2;
- color: rgba(255, 255, 255, 0.9);
-}
-.ui.table td.marked.secondary.left,
-.ui.table tr.marked.secondary.left {
- -webkit-box-shadow: 0.2em 0 0 0 #1B1C1D inset;
- box-shadow: 0.2em 0 0 0 #1B1C1D inset;
-}
-.ui.table td.marked.secondary.right,
-.ui.table tr.marked.secondary.right {
- -webkit-box-shadow: -0.2em 0 0 0 #1B1C1D inset;
- box-shadow: -0.2em 0 0 0 #1B1C1D inset;
-}
-.ui.inverted.table td.marked.secondary.left,
-.ui.inverted.table tr.marked.secondary.left {
- -webkit-box-shadow: 0.2em 0 0 0 #545454 inset;
- box-shadow: 0.2em 0 0 0 #545454 inset;
-}
-.ui.inverted.table td.marked.secondary.right,
-.ui.inverted.table tr.marked.secondary.right {
- -webkit-box-shadow: -0.2em 0 0 0 #545454 inset;
- box-shadow: -0.2em 0 0 0 #545454 inset;
-}
-.ui.red.table {
- border-top: 0.2em solid #DB2828;
-}
-.ui.inverted.red.table {
- background-color: #DB2828;
- color: #FFFFFF;
-}
-.ui.ui.ui.ui.table tr.red:not(.marked),
-.ui.ui.table td.red:not(.marked) {
- background: #ffe1df;
- color: #DB2828;
-}
-.ui.ui.selectable.table tr.red:not(.marked):hover,
-.ui.table tr td.selectable.red:not(.marked):hover,
-.ui.selectable.table tr:hover td.red:not(.marked) {
- background: #ffd7d5;
- color: #DB2828;
-}
-.ui.table td.marked.red.left,
-.ui.table tr.marked.red.left {
- -webkit-box-shadow: 0.2em 0 0 0 #DB2828 inset;
- box-shadow: 0.2em 0 0 0 #DB2828 inset;
-}
-.ui.table td.marked.red.right,
-.ui.table tr.marked.red.right {
- -webkit-box-shadow: -0.2em 0 0 0 #DB2828 inset;
- box-shadow: -0.2em 0 0 0 #DB2828 inset;
-}
-.ui.inverted.table td.marked.red.left,
-.ui.inverted.table tr.marked.red.left {
- -webkit-box-shadow: 0.2em 0 0 0 #FF695E inset;
- box-shadow: 0.2em 0 0 0 #FF695E inset;
-}
-.ui.inverted.table td.marked.red.right,
-.ui.inverted.table tr.marked.red.right {
- -webkit-box-shadow: -0.2em 0 0 0 #FF695E inset;
- box-shadow: -0.2em 0 0 0 #FF695E inset;
-}
-.ui.orange.table {
- border-top: 0.2em solid #F2711C;
-}
-.ui.inverted.orange.table {
- background-color: #F2711C;
- color: #FFFFFF;
-}
-.ui.ui.ui.ui.table tr.orange:not(.marked),
-.ui.ui.table td.orange:not(.marked) {
- background: #ffe7d1;
- color: #F2711C;
-}
-.ui.ui.selectable.table tr.orange:not(.marked):hover,
-.ui.table tr td.selectable.orange:not(.marked):hover,
-.ui.selectable.table tr:hover td.orange:not(.marked) {
- background: #fae1cc;
- color: #F2711C;
-}
-.ui.table td.marked.orange.left,
-.ui.table tr.marked.orange.left {
- -webkit-box-shadow: 0.2em 0 0 0 #F2711C inset;
- box-shadow: 0.2em 0 0 0 #F2711C inset;
-}
-.ui.table td.marked.orange.right,
-.ui.table tr.marked.orange.right {
- -webkit-box-shadow: -0.2em 0 0 0 #F2711C inset;
- box-shadow: -0.2em 0 0 0 #F2711C inset;
-}
-.ui.inverted.table td.marked.orange.left,
-.ui.inverted.table tr.marked.orange.left {
- -webkit-box-shadow: 0.2em 0 0 0 #FF851B inset;
- box-shadow: 0.2em 0 0 0 #FF851B inset;
-}
-.ui.inverted.table td.marked.orange.right,
-.ui.inverted.table tr.marked.orange.right {
- -webkit-box-shadow: -0.2em 0 0 0 #FF851B inset;
- box-shadow: -0.2em 0 0 0 #FF851B inset;
-}
-.ui.yellow.table {
- border-top: 0.2em solid #FBBD08;
-}
-.ui.inverted.yellow.table {
- background-color: #FBBD08;
- color: #FFFFFF;
-}
-.ui.ui.ui.ui.table tr.yellow:not(.marked),
-.ui.ui.table td.yellow:not(.marked) {
- background: #fff9d2;
- color: #B58105;
-}
-.ui.ui.selectable.table tr.yellow:not(.marked):hover,
-.ui.table tr td.selectable.yellow:not(.marked):hover,
-.ui.selectable.table tr:hover td.yellow:not(.marked) {
- background: #fbf5cc;
- color: #B58105;
-}
-.ui.table td.marked.yellow.left,
-.ui.table tr.marked.yellow.left {
- -webkit-box-shadow: 0.2em 0 0 0 #FBBD08 inset;
- box-shadow: 0.2em 0 0 0 #FBBD08 inset;
-}
-.ui.table td.marked.yellow.right,
-.ui.table tr.marked.yellow.right {
- -webkit-box-shadow: -0.2em 0 0 0 #FBBD08 inset;
- box-shadow: -0.2em 0 0 0 #FBBD08 inset;
-}
-.ui.inverted.table td.marked.yellow.left,
-.ui.inverted.table tr.marked.yellow.left {
- -webkit-box-shadow: 0.2em 0 0 0 #FFE21F inset;
- box-shadow: 0.2em 0 0 0 #FFE21F inset;
-}
-.ui.inverted.table td.marked.yellow.right,
-.ui.inverted.table tr.marked.yellow.right {
- -webkit-box-shadow: -0.2em 0 0 0 #FFE21F inset;
- box-shadow: -0.2em 0 0 0 #FFE21F inset;
-}
-.ui.olive.table {
- border-top: 0.2em solid #B5CC18;
-}
-.ui.inverted.olive.table {
- background-color: #B5CC18;
- color: #FFFFFF;
-}
-.ui.ui.ui.ui.table tr.olive:not(.marked),
-.ui.ui.table td.olive:not(.marked) {
- background: #f7fae4;
- color: #8ABC1E;
-}
-.ui.ui.selectable.table tr.olive:not(.marked):hover,
-.ui.table tr td.selectable.olive:not(.marked):hover,
-.ui.selectable.table tr:hover td.olive:not(.marked) {
- background: #f6fada;
- color: #8ABC1E;
-}
-.ui.table td.marked.olive.left,
-.ui.table tr.marked.olive.left {
- -webkit-box-shadow: 0.2em 0 0 0 #B5CC18 inset;
- box-shadow: 0.2em 0 0 0 #B5CC18 inset;
-}
-.ui.table td.marked.olive.right,
-.ui.table tr.marked.olive.right {
- -webkit-box-shadow: -0.2em 0 0 0 #B5CC18 inset;
- box-shadow: -0.2em 0 0 0 #B5CC18 inset;
-}
-.ui.inverted.table td.marked.olive.left,
-.ui.inverted.table tr.marked.olive.left {
- -webkit-box-shadow: 0.2em 0 0 0 #D9E778 inset;
- box-shadow: 0.2em 0 0 0 #D9E778 inset;
-}
-.ui.inverted.table td.marked.olive.right,
-.ui.inverted.table tr.marked.olive.right {
- -webkit-box-shadow: -0.2em 0 0 0 #D9E778 inset;
- box-shadow: -0.2em 0 0 0 #D9E778 inset;
-}
-.ui.green.table {
- border-top: 0.2em solid #21BA45;
-}
-.ui.inverted.green.table {
- background-color: #21BA45;
- color: #FFFFFF;
-}
-.ui.ui.ui.ui.table tr.green:not(.marked),
-.ui.ui.table td.green:not(.marked) {
- background: #d5f5d9;
- color: #1EBC30;
-}
-.ui.ui.selectable.table tr.green:not(.marked):hover,
-.ui.table tr td.selectable.green:not(.marked):hover,
-.ui.selectable.table tr:hover td.green:not(.marked) {
- background: #d2eed5;
- color: #1EBC30;
-}
-.ui.table td.marked.green.left,
-.ui.table tr.marked.green.left {
- -webkit-box-shadow: 0.2em 0 0 0 #21BA45 inset;
- box-shadow: 0.2em 0 0 0 #21BA45 inset;
-}
-.ui.table td.marked.green.right,
-.ui.table tr.marked.green.right {
- -webkit-box-shadow: -0.2em 0 0 0 #21BA45 inset;
- box-shadow: -0.2em 0 0 0 #21BA45 inset;
-}
-.ui.inverted.table td.marked.green.left,
-.ui.inverted.table tr.marked.green.left {
- -webkit-box-shadow: 0.2em 0 0 0 #2ECC40 inset;
- box-shadow: 0.2em 0 0 0 #2ECC40 inset;
-}
-.ui.inverted.table td.marked.green.right,
-.ui.inverted.table tr.marked.green.right {
- -webkit-box-shadow: -0.2em 0 0 0 #2ECC40 inset;
- box-shadow: -0.2em 0 0 0 #2ECC40 inset;
-}
-.ui.teal.table {
- border-top: 0.2em solid #00B5AD;
-}
-.ui.inverted.teal.table {
- background-color: #00B5AD;
- color: #FFFFFF;
-}
-.ui.ui.ui.ui.table tr.teal:not(.marked),
-.ui.ui.table td.teal:not(.marked) {
- background: #e2ffff;
- color: #10A3A3;
-}
-.ui.ui.selectable.table tr.teal:not(.marked):hover,
-.ui.table tr td.selectable.teal:not(.marked):hover,
-.ui.selectable.table tr:hover td.teal:not(.marked) {
- background: #d8ffff;
- color: #10A3A3;
-}
-.ui.table td.marked.teal.left,
-.ui.table tr.marked.teal.left {
- -webkit-box-shadow: 0.2em 0 0 0 #00B5AD inset;
- box-shadow: 0.2em 0 0 0 #00B5AD inset;
-}
-.ui.table td.marked.teal.right,
-.ui.table tr.marked.teal.right {
- -webkit-box-shadow: -0.2em 0 0 0 #00B5AD inset;
- box-shadow: -0.2em 0 0 0 #00B5AD inset;
-}
-.ui.inverted.table td.marked.teal.left,
-.ui.inverted.table tr.marked.teal.left {
- -webkit-box-shadow: 0.2em 0 0 0 #6DFFFF inset;
- box-shadow: 0.2em 0 0 0 #6DFFFF inset;
-}
-.ui.inverted.table td.marked.teal.right,
-.ui.inverted.table tr.marked.teal.right {
- -webkit-box-shadow: -0.2em 0 0 0 #6DFFFF inset;
- box-shadow: -0.2em 0 0 0 #6DFFFF inset;
-}
-.ui.blue.table {
- border-top: 0.2em solid #2185D0;
-}
-.ui.inverted.blue.table {
- background-color: #2185D0;
- color: #FFFFFF;
-}
-.ui.ui.ui.ui.table tr.blue:not(.marked),
-.ui.ui.table td.blue:not(.marked) {
- background: #ddf4ff;
- color: #2185D0;
-}
-.ui.ui.selectable.table tr.blue:not(.marked):hover,
-.ui.table tr td.selectable.blue:not(.marked):hover,
-.ui.selectable.table tr:hover td.blue:not(.marked) {
- background: #d3f1ff;
- color: #2185D0;
-}
-.ui.table td.marked.blue.left,
-.ui.table tr.marked.blue.left {
- -webkit-box-shadow: 0.2em 0 0 0 #2185D0 inset;
- box-shadow: 0.2em 0 0 0 #2185D0 inset;
-}
-.ui.table td.marked.blue.right,
-.ui.table tr.marked.blue.right {
- -webkit-box-shadow: -0.2em 0 0 0 #2185D0 inset;
- box-shadow: -0.2em 0 0 0 #2185D0 inset;
-}
-.ui.inverted.table td.marked.blue.left,
-.ui.inverted.table tr.marked.blue.left {
- -webkit-box-shadow: 0.2em 0 0 0 #54C8FF inset;
- box-shadow: 0.2em 0 0 0 #54C8FF inset;
-}
-.ui.inverted.table td.marked.blue.right,
-.ui.inverted.table tr.marked.blue.right {
- -webkit-box-shadow: -0.2em 0 0 0 #54C8FF inset;
- box-shadow: -0.2em 0 0 0 #54C8FF inset;
-}
-.ui.violet.table {
- border-top: 0.2em solid #6435C9;
-}
-.ui.inverted.violet.table {
- background-color: #6435C9;
- color: #FFFFFF;
-}
-.ui.ui.ui.ui.table tr.violet:not(.marked),
-.ui.ui.table td.violet:not(.marked) {
- background: #ece9fe;
- color: #6435C9;
-}
-.ui.ui.selectable.table tr.violet:not(.marked):hover,
-.ui.table tr td.selectable.violet:not(.marked):hover,
-.ui.selectable.table tr:hover td.violet:not(.marked) {
- background: #e3deff;
- color: #6435C9;
-}
-.ui.table td.marked.violet.left,
-.ui.table tr.marked.violet.left {
- -webkit-box-shadow: 0.2em 0 0 0 #6435C9 inset;
- box-shadow: 0.2em 0 0 0 #6435C9 inset;
-}
-.ui.table td.marked.violet.right,
-.ui.table tr.marked.violet.right {
- -webkit-box-shadow: -0.2em 0 0 0 #6435C9 inset;
- box-shadow: -0.2em 0 0 0 #6435C9 inset;
-}
-.ui.inverted.table td.marked.violet.left,
-.ui.inverted.table tr.marked.violet.left {
- -webkit-box-shadow: 0.2em 0 0 0 #A291FB inset;
- box-shadow: 0.2em 0 0 0 #A291FB inset;
-}
-.ui.inverted.table td.marked.violet.right,
-.ui.inverted.table tr.marked.violet.right {
- -webkit-box-shadow: -0.2em 0 0 0 #A291FB inset;
- box-shadow: -0.2em 0 0 0 #A291FB inset;
-}
-.ui.purple.table {
- border-top: 0.2em solid #A333C8;
-}
-.ui.inverted.purple.table {
- background-color: #A333C8;
- color: #FFFFFF;
-}
-.ui.ui.ui.ui.table tr.purple:not(.marked),
-.ui.ui.table td.purple:not(.marked) {
- background: #f8e3ff;
- color: #A333C8;
-}
-.ui.ui.selectable.table tr.purple:not(.marked):hover,
-.ui.table tr td.selectable.purple:not(.marked):hover,
-.ui.selectable.table tr:hover td.purple:not(.marked) {
- background: #f5d9ff;
- color: #A333C8;
-}
-.ui.table td.marked.purple.left,
-.ui.table tr.marked.purple.left {
- -webkit-box-shadow: 0.2em 0 0 0 #A333C8 inset;
- box-shadow: 0.2em 0 0 0 #A333C8 inset;
-}
-.ui.table td.marked.purple.right,
-.ui.table tr.marked.purple.right {
- -webkit-box-shadow: -0.2em 0 0 0 #A333C8 inset;
- box-shadow: -0.2em 0 0 0 #A333C8 inset;
-}
-.ui.inverted.table td.marked.purple.left,
-.ui.inverted.table tr.marked.purple.left {
- -webkit-box-shadow: 0.2em 0 0 0 #DC73FF inset;
- box-shadow: 0.2em 0 0 0 #DC73FF inset;
-}
-.ui.inverted.table td.marked.purple.right,
-.ui.inverted.table tr.marked.purple.right {
- -webkit-box-shadow: -0.2em 0 0 0 #DC73FF inset;
- box-shadow: -0.2em 0 0 0 #DC73FF inset;
-}
-.ui.pink.table {
- border-top: 0.2em solid #E03997;
-}
-.ui.inverted.pink.table {
- background-color: #E03997;
- color: #FFFFFF;
-}
-.ui.ui.ui.ui.table tr.pink:not(.marked),
-.ui.ui.table td.pink:not(.marked) {
- background: #ffe8f9;
- color: #E03997;
-}
-.ui.ui.selectable.table tr.pink:not(.marked):hover,
-.ui.table tr td.selectable.pink:not(.marked):hover,
-.ui.selectable.table tr:hover td.pink:not(.marked) {
- background: #ffdef6;
- color: #E03997;
-}
-.ui.table td.marked.pink.left,
-.ui.table tr.marked.pink.left {
- -webkit-box-shadow: 0.2em 0 0 0 #E03997 inset;
- box-shadow: 0.2em 0 0 0 #E03997 inset;
-}
-.ui.table td.marked.pink.right,
-.ui.table tr.marked.pink.right {
- -webkit-box-shadow: -0.2em 0 0 0 #E03997 inset;
- box-shadow: -0.2em 0 0 0 #E03997 inset;
-}
-.ui.inverted.table td.marked.pink.left,
-.ui.inverted.table tr.marked.pink.left {
- -webkit-box-shadow: 0.2em 0 0 0 #FF8EDF inset;
- box-shadow: 0.2em 0 0 0 #FF8EDF inset;
-}
-.ui.inverted.table td.marked.pink.right,
-.ui.inverted.table tr.marked.pink.right {
- -webkit-box-shadow: -0.2em 0 0 0 #FF8EDF inset;
- box-shadow: -0.2em 0 0 0 #FF8EDF inset;
-}
-.ui.brown.table {
- border-top: 0.2em solid #A5673F;
-}
-.ui.inverted.brown.table {
- background-color: #A5673F;
- color: #FFFFFF;
-}
-.ui.ui.ui.ui.table tr.brown:not(.marked),
-.ui.ui.table td.brown:not(.marked) {
- background: #f7e5d2;
- color: #A5673F;
-}
-.ui.ui.selectable.table tr.brown:not(.marked):hover,
-.ui.table tr td.selectable.brown:not(.marked):hover,
-.ui.selectable.table tr:hover td.brown:not(.marked) {
- background: #efe0cf;
- color: #A5673F;
-}
-.ui.table td.marked.brown.left,
-.ui.table tr.marked.brown.left {
- -webkit-box-shadow: 0.2em 0 0 0 #A5673F inset;
- box-shadow: 0.2em 0 0 0 #A5673F inset;
-}
-.ui.table td.marked.brown.right,
-.ui.table tr.marked.brown.right {
- -webkit-box-shadow: -0.2em 0 0 0 #A5673F inset;
- box-shadow: -0.2em 0 0 0 #A5673F inset;
-}
-.ui.inverted.table td.marked.brown.left,
-.ui.inverted.table tr.marked.brown.left {
- -webkit-box-shadow: 0.2em 0 0 0 #D67C1C inset;
- box-shadow: 0.2em 0 0 0 #D67C1C inset;
-}
-.ui.inverted.table td.marked.brown.right,
-.ui.inverted.table tr.marked.brown.right {
- -webkit-box-shadow: -0.2em 0 0 0 #D67C1C inset;
- box-shadow: -0.2em 0 0 0 #D67C1C inset;
-}
-.ui.grey.table {
- border-top: 0.2em solid #767676;
-}
-.ui.inverted.grey.table {
- background-color: #767676;
- color: #FFFFFF;
-}
-.ui.ui.ui.ui.table tr.grey:not(.marked),
-.ui.ui.table td.grey:not(.marked) {
- background: #DCDDDE;
- color: #767676;
-}
-.ui.ui.selectable.table tr.grey:not(.marked):hover,
-.ui.table tr td.selectable.grey:not(.marked):hover,
-.ui.selectable.table tr:hover td.grey:not(.marked) {
- background: #c2c4c5;
- color: #767676;
-}
-.ui.table td.marked.grey.left,
-.ui.table tr.marked.grey.left {
- -webkit-box-shadow: 0.2em 0 0 0 #767676 inset;
- box-shadow: 0.2em 0 0 0 #767676 inset;
-}
-.ui.table td.marked.grey.right,
-.ui.table tr.marked.grey.right {
- -webkit-box-shadow: -0.2em 0 0 0 #767676 inset;
- box-shadow: -0.2em 0 0 0 #767676 inset;
-}
-.ui.inverted.table td.marked.grey.left,
-.ui.inverted.table tr.marked.grey.left {
- -webkit-box-shadow: 0.2em 0 0 0 #DCDDDE inset;
- box-shadow: 0.2em 0 0 0 #DCDDDE inset;
-}
-.ui.inverted.table td.marked.grey.right,
-.ui.inverted.table tr.marked.grey.right {
- -webkit-box-shadow: -0.2em 0 0 0 #DCDDDE inset;
- box-shadow: -0.2em 0 0 0 #DCDDDE inset;
-}
-.ui.black.table {
- border-top: 0.2em solid #1B1C1D;
-}
-.ui.inverted.black.table {
- background-color: #1B1C1D;
- color: #FFFFFF;
-}
-.ui.ui.ui.ui.table tr.black:not(.marked),
-.ui.ui.table td.black:not(.marked) {
- background: #545454;
- color: #FFFFFF;
-}
-.ui.ui.selectable.table tr.black:not(.marked):hover,
-.ui.table tr td.selectable.black:not(.marked):hover,
-.ui.selectable.table tr:hover td.black:not(.marked) {
- background: #000000;
- color: #FFFFFF;
-}
-.ui.table td.marked.black.left,
-.ui.table tr.marked.black.left {
- -webkit-box-shadow: 0.2em 0 0 0 #1B1C1D inset;
- box-shadow: 0.2em 0 0 0 #1B1C1D inset;
-}
-.ui.table td.marked.black.right,
-.ui.table tr.marked.black.right {
- -webkit-box-shadow: -0.2em 0 0 0 #1B1C1D inset;
- box-shadow: -0.2em 0 0 0 #1B1C1D inset;
-}
-.ui.inverted.table td.marked.black.left,
-.ui.inverted.table tr.marked.black.left {
- -webkit-box-shadow: 0.2em 0 0 0 #545454 inset;
- box-shadow: 0.2em 0 0 0 #545454 inset;
-}
-.ui.inverted.table td.marked.black.right,
-.ui.inverted.table tr.marked.black.right {
- -webkit-box-shadow: -0.2em 0 0 0 #545454 inset;
- box-shadow: -0.2em 0 0 0 #545454 inset;
-}
-
-/*--------------
- Column Count
----------------*/
-
-
-/* Grid Based */
-.ui.one.column.table td {
- width: 100%;
-}
-.ui.two.column.table td {
- width: 50%;
-}
-.ui.three.column.table td {
- width: 33.33333333%;
-}
-.ui.four.column.table td {
- width: 25%;
-}
-.ui.five.column.table td {
- width: 20%;
-}
-.ui.six.column.table td {
- width: 16.66666667%;
-}
-.ui.seven.column.table td {
- width: 14.28571429%;
-}
-.ui.eight.column.table td {
- width: 12.5%;
-}
-.ui.nine.column.table td {
- width: 11.11111111%;
-}
-.ui.ten.column.table td {
- width: 10%;
-}
-.ui.eleven.column.table td {
- width: 9.09090909%;
-}
-.ui.twelve.column.table td {
- width: 8.33333333%;
-}
-.ui.thirteen.column.table td {
- width: 7.69230769%;
-}
-.ui.fourteen.column.table td {
- width: 7.14285714%;
-}
-.ui.fifteen.column.table td {
- width: 6.66666667%;
-}
-.ui.sixteen.column.table td {
- width: 6.25%;
-}
-
-/* Column Width */
-.ui.table th.one.wide,
-.ui.table td.one.wide {
- width: 6.25%;
-}
-.ui.table th.two.wide,
-.ui.table td.two.wide {
- width: 12.5%;
-}
-.ui.table th.three.wide,
-.ui.table td.three.wide {
- width: 18.75%;
-}
-.ui.table th.four.wide,
-.ui.table td.four.wide {
- width: 25%;
-}
-.ui.table th.five.wide,
-.ui.table td.five.wide {
- width: 31.25%;
-}
-.ui.table th.six.wide,
-.ui.table td.six.wide {
- width: 37.5%;
-}
-.ui.table th.seven.wide,
-.ui.table td.seven.wide {
- width: 43.75%;
-}
-.ui.table th.eight.wide,
-.ui.table td.eight.wide {
- width: 50%;
-}
-.ui.table th.nine.wide,
-.ui.table td.nine.wide {
- width: 56.25%;
-}
-.ui.table th.ten.wide,
-.ui.table td.ten.wide {
- width: 62.5%;
-}
-.ui.table th.eleven.wide,
-.ui.table td.eleven.wide {
- width: 68.75%;
-}
-.ui.table th.twelve.wide,
-.ui.table td.twelve.wide {
- width: 75%;
-}
-.ui.table th.thirteen.wide,
-.ui.table td.thirteen.wide {
- width: 81.25%;
-}
-.ui.table th.fourteen.wide,
-.ui.table td.fourteen.wide {
- width: 87.5%;
-}
-.ui.table th.fifteen.wide,
-.ui.table td.fifteen.wide {
- width: 93.75%;
-}
-.ui.table th.sixteen.wide,
-.ui.table td.sixteen.wide {
- width: 100%;
-}
-
-/*--------------
- Sortable
- ---------------*/
-
-.ui.sortable.table > thead > tr > th {
- cursor: pointer;
- white-space: nowrap;
- border-left: 1px solid rgba(34, 36, 38, 0.15);
- color: rgba(0, 0, 0, 0.87);
-}
-.ui.sortable.table > thead > tr > th:first-child {
- border-left: none;
-}
-.ui.sortable.table thead th.sorted,
-.ui.sortable.table thead th.sorted:hover {
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
-}
-.ui.sortable.table > thead > tr > th:after {
- display: none;
- font-style: normal;
- font-weight: normal;
- text-decoration: inherit;
- content: '';
- height: 1em;
- width: auto;
- opacity: 0.8;
- margin: 0 0 0 0.5em;
- font-family: 'Icons';
-}
-.ui.sortable.table thead th.ascending:after {
- content: '\f0d8';
-}
-.ui.sortable.table thead th.descending:after {
- content: '\f0d7';
-}
-
-/* Hover */
-.ui.sortable.table th.disabled:hover {
- cursor: auto;
- color: rgba(40, 40, 40, 0.3);
-}
-.ui.sortable.table > thead > tr > th:hover {
- color: rgba(0, 0, 0, 0.8);
-}
-.ui.sortable.table:not(.basic) > thead > tr > th:hover {
- background: rgba(0, 0, 0, 0.05);
-}
-
-/* Sorted */
-.ui.sortable.table thead th.sorted {
- color: rgba(0, 0, 0, 0.95);
-}
-.ui.sortable.table:not(.basic) thead th.sorted {
- background: rgba(0, 0, 0, 0.05);
-}
-.ui.sortable.table thead th.sorted:after {
- display: inline-block;
-}
-
-/* Sorted Hover */
-.ui.sortable.table thead th.sorted:hover {
- color: rgba(0, 0, 0, 0.95);
-}
-.ui.sortable.table:not(.basic) thead th.sorted:hover {
- background: rgba(0, 0, 0, 0.05);
-}
-
-/* Inverted */
-.ui.inverted.sortable.table thead th.sorted {
- color: #ffffff;
-}
-.ui.inverted.sortable.table:not(.basic) thead th.sorted {
- background: rgba(255, 255, 255, 0.15) -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
- background: rgba(255, 255, 255, 0.15) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
- background: rgba(255, 255, 255, 0.15) linear-gradient(transparent, rgba(0, 0, 0, 0.05));
-}
-.ui.inverted.sortable.table > thead > tr > th:hover {
- color: #ffffff;
-}
-.ui.inverted.sortable.table:not(.basic) > thead > tr > th:hover {
- background: rgba(255, 255, 255, 0.08) -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
- background: rgba(255, 255, 255, 0.08) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
- background: rgba(255, 255, 255, 0.08) linear-gradient(transparent, rgba(0, 0, 0, 0.05));
-}
-.ui.inverted.sortable.table:not(.basic) > thead > tr > th {
- border-left-color: transparent;
- border-right-color: transparent;
-}
-
-/*--------------
- Inverted
- ---------------*/
-
-
-/* Text Color */
-.ui.inverted.table {
- background: #333333;
- color: rgba(255, 255, 255, 0.9);
- border: none;
-}
-.ui.ui.inverted.table > thead > tr > th,
-.ui.ui.inverted.table > tbody > tr > th,
-.ui.ui.inverted.table > tfoot > tr > th,
-.ui.ui.inverted.table > tfoot > tr > td,
-.ui.ui.inverted.table > tr > th {
- background-color: rgba(0, 0, 0, 0.15);
- border-color: rgba(255, 255, 255, 0.1);
- color: rgba(255, 255, 255, 0.9);
-}
-.ui.inverted.table > tbody > tr > td,
-.ui.inverted.table > tfoot > tr > td,
-.ui.inverted.table > tr > td {
- border-color: rgba(255, 255, 255, 0.1);
-}
-.ui.inverted.table tr.disabled td,
-.ui.inverted.table tr td.disabled,
-.ui.inverted.table tr.disabled:hover td,
-.ui.inverted.table tr:hover td.disabled {
- pointer-events: none;
- color: rgba(225, 225, 225, 0.3);
-}
-.ui.inverted.table tr td.disabled:not([class="disabled"]),
-.ui.inverted.table tr.disabled:not([class="disabled"]) td,
-.ui.inverted.table tr.disabled td[class]:not(.disabled),
-.ui.inverted.table tr:hover td.disabled:not([class="disabled"]) {
- color: rgba(40, 40, 40, 0.3);
-}
-
-/* Definition */
-.ui.inverted.definition.table > tfoot:not(.full-width) > tr > th:first-child,
-.ui.inverted.definition.table > thead:not(.full-width) > tr > th:first-child {
- background: #FFFFFF;
-}
-.ui.inverted.definition.table > tbody > tr > td:first-child .ui.inverted.definition.table > tfoot > tr > td:first-child,
-.ui.inverted.definition.table > tr > td:first-child {
- background: rgba(255, 255, 255, 0.02);
- color: #ffffff;
-}
-
-/*--------------
- Collapsing
- ---------------*/
-
-.ui.collapsing.table {
- width: auto;
-}
-
-/*--------------
- Basic
- ---------------*/
-
-.ui.basic.table {
- background: transparent;
- border: 1px solid rgba(34, 36, 38, 0.15);
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-.ui.basic.table > thead,
-.ui.basic.table > tfoot {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-.ui.basic.table > thead > tr > th,
-.ui.basic.table > tbody > tr > th,
-.ui.basic.table > tfoot > tr > th,
-.ui.basic.table > tr > th {
- background: transparent;
- border-left: none;
-}
-.ui.basic.table > tbody > tr {
- border-bottom: 1px solid rgba(0, 0, 0, 0.1);
-}
-.ui.basic.table > tbody > tr > td,
-.ui.basic.table > tfoot > tr > td,
-.ui.basic.table > tr > td {
- background: transparent;
-}
-.ui.basic.striped.table > tbody > tr:nth-child(2n) {
- background-color: rgba(0, 0, 0, 0.05);
-}
-
-/* Very Basic */
-.ui[class*="very basic"].table {
- border: none;
-}
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tr > th,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > thead > tr > th,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tbody > tr > th,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tfoot > tr > th,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tr > td,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tbody > tr > td {
- padding: '';
-}
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tr > th:first-child,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > thead > tr > th:first-child,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tbody > tr > th:first-child,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tfoot > tr > th:first-child,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tr > td:first-child,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tbody > tr > td:first-child,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tfoot > tr > td:first-child {
- padding-left: 0;
-}
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tr > th:last-child,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > thead > tr > th:last-child,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tbody > tr > th:last-child,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tfoot > tr > th:last-child,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tr > td:last-child,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tbody > tr > td:last-child,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tfoot > tr > td:last-child {
- padding-right: 0;
-}
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > thead > tr:first-child > th {
- padding-top: 0;
-}
-
-/*--------------
- Celled
- ---------------*/
-
-.ui.celled.table > tr > th,
-.ui.celled.table > thead > tr > th,
-.ui.celled.table > tbody > tr > th,
-.ui.celled.table > tfoot > tr > th,
-.ui.celled.table > tr > td,
-.ui.celled.table > tbody > tr > td,
-.ui.celled.table > tfoot > tr > td {
- border-left: 1px solid rgba(34, 36, 38, 0.1);
-}
-.ui.inverted.celled.table > tbody > tr > td,
-.ui.inverted.celled.table > tr > td {
- border-left: 1px solid rgba(255, 255, 255, 0.1);
-}
-.ui.celled.table > tr > th:first-child,
-.ui.celled.table > thead > tr > th:first-child,
-.ui.celled.table > tbody > tr > th:first-child,
-.ui.celled.table > tfoot > tr > th:first-child,
-.ui.celled.table > tr > td:first-child,
-.ui.celled.table > tbody > tr > td:first-child,
-.ui.celled.table > tfoot > tr > td:first-child {
- border-left: none;
-}
-
-/*--------------
- Padded
- ---------------*/
-
-.ui.padded.table > tr > th,
-.ui.padded.table > thead > tr > th,
-.ui.padded.table > tbody > tr > th,
-.ui.padded.table > tfoot > tr > th {
- padding-left: 1em;
- padding-right: 1em;
-}
-.ui.padded.table > tr > th,
-.ui.padded.table > thead > tr > th,
-.ui.padded.table > tbody > tr > th,
-.ui.padded.table > tfoot > tr > th,
-.ui.padded.table > tr > td,
-.ui.padded.table > tbody > tr > td,
-.ui.padded.table > tfoot > tr > td {
- padding: 1em 1em;
-}
-
-/* Very */
-.ui[class*="very padded"].table > tr > th,
-.ui[class*="very padded"].table > thead > tr > th,
-.ui[class*="very padded"].table > tbody > tr > th,
-.ui[class*="very padded"].table > tfoot > tr > th {
- padding-left: 1.5em;
- padding-right: 1.5em;
-}
-.ui[class*="very padded"].table > tr > td,
-.ui[class*="very padded"].table > tbody > tr > td,
-.ui[class*="very padded"].table > tfoot > tr > td {
- padding: 1.5em 1.5em;
-}
-
-/*--------------
- Compact
- ---------------*/
-
-.ui.compact.table > tr > th,
-.ui.compact.table > thead > tr > th,
-.ui.compact.table > tbody > tr > th,
-.ui.compact.table > tfoot > tr > th {
- padding-left: 0.7em;
- padding-right: 0.7em;
-}
-.ui.compact.table > tr > td,
-.ui.compact.table > tbody > tr > td,
-.ui.compact.table > tfoot > tr > td {
- padding: 0.5em 0.7em;
-}
-
-/* Very */
-.ui[class*="very compact"].table > tr > th,
-.ui[class*="very compact"].table > thead > tr > th,
-.ui[class*="very compact"].table > tbody > tr > th,
-.ui[class*="very compact"].table > tfoot > tr > th {
- padding-left: 0.6em;
- padding-right: 0.6em;
-}
-.ui[class*="very compact"].table > tr > td,
-.ui[class*="very compact"].table > tbody > tr > td,
-.ui[class*="very compact"].table > tfoot > tr > td {
- padding: 0.4em 0.6em;
-}
-
-/*--------------
- Sizes
----------------*/
-
-
-/* Standard */
-.ui.table {
- font-size: 1em;
-}
-.ui.mini.table {
- font-size: 0.78571429rem;
-}
-.ui.tiny.table {
- font-size: 0.85714286rem;
-}
-.ui.small.table {
- font-size: 0.9em;
-}
-.ui.large.table {
- font-size: 1.1em;
-}
-.ui.big.table {
- font-size: 1.28571429rem;
-}
-.ui.huge.table {
- font-size: 1.42857143rem;
-}
-.ui.massive.table {
- font-size: 1.71428571rem;
-}
-
-
-/*******************************
- Site Overrides
-*******************************/
-
diff --git a/src-angular/assets/semantic/dist/components/table.min.css b/src-angular/assets/semantic/dist/components/table.min.css
deleted file mode 100644
index e98cf45..0000000
--- a/src-angular/assets/semantic/dist/components/table.min.css
+++ /dev/null
@@ -1,9 +0,0 @@
-/*!
- * # Fomantic-UI - Table
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */.ui.table{width:100%;background:#fff;margin:1em 0;border:1px solid rgba(34,36,38,.15);-webkit-box-shadow:none;box-shadow:none;border-radius:.28571429rem;text-align:left;vertical-align:middle;color:rgba(0,0,0,.87);border-collapse:separate;border-spacing:0}.ui.table:first-child{margin-top:0}.ui.table:last-child{margin-bottom:0}.ui.table>tbody,.ui.table>thead{text-align:inherit;vertical-align:inherit}.ui.table td,.ui.table th{-webkit-transition:background .1s ease,color .1s ease;transition:background .1s ease,color .1s ease}.ui.table>thead{-webkit-box-shadow:none;box-shadow:none}.ui.table>thead>tr>th{cursor:auto;background:#f9fafb;text-align:inherit;color:rgba(0,0,0,.87);padding:.92857143em .78571429em;vertical-align:inherit;font-style:none;font-weight:700;text-transform:none;border-bottom:1px solid rgba(34,36,38,.1);border-left:none}.ui.table>thead>tr>th:first-child{border-left:none}.ui.table>thead>tr:first-child>th:first-child{border-radius:.28571429rem 0 0 0}.ui.table>thead>tr:first-child>th:last-child{border-radius:0 .28571429rem 0 0}.ui.table>thead>tr:first-child>th:only-child{border-radius:.28571429rem .28571429rem 0 0}.ui.table>tfoot{-webkit-box-shadow:none;box-shadow:none}.ui.table>tfoot>tr>td,.ui.table>tfoot>tr>th{cursor:auto;border-top:1px solid rgba(34,36,38,.15);background:#f9fafb;text-align:inherit;color:rgba(0,0,0,.87);padding:.78571429em .78571429em;vertical-align:middle;font-style:normal;font-weight:400;text-transform:none}.ui.table>tfoot>tr>td:first-child,.ui.table>tfoot>tr>th:first-child{border-left:none}.ui.table>tfoot>tr:first-child>td:first-child,.ui.table>tfoot>tr:first-child>th:first-child{border-radius:0 0 0 .28571429rem}.ui.table>tfoot>tr:first-child>td:last-child,.ui.table>tfoot>tr:first-child>th:last-child{border-radius:0 0 .28571429rem 0}.ui.table>tfoot>tr:first-child>td:only-child,.ui.table>tfoot>tr:first-child>th:only-child{border-radius:0 0 .28571429rem .28571429rem}.ui.table>tbody>tr>td,.ui.table>tr>td{border-top:1px solid rgba(34,36,38,.1)}.ui.table>tbody>tr:first-child>td,.ui.table>tr:first-child>td{border-top:none}.ui.table>tbody+tbody tr:first-child>td{border-top:1px solid rgba(34,36,38,.1)}.ui.table>tbody>tr>td,.ui.table>tr>td{padding:.78571429em .78571429em;text-align:inherit}.ui.table>.icon{vertical-align:baseline}.ui.table>.icon:only-child{margin:0}.ui.table.segment{padding:0}.ui.table.segment:after{display:none}.ui.table.segment.stacked:after{display:block}@media only screen and (max-width:767.98px){.ui.table:not(.unstackable){width:100%;padding:0}.ui.table:not(.unstackable)>tbody,.ui.table:not(.unstackable)>tbody>tr,.ui.table:not(.unstackable)>tbody>tr>td,.ui.table:not(.unstackable)>tbody>tr>th,.ui.table:not(.unstackable)>tfoot,.ui.table:not(.unstackable)>tfoot>tr,.ui.table:not(.unstackable)>tfoot>tr>td,.ui.table:not(.unstackable)>tfoot>tr>th,.ui.table:not(.unstackable)>thead,.ui.table:not(.unstackable)>thead>tr,.ui.table:not(.unstackable)>thead>tr>th,.ui.table:not(.unstackable)>tr,.ui.table:not(.unstackable)>tr>td,.ui.table:not(.unstackable)>tr>th{display:block!important;width:auto!important}.ui.table:not(.unstackable)>thead{display:block}.ui.table:not(.unstackable)>tfoot{display:block}.ui.ui.ui.ui.table:not(.unstackable)>tbody>tr,.ui.ui.ui.ui.table:not(.unstackable)>tfoot>tr,.ui.ui.ui.ui.table:not(.unstackable)>thead>tr,.ui.ui.ui.ui.table:not(.unstackable)>tr{padding-top:1em;padding-bottom:1em;-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset}.ui.ui.ui.ui.table:not(.unstackable)>tbody>tr>td,.ui.ui.ui.ui.table:not(.unstackable)>tbody>tr>th,.ui.ui.ui.ui.table:not(.unstackable)>tfoot>tr>td,.ui.ui.ui.ui.table:not(.unstackable)>tfoot>tr>th,.ui.ui.ui.ui.table:not(.unstackable)>thead>tr>th,.ui.ui.ui.ui.table:not(.unstackable)>tr>td,.ui.ui.ui.ui.table:not(.unstackable)>tr>th{background:0 0;border:none;padding:.25em .75em;-webkit-box-shadow:none;box-shadow:none}.ui.table:not(.unstackable)>tbody>tr>td:first-child,.ui.table:not(.unstackable)>tbody>tr>th:first-child,.ui.table:not(.unstackable)>tfoot>tr>td:first-child,.ui.table:not(.unstackable)>tfoot>tr>th:first-child,.ui.table:not(.unstackable)>thead>tr>th:first-child,.ui.table:not(.unstackable)>tr>td:first-child,.ui.table:not(.unstackable)>tr>th:first-child{font-weight:700}.ui.definition.table:not(.unstackable)>thead>tr>th:first-child{-webkit-box-shadow:none!important;box-shadow:none!important}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.primary.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #2185d0 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #2185d0 inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.primary.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #2185d0 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #2185d0 inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.primary.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #54c8ff inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #54c8ff inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.primary.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #54c8ff inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #54c8ff inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.secondary.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #1b1c1d inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #1b1c1d inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.secondary.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #1b1c1d inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #1b1c1d inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.secondary.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #545454 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #545454 inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.secondary.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #545454 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #545454 inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.red.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #db2828 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #db2828 inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.red.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #db2828 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #db2828 inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.red.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #ff695e inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #ff695e inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.red.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #ff695e inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #ff695e inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.orange.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #f2711c inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #f2711c inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.orange.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #f2711c inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #f2711c inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.orange.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #ff851b inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #ff851b inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.orange.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #ff851b inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #ff851b inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.yellow.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #fbbd08 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #fbbd08 inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.yellow.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #fbbd08 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #fbbd08 inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.yellow.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #ffe21f inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #ffe21f inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.yellow.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #ffe21f inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #ffe21f inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.olive.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #b5cc18 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #b5cc18 inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.olive.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #b5cc18 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #b5cc18 inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.olive.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #d9e778 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #d9e778 inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.olive.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #d9e778 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #d9e778 inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.green.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #21ba45 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #21ba45 inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.green.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #21ba45 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #21ba45 inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.green.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #2ecc40 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #2ecc40 inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.green.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #2ecc40 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #2ecc40 inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.teal.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #00b5ad inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #00b5ad inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.teal.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #00b5ad inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #00b5ad inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.teal.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #6dffff inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #6dffff inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.teal.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #6dffff inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #6dffff inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.blue.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #2185d0 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #2185d0 inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.blue.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #2185d0 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #2185d0 inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.blue.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #54c8ff inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #54c8ff inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.blue.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #54c8ff inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #54c8ff inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.violet.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #6435c9 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #6435c9 inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.violet.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #6435c9 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #6435c9 inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.violet.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #a291fb inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #a291fb inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.violet.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #a291fb inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #a291fb inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.purple.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #a333c8 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #a333c8 inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.purple.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #a333c8 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #a333c8 inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.purple.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #dc73ff inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #dc73ff inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.purple.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #dc73ff inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #dc73ff inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.pink.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #e03997 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #e03997 inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.pink.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #e03997 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #e03997 inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.pink.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #ff8edf inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #ff8edf inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.pink.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #ff8edf inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #ff8edf inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.brown.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #a5673f inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #a5673f inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.brown.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #a5673f inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #a5673f inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.brown.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #d67c1c inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #d67c1c inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.brown.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #d67c1c inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #d67c1c inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.grey.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #767676 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #767676 inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.grey.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #767676 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #767676 inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.grey.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #dcddde inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #dcddde inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.grey.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #dcddde inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #dcddde inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.black.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #1b1c1d inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #1b1c1d inset}.ui.ui.ui.ui.table:not(.unstackable) tr.marked.black.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #1b1c1d inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #1b1c1d inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.black.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #545454 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #545454 inset}.ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.black.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #545454 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #545454 inset}}.ui.table .collapsing .image,.ui.table .collapsing .image img{max-width:none}.ui.structured.table{border-collapse:collapse}.ui.structured.table>thead>tr>th{border-left:none;border-right:none}.ui.structured.sortable.table>thead>tr>th{border-left:1px solid rgba(34,36,38,.15);border-right:1px solid rgba(34,36,38,.15)}.ui.structured.basic.table>tbody>tr>th,.ui.structured.basic.table>tfoot>tr>th,.ui.structured.basic.table>thead>tr>th,.ui.structured.basic.table>tr>th{border-left:none;border-right:none}.ui.structured.celled.table>tbody>tr>td,.ui.structured.celled.table>tbody>tr>th,.ui.structured.celled.table>tfoot>tr>td,.ui.structured.celled.table>tfoot>tr>th,.ui.structured.celled.table>thead>tr>th,.ui.structured.celled.table>tr>td,.ui.structured.celled.table>tr>th{border-left:1px solid rgba(34,36,38,.1);border-right:1px solid rgba(34,36,38,.1)}.ui.definition.table>thead:not(.full-width)>tr>th:first-child{pointer-events:none;background:#fff;font-weight:400;color:rgba(0,0,0,.4);-webkit-box-shadow:-.1em -.2em 0 .1em #fff;box-shadow:-.1em -.2em 0 .1em #fff;-moz-transform:scale(1)}.ui.definition.table>tfoot:not(.full-width)>tr>th:first-child{pointer-events:none;background:#fff;font-weight:400;color:rgba(0,0,0,.4);-webkit-box-shadow:-.1em .2em 0 .1em #fff;box-shadow:-.1em .2em 0 .1em #fff;-moz-transform:scale(1)}.ui.definition.table tr td.definition,.ui.definition.table>tbody>tr>td:first-child:not(.ignored),.ui.definition.table>tfoot>tr>td:first-child:not(.ignored),.ui.definition.table>tr>td:first-child:not(.ignored){background:rgba(0,0,0,.03);font-weight:700;color:rgba(0,0,0,.95);text-transform:'';-webkit-box-shadow:'';box-shadow:'';text-align:'';font-size:1em;padding-left:'';padding-right:''}.ui.definition.table>thead:not(.full-width)>tr>th:nth-child(2){border-left:1px solid rgba(34,36,38,.15)}.ui.definition.table>tfoot:not(.full-width)>tr>td:nth-child(2),.ui.definition.table>tfoot:not(.full-width)>tr>th:nth-child(2){border-left:1px solid rgba(34,36,38,.15)}.ui.definition.table>tbody>tr>td:nth-child(2),.ui.definition.table>tr>td:nth-child(2){border-left:1px solid rgba(34,36,38,.15)}.ui.ui.table td.positive,.ui.ui.ui.ui.table tr.positive{-webkit-box-shadow:0 0 0 #a3c293 inset;box-shadow:0 0 0 #a3c293 inset;background:#fcfff5;color:#2c662d}.ui.ui.table td.negative,.ui.ui.ui.ui.table tr.negative{-webkit-box-shadow:0 0 0 #e0b4b4 inset;box-shadow:0 0 0 #e0b4b4 inset;background:#fff6f6;color:#9f3a38}.ui.ui.table td.error,.ui.ui.ui.ui.table tr.error{-webkit-box-shadow:0 0 0 #e0b4b4 inset;box-shadow:0 0 0 #e0b4b4 inset;background:#fff6f6;color:#9f3a38}.ui.ui.table td.warning,.ui.ui.ui.ui.table tr.warning{-webkit-box-shadow:0 0 0 #c9ba9b inset;box-shadow:0 0 0 #c9ba9b inset;background:#fffaf3;color:#573a08}.ui.ui.table td.active,.ui.ui.ui.ui.table tr.active{-webkit-box-shadow:0 0 0 rgba(0,0,0,.87) inset;box-shadow:0 0 0 rgba(0,0,0,.87) inset;background:#e0e0e0;color:rgba(0,0,0,.87)}.ui.table tr td.disabled,.ui.table tr.disabled td,.ui.table tr.disabled:hover,.ui.table tr:hover td.disabled{pointer-events:none;color:rgba(40,40,40,.3)}@media only screen and (max-width:991.98px){.ui[class*="tablet stackable"].table,.ui[class*="tablet stackable"].table>tbody,.ui[class*="tablet stackable"].table>tbody>tr,.ui[class*="tablet stackable"].table>tbody>tr>td,.ui[class*="tablet stackable"].table>tbody>tr>th,.ui[class*="tablet stackable"].table>tfoot,.ui[class*="tablet stackable"].table>tfoot>tr,.ui[class*="tablet stackable"].table>tfoot>tr>td,.ui[class*="tablet stackable"].table>tfoot>tr>th,.ui[class*="tablet stackable"].table>thead,.ui[class*="tablet stackable"].table>thead>tr,.ui[class*="tablet stackable"].table>thead>tr>th,.ui[class*="tablet stackable"].table>tr,.ui[class*="tablet stackable"].table>tr>td,.ui[class*="tablet stackable"].table>tr>th{display:block!important;width:100%!important}.ui[class*="tablet stackable"].table{padding:0}.ui[class*="tablet stackable"].table>thead{display:block}.ui[class*="tablet stackable"].table>tfoot{display:block}.ui.ui.ui.ui[class*="tablet stackable"].table>tbody>tr,.ui.ui.ui.ui[class*="tablet stackable"].table>tfoot>tr,.ui.ui.ui.ui[class*="tablet stackable"].table>thead>tr,.ui.ui.ui.ui[class*="tablet stackable"].table>tr{padding-top:1em;padding-bottom:1em;-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset}.ui[class*="tablet stackable"].table>tbody>tr>td,.ui[class*="tablet stackable"].table>tbody>tr>th,.ui[class*="tablet stackable"].table>tfoot>tr>td,.ui[class*="tablet stackable"].table>tfoot>tr>th,.ui[class*="tablet stackable"].table>thead>tr>th,.ui[class*="tablet stackable"].table>tr>td,.ui[class*="tablet stackable"].table>tr>th{background:0 0;border:none!important;padding:.25em .75em;-webkit-box-shadow:none;box-shadow:none}.ui.definition[class*="tablet stackable"].table>thead>tr>th:first-child{-webkit-box-shadow:none!important;box-shadow:none!important}}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.primary.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #2185d0 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #2185d0 inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.primary.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #2185d0 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #2185d0 inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.primary.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #54c8ff inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #54c8ff inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.primary.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #54c8ff inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #54c8ff inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.secondary.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #1b1c1d inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #1b1c1d inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.secondary.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #1b1c1d inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #1b1c1d inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.secondary.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #545454 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #545454 inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.secondary.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #545454 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #545454 inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.red.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #db2828 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #db2828 inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.red.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #db2828 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #db2828 inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.red.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #ff695e inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #ff695e inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.red.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #ff695e inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #ff695e inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.orange.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #f2711c inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #f2711c inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.orange.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #f2711c inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #f2711c inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.orange.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #ff851b inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #ff851b inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.orange.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #ff851b inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #ff851b inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.yellow.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #fbbd08 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #fbbd08 inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.yellow.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #fbbd08 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #fbbd08 inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.yellow.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #ffe21f inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #ffe21f inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.yellow.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #ffe21f inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #ffe21f inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.olive.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #b5cc18 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #b5cc18 inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.olive.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #b5cc18 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #b5cc18 inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.olive.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #d9e778 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #d9e778 inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.olive.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #d9e778 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #d9e778 inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.green.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #21ba45 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #21ba45 inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.green.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #21ba45 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #21ba45 inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.green.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #2ecc40 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #2ecc40 inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.green.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #2ecc40 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #2ecc40 inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.teal.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #00b5ad inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #00b5ad inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.teal.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #00b5ad inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #00b5ad inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.teal.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #6dffff inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #6dffff inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.teal.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #6dffff inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #6dffff inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.blue.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #2185d0 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #2185d0 inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.blue.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #2185d0 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #2185d0 inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.blue.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #54c8ff inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #54c8ff inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.blue.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #54c8ff inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #54c8ff inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.violet.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #6435c9 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #6435c9 inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.violet.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #6435c9 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #6435c9 inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.violet.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #a291fb inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #a291fb inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.violet.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #a291fb inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #a291fb inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.purple.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #a333c8 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #a333c8 inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.purple.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #a333c8 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #a333c8 inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.purple.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #dc73ff inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #dc73ff inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.purple.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #dc73ff inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #dc73ff inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.pink.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #e03997 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #e03997 inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.pink.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #e03997 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #e03997 inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.pink.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #ff8edf inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #ff8edf inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.pink.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #ff8edf inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #ff8edf inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.brown.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #a5673f inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #a5673f inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.brown.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #a5673f inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #a5673f inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.brown.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #d67c1c inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #d67c1c inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.brown.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #d67c1c inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #d67c1c inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.grey.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #767676 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #767676 inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.grey.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #767676 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #767676 inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.grey.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #dcddde inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #dcddde inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.grey.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #dcddde inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #dcddde inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.black.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #1b1c1d inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #1b1c1d inset}.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.black.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #1b1c1d inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #1b1c1d inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.black.left{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #545454 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,.2em 0 0 0 #545454 inset}.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.black.right{-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #545454 inset;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset,-.2em 0 0 0 #545454 inset}.ui.table [class*="left aligned"],.ui.table[class*="left aligned"]{text-align:left}.ui.table [class*="center aligned"],.ui.table[class*="center aligned"]{text-align:center}.ui.table [class*="right aligned"],.ui.table[class*="right aligned"]{text-align:right}.ui.table [class*="top aligned"],.ui.table[class*="top aligned"]{vertical-align:top}.ui.table [class*="middle aligned"],.ui.table[class*="middle aligned"]{vertical-align:middle}.ui.table [class*="bottom aligned"],.ui.table[class*="bottom aligned"]{vertical-align:bottom}.ui.table td.collapsing,.ui.table th.collapsing{width:1px;white-space:nowrap}.ui.fixed.table{table-layout:fixed}.ui.fixed.table td,.ui.fixed.table th{overflow:hidden;text-overflow:ellipsis}.ui.table tbody tr td.selectable:hover,.ui.ui.selectable.table>tbody>tr:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.inverted.table tbody tr td.selectable:hover,.ui.ui.selectable.inverted.table>tbody>tr:hover{background:rgba(255,255,255,.08);color:#fff}.ui.table tbody tr td.selectable{padding:0}.ui.table tbody tr td.selectable>a:not(.ui){display:block;color:inherit;padding:.78571429em .78571429em}.ui.selectable.table>tbody>tr,.ui.selectable.table>tr,.ui.table>tbody>tr>td.selectable,.ui.table>tr>td.selectable{cursor:pointer}.ui.selectable.table tr:hover td.error,.ui.table tr td.selectable.error:hover,.ui.ui.selectable.table tr.error:hover{background:#ffe7e7;color:#943634}.ui.selectable.table tr:hover td.warning,.ui.table tr td.selectable.warning:hover,.ui.ui.selectable.table tr.warning:hover{background:#fff4e4;color:#493107}.ui.selectable.table tr:hover td.active,.ui.table tr td.selectable.active:hover,.ui.ui.selectable.table tr.active:hover{background:#e0e0e0;color:rgba(0,0,0,.87)}.ui.selectable.table tr:hover td.positive,.ui.table tr td.selectable.positive:hover,.ui.ui.selectable.table tr.positive:hover{background:#f7ffe6;color:#275b28}.ui.selectable.table tr:hover td.negative,.ui.table tr td.selectable.negative:hover,.ui.ui.selectable.table tr.negative:hover{background:#ffe7e7;color:#943634}.ui.attached.table{top:0;bottom:0;border-radius:0;margin:0 -1px;width:calc(100% + 2px);max-width:calc(100% + 2px);-webkit-box-shadow:none;box-shadow:none;border:1px solid #d4d4d5}.ui.attached+.ui.attached.table:not(.top){border-top:none}.ui[class*="top attached"].table{bottom:0;margin-bottom:0;top:0;margin-top:1em;border-radius:.28571429rem .28571429rem 0 0}.ui.table[class*="top attached"]:first-child{margin-top:0}.ui[class*="bottom attached"].table{bottom:0;margin-top:0;top:0;margin-bottom:1em;-webkit-box-shadow:none,none;box-shadow:none,none;border-radius:0 0 .28571429rem .28571429rem}.ui[class*="bottom attached"].table:last-child{margin-bottom:0}.ui.striped.table>tbody>tr:nth-child(2n),.ui.striped.table>tr:nth-child(2n){background-color:rgba(0,0,50,.02)}.ui.inverted.striped.table>tbody>tr:nth-child(2n),.ui.inverted.striped.table>tr:nth-child(2n){background-color:rgba(255,255,255,.05)}.ui.striped.selectable.selectable.selectable.table tbody tr.active:hover{background:#efefef;color:rgba(0,0,0,.95)}.ui.table [class*="single line"],.ui.table[class*="single line"]{white-space:nowrap}.ui.primary.table{border-top:.2em solid #2185d0}.ui.inverted.primary.table{background-color:#2185d0;color:#fff}.ui.ui.table td.primary:not(.marked),.ui.ui.ui.ui.table tr.primary:not(.marked){background:#ddf4ff;color:rgba(255,255,255,.9)}.ui.selectable.table tr:hover td.primary:not(.marked),.ui.table tr td.selectable.primary:not(.marked):hover,.ui.ui.selectable.table tr.primary:not(.marked):hover{background:#d3f1ff;color:rgba(255,255,255,.9)}.ui.table td.marked.primary.left,.ui.table tr.marked.primary.left{-webkit-box-shadow:.2em 0 0 0 #2185d0 inset;box-shadow:.2em 0 0 0 #2185d0 inset}.ui.table td.marked.primary.right,.ui.table tr.marked.primary.right{-webkit-box-shadow:-.2em 0 0 0 #2185d0 inset;box-shadow:-.2em 0 0 0 #2185d0 inset}.ui.inverted.table td.marked.primary.left,.ui.inverted.table tr.marked.primary.left{-webkit-box-shadow:.2em 0 0 0 #54c8ff inset;box-shadow:.2em 0 0 0 #54c8ff inset}.ui.inverted.table td.marked.primary.right,.ui.inverted.table tr.marked.primary.right{-webkit-box-shadow:-.2em 0 0 0 #54c8ff inset;box-shadow:-.2em 0 0 0 #54c8ff inset}.ui.secondary.table{border-top:.2em solid #1b1c1d}.ui.inverted.secondary.table{background-color:#1b1c1d;color:#fff}.ui.ui.table td.secondary:not(.marked),.ui.ui.ui.ui.table tr.secondary:not(.marked){background:#ddd;color:rgba(255,255,255,.9)}.ui.selectable.table tr:hover td.secondary:not(.marked),.ui.table tr td.selectable.secondary:not(.marked):hover,.ui.ui.selectable.table tr.secondary:not(.marked):hover{background:#e2e2e2;color:rgba(255,255,255,.9)}.ui.table td.marked.secondary.left,.ui.table tr.marked.secondary.left{-webkit-box-shadow:.2em 0 0 0 #1b1c1d inset;box-shadow:.2em 0 0 0 #1b1c1d inset}.ui.table td.marked.secondary.right,.ui.table tr.marked.secondary.right{-webkit-box-shadow:-.2em 0 0 0 #1b1c1d inset;box-shadow:-.2em 0 0 0 #1b1c1d inset}.ui.inverted.table td.marked.secondary.left,.ui.inverted.table tr.marked.secondary.left{-webkit-box-shadow:.2em 0 0 0 #545454 inset;box-shadow:.2em 0 0 0 #545454 inset}.ui.inverted.table td.marked.secondary.right,.ui.inverted.table tr.marked.secondary.right{-webkit-box-shadow:-.2em 0 0 0 #545454 inset;box-shadow:-.2em 0 0 0 #545454 inset}.ui.red.table{border-top:.2em solid #db2828}.ui.inverted.red.table{background-color:#db2828;color:#fff}.ui.ui.table td.red:not(.marked),.ui.ui.ui.ui.table tr.red:not(.marked){background:#ffe1df;color:#db2828}.ui.selectable.table tr:hover td.red:not(.marked),.ui.table tr td.selectable.red:not(.marked):hover,.ui.ui.selectable.table tr.red:not(.marked):hover{background:#ffd7d5;color:#db2828}.ui.table td.marked.red.left,.ui.table tr.marked.red.left{-webkit-box-shadow:.2em 0 0 0 #db2828 inset;box-shadow:.2em 0 0 0 #db2828 inset}.ui.table td.marked.red.right,.ui.table tr.marked.red.right{-webkit-box-shadow:-.2em 0 0 0 #db2828 inset;box-shadow:-.2em 0 0 0 #db2828 inset}.ui.inverted.table td.marked.red.left,.ui.inverted.table tr.marked.red.left{-webkit-box-shadow:.2em 0 0 0 #ff695e inset;box-shadow:.2em 0 0 0 #ff695e inset}.ui.inverted.table td.marked.red.right,.ui.inverted.table tr.marked.red.right{-webkit-box-shadow:-.2em 0 0 0 #ff695e inset;box-shadow:-.2em 0 0 0 #ff695e inset}.ui.orange.table{border-top:.2em solid #f2711c}.ui.inverted.orange.table{background-color:#f2711c;color:#fff}.ui.ui.table td.orange:not(.marked),.ui.ui.ui.ui.table tr.orange:not(.marked){background:#ffe7d1;color:#f2711c}.ui.selectable.table tr:hover td.orange:not(.marked),.ui.table tr td.selectable.orange:not(.marked):hover,.ui.ui.selectable.table tr.orange:not(.marked):hover{background:#fae1cc;color:#f2711c}.ui.table td.marked.orange.left,.ui.table tr.marked.orange.left{-webkit-box-shadow:.2em 0 0 0 #f2711c inset;box-shadow:.2em 0 0 0 #f2711c inset}.ui.table td.marked.orange.right,.ui.table tr.marked.orange.right{-webkit-box-shadow:-.2em 0 0 0 #f2711c inset;box-shadow:-.2em 0 0 0 #f2711c inset}.ui.inverted.table td.marked.orange.left,.ui.inverted.table tr.marked.orange.left{-webkit-box-shadow:.2em 0 0 0 #ff851b inset;box-shadow:.2em 0 0 0 #ff851b inset}.ui.inverted.table td.marked.orange.right,.ui.inverted.table tr.marked.orange.right{-webkit-box-shadow:-.2em 0 0 0 #ff851b inset;box-shadow:-.2em 0 0 0 #ff851b inset}.ui.yellow.table{border-top:.2em solid #fbbd08}.ui.inverted.yellow.table{background-color:#fbbd08;color:#fff}.ui.ui.table td.yellow:not(.marked),.ui.ui.ui.ui.table tr.yellow:not(.marked){background:#fff9d2;color:#b58105}.ui.selectable.table tr:hover td.yellow:not(.marked),.ui.table tr td.selectable.yellow:not(.marked):hover,.ui.ui.selectable.table tr.yellow:not(.marked):hover{background:#fbf5cc;color:#b58105}.ui.table td.marked.yellow.left,.ui.table tr.marked.yellow.left{-webkit-box-shadow:.2em 0 0 0 #fbbd08 inset;box-shadow:.2em 0 0 0 #fbbd08 inset}.ui.table td.marked.yellow.right,.ui.table tr.marked.yellow.right{-webkit-box-shadow:-.2em 0 0 0 #fbbd08 inset;box-shadow:-.2em 0 0 0 #fbbd08 inset}.ui.inverted.table td.marked.yellow.left,.ui.inverted.table tr.marked.yellow.left{-webkit-box-shadow:.2em 0 0 0 #ffe21f inset;box-shadow:.2em 0 0 0 #ffe21f inset}.ui.inverted.table td.marked.yellow.right,.ui.inverted.table tr.marked.yellow.right{-webkit-box-shadow:-.2em 0 0 0 #ffe21f inset;box-shadow:-.2em 0 0 0 #ffe21f inset}.ui.olive.table{border-top:.2em solid #b5cc18}.ui.inverted.olive.table{background-color:#b5cc18;color:#fff}.ui.ui.table td.olive:not(.marked),.ui.ui.ui.ui.table tr.olive:not(.marked){background:#f7fae4;color:#8abc1e}.ui.selectable.table tr:hover td.olive:not(.marked),.ui.table tr td.selectable.olive:not(.marked):hover,.ui.ui.selectable.table tr.olive:not(.marked):hover{background:#f6fada;color:#8abc1e}.ui.table td.marked.olive.left,.ui.table tr.marked.olive.left{-webkit-box-shadow:.2em 0 0 0 #b5cc18 inset;box-shadow:.2em 0 0 0 #b5cc18 inset}.ui.table td.marked.olive.right,.ui.table tr.marked.olive.right{-webkit-box-shadow:-.2em 0 0 0 #b5cc18 inset;box-shadow:-.2em 0 0 0 #b5cc18 inset}.ui.inverted.table td.marked.olive.left,.ui.inverted.table tr.marked.olive.left{-webkit-box-shadow:.2em 0 0 0 #d9e778 inset;box-shadow:.2em 0 0 0 #d9e778 inset}.ui.inverted.table td.marked.olive.right,.ui.inverted.table tr.marked.olive.right{-webkit-box-shadow:-.2em 0 0 0 #d9e778 inset;box-shadow:-.2em 0 0 0 #d9e778 inset}.ui.green.table{border-top:.2em solid #21ba45}.ui.inverted.green.table{background-color:#21ba45;color:#fff}.ui.ui.table td.green:not(.marked),.ui.ui.ui.ui.table tr.green:not(.marked){background:#d5f5d9;color:#1ebc30}.ui.selectable.table tr:hover td.green:not(.marked),.ui.table tr td.selectable.green:not(.marked):hover,.ui.ui.selectable.table tr.green:not(.marked):hover{background:#d2eed5;color:#1ebc30}.ui.table td.marked.green.left,.ui.table tr.marked.green.left{-webkit-box-shadow:.2em 0 0 0 #21ba45 inset;box-shadow:.2em 0 0 0 #21ba45 inset}.ui.table td.marked.green.right,.ui.table tr.marked.green.right{-webkit-box-shadow:-.2em 0 0 0 #21ba45 inset;box-shadow:-.2em 0 0 0 #21ba45 inset}.ui.inverted.table td.marked.green.left,.ui.inverted.table tr.marked.green.left{-webkit-box-shadow:.2em 0 0 0 #2ecc40 inset;box-shadow:.2em 0 0 0 #2ecc40 inset}.ui.inverted.table td.marked.green.right,.ui.inverted.table tr.marked.green.right{-webkit-box-shadow:-.2em 0 0 0 #2ecc40 inset;box-shadow:-.2em 0 0 0 #2ecc40 inset}.ui.teal.table{border-top:.2em solid #00b5ad}.ui.inverted.teal.table{background-color:#00b5ad;color:#fff}.ui.ui.table td.teal:not(.marked),.ui.ui.ui.ui.table tr.teal:not(.marked){background:#e2ffff;color:#10a3a3}.ui.selectable.table tr:hover td.teal:not(.marked),.ui.table tr td.selectable.teal:not(.marked):hover,.ui.ui.selectable.table tr.teal:not(.marked):hover{background:#d8ffff;color:#10a3a3}.ui.table td.marked.teal.left,.ui.table tr.marked.teal.left{-webkit-box-shadow:.2em 0 0 0 #00b5ad inset;box-shadow:.2em 0 0 0 #00b5ad inset}.ui.table td.marked.teal.right,.ui.table tr.marked.teal.right{-webkit-box-shadow:-.2em 0 0 0 #00b5ad inset;box-shadow:-.2em 0 0 0 #00b5ad inset}.ui.inverted.table td.marked.teal.left,.ui.inverted.table tr.marked.teal.left{-webkit-box-shadow:.2em 0 0 0 #6dffff inset;box-shadow:.2em 0 0 0 #6dffff inset}.ui.inverted.table td.marked.teal.right,.ui.inverted.table tr.marked.teal.right{-webkit-box-shadow:-.2em 0 0 0 #6dffff inset;box-shadow:-.2em 0 0 0 #6dffff inset}.ui.blue.table{border-top:.2em solid #2185d0}.ui.inverted.blue.table{background-color:#2185d0;color:#fff}.ui.ui.table td.blue:not(.marked),.ui.ui.ui.ui.table tr.blue:not(.marked){background:#ddf4ff;color:#2185d0}.ui.selectable.table tr:hover td.blue:not(.marked),.ui.table tr td.selectable.blue:not(.marked):hover,.ui.ui.selectable.table tr.blue:not(.marked):hover{background:#d3f1ff;color:#2185d0}.ui.table td.marked.blue.left,.ui.table tr.marked.blue.left{-webkit-box-shadow:.2em 0 0 0 #2185d0 inset;box-shadow:.2em 0 0 0 #2185d0 inset}.ui.table td.marked.blue.right,.ui.table tr.marked.blue.right{-webkit-box-shadow:-.2em 0 0 0 #2185d0 inset;box-shadow:-.2em 0 0 0 #2185d0 inset}.ui.inverted.table td.marked.blue.left,.ui.inverted.table tr.marked.blue.left{-webkit-box-shadow:.2em 0 0 0 #54c8ff inset;box-shadow:.2em 0 0 0 #54c8ff inset}.ui.inverted.table td.marked.blue.right,.ui.inverted.table tr.marked.blue.right{-webkit-box-shadow:-.2em 0 0 0 #54c8ff inset;box-shadow:-.2em 0 0 0 #54c8ff inset}.ui.violet.table{border-top:.2em solid #6435c9}.ui.inverted.violet.table{background-color:#6435c9;color:#fff}.ui.ui.table td.violet:not(.marked),.ui.ui.ui.ui.table tr.violet:not(.marked){background:#ece9fe;color:#6435c9}.ui.selectable.table tr:hover td.violet:not(.marked),.ui.table tr td.selectable.violet:not(.marked):hover,.ui.ui.selectable.table tr.violet:not(.marked):hover{background:#e3deff;color:#6435c9}.ui.table td.marked.violet.left,.ui.table tr.marked.violet.left{-webkit-box-shadow:.2em 0 0 0 #6435c9 inset;box-shadow:.2em 0 0 0 #6435c9 inset}.ui.table td.marked.violet.right,.ui.table tr.marked.violet.right{-webkit-box-shadow:-.2em 0 0 0 #6435c9 inset;box-shadow:-.2em 0 0 0 #6435c9 inset}.ui.inverted.table td.marked.violet.left,.ui.inverted.table tr.marked.violet.left{-webkit-box-shadow:.2em 0 0 0 #a291fb inset;box-shadow:.2em 0 0 0 #a291fb inset}.ui.inverted.table td.marked.violet.right,.ui.inverted.table tr.marked.violet.right{-webkit-box-shadow:-.2em 0 0 0 #a291fb inset;box-shadow:-.2em 0 0 0 #a291fb inset}.ui.purple.table{border-top:.2em solid #a333c8}.ui.inverted.purple.table{background-color:#a333c8;color:#fff}.ui.ui.table td.purple:not(.marked),.ui.ui.ui.ui.table tr.purple:not(.marked){background:#f8e3ff;color:#a333c8}.ui.selectable.table tr:hover td.purple:not(.marked),.ui.table tr td.selectable.purple:not(.marked):hover,.ui.ui.selectable.table tr.purple:not(.marked):hover{background:#f5d9ff;color:#a333c8}.ui.table td.marked.purple.left,.ui.table tr.marked.purple.left{-webkit-box-shadow:.2em 0 0 0 #a333c8 inset;box-shadow:.2em 0 0 0 #a333c8 inset}.ui.table td.marked.purple.right,.ui.table tr.marked.purple.right{-webkit-box-shadow:-.2em 0 0 0 #a333c8 inset;box-shadow:-.2em 0 0 0 #a333c8 inset}.ui.inverted.table td.marked.purple.left,.ui.inverted.table tr.marked.purple.left{-webkit-box-shadow:.2em 0 0 0 #dc73ff inset;box-shadow:.2em 0 0 0 #dc73ff inset}.ui.inverted.table td.marked.purple.right,.ui.inverted.table tr.marked.purple.right{-webkit-box-shadow:-.2em 0 0 0 #dc73ff inset;box-shadow:-.2em 0 0 0 #dc73ff inset}.ui.pink.table{border-top:.2em solid #e03997}.ui.inverted.pink.table{background-color:#e03997;color:#fff}.ui.ui.table td.pink:not(.marked),.ui.ui.ui.ui.table tr.pink:not(.marked){background:#ffe8f9;color:#e03997}.ui.selectable.table tr:hover td.pink:not(.marked),.ui.table tr td.selectable.pink:not(.marked):hover,.ui.ui.selectable.table tr.pink:not(.marked):hover{background:#ffdef6;color:#e03997}.ui.table td.marked.pink.left,.ui.table tr.marked.pink.left{-webkit-box-shadow:.2em 0 0 0 #e03997 inset;box-shadow:.2em 0 0 0 #e03997 inset}.ui.table td.marked.pink.right,.ui.table tr.marked.pink.right{-webkit-box-shadow:-.2em 0 0 0 #e03997 inset;box-shadow:-.2em 0 0 0 #e03997 inset}.ui.inverted.table td.marked.pink.left,.ui.inverted.table tr.marked.pink.left{-webkit-box-shadow:.2em 0 0 0 #ff8edf inset;box-shadow:.2em 0 0 0 #ff8edf inset}.ui.inverted.table td.marked.pink.right,.ui.inverted.table tr.marked.pink.right{-webkit-box-shadow:-.2em 0 0 0 #ff8edf inset;box-shadow:-.2em 0 0 0 #ff8edf inset}.ui.brown.table{border-top:.2em solid #a5673f}.ui.inverted.brown.table{background-color:#a5673f;color:#fff}.ui.ui.table td.brown:not(.marked),.ui.ui.ui.ui.table tr.brown:not(.marked){background:#f7e5d2;color:#a5673f}.ui.selectable.table tr:hover td.brown:not(.marked),.ui.table tr td.selectable.brown:not(.marked):hover,.ui.ui.selectable.table tr.brown:not(.marked):hover{background:#efe0cf;color:#a5673f}.ui.table td.marked.brown.left,.ui.table tr.marked.brown.left{-webkit-box-shadow:.2em 0 0 0 #a5673f inset;box-shadow:.2em 0 0 0 #a5673f inset}.ui.table td.marked.brown.right,.ui.table tr.marked.brown.right{-webkit-box-shadow:-.2em 0 0 0 #a5673f inset;box-shadow:-.2em 0 0 0 #a5673f inset}.ui.inverted.table td.marked.brown.left,.ui.inverted.table tr.marked.brown.left{-webkit-box-shadow:.2em 0 0 0 #d67c1c inset;box-shadow:.2em 0 0 0 #d67c1c inset}.ui.inverted.table td.marked.brown.right,.ui.inverted.table tr.marked.brown.right{-webkit-box-shadow:-.2em 0 0 0 #d67c1c inset;box-shadow:-.2em 0 0 0 #d67c1c inset}.ui.grey.table{border-top:.2em solid #767676}.ui.inverted.grey.table{background-color:#767676;color:#fff}.ui.ui.table td.grey:not(.marked),.ui.ui.ui.ui.table tr.grey:not(.marked){background:#dcddde;color:#767676}.ui.selectable.table tr:hover td.grey:not(.marked),.ui.table tr td.selectable.grey:not(.marked):hover,.ui.ui.selectable.table tr.grey:not(.marked):hover{background:#c2c4c5;color:#767676}.ui.table td.marked.grey.left,.ui.table tr.marked.grey.left{-webkit-box-shadow:.2em 0 0 0 #767676 inset;box-shadow:.2em 0 0 0 #767676 inset}.ui.table td.marked.grey.right,.ui.table tr.marked.grey.right{-webkit-box-shadow:-.2em 0 0 0 #767676 inset;box-shadow:-.2em 0 0 0 #767676 inset}.ui.inverted.table td.marked.grey.left,.ui.inverted.table tr.marked.grey.left{-webkit-box-shadow:.2em 0 0 0 #dcddde inset;box-shadow:.2em 0 0 0 #dcddde inset}.ui.inverted.table td.marked.grey.right,.ui.inverted.table tr.marked.grey.right{-webkit-box-shadow:-.2em 0 0 0 #dcddde inset;box-shadow:-.2em 0 0 0 #dcddde inset}.ui.black.table{border-top:.2em solid #1b1c1d}.ui.inverted.black.table{background-color:#1b1c1d;color:#fff}.ui.ui.table td.black:not(.marked),.ui.ui.ui.ui.table tr.black:not(.marked){background:#545454;color:#fff}.ui.selectable.table tr:hover td.black:not(.marked),.ui.table tr td.selectable.black:not(.marked):hover,.ui.ui.selectable.table tr.black:not(.marked):hover{background:#000;color:#fff}.ui.table td.marked.black.left,.ui.table tr.marked.black.left{-webkit-box-shadow:.2em 0 0 0 #1b1c1d inset;box-shadow:.2em 0 0 0 #1b1c1d inset}.ui.table td.marked.black.right,.ui.table tr.marked.black.right{-webkit-box-shadow:-.2em 0 0 0 #1b1c1d inset;box-shadow:-.2em 0 0 0 #1b1c1d inset}.ui.inverted.table td.marked.black.left,.ui.inverted.table tr.marked.black.left{-webkit-box-shadow:.2em 0 0 0 #545454 inset;box-shadow:.2em 0 0 0 #545454 inset}.ui.inverted.table td.marked.black.right,.ui.inverted.table tr.marked.black.right{-webkit-box-shadow:-.2em 0 0 0 #545454 inset;box-shadow:-.2em 0 0 0 #545454 inset}.ui.one.column.table td{width:100%}.ui.two.column.table td{width:50%}.ui.three.column.table td{width:33.33333333%}.ui.four.column.table td{width:25%}.ui.five.column.table td{width:20%}.ui.six.column.table td{width:16.66666667%}.ui.seven.column.table td{width:14.28571429%}.ui.eight.column.table td{width:12.5%}.ui.nine.column.table td{width:11.11111111%}.ui.ten.column.table td{width:10%}.ui.eleven.column.table td{width:9.09090909%}.ui.twelve.column.table td{width:8.33333333%}.ui.thirteen.column.table td{width:7.69230769%}.ui.fourteen.column.table td{width:7.14285714%}.ui.fifteen.column.table td{width:6.66666667%}.ui.sixteen.column.table td{width:6.25%}.ui.table td.one.wide,.ui.table th.one.wide{width:6.25%}.ui.table td.two.wide,.ui.table th.two.wide{width:12.5%}.ui.table td.three.wide,.ui.table th.three.wide{width:18.75%}.ui.table td.four.wide,.ui.table th.four.wide{width:25%}.ui.table td.five.wide,.ui.table th.five.wide{width:31.25%}.ui.table td.six.wide,.ui.table th.six.wide{width:37.5%}.ui.table td.seven.wide,.ui.table th.seven.wide{width:43.75%}.ui.table td.eight.wide,.ui.table th.eight.wide{width:50%}.ui.table td.nine.wide,.ui.table th.nine.wide{width:56.25%}.ui.table td.ten.wide,.ui.table th.ten.wide{width:62.5%}.ui.table td.eleven.wide,.ui.table th.eleven.wide{width:68.75%}.ui.table td.twelve.wide,.ui.table th.twelve.wide{width:75%}.ui.table td.thirteen.wide,.ui.table th.thirteen.wide{width:81.25%}.ui.table td.fourteen.wide,.ui.table th.fourteen.wide{width:87.5%}.ui.table td.fifteen.wide,.ui.table th.fifteen.wide{width:93.75%}.ui.table td.sixteen.wide,.ui.table th.sixteen.wide{width:100%}.ui.sortable.table>thead>tr>th{cursor:pointer;white-space:nowrap;border-left:1px solid rgba(34,36,38,.15);color:rgba(0,0,0,.87)}.ui.sortable.table>thead>tr>th:first-child{border-left:none}.ui.sortable.table thead th.sorted,.ui.sortable.table thead th.sorted:hover{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ui.sortable.table>thead>tr>th:after{display:none;font-style:normal;font-weight:400;text-decoration:inherit;content:'';height:1em;width:auto;opacity:.8;margin:0 0 0 .5em;font-family:Icons}.ui.sortable.table thead th.ascending:after{content:'\f0d8'}.ui.sortable.table thead th.descending:after{content:'\f0d7'}.ui.sortable.table th.disabled:hover{cursor:auto;color:rgba(40,40,40,.3)}.ui.sortable.table>thead>tr>th:hover{color:rgba(0,0,0,.8)}.ui.sortable.table:not(.basic)>thead>tr>th:hover{background:rgba(0,0,0,.05)}.ui.sortable.table thead th.sorted{color:rgba(0,0,0,.95)}.ui.sortable.table:not(.basic) thead th.sorted{background:rgba(0,0,0,.05)}.ui.sortable.table thead th.sorted:after{display:inline-block}.ui.sortable.table thead th.sorted:hover{color:rgba(0,0,0,.95)}.ui.sortable.table:not(.basic) thead th.sorted:hover{background:rgba(0,0,0,.05)}.ui.inverted.sortable.table thead th.sorted{color:#fff}.ui.inverted.sortable.table:not(.basic) thead th.sorted{background:rgba(255,255,255,.15) -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,.05)));background:rgba(255,255,255,.15) -webkit-linear-gradient(transparent,rgba(0,0,0,.05));background:rgba(255,255,255,.15) linear-gradient(transparent,rgba(0,0,0,.05))}.ui.inverted.sortable.table>thead>tr>th:hover{color:#fff}.ui.inverted.sortable.table:not(.basic)>thead>tr>th:hover{background:rgba(255,255,255,.08) -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,.05)));background:rgba(255,255,255,.08) -webkit-linear-gradient(transparent,rgba(0,0,0,.05));background:rgba(255,255,255,.08) linear-gradient(transparent,rgba(0,0,0,.05))}.ui.inverted.sortable.table:not(.basic)>thead>tr>th{border-left-color:transparent;border-right-color:transparent}.ui.inverted.table{background:#333;color:rgba(255,255,255,.9);border:none}.ui.ui.inverted.table>tbody>tr>th,.ui.ui.inverted.table>tfoot>tr>td,.ui.ui.inverted.table>tfoot>tr>th,.ui.ui.inverted.table>thead>tr>th,.ui.ui.inverted.table>tr>th{background-color:rgba(0,0,0,.15);border-color:rgba(255,255,255,.1);color:rgba(255,255,255,.9)}.ui.inverted.table>tbody>tr>td,.ui.inverted.table>tfoot>tr>td,.ui.inverted.table>tr>td{border-color:rgba(255,255,255,.1)}.ui.inverted.table tr td.disabled,.ui.inverted.table tr.disabled td,.ui.inverted.table tr.disabled:hover td,.ui.inverted.table tr:hover td.disabled{pointer-events:none;color:rgba(225,225,225,.3)}.ui.inverted.table tr td.disabled:not([class=disabled]),.ui.inverted.table tr.disabled td[class]:not(.disabled),.ui.inverted.table tr.disabled:not([class=disabled]) td,.ui.inverted.table tr:hover td.disabled:not([class=disabled]){color:rgba(40,40,40,.3)}.ui.inverted.definition.table>tfoot:not(.full-width)>tr>th:first-child,.ui.inverted.definition.table>thead:not(.full-width)>tr>th:first-child{background:#fff}.ui.inverted.definition.table>tbody>tr>td:first-child .ui.inverted.definition.table>tfoot>tr>td:first-child,.ui.inverted.definition.table>tr>td:first-child{background:rgba(255,255,255,.02);color:#fff}.ui.collapsing.table{width:auto}.ui.basic.table{background:0 0;border:1px solid rgba(34,36,38,.15);-webkit-box-shadow:none;box-shadow:none}.ui.basic.table>tfoot,.ui.basic.table>thead{-webkit-box-shadow:none;box-shadow:none}.ui.basic.table>tbody>tr>th,.ui.basic.table>tfoot>tr>th,.ui.basic.table>thead>tr>th,.ui.basic.table>tr>th{background:0 0;border-left:none}.ui.basic.table>tbody>tr{border-bottom:1px solid rgba(0,0,0,.1)}.ui.basic.table>tbody>tr>td,.ui.basic.table>tfoot>tr>td,.ui.basic.table>tr>td{background:0 0}.ui.basic.striped.table>tbody>tr:nth-child(2n){background-color:rgba(0,0,0,.05)}.ui[class*="very basic"].table{border:none}.ui[class*="very basic"].table:not(.sortable):not(.striped)>tbody>tr>td,.ui[class*="very basic"].table:not(.sortable):not(.striped)>tbody>tr>th,.ui[class*="very basic"].table:not(.sortable):not(.striped)>tfoot>tr>th,.ui[class*="very basic"].table:not(.sortable):not(.striped)>thead>tr>th,.ui[class*="very basic"].table:not(.sortable):not(.striped)>tr>td,.ui[class*="very basic"].table:not(.sortable):not(.striped)>tr>th{padding:''}.ui[class*="very basic"].table:not(.sortable):not(.striped)>tbody>tr>td:first-child,.ui[class*="very basic"].table:not(.sortable):not(.striped)>tbody>tr>th:first-child,.ui[class*="very basic"].table:not(.sortable):not(.striped)>tfoot>tr>td:first-child,.ui[class*="very basic"].table:not(.sortable):not(.striped)>tfoot>tr>th:first-child,.ui[class*="very basic"].table:not(.sortable):not(.striped)>thead>tr>th:first-child,.ui[class*="very basic"].table:not(.sortable):not(.striped)>tr>td:first-child,.ui[class*="very basic"].table:not(.sortable):not(.striped)>tr>th:first-child{padding-left:0}.ui[class*="very basic"].table:not(.sortable):not(.striped)>tbody>tr>td:last-child,.ui[class*="very basic"].table:not(.sortable):not(.striped)>tbody>tr>th:last-child,.ui[class*="very basic"].table:not(.sortable):not(.striped)>tfoot>tr>td:last-child,.ui[class*="very basic"].table:not(.sortable):not(.striped)>tfoot>tr>th:last-child,.ui[class*="very basic"].table:not(.sortable):not(.striped)>thead>tr>th:last-child,.ui[class*="very basic"].table:not(.sortable):not(.striped)>tr>td:last-child,.ui[class*="very basic"].table:not(.sortable):not(.striped)>tr>th:last-child{padding-right:0}.ui[class*="very basic"].table:not(.sortable):not(.striped)>thead>tr:first-child>th{padding-top:0}.ui.celled.table>tbody>tr>td,.ui.celled.table>tbody>tr>th,.ui.celled.table>tfoot>tr>td,.ui.celled.table>tfoot>tr>th,.ui.celled.table>thead>tr>th,.ui.celled.table>tr>td,.ui.celled.table>tr>th{border-left:1px solid rgba(34,36,38,.1)}.ui.inverted.celled.table>tbody>tr>td,.ui.inverted.celled.table>tr>td{border-left:1px solid rgba(255,255,255,.1)}.ui.celled.table>tbody>tr>td:first-child,.ui.celled.table>tbody>tr>th:first-child,.ui.celled.table>tfoot>tr>td:first-child,.ui.celled.table>tfoot>tr>th:first-child,.ui.celled.table>thead>tr>th:first-child,.ui.celled.table>tr>td:first-child,.ui.celled.table>tr>th:first-child{border-left:none}.ui.padded.table>tbody>tr>th,.ui.padded.table>tfoot>tr>th,.ui.padded.table>thead>tr>th,.ui.padded.table>tr>th{padding-left:1em;padding-right:1em}.ui.padded.table>tbody>tr>td,.ui.padded.table>tbody>tr>th,.ui.padded.table>tfoot>tr>td,.ui.padded.table>tfoot>tr>th,.ui.padded.table>thead>tr>th,.ui.padded.table>tr>td,.ui.padded.table>tr>th{padding:1em 1em}.ui[class*="very padded"].table>tbody>tr>th,.ui[class*="very padded"].table>tfoot>tr>th,.ui[class*="very padded"].table>thead>tr>th,.ui[class*="very padded"].table>tr>th{padding-left:1.5em;padding-right:1.5em}.ui[class*="very padded"].table>tbody>tr>td,.ui[class*="very padded"].table>tfoot>tr>td,.ui[class*="very padded"].table>tr>td{padding:1.5em 1.5em}.ui.compact.table>tbody>tr>th,.ui.compact.table>tfoot>tr>th,.ui.compact.table>thead>tr>th,.ui.compact.table>tr>th{padding-left:.7em;padding-right:.7em}.ui.compact.table>tbody>tr>td,.ui.compact.table>tfoot>tr>td,.ui.compact.table>tr>td{padding:.5em .7em}.ui[class*="very compact"].table>tbody>tr>th,.ui[class*="very compact"].table>tfoot>tr>th,.ui[class*="very compact"].table>thead>tr>th,.ui[class*="very compact"].table>tr>th{padding-left:.6em;padding-right:.6em}.ui[class*="very compact"].table>tbody>tr>td,.ui[class*="very compact"].table>tfoot>tr>td,.ui[class*="very compact"].table>tr>td{padding:.4em .6em}.ui.table{font-size:1em}.ui.mini.table{font-size:.78571429rem}.ui.tiny.table{font-size:.85714286rem}.ui.small.table{font-size:.9em}.ui.large.table{font-size:1.1em}.ui.big.table{font-size:1.28571429rem}.ui.huge.table{font-size:1.42857143rem}.ui.massive.table{font-size:1.71428571rem}
\ No newline at end of file
diff --git a/src-angular/assets/semantic/dist/components/text.css b/src-angular/assets/semantic/dist/components/text.css
deleted file mode 100644
index 36a9c41..0000000
--- a/src-angular/assets/semantic/dist/components/text.css
+++ /dev/null
@@ -1,140 +0,0 @@
-/*!
- * # Fomantic-UI - Text
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * https://github.com/fomantic/Fomantic-UI/blob/master/LICENSE.md
- *
- */
-
-
-/*******************************
- Text
-*******************************/
-
-span.ui.primary.text {
- color: #2185D0;
-}
-span.ui.inverted.primary.text {
- color: #54C8FF;
-}
-span.ui.secondary.text {
- color: #1B1C1D;
-}
-span.ui.inverted.secondary.text {
- color: #545454;
-}
-span.ui.red.text {
- color: #DB2828;
-}
-span.ui.inverted.red.text {
- color: #FF695E;
-}
-span.ui.orange.text {
- color: #F2711C;
-}
-span.ui.inverted.orange.text {
- color: #FF851B;
-}
-span.ui.yellow.text {
- color: #FBBD08;
-}
-span.ui.inverted.yellow.text {
- color: #FFE21F;
-}
-span.ui.olive.text {
- color: #B5CC18;
-}
-span.ui.inverted.olive.text {
- color: #D9E778;
-}
-span.ui.green.text {
- color: #21BA45;
-}
-span.ui.inverted.green.text {
- color: #2ECC40;
-}
-span.ui.teal.text {
- color: #00B5AD;
-}
-span.ui.inverted.teal.text {
- color: #6DFFFF;
-}
-span.ui.blue.text {
- color: #2185D0;
-}
-span.ui.inverted.blue.text {
- color: #54C8FF;
-}
-span.ui.violet.text {
- color: #6435C9;
-}
-span.ui.inverted.violet.text {
- color: #A291FB;
-}
-span.ui.purple.text {
- color: #A333C8;
-}
-span.ui.inverted.purple.text {
- color: #DC73FF;
-}
-span.ui.pink.text {
- color: #E03997;
-}
-span.ui.inverted.pink.text {
- color: #FF8EDF;
-}
-span.ui.brown.text {
- color: #A5673F;
-}
-span.ui.inverted.brown.text {
- color: #D67C1C;
-}
-span.ui.grey.text {
- color: #767676;
-}
-span.ui.inverted.grey.text {
- color: #DCDDDE;
-}
-span.ui.black.text {
- color: #1B1C1D;
-}
-span.ui.inverted.black.text {
- color: #545454;
-}
-span.ui.disabled.text {
- opacity: 0.45;
-}
-
-/* Sizes */
-span.ui.medium.text {
- font-size: 1em;
-}
-span.ui.mini.text {
- font-size: 0.4em;
-}
-span.ui.tiny.text {
- font-size: 0.5em;
-}
-span.ui.small.text {
- font-size: 0.75em;
-}
-span.ui.large.text {
- font-size: 1.5em;
-}
-span.ui.big.text {
- font-size: 2em;
-}
-span.ui.huge.text {
- font-size: 4em;
-}
-span.ui.massive.text {
- font-size: 8em;
-}
-
-
-/*******************************
- Theme Overrides
-*******************************/
-
diff --git a/src-angular/assets/semantic/dist/components/text.min.css b/src-angular/assets/semantic/dist/components/text.min.css
deleted file mode 100644
index 3c4b3e3..0000000
--- a/src-angular/assets/semantic/dist/components/text.min.css
+++ /dev/null
@@ -1,9 +0,0 @@
-/*!
- * # Fomantic-UI - Text
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * https://github.com/fomantic/Fomantic-UI/blob/master/LICENSE.md
- *
- */span.ui.primary.text{color:#2185d0}span.ui.inverted.primary.text{color:#54c8ff}span.ui.secondary.text{color:#1b1c1d}span.ui.inverted.secondary.text{color:#545454}span.ui.red.text{color:#db2828}span.ui.inverted.red.text{color:#ff695e}span.ui.orange.text{color:#f2711c}span.ui.inverted.orange.text{color:#ff851b}span.ui.yellow.text{color:#fbbd08}span.ui.inverted.yellow.text{color:#ffe21f}span.ui.olive.text{color:#b5cc18}span.ui.inverted.olive.text{color:#d9e778}span.ui.green.text{color:#21ba45}span.ui.inverted.green.text{color:#2ecc40}span.ui.teal.text{color:#00b5ad}span.ui.inverted.teal.text{color:#6dffff}span.ui.blue.text{color:#2185d0}span.ui.inverted.blue.text{color:#54c8ff}span.ui.violet.text{color:#6435c9}span.ui.inverted.violet.text{color:#a291fb}span.ui.purple.text{color:#a333c8}span.ui.inverted.purple.text{color:#dc73ff}span.ui.pink.text{color:#e03997}span.ui.inverted.pink.text{color:#ff8edf}span.ui.brown.text{color:#a5673f}span.ui.inverted.brown.text{color:#d67c1c}span.ui.grey.text{color:#767676}span.ui.inverted.grey.text{color:#dcddde}span.ui.black.text{color:#1b1c1d}span.ui.inverted.black.text{color:#545454}span.ui.disabled.text{opacity:.45}span.ui.medium.text{font-size:1em}span.ui.mini.text{font-size:.4em}span.ui.tiny.text{font-size:.5em}span.ui.small.text{font-size:.75em}span.ui.large.text{font-size:1.5em}span.ui.big.text{font-size:2em}span.ui.huge.text{font-size:4em}span.ui.massive.text{font-size:8em}
\ No newline at end of file
diff --git a/src-angular/assets/semantic/dist/components/toast.css b/src-angular/assets/semantic/dist/components/toast.css
deleted file mode 100644
index 6eafff4..0000000
--- a/src-angular/assets/semantic/dist/components/toast.css
+++ /dev/null
@@ -1,689 +0,0 @@
-/*!
- * # Fomantic-UI - Toast
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-
-/*******************************
- Toast container
-*******************************/
-
-.ui.toast-container {
- position: fixed;
- z-index: 9999;
-}
-.ui.toast-container.top.right {
- top: 0.85714286em;
- right: 0.85714286em;
- margin-left: 0.85714286em;
-}
-.ui.toast-container.top.left {
- top: 0.85714286em;
- left: 0.85714286em;
- margin-right: 0.85714286em;
-}
-.ui.toast-container.top.center {
- left: 50%;
- -webkit-transform: translate(-50%, 0);
- transform: translate(-50%, 0);
- top: 0.85714286em;
-}
-.ui.toast-container.bottom.right {
- bottom: 0.85714286em;
- right: 0.85714286em;
- margin-left: 0.85714286em;
-}
-.ui.toast-container.bottom.left {
- bottom: 0.85714286em;
- left: 0.85714286em;
- margin-right: 0.85714286em;
-}
-.ui.toast-container.bottom.center {
- left: 50%;
- -webkit-transform: translate(-50%, 0);
- transform: translate(-50%, 0);
- bottom: 0.85714286em;
-}
-.ui.toast-container .visible.toast-box,
-.ui.toast-container .animating.toast-box,
-.ui.toast-container .toast-box {
- display: table !important;
-}
-.ui.toast-container .toast-box {
- margin-bottom: 0.5em;
- border-radius: 0.28571429rem;
- cursor: default;
-}
-.ui.toast-container .toast-box:hover {
- opacity: 1;
-}
-.ui.toast-container .toast-box:not(.unclickable):hover {
- cursor: pointer;
-}
-.ui.toast-container .toast-box.floating,
-.ui.toast-container .toast-box.hoverfloating:hover {
- -webkit-box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- border: 1px solid rgba(34, 36, 38, 0.12);
-}
-.ui.toast-container .toast-box.compact,
-.ui.toast-container .toast-box > .compact {
- width: 350px;
-}
-.ui.toast-container .toast-box > .ui.toast,
-.ui.toast-container .toast-box > .ui.message {
- margin: 0 -1px -0.01em;
- position: relative;
-}
-.ui.toast-container .toast-box > .attached.progress {
- z-index: 1;
-}
-.ui.toast-container .toast-box > .attached.progress.bottom {
- margin: -0.2em -1px -0.01em;
-}
-.ui.toast-container .toast-box > .attached.progress.top {
- margin: -0.01em -1px -0.2em;
-}
-.ui.toast-container .toast-box > .attached.progress .bar {
- min-width: 0;
-}
-.ui.toast-container .toast-box > .attached.progress.info .bar.bar.bar {
- background: #12a1bf;
-}
-.ui.toast-container .toast-box > .attached.progress.warning .bar.bar.bar {
- background: #cf9b0d;
-}
-.ui.toast-container .toast-box > .attached.progress.success .bar.bar.bar {
- background: #15792d;
-}
-.ui.toast-container .toast-box > .attached.progress .error .bar.bar.bar {
- background: #9c1a1a;
-}
-.ui.toast-container .toast-box > .attached.progress.neutral .bar.bar.bar {
- background: #d9d9d9;
-}
-.ui.toast-container .toast-box > .ui.message > .close.icon {
- top: 0.3em;
- right: 0.3em;
-}
-.ui.toast-container .toast-box > .ui.message > .actions:last-child {
- margin-bottom: -1em;
-}
-.ui.toast-container .toast-box > .ui.message.icon {
- -webkit-box-align: inherit;
- -ms-flex-align: inherit;
- align-items: inherit;
-}
-.ui.toast-container .toast-box > .ui.message.icon > :not(.icon):not(.actions) {
- padding-left: 5rem;
-}
-.ui.toast-container .toast-box > .ui.message.icon > .icon:not(.close) {
- display: inline-block;
- position: absolute;
- width: 4rem;
- top: 50%;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
-}
-.ui.toast-container .toast-box > .ui.message.icon:not(.vertical).actions > .icon:not(.close) {
- top: calc(50% - 1.2em);
- -webkit-transform: none;
- transform: none;
-}
-.ui.toast-container .toast-box > .ui.message.icon:not(.vertical).icon.icon.icon {
- display: block;
-}
-.ui.toast-container .toast-box .ui.toast > .close.icon {
- cursor: pointer;
- margin: 0;
- opacity: 0.7;
- -webkit-transition: opacity 0.1s ease;
- transition: opacity 0.1s ease;
-}
-.ui.toast-container .toast-box .ui.toast > .close.icon:hover {
- opacity: 1;
-}
-.ui.toast-container .toast-box .ui.toast.vertical > .close.icon {
- margin-top: -0.3em;
- margin-right: -0.3em;
-}
-.ui.toast-container .toast-box .ui.toast:not(.vertical) > .close.icon {
- position: absolute;
- top: 0.3em;
-}
-.ui.toast-container .toast-box .ui.toast:not(.vertical) > .close.icon:not(.left) {
- right: 0.3em;
-}
-.ui.toast-container .toast-box .ui.toast:not(.vertical) > .close.icon.left {
- margin-left: -0.3em;
-}
-.ui.toast-container .toast-box .ui.card {
- margin: 0;
-}
-.ui.toast-container .toast-box .ui.card.attached:not(.vertical).bottom {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
-}
-.ui.toast-container .toast-box .ui.card.attached:not(.vertical).bottom.horizontal > .image > img {
- border-top-left-radius: 0;
-}
-.ui.toast-container .toast-box .ui.card.attached:not(.vertical).bottom.horizontal > .image:last-child > img {
- border-top-right-radius: 0;
-}
-.ui.toast-container .toast-box .ui.card.attached:not(.vertical).top {
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
-}
-.ui.toast-container .toast-box .ui.card.attached:not(.vertical).top.horizontal > .image > img {
- border-bottom-left-radius: 0;
-}
-.ui.toast-container .toast-box .ui.card.attached:not(.vertical).top.horizontal > .image:last-child > img {
- border-bottom-right-radius: 0;
-}
-.ui.toast-container .toast-box .ui.card.horizontal.actions > .image > img {
- border-bottom-left-radius: 0;
-}
-.ui.toast-container .toast-box .ui.card.horizontal.actions > .image:last-child > img {
- border-bottom-right-radius: 0;
-}
-.ui.toast-container .toast-box .progressing {
- -webkit-animation-iteration-count: 1;
- animation-iteration-count: 1;
- -webkit-animation-timing-function: linear;
- animation-timing-function: linear;
-}
-.ui.toast-container .toast-box .progressing.up {
- -webkit-animation-name: progressUp;
- animation-name: progressUp;
-}
-.ui.toast-container .toast-box .progressing.down {
- -webkit-animation-name: progressDown;
- animation-name: progressDown;
-}
-.ui.toast-container .toast-box .progressing.wait {
- -webkit-animation-name: progressWait;
- animation-name: progressWait;
-}
-.ui.toast-container .toast-box:hover .pausable.progressing {
- -webkit-animation-play-state: paused;
- animation-play-state: paused;
-}
-.ui.toast-container .toast-box .ui.toast:not(.vertical) {
- display: block;
-}
-.ui.toast-container .toast-box :not(.comment):not(.card) .actions {
- margin: 0.5em -1em -1em -1em;
-}
-.ui.toast-container .toast-box :not(.comment) .actions {
- padding: 0.5em 0.5em 0.75em 0.5em;
- text-align: right;
-}
-.ui.toast-container .toast-box :not(.comment) .actions.attached:not(.vertical) {
- margin-right: 1px;
-}
-.ui.toast-container .toast-box :not(.comment) .actions:not(.basic):not(.attached) {
- background: rgba(255, 255, 255, 0.25);
- border-top: 1px solid rgba(0, 0, 0, 0.2);
-}
-.ui.toast-container .toast-box :not(.comment) .actions.left {
- text-align: left;
-}
-.ui.toast-container .toast-box .vertical.actions > .button,
-.ui.toast-container .toast-box > .vertical > .vertical.vertical,
-.ui.toast-container .toast-box > .vertical.vertical.vertical {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
-}
-.ui.toast-container .toast-box :not(.comment) .vertical.actions {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
-}
-.ui.toast-container .toast-box :not(.comment) .vertical.actions > .button {
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
-}
-.ui.toast-container .toast-box :not(.comment) .vertical.actions.attached > .button {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
-}
-.ui.toast-container .toast-box :not(.comment) .vertical.actions:not(.attached) {
- border-top: 0;
- margin-top: -0.75em;
- margin-bottom: -0.75em;
- margin-left: 1em;
- -ms-flex-pack: distribute;
- justify-content: space-around;
-}
-.ui.toast-container .toast-box :not(.comment) .vertical.actions:not(.attached):not(.basic) {
- border-left: 1px solid rgba(0, 0, 0, 0.2);
-}
-.ui.toast-container .toast-box :not(.comment) .vertical.actions:not(.attached) > .button:not(:last-child) {
- margin-bottom: 0.3em;
-}
-.ui.toast-container .toast-box :not(.comment) .vertical.actions:not(.attached).top {
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
-}
-.ui.toast-container .toast-box :not(.comment) .vertical.actions:not(.attached).bottom {
- -webkit-box-pack: end;
- -ms-flex-pack: end;
- justify-content: flex-end;
-}
-.ui.vertical.attached:not(.left).card > .image > img {
- border-top-right-radius: 0;
-}
-.ui.vertical.attached:not(.left).card.horizontal > .image:last-child > img {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
-}
-.ui.vertical.attached:not(.left).card,
-.ui.vertical.attached:not(.left).toast {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
-}
-.ui.vertical.attached:not(.left).actions {
- border-top-right-radius: 0.28571429rem;
- border-bottom-right-radius: 0.28571429rem;
-}
-.ui.vertical.attached:not(.left).actions .button:first-child,
-.ui.vertical.attached:not(.left).actions .button:last-child {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
-}
-.ui.vertical.attached:not(.left).message {
- border-top-right-radius: 0;
- border-bottom-left-radius: 0.28571429rem;
-}
-.ui.vertical.attached.left.card > .image > img {
- border-top-left-radius: 0;
-}
-.ui.vertical.attached.left.card.horizontal > .image > img {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
-}
-.ui.vertical.attached.left.card,
-.ui.vertical.attached.left.toast {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
-}
-.ui.vertical.attached.left.actions {
- border-top-left-radius: 0.28571429rem;
- border-bottom-left-radius: 0.28571429rem;
-}
-.ui.vertical.attached.left.actions .button:first-child,
-.ui.vertical.attached.left.actions .button:last-child {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
-}
-.ui.vertical.attached.left.actions .button:not(:first-child):not(:last-child) {
- margin-left: -1px;
-}
-.ui.vertical.attached.left.message.message.message {
- border-top-right-radius: 0.28571429rem;
- border-bottom-right-radius: 0.28571429rem;
-}
-.ui.attached:not(.vertical):not(.top).actions {
- border-bottom-left-radius: 0.28571429rem;
- border-bottom-right-radius: 0.28571429rem;
-}
-.ui.attached:not(.vertical):not(.top).actions .button:first-child {
- border-bottom-left-radius: 0.28571429rem;
-}
-.ui.attached:not(.vertical):not(.top).actions .button:last-child {
- border-bottom-right-radius: 0.28571429rem;
-}
-.ui.attached:not(.vertical).top.actions {
- border-top-left-radius: 0.28571429rem;
- border-top-right-radius: 0.28571429rem;
-}
-.ui.attached:not(.vertical).top.actions .button:first-child {
- border-top-left-radius: 0.28571429rem;
-}
-.ui.attached:not(.vertical).top.actions .button:last-child {
- border-top-right-radius: 0.28571429rem;
-}
-
-
-/*******************************
- Toast
-*******************************/
-
-.ui.toast {
- display: none;
- border-radius: 0.28571429rem;
- padding: 0.78571429em 1em;
- margin: 0 -1px -0.01em;
- color: rgba(0, 0, 0, 0.87);
- background-color: #FFFFFF;
-}
-.ui.toast > .content > .header {
- font-weight: bold;
- color: inherit;
- margin: 0;
-}
-.ui.toast.info {
- background-color: #31CCEC;
- color: rgba(255, 255, 255, 0.9);
-}
-.ui.toast.warning {
- background-color: #F2C037;
- color: rgba(255, 255, 255, 0.9);
-}
-.ui.toast.success {
- background-color: #21BA45;
- color: rgba(255, 255, 255, 0.9);
-}
-.ui.toast.error {
- background-color: #DB2828;
- color: rgba(255, 255, 255, 0.9);
-}
-.ui.toast.neutral {
- background-color: #FFFFFF;
- color: rgba(0, 0, 0, 0.87);
-}
-.ui.toast > .icon:not(.close) {
- font-size: 1.5em;
-}
-.ui.toast:not(.vertical) > .icon:not(.close) {
- position: absolute;
-}
-.ui.toast:not(.vertical) > .icon:not(.close) + .content {
- padding-left: 3em;
-}
-.ui.toast:not(.vertical) > .close.icon + .content {
- padding-left: 1.5em;
-}
-.ui.toast:not(.vertical) > .ui.image {
- position: absolute;
-}
-.ui.toast:not(.vertical) > .ui.image.avatar + .content {
- padding-left: 3em;
- min-height: 2em;
-}
-.ui.toast:not(.vertical) > .ui.image.mini + .content {
- padding-left: 3.4em;
- min-height: 35px;
-}
-.ui.toast:not(.vertical) > .ui.image.tiny + .content {
- padding-left: 7em;
- min-height: 80px;
-}
-.ui.toast:not(.vertical) > .ui.image.small + .content {
- padding-left: 12em;
- min-height: 150px;
-}
-.ui.toast:not(.vertical) > .centered.image,
-.ui.toast:not(.vertical) > .centered.icon {
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- top: 50%;
-}
-.ui.toast:not(.vertical).actions > .centered.image {
- top: calc(50% - 2em);
-}
-.ui.toast:not(.vertical).actions > .centered.icon {
- top: calc(50% - 1.2em);
-}
-.ui.toast.vertical > .close.icon + .content {
- padding-left: 1em;
-}
-.ui.toast.vertical > .ui.image + .content,
-.ui.toast.vertical > .icon:not(.close) + .content {
- padding-left: 1em;
-}
-.ui.toast.vertical > .ui.image {
- -ms-flex-item-align: start;
- align-self: flex-start;
- -ms-flex-negative: 0;
- flex-shrink: 0;
-
-/* IE11 fix */
-}
-.ui.toast.vertical > .centered.image,
-.ui.toast.vertical > .centered.icon {
- -ms-flex-item-align: center;
- align-self: center;
-}
-.ui.toast.attached.bottom {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
-}
-.ui.toast.attached.top {
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
-}
-.ui.hoverfloating.message:hover {
- -webkit-box-shadow: 0 0 0 1px inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-.ui.center.toast-container .toast-box,
-.ui.right.toast-container .toast-box {
- margin-left: auto;
-}
-.ui.center.toast-container .toast-box {
- margin-right: auto;
-}
-
-/*--------------
- Colors
--------------- */
-
-.ui.primary.toast {
- background-color: #2185D0;
- color: rgba(255, 255, 255, 0.9);
-}
-.ui.inverted.primary.toast,
-.ui.toast-container .toast-box > .inverted.primary.attached.progress .bar {
- background-color: #54C8FF;
- color: rgba(0, 0, 0, 0.87);
-}
-.ui.secondary.toast {
- background-color: #1B1C1D;
- color: rgba(255, 255, 255, 0.9);
-}
-.ui.inverted.secondary.toast,
-.ui.toast-container .toast-box > .inverted.secondary.attached.progress .bar {
- background-color: #545454;
- color: rgba(0, 0, 0, 0.87);
-}
-.ui.red.toast {
- background-color: #DB2828;
- color: rgba(255, 255, 255, 0.9);
-}
-.ui.inverted.red.toast,
-.ui.toast-container .toast-box > .inverted.red.attached.progress .bar {
- background-color: #FF695E;
- color: rgba(0, 0, 0, 0.87);
-}
-.ui.orange.toast {
- background-color: #F2711C;
- color: rgba(255, 255, 255, 0.9);
-}
-.ui.inverted.orange.toast,
-.ui.toast-container .toast-box > .inverted.orange.attached.progress .bar {
- background-color: #FF851B;
- color: rgba(0, 0, 0, 0.87);
-}
-.ui.yellow.toast {
- background-color: #FBBD08;
- color: rgba(255, 255, 255, 0.9);
-}
-.ui.inverted.yellow.toast,
-.ui.toast-container .toast-box > .inverted.yellow.attached.progress .bar {
- background-color: #FFE21F;
- color: rgba(0, 0, 0, 0.87);
-}
-.ui.olive.toast {
- background-color: #B5CC18;
- color: rgba(255, 255, 255, 0.9);
-}
-.ui.inverted.olive.toast,
-.ui.toast-container .toast-box > .inverted.olive.attached.progress .bar {
- background-color: #D9E778;
- color: rgba(0, 0, 0, 0.87);
-}
-.ui.green.toast {
- background-color: #21BA45;
- color: rgba(255, 255, 255, 0.9);
-}
-.ui.inverted.green.toast,
-.ui.toast-container .toast-box > .inverted.green.attached.progress .bar {
- background-color: #2ECC40;
- color: rgba(0, 0, 0, 0.87);
-}
-.ui.teal.toast {
- background-color: #00B5AD;
- color: rgba(255, 255, 255, 0.9);
-}
-.ui.inverted.teal.toast,
-.ui.toast-container .toast-box > .inverted.teal.attached.progress .bar {
- background-color: #6DFFFF;
- color: rgba(0, 0, 0, 0.87);
-}
-.ui.blue.toast {
- background-color: #2185D0;
- color: rgba(255, 255, 255, 0.9);
-}
-.ui.inverted.blue.toast,
-.ui.toast-container .toast-box > .inverted.blue.attached.progress .bar {
- background-color: #54C8FF;
- color: rgba(0, 0, 0, 0.87);
-}
-.ui.violet.toast {
- background-color: #6435C9;
- color: rgba(255, 255, 255, 0.9);
-}
-.ui.inverted.violet.toast,
-.ui.toast-container .toast-box > .inverted.violet.attached.progress .bar {
- background-color: #A291FB;
- color: rgba(0, 0, 0, 0.87);
-}
-.ui.purple.toast {
- background-color: #A333C8;
- color: rgba(255, 255, 255, 0.9);
-}
-.ui.inverted.purple.toast,
-.ui.toast-container .toast-box > .inverted.purple.attached.progress .bar {
- background-color: #DC73FF;
- color: rgba(0, 0, 0, 0.87);
-}
-.ui.pink.toast {
- background-color: #E03997;
- color: rgba(255, 255, 255, 0.9);
-}
-.ui.inverted.pink.toast,
-.ui.toast-container .toast-box > .inverted.pink.attached.progress .bar {
- background-color: #FF8EDF;
- color: rgba(0, 0, 0, 0.87);
-}
-.ui.brown.toast {
- background-color: #A5673F;
- color: rgba(255, 255, 255, 0.9);
-}
-.ui.inverted.brown.toast,
-.ui.toast-container .toast-box > .inverted.brown.attached.progress .bar {
- background-color: #D67C1C;
- color: rgba(0, 0, 0, 0.87);
-}
-.ui.grey.toast {
- background-color: #767676;
- color: rgba(255, 255, 255, 0.9);
-}
-.ui.inverted.grey.toast,
-.ui.toast-container .toast-box > .inverted.grey.attached.progress .bar {
- background-color: #DCDDDE;
- color: rgba(0, 0, 0, 0.87);
-}
-.ui.black.toast {
- background-color: #1B1C1D;
- color: rgba(255, 255, 255, 0.9);
-}
-.ui.inverted.black.toast,
-.ui.toast-container .toast-box > .inverted.black.attached.progress .bar {
- background-color: #545454;
- color: rgba(0, 0, 0, 0.87);
-}
-.ui.inverted.toast {
- color: rgba(255, 255, 255, 0.9);
- background-color: #1B1C1D;
-}
-@media only screen and (max-width: 420px) {
- .ui.toast-container .toast-box.toast-box,
- .ui.toast-container .toast-box > .compact,
- .ui.toast-container .toast-box > .vertical > *,
- .ui.toast-container .toast-box > * {
- width: auto;
- max-width: 100%;
- }
- .ui.toast-container .toast-box > *:not(.vertical) {
- min-width: 280px;
- }
- .ui.toast-container .toast-box > .ui.card.horizontal,
- .ui.toast-container .toast-box > .vertical > .ui.horizontal.card {
- min-width: initial;
- }
-}
-
-/*---------------
- Progress Bar
- ----------------*/
-
-@-webkit-keyframes progressDown {
- 0% {
- width: 100%;
- }
- 100% {
- width: 0;
- }
-}
-@keyframes progressDown {
- 0% {
- width: 100%;
- }
- 100% {
- width: 0;
- }
-}
-@-webkit-keyframes progressUp {
- 0% {
- width: 0;
- }
- 100% {
- width: 100%;
- }
-}
-@keyframes progressUp {
- 0% {
- width: 0;
- }
- 100% {
- width: 100%;
- }
-}
-@-webkit-keyframes progressWait {
- 0% {
- opacity: 1;
- }
- 100% {
- opacity: 0;
- }
-}
-@keyframes progressWait {
- 0% {
- opacity: 1;
- }
- 100% {
- opacity: 0;
- }
-}
diff --git a/src-angular/assets/semantic/dist/components/toast.js b/src-angular/assets/semantic/dist/components/toast.js
deleted file mode 100644
index 3463e71..0000000
--- a/src-angular/assets/semantic/dist/components/toast.js
+++ /dev/null
@@ -1,870 +0,0 @@
-/*!
- * # Fomantic-UI - Toast
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-;(function ($, window, document, undefined) {
-
-'use strict';
-
-$.isFunction = $.isFunction || function(obj) {
- return typeof obj === "function" && typeof obj.nodeType !== "number";
-};
-
-window = (typeof window != 'undefined' && window.Math == Math)
- ? window
- : (typeof self != 'undefined' && self.Math == Math)
- ? self
- : Function('return this')()
-;
-
-$.fn.toast = function(parameters) {
- var
- $allModules = $(this),
- moduleSelector = $allModules.selector || '',
-
- time = new Date().getTime(),
- performance = [],
-
- query = arguments[0],
- methodInvoked = (typeof query == 'string'),
- queryArguments = [].slice.call(arguments, 1),
- returnedValue
- ;
- $allModules
- .each(function() {
- var
- settings = ( $.isPlainObject(parameters) )
- ? $.extend(true, {}, $.fn.toast.settings, parameters)
- : $.extend({}, $.fn.toast.settings),
-
- className = settings.className,
- selector = settings.selector,
- error = settings.error,
- namespace = settings.namespace,
- fields = settings.fields,
-
- eventNamespace = '.' + namespace,
- moduleNamespace = namespace + '-module',
-
- $module = $(this),
- $toastBox,
- $toast,
- $actions,
- $progress,
- $progressBar,
- $animationObject,
- $close,
- $context = (settings.context)
- ? $(settings.context)
- : $('body'),
-
- isToastComponent = $module.hasClass('toast') || $module.hasClass('message') || $module.hasClass('card'),
-
- element = this,
- instance = isToastComponent ? $module.data(moduleNamespace) : undefined,
-
- module
- ;
- module = {
-
- initialize: function() {
- module.verbose('Initializing element');
- if (!module.has.container()) {
- module.create.container();
- }
- if(isToastComponent || settings.message !== '' || settings.title !== '' || module.get.iconClass() !== '' || settings.showImage || module.has.configActions()) {
- if(typeof settings.showProgress !== 'string' || [className.top,className.bottom].indexOf(settings.showProgress) === -1 ) {
- settings.showProgress = false;
- }
- module.create.toast();
- if(settings.closeOnClick && (settings.closeIcon || $($toast).find(selector.input).length > 0 || module.has.configActions())){
- settings.closeOnClick = false;
- }
- if(!settings.closeOnClick) {
- $toastBox.addClass(className.unclickable);
- }
- module.bind.events();
- }
- module.instantiate();
- if($toastBox) {
- module.show();
- }
- },
-
- instantiate: function() {
- module.verbose('Storing instance of toast');
- instance = module;
- $module
- .data(moduleNamespace, instance)
- ;
- },
-
- destroy: function() {
- if($toastBox) {
- module.debug('Removing toast', $toastBox);
- module.unbind.events();
- $toastBox.remove();
- $toastBox = undefined;
- $toast = undefined;
- $animationObject = undefined;
- settings.onRemove.call($toastBox, element);
- $progress = undefined;
- $progressBar = undefined;
- $close = undefined;
- }
- $module
- .removeData(moduleNamespace)
- ;
- },
-
- show: function(callback) {
- callback = callback || function(){};
- module.debug('Showing toast');
- if(settings.onShow.call($toastBox, element) === false) {
- module.debug('onShow callback returned false, cancelling toast animation');
- return;
- }
- module.animate.show(callback);
- },
-
- close: function(callback) {
- callback = callback || function(){};
- module.remove.visible();
- module.unbind.events();
- module.animate.close(callback);
-
- },
-
- create: {
- container: function() {
- module.verbose('Creating container');
- $context.append($('',{class: settings.position + ' ' + className.container}));
- },
- toast: function() {
- $toastBox = $('', {class: className.box});
- if (!isToastComponent) {
- module.verbose('Creating toast');
- $toast = $('');
- var $content = $('', {class: className.content});
- var iconClass = module.get.iconClass();
- if (iconClass !== '') {
- $toast.append($('', {class: iconClass + ' ' + className.icon}));
- }
-
- if (settings.showImage) {
- $toast.append($('
', {
- class: className.image + ' ' + settings.classImage,
- src: settings.showImage
- }));
- }
- if (settings.title !== '') {
- $content.append($('', {
- class: className.title,
- text: settings.title
- }));
- }
-
- $content.append($('', {html: module.helpers.escape(settings.message, settings.preserveHTML)}));
-
- $toast
- .addClass(settings.class + ' ' + className.toast)
- .append($content)
- ;
- $toast.css('opacity', settings.opacity);
- if (settings.closeIcon) {
- $close = $('', {class: className.close + ' ' + (typeof settings.closeIcon === 'string' ? settings.closeIcon : '')});
- if($close.hasClass(className.left)) {
- $toast.prepend($close);
- } else {
- $toast.append($close);
- }
- }
- } else {
- $toast = settings.cloneModule ? $module.clone().removeAttr('id') : $module;
- $close = $toast.find('> i'+module.helpers.toClass(className.close));
- settings.closeIcon = ($close.length > 0);
- }
- if ($toast.hasClass(className.compact)) {
- settings.compact = true;
- }
- if ($toast.hasClass('card')) {
- settings.compact = false;
- }
- $actions = $toast.find('.actions');
- if (module.has.configActions()) {
- if ($actions.length === 0) {
- $actions = $('', {class: className.actions + ' ' + (settings.classActions || '')}).appendTo($toast);
- }
- if($toast.hasClass('card') && !$actions.hasClass(className.attached)) {
- $actions.addClass(className.extraContent);
- if($actions.hasClass(className.vertical)) {
- $actions.removeClass(className.vertical);
- module.error(error.verticalCard);
- }
- }
- settings.actions.forEach(function (el) {
- var icon = el[fields.icon] ? '' : '',
- text = module.helpers.escape(el[fields.text] || '', settings.preserveHTML),
- cls = module.helpers.deQuote(el[fields.class] || ''),
- click = el[fields.click] && $.isFunction(el[fields.click]) ? el[fields.click] : function () {};
- $actions.append($('', {
- html: icon + text,
- class: className.button + ' ' + cls,
- click: function () {
- if (click.call(element, $module) === false) {
- return;
- }
- module.close();
- }
- }));
- });
- }
- if ($actions && $actions.hasClass(className.vertical)) {
- $toast.addClass(className.vertical);
- }
- if($actions.length > 0 && !$actions.hasClass(className.attached)) {
- if ($actions && (!$actions.hasClass(className.basic) || $actions.hasClass(className.left))) {
- $toast.addClass(className.actions);
- }
- }
- if(settings.displayTime === 'auto'){
- settings.displayTime = Math.max(settings.minDisplayTime, $toast.text().split(" ").length / settings.wordsPerMinute * 60000);
- }
- $toastBox.append($toast);
-
- if($actions.length > 0 && $actions.hasClass(className.attached)) {
- $actions.addClass(className.buttons);
- $actions.detach();
- $toast.addClass(className.attached);
- if (!$actions.hasClass(className.vertical)) {
- if ($actions.hasClass(className.top)) {
- $toastBox.prepend($actions);
- $toast.addClass(className.bottom);
- } else {
- $toastBox.append($actions);
- $toast.addClass(className.top);
- }
- } else {
- $toast.wrap(
- $('',{
- class:className.vertical + ' ' +
- className.attached + ' ' +
- (settings.compact ? className.compact : '')
- })
- );
- if($actions.hasClass(className.left)) {
- $toast.addClass(className.left).parent().addClass(className.left).prepend($actions);
- } else {
- $toast.parent().append($actions);
- }
- }
- }
- if($module !== $toast) {
- $module = $toast;
- element = $toast[0];
- }
- if(settings.displayTime > 0) {
- var progressingClass = className.progressing+' '+(settings.pauseOnHover ? className.pausable:'');
- if (!!settings.showProgress) {
- $progress = $('', {
- class: className.progress + ' ' + (settings.classProgress || settings.class),
- 'data-percent': ''
- });
- if(!settings.classProgress) {
- if ($toast.hasClass('toast') && !$toast.hasClass(className.inverted)) {
- $progress.addClass(className.inverted);
- } else {
- $progress.removeClass(className.inverted);
- }
- }
- $progressBar = $('', {class: 'bar '+(settings.progressUp ? 'up ' : 'down ')+progressingClass});
- $progress
- .addClass(settings.showProgress)
- .append($progressBar);
- if ($progress.hasClass(className.top)) {
- $toastBox.prepend($progress);
- } else {
- $toastBox.append($progress);
- }
- $progressBar.css('animation-duration', settings.displayTime / 1000 + 's');
- }
- $animationObject = $('',{class:'wait '+progressingClass});
- $animationObject.css('animation-duration', settings.displayTime / 1000 + 's');
- $animationObject.appendTo($toast);
- }
- if (settings.compact) {
- $toastBox.addClass(className.compact);
- $toast.addClass(className.compact);
- if($progress) {
- $progress.addClass(className.compact);
- }
- }
- if (settings.newestOnTop) {
- $toastBox.prependTo(module.get.container());
- }
- else {
- $toastBox.appendTo(module.get.container());
- }
- }
- },
-
- bind: {
- events: function() {
- module.debug('Binding events to toast');
- if(settings.closeOnClick || settings.closeIcon) {
- (settings.closeIcon ? $close : $toast)
- .on('click' + eventNamespace, module.event.click)
- ;
- }
- if($animationObject) {
- $animationObject.on('animationend' + eventNamespace, module.close);
- }
- $toastBox
- .on('click' + eventNamespace, selector.approve, module.event.approve)
- .on('click' + eventNamespace, selector.deny, module.event.deny)
- ;
- }
- },
-
- unbind: {
- events: function() {
- module.debug('Unbinding events to toast');
- if(settings.closeOnClick || settings.closeIcon) {
- (settings.closeIcon ? $close : $toast)
- .off('click' + eventNamespace)
- ;
- }
- if($animationObject) {
- $animationObject.off('animationend' + eventNamespace);
- }
- $toastBox
- .off('click' + eventNamespace)
- ;
- }
- },
-
- animate: {
- show: function(callback) {
- callback = $.isFunction(callback) ? callback : function(){};
- if(settings.transition && module.can.useElement('transition') && $module.transition('is supported')) {
- module.set.visible();
- $toastBox
- .transition({
- animation : settings.transition.showMethod + ' in',
- queue : false,
- debug : settings.debug,
- verbose : settings.verbose,
- duration : settings.transition.showDuration,
- onComplete : function() {
- callback.call($toastBox, element);
- settings.onVisible.call($toastBox, element);
- }
- })
- ;
- }
- },
- close: function(callback) {
- callback = $.isFunction(callback) ? callback : function(){};
- module.debug('Closing toast');
- if(settings.onHide.call($toastBox, element) === false) {
- module.debug('onHide callback returned false, cancelling toast animation');
- return;
- }
- if(settings.transition && $.fn.transition !== undefined && $module.transition('is supported')) {
- $toastBox
- .transition({
- animation : settings.transition.hideMethod + ' out',
- queue : false,
- duration : settings.transition.hideDuration,
- debug : settings.debug,
- verbose : settings.verbose,
- interval : 50,
-
- onBeforeHide: function(callback){
- callback = $.isFunction(callback)?callback : function(){};
- if(settings.transition.closeEasing !== ''){
- $toastBox.css('opacity',0);
- $toastBox.wrap('').parent().slideUp(500,settings.transition.closeEasing,function(){
- if($toastBox){
- $toastBox.parent().remove();
- callback.call($toastBox);
- }
- });
- } else {
- callback.call($toastBox);
- }
- },
- onComplete : function() {
- callback.call($toastBox, element);
- settings.onHidden.call($toastBox, element);
- module.destroy();
- }
- })
- ;
- }
- else {
- module.error(error.noTransition);
- }
- },
- pause: function() {
- $animationObject.css('animationPlayState','paused');
- if($progressBar) {
- $progressBar.css('animationPlayState', 'paused');
- }
- },
- continue: function() {
- $animationObject.css('animationPlayState','running');
- if($progressBar) {
- $progressBar.css('animationPlayState', 'running');
- }
- }
- },
-
- has: {
- container: function() {
- module.verbose('Determining if there is already a container');
- return ($context.find(module.helpers.toClass(settings.position) + selector.container).length > 0);
- },
- toast: function(){
- return !!module.get.toast();
- },
- toasts: function(){
- return module.get.toasts().length > 0;
- },
- configActions: function () {
- return Array.isArray(settings.actions) && settings.actions.length > 0;
- }
- },
-
- get: {
- container: function() {
- return ($context.find(module.helpers.toClass(settings.position) + selector.container)[0]);
- },
- toastBox: function() {
- return $toastBox || null;
- },
- toast: function() {
- return $toast || null;
- },
- toasts: function() {
- return $(module.get.container()).find(selector.box);
- },
- iconClass: function() {
- return typeof settings.showIcon === 'string' ? settings.showIcon : settings.showIcon && settings.icons[settings.class] ? settings.icons[settings.class] : '';
- },
- remainingTime: function() {
- return $animationObject ? $animationObject.css('opacity') * settings.displayTime : 0;
- }
- },
-
- set: {
- visible: function() {
- $toast.addClass(className.visible);
- }
- },
-
- remove: {
- visible: function() {
- $toast.removeClass(className.visible);
- }
- },
-
- event: {
- click: function(event) {
- if($(event.target).closest('a').length === 0) {
- settings.onClick.call($toastBox, element);
- module.close();
- }
- },
- approve: function() {
- if(settings.onApprove.call(element, $module) === false) {
- module.verbose('Approve callback returned false cancelling close');
- return;
- }
- module.close();
- },
- deny: function() {
- if(settings.onDeny.call(element, $module) === false) {
- module.verbose('Deny callback returned false cancelling close');
- return;
- }
- module.close();
- }
- },
-
- helpers: {
- toClass: function(selector) {
- var
- classes = selector.split(' '),
- result = ''
- ;
-
- classes.forEach(function (element) {
- result += '.' + element;
- });
-
- return result;
- },
- deQuote: function(string) {
- return String(string).replace(/"/g,"");
- },
- escape: function(string, preserveHTML) {
- if (preserveHTML){
- return string;
- }
- var
- badChars = /[<>"'`]/g,
- shouldEscape = /[&<>"'`]/,
- escape = {
- "<": "<",
- ">": ">",
- '"': """,
- "'": "'",
- "`": "`"
- },
- escapedChar = function(chr) {
- return escape[chr];
- }
- ;
- if(shouldEscape.test(string)) {
- string = string.replace(/&(?![a-z0-9#]{1,6};)/, "&");
- return string.replace(badChars, escapedChar);
- }
- return string;
- }
- },
-
- can: {
- useElement: function(element){
- if ($.fn[element] !== undefined) {
- return true;
- }
- module.error(error.noElement.replace('{element}',element));
- return false;
- }
- },
-
- setting: function(name, value) {
- module.debug('Changing setting', name, value);
- if( $.isPlainObject(name) ) {
- $.extend(true, settings, name);
- }
- else if(value !== undefined) {
- if($.isPlainObject(settings[name])) {
- $.extend(true, settings[name], value);
- }
- else {
- settings[name] = value;
- }
- }
- else {
- return settings[name];
- }
- },
- internal: function(name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, module, name);
- }
- else if(value !== undefined) {
- module[name] = value;
- }
- else {
- return module[name];
- }
- },
- debug: function() {
- if(!settings.silent && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.debug.apply(console, arguments);
- }
- }
- },
- verbose: function() {
- if(!settings.silent && settings.verbose && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.verbose.apply(console, arguments);
- }
- }
- },
- error: function() {
- if(!settings.silent) {
- module.error = Function.prototype.bind.call(console.error, console, settings.name + ':');
- module.error.apply(console, arguments);
- }
- },
- performance: {
- log: function(message) {
- var
- currentTime,
- executionTime,
- previousTime
- ;
- if(settings.performance) {
- currentTime = new Date().getTime();
- previousTime = time || currentTime;
- executionTime = currentTime - previousTime;
- time = currentTime;
- performance.push({
- 'Name' : message[0],
- 'Arguments' : [].slice.call(message, 1) || '',
- 'Element' : element,
- 'Execution Time' : executionTime
- });
- }
- clearTimeout(module.performance.timer);
- module.performance.timer = setTimeout(module.performance.display, 500);
- },
- display: function() {
- var
- title = settings.name + ':',
- totalTime = 0
- ;
- time = false;
- clearTimeout(module.performance.timer);
- $.each(performance, function(index, data) {
- totalTime += data['Execution Time'];
- });
- title += ' ' + totalTime + 'ms';
- if(moduleSelector) {
- title += ' \'' + moduleSelector + '\'';
- }
- if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) {
- console.groupCollapsed(title);
- if(console.table) {
- console.table(performance);
- }
- else {
- $.each(performance, function(index, data) {
- console.log(data['Name'] + ': ' + data['Execution Time']+'ms');
- });
- }
- console.groupEnd();
- }
- performance = [];
- }
- },
- invoke: function(query, passedArguments, context) {
- var
- object = instance,
- maxDepth,
- found,
- response
- ;
- passedArguments = passedArguments || queryArguments;
- context = element || context;
- if(typeof query == 'string' && object !== undefined) {
- query = query.split(/[\. ]/);
- maxDepth = query.length - 1;
- $.each(query, function(depth, value) {
- var camelCaseValue = (depth != maxDepth)
- ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
- : query
- ;
- if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
- object = object[camelCaseValue];
- }
- else if( object[camelCaseValue] !== undefined ) {
- found = object[camelCaseValue];
- return false;
- }
- else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
- object = object[value];
- }
- else if( object[value] !== undefined ) {
- found = object[value];
- return false;
- }
- else {
- module.error(error.method, query);
- return false;
- }
- });
- }
- if ( $.isFunction( found ) ) {
- response = found.apply(context, passedArguments);
- }
- else if(found !== undefined) {
- response = found;
- }
- if(Array.isArray(returnedValue)) {
- returnedValue.push(response);
- }
- else if(returnedValue !== undefined) {
- returnedValue = [returnedValue, response];
- }
- else if(response !== undefined) {
- returnedValue = response;
- }
- return found;
- }
- };
-
- if(methodInvoked) {
- if(instance === undefined) {
- module.initialize();
- }
- module.invoke(query);
- }
- else {
- if(instance !== undefined) {
- instance.invoke('destroy');
- }
- module.initialize();
- returnedValue = $module;
- }
- })
- ;
-
- return (returnedValue !== undefined)
- ? returnedValue
- : this
- ;
-};
-
-$.fn.toast.settings = {
-
- name : 'Toast',
- namespace : 'toast',
-
- silent : false,
- debug : false,
- verbose : false,
- performance : true,
-
- context : 'body',
-
- position : 'top right',
- class : 'neutral',
- classProgress : false,
- classActions : false,
- classImage : 'mini',
-
- title : '',
- message : '',
- displayTime : 3000, // set to zero to require manually dismissal, otherwise hides on its own
- minDisplayTime : 1000, // minimum displaytime in case displayTime is set to 'auto'
- wordsPerMinute : 120,
- showIcon : false,
- newestOnTop : false,
- showProgress : false,
- pauseOnHover : true,
- progressUp : false, //if true, the bar will start at 0% and increase to 100%
- opacity : 1,
- compact : true,
- closeIcon : false,
- closeOnClick : true,
- cloneModule : true,
- actions : false,
- preserveHTML : true,
- showImage : false,
-
- // transition settings
- transition : {
- showMethod : 'scale',
- showDuration : 500,
- hideMethod : 'scale',
- hideDuration : 500,
- closeEasing : 'easeOutCubic' //Set to empty string to stack the closed toast area immediately (old behaviour)
- },
-
- error: {
- method : 'The method you called is not defined.',
- noElement : 'This module requires ui {element}',
- verticalCard : 'Vertical but not attached actions are not supported for card layout'
- },
-
- className : {
- container : 'ui toast-container',
- box : 'floating toast-box',
- progress : 'ui attached active progress',
- toast : 'ui toast',
- icon : 'centered icon',
- visible : 'visible',
- content : 'content',
- title : 'ui header',
- actions : 'actions',
- extraContent : 'extra content',
- button : 'ui button',
- buttons : 'ui buttons',
- close : 'close icon',
- image : 'ui image',
- vertical : 'vertical',
- attached : 'attached',
- inverted : 'inverted',
- compact : 'compact',
- pausable : 'pausable',
- progressing : 'progressing',
- top : 'top',
- bottom : 'bottom',
- left : 'left',
- basic : 'basic',
- unclickable : 'unclickable'
- },
-
- icons : {
- info : 'info',
- success : 'checkmark',
- warning : 'warning',
- error : 'times'
- },
-
- selector : {
- container : '.ui.toast-container',
- box : '.toast-box',
- toast : '.ui.toast',
- input : 'input:not([type="hidden"]), textarea, select, button, .ui.button, ui.dropdown',
- approve : '.actions .positive, .actions .approve, .actions .ok',
- deny : '.actions .negative, .actions .deny, .actions .cancel'
- },
-
- fields : {
- class : 'class',
- text : 'text',
- icon : 'icon',
- click : 'click'
- },
-
- // callbacks
- onShow : function(){},
- onVisible : function(){},
- onClick : function(){},
- onHide : function(){},
- onHidden : function(){},
- onRemove : function(){},
- onApprove : function(){},
- onDeny : function(){}
-};
-
-$.extend( $.easing, {
- easeOutBounce: function (x, t, b, c, d) {
- if ((t/=d) < (1/2.75)) {
- return c*(7.5625*t*t) + b;
- } else if (t < (2/2.75)) {
- return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
- } else if (t < (2.5/2.75)) {
- return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
- } else {
- return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
- }
- },
- easeOutCubic: function (t) {
- return (--t)*t*t+1;
- }
-});
-
-
-})( jQuery, window, document );
diff --git a/src-angular/assets/semantic/dist/components/toast.min.css b/src-angular/assets/semantic/dist/components/toast.min.css
deleted file mode 100644
index 68eb9bd..0000000
--- a/src-angular/assets/semantic/dist/components/toast.min.css
+++ /dev/null
@@ -1,9 +0,0 @@
-/*!
- * # Fomantic-UI - Toast
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */.ui.toast-container{position:fixed;z-index:9999}.ui.toast-container.top.right{top:.85714286em;right:.85714286em;margin-left:.85714286em}.ui.toast-container.top.left{top:.85714286em;left:.85714286em;margin-right:.85714286em}.ui.toast-container.top.center{left:50%;-webkit-transform:translate(-50%,0);transform:translate(-50%,0);top:.85714286em}.ui.toast-container.bottom.right{bottom:.85714286em;right:.85714286em;margin-left:.85714286em}.ui.toast-container.bottom.left{bottom:.85714286em;left:.85714286em;margin-right:.85714286em}.ui.toast-container.bottom.center{left:50%;-webkit-transform:translate(-50%,0);transform:translate(-50%,0);bottom:.85714286em}.ui.toast-container .animating.toast-box,.ui.toast-container .toast-box,.ui.toast-container .visible.toast-box{display:table!important}.ui.toast-container .toast-box{margin-bottom:.5em;border-radius:.28571429rem;cursor:default}.ui.toast-container .toast-box:hover{opacity:1}.ui.toast-container .toast-box:not(.unclickable):hover{cursor:pointer}.ui.toast-container .toast-box.floating,.ui.toast-container .toast-box.hoverfloating:hover{-webkit-box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15);box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15);border:1px solid rgba(34,36,38,.12)}.ui.toast-container .toast-box.compact,.ui.toast-container .toast-box>.compact{width:350px}.ui.toast-container .toast-box>.ui.message,.ui.toast-container .toast-box>.ui.toast{margin:0 -1px -.01em;position:relative}.ui.toast-container .toast-box>.attached.progress{z-index:1}.ui.toast-container .toast-box>.attached.progress.bottom{margin:-.2em -1px -.01em}.ui.toast-container .toast-box>.attached.progress.top{margin:-.01em -1px -.2em}.ui.toast-container .toast-box>.attached.progress .bar{min-width:0}.ui.toast-container .toast-box>.attached.progress.info .bar.bar.bar{background:#12a1bf}.ui.toast-container .toast-box>.attached.progress.warning .bar.bar.bar{background:#cf9b0d}.ui.toast-container .toast-box>.attached.progress.success .bar.bar.bar{background:#15792d}.ui.toast-container .toast-box>.attached.progress .error .bar.bar.bar{background:#9c1a1a}.ui.toast-container .toast-box>.attached.progress.neutral .bar.bar.bar{background:#d9d9d9}.ui.toast-container .toast-box>.ui.message>.close.icon{top:.3em;right:.3em}.ui.toast-container .toast-box>.ui.message>.actions:last-child{margin-bottom:-1em}.ui.toast-container .toast-box>.ui.message.icon{-webkit-box-align:inherit;-ms-flex-align:inherit;align-items:inherit}.ui.toast-container .toast-box>.ui.message.icon>:not(.icon):not(.actions){padding-left:5rem}.ui.toast-container .toast-box>.ui.message.icon>.icon:not(.close){display:inline-block;position:absolute;width:4rem;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.ui.toast-container .toast-box>.ui.message.icon:not(.vertical).actions>.icon:not(.close){top:calc(50% - 1.2em);-webkit-transform:none;transform:none}.ui.toast-container .toast-box>.ui.message.icon:not(.vertical).icon.icon.icon{display:block}.ui.toast-container .toast-box .ui.toast>.close.icon{cursor:pointer;margin:0;opacity:.7;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.ui.toast-container .toast-box .ui.toast>.close.icon:hover{opacity:1}.ui.toast-container .toast-box .ui.toast.vertical>.close.icon{margin-top:-.3em;margin-right:-.3em}.ui.toast-container .toast-box .ui.toast:not(.vertical)>.close.icon{position:absolute;top:.3em}.ui.toast-container .toast-box .ui.toast:not(.vertical)>.close.icon:not(.left){right:.3em}.ui.toast-container .toast-box .ui.toast:not(.vertical)>.close.icon.left{margin-left:-.3em}.ui.toast-container .toast-box .ui.card{margin:0}.ui.toast-container .toast-box .ui.card.attached:not(.vertical).bottom{border-top-left-radius:0;border-top-right-radius:0}.ui.toast-container .toast-box .ui.card.attached:not(.vertical).bottom.horizontal>.image>img{border-top-left-radius:0}.ui.toast-container .toast-box .ui.card.attached:not(.vertical).bottom.horizontal>.image:last-child>img{border-top-right-radius:0}.ui.toast-container .toast-box .ui.card.attached:not(.vertical).top{border-bottom-left-radius:0;border-bottom-right-radius:0}.ui.toast-container .toast-box .ui.card.attached:not(.vertical).top.horizontal>.image>img{border-bottom-left-radius:0}.ui.toast-container .toast-box .ui.card.attached:not(.vertical).top.horizontal>.image:last-child>img{border-bottom-right-radius:0}.ui.toast-container .toast-box .ui.card.horizontal.actions>.image>img{border-bottom-left-radius:0}.ui.toast-container .toast-box .ui.card.horizontal.actions>.image:last-child>img{border-bottom-right-radius:0}.ui.toast-container .toast-box .progressing{-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-timing-function:linear;animation-timing-function:linear}.ui.toast-container .toast-box .progressing.up{-webkit-animation-name:progressUp;animation-name:progressUp}.ui.toast-container .toast-box .progressing.down{-webkit-animation-name:progressDown;animation-name:progressDown}.ui.toast-container .toast-box .progressing.wait{-webkit-animation-name:progressWait;animation-name:progressWait}.ui.toast-container .toast-box:hover .pausable.progressing{-webkit-animation-play-state:paused;animation-play-state:paused}.ui.toast-container .toast-box .ui.toast:not(.vertical){display:block}.ui.toast-container .toast-box :not(.comment):not(.card) .actions{margin:.5em -1em -1em -1em}.ui.toast-container .toast-box :not(.comment) .actions{padding:.5em .5em .75em .5em;text-align:right}.ui.toast-container .toast-box :not(.comment) .actions.attached:not(.vertical){margin-right:1px}.ui.toast-container .toast-box :not(.comment) .actions:not(.basic):not(.attached){background:rgba(255,255,255,.25);border-top:1px solid rgba(0,0,0,.2)}.ui.toast-container .toast-box :not(.comment) .actions.left{text-align:left}.ui.toast-container .toast-box .vertical.actions>.button,.ui.toast-container .toast-box>.vertical.vertical.vertical,.ui.toast-container .toast-box>.vertical>.vertical.vertical{display:-webkit-box;display:-ms-flexbox;display:flex}.ui.toast-container .toast-box :not(.comment) .vertical.actions{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.ui.toast-container .toast-box :not(.comment) .vertical.actions>.button{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ui.toast-container .toast-box :not(.comment) .vertical.actions.attached>.button{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ui.toast-container .toast-box :not(.comment) .vertical.actions:not(.attached){border-top:0;margin-top:-.75em;margin-bottom:-.75em;margin-left:1em;-ms-flex-pack:distribute;justify-content:space-around}.ui.toast-container .toast-box :not(.comment) .vertical.actions:not(.attached):not(.basic){border-left:1px solid rgba(0,0,0,.2)}.ui.toast-container .toast-box :not(.comment) .vertical.actions:not(.attached)>.button:not(:last-child){margin-bottom:.3em}.ui.toast-container .toast-box :not(.comment) .vertical.actions:not(.attached).top{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.ui.toast-container .toast-box :not(.comment) .vertical.actions:not(.attached).bottom{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.ui.vertical.attached:not(.left).card>.image>img{border-top-right-radius:0}.ui.vertical.attached:not(.left).card.horizontal>.image:last-child>img{border-top-right-radius:0;border-bottom-right-radius:0}.ui.vertical.attached:not(.left).card,.ui.vertical.attached:not(.left).toast{border-top-right-radius:0;border-bottom-right-radius:0}.ui.vertical.attached:not(.left).actions{border-top-right-radius:.28571429rem;border-bottom-right-radius:.28571429rem}.ui.vertical.attached:not(.left).actions .button:first-child,.ui.vertical.attached:not(.left).actions .button:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.ui.vertical.attached:not(.left).message{border-top-right-radius:0;border-bottom-left-radius:.28571429rem}.ui.vertical.attached.left.card>.image>img{border-top-left-radius:0}.ui.vertical.attached.left.card.horizontal>.image>img{border-top-left-radius:0;border-bottom-left-radius:0}.ui.vertical.attached.left.card,.ui.vertical.attached.left.toast{border-top-left-radius:0;border-bottom-left-radius:0}.ui.vertical.attached.left.actions{border-top-left-radius:.28571429rem;border-bottom-left-radius:.28571429rem}.ui.vertical.attached.left.actions .button:first-child,.ui.vertical.attached.left.actions .button:last-child{border-top-right-radius:0;border-bottom-right-radius:0}.ui.vertical.attached.left.actions .button:not(:first-child):not(:last-child){margin-left:-1px}.ui.vertical.attached.left.message.message.message{border-top-right-radius:.28571429rem;border-bottom-right-radius:.28571429rem}.ui.attached:not(.vertical):not(.top).actions{border-bottom-left-radius:.28571429rem;border-bottom-right-radius:.28571429rem}.ui.attached:not(.vertical):not(.top).actions .button:first-child{border-bottom-left-radius:.28571429rem}.ui.attached:not(.vertical):not(.top).actions .button:last-child{border-bottom-right-radius:.28571429rem}.ui.attached:not(.vertical).top.actions{border-top-left-radius:.28571429rem;border-top-right-radius:.28571429rem}.ui.attached:not(.vertical).top.actions .button:first-child{border-top-left-radius:.28571429rem}.ui.attached:not(.vertical).top.actions .button:last-child{border-top-right-radius:.28571429rem}.ui.toast{display:none;border-radius:.28571429rem;padding:.78571429em 1em;margin:0 -1px -.01em;color:rgba(0,0,0,.87);background-color:#fff}.ui.toast>.content>.header{font-weight:700;color:inherit;margin:0}.ui.toast.info{background-color:#31ccec;color:rgba(255,255,255,.9)}.ui.toast.warning{background-color:#f2c037;color:rgba(255,255,255,.9)}.ui.toast.success{background-color:#21ba45;color:rgba(255,255,255,.9)}.ui.toast.error{background-color:#db2828;color:rgba(255,255,255,.9)}.ui.toast.neutral{background-color:#fff;color:rgba(0,0,0,.87)}.ui.toast>.icon:not(.close){font-size:1.5em}.ui.toast:not(.vertical)>.icon:not(.close){position:absolute}.ui.toast:not(.vertical)>.icon:not(.close)+.content{padding-left:3em}.ui.toast:not(.vertical)>.close.icon+.content{padding-left:1.5em}.ui.toast:not(.vertical)>.ui.image{position:absolute}.ui.toast:not(.vertical)>.ui.image.avatar+.content{padding-left:3em;min-height:2em}.ui.toast:not(.vertical)>.ui.image.mini+.content{padding-left:3.4em;min-height:35px}.ui.toast:not(.vertical)>.ui.image.tiny+.content{padding-left:7em;min-height:80px}.ui.toast:not(.vertical)>.ui.image.small+.content{padding-left:12em;min-height:150px}.ui.toast:not(.vertical)>.centered.icon,.ui.toast:not(.vertical)>.centered.image{-webkit-transform:translateY(-50%);transform:translateY(-50%);top:50%}.ui.toast:not(.vertical).actions>.centered.image{top:calc(50% - 2em)}.ui.toast:not(.vertical).actions>.centered.icon{top:calc(50% - 1.2em)}.ui.toast.vertical>.close.icon+.content{padding-left:1em}.ui.toast.vertical>.icon:not(.close)+.content,.ui.toast.vertical>.ui.image+.content{padding-left:1em}.ui.toast.vertical>.ui.image{-ms-flex-item-align:start;align-self:flex-start;-ms-flex-negative:0;flex-shrink:0}.ui.toast.vertical>.centered.icon,.ui.toast.vertical>.centered.image{-ms-flex-item-align:center;align-self:center}.ui.toast.attached.bottom{border-top-left-radius:0;border-top-right-radius:0}.ui.toast.attached.top{border-bottom-left-radius:0;border-bottom-right-radius:0}.ui.hoverfloating.message:hover{-webkit-box-shadow:0 0 0 1px inset,0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15);box-shadow:0 0 0 1px inset,0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15)}.ui.center.toast-container .toast-box,.ui.right.toast-container .toast-box{margin-left:auto}.ui.center.toast-container .toast-box{margin-right:auto}.ui.primary.toast{background-color:#2185d0;color:rgba(255,255,255,.9)}.ui.inverted.primary.toast,.ui.toast-container .toast-box>.inverted.primary.attached.progress .bar{background-color:#54c8ff;color:rgba(0,0,0,.87)}.ui.secondary.toast{background-color:#1b1c1d;color:rgba(255,255,255,.9)}.ui.inverted.secondary.toast,.ui.toast-container .toast-box>.inverted.secondary.attached.progress .bar{background-color:#545454;color:rgba(0,0,0,.87)}.ui.red.toast{background-color:#db2828;color:rgba(255,255,255,.9)}.ui.inverted.red.toast,.ui.toast-container .toast-box>.inverted.red.attached.progress .bar{background-color:#ff695e;color:rgba(0,0,0,.87)}.ui.orange.toast{background-color:#f2711c;color:rgba(255,255,255,.9)}.ui.inverted.orange.toast,.ui.toast-container .toast-box>.inverted.orange.attached.progress .bar{background-color:#ff851b;color:rgba(0,0,0,.87)}.ui.yellow.toast{background-color:#fbbd08;color:rgba(255,255,255,.9)}.ui.inverted.yellow.toast,.ui.toast-container .toast-box>.inverted.yellow.attached.progress .bar{background-color:#ffe21f;color:rgba(0,0,0,.87)}.ui.olive.toast{background-color:#b5cc18;color:rgba(255,255,255,.9)}.ui.inverted.olive.toast,.ui.toast-container .toast-box>.inverted.olive.attached.progress .bar{background-color:#d9e778;color:rgba(0,0,0,.87)}.ui.green.toast{background-color:#21ba45;color:rgba(255,255,255,.9)}.ui.inverted.green.toast,.ui.toast-container .toast-box>.inverted.green.attached.progress .bar{background-color:#2ecc40;color:rgba(0,0,0,.87)}.ui.teal.toast{background-color:#00b5ad;color:rgba(255,255,255,.9)}.ui.inverted.teal.toast,.ui.toast-container .toast-box>.inverted.teal.attached.progress .bar{background-color:#6dffff;color:rgba(0,0,0,.87)}.ui.blue.toast{background-color:#2185d0;color:rgba(255,255,255,.9)}.ui.inverted.blue.toast,.ui.toast-container .toast-box>.inverted.blue.attached.progress .bar{background-color:#54c8ff;color:rgba(0,0,0,.87)}.ui.violet.toast{background-color:#6435c9;color:rgba(255,255,255,.9)}.ui.inverted.violet.toast,.ui.toast-container .toast-box>.inverted.violet.attached.progress .bar{background-color:#a291fb;color:rgba(0,0,0,.87)}.ui.purple.toast{background-color:#a333c8;color:rgba(255,255,255,.9)}.ui.inverted.purple.toast,.ui.toast-container .toast-box>.inverted.purple.attached.progress .bar{background-color:#dc73ff;color:rgba(0,0,0,.87)}.ui.pink.toast{background-color:#e03997;color:rgba(255,255,255,.9)}.ui.inverted.pink.toast,.ui.toast-container .toast-box>.inverted.pink.attached.progress .bar{background-color:#ff8edf;color:rgba(0,0,0,.87)}.ui.brown.toast{background-color:#a5673f;color:rgba(255,255,255,.9)}.ui.inverted.brown.toast,.ui.toast-container .toast-box>.inverted.brown.attached.progress .bar{background-color:#d67c1c;color:rgba(0,0,0,.87)}.ui.grey.toast{background-color:#767676;color:rgba(255,255,255,.9)}.ui.inverted.grey.toast,.ui.toast-container .toast-box>.inverted.grey.attached.progress .bar{background-color:#dcddde;color:rgba(0,0,0,.87)}.ui.black.toast{background-color:#1b1c1d;color:rgba(255,255,255,.9)}.ui.inverted.black.toast,.ui.toast-container .toast-box>.inverted.black.attached.progress .bar{background-color:#545454;color:rgba(0,0,0,.87)}.ui.inverted.toast{color:rgba(255,255,255,.9);background-color:#1b1c1d}@media only screen and (max-width:420px){.ui.toast-container .toast-box.toast-box,.ui.toast-container .toast-box>*,.ui.toast-container .toast-box>.compact,.ui.toast-container .toast-box>.vertical>*{width:auto;max-width:100%}.ui.toast-container .toast-box>:not(.vertical){min-width:280px}.ui.toast-container .toast-box>.ui.card.horizontal,.ui.toast-container .toast-box>.vertical>.ui.horizontal.card{min-width:initial}}@-webkit-keyframes progressDown{0%{width:100%}100%{width:0}}@keyframes progressDown{0%{width:100%}100%{width:0}}@-webkit-keyframes progressUp{0%{width:0}100%{width:100%}}@keyframes progressUp{0%{width:0}100%{width:100%}}@-webkit-keyframes progressWait{0%{opacity:1}100%{opacity:0}}@keyframes progressWait{0%{opacity:1}100%{opacity:0}}
\ No newline at end of file
diff --git a/src-angular/assets/semantic/dist/components/toast.min.js b/src-angular/assets/semantic/dist/components/toast.min.js
deleted file mode 100644
index bf96991..0000000
--- a/src-angular/assets/semantic/dist/components/toast.min.js
+++ /dev/null
@@ -1,11 +0,0 @@
- /*
- * # Fomantic UI - 2.8.3
- * https://github.com/fomantic/Fomantic-UI
- * http://fomantic-ui.com/
- *
- * Copyright 2014 Contributors
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-!function(M,e,E){"use strict";M.isFunction=M.isFunction||function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},e=void 0!==e&&e.Math==Math?e:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")(),M.fn.toast=function(w){var k,e=M(this),x=e.selector||"",T=(new Date).getTime(),I=[],P=w,O="string"==typeof P,A=[].slice.call(arguments,1);return e.each(function(){var o,s,a,i,c,l,r,u,d=M.isPlainObject(w)?M.extend(!0,{},M.fn.toast.settings,w):M.extend({},M.fn.toast.settings),p=d.className,e=d.selector,f=d.error,n=d.namespace,m=d.fields,t="."+n,g=n+"-module",h=M(this),v=d.context?M(d.context):M("body"),b=h.hasClass("toast")||h.hasClass("message")||h.hasClass("card"),C=this,y=b?h.data(g):E;u={initialize:function(){u.verbose("Initializing element"),u.has.container()||u.create.container(),(b||""!==d.message||""!==d.title||""!==u.get.iconClass()||d.showImage||u.has.configActions())&&("string"==typeof d.showProgress&&-1!==[p.top,p.bottom].indexOf(d.showProgress)||(d.showProgress=!1),u.create.toast(),d.closeOnClick&&(d.closeIcon||0",{class:d.position+" "+p.container}))},toast:function(){if(o=M("",{class:p.box}),b)s=d.cloneModule?h.clone().removeAttr("id"):h,r=s.find("> i"+u.helpers.toClass(p.close)),d.closeIcon=0");var e=M("",{class:p.content}),n=u.get.iconClass();""!==n&&s.append(M("",{class:n+" "+p.icon})),d.showImage&&s.append(M("
",{class:p.image+" "+d.classImage,src:d.showImage})),""!==d.title&&e.append(M("",{class:p.title,text:d.title})),e.append(M("",{html:u.helpers.escape(d.message,d.preserveHTML)})),s.addClass(d.class+" "+p.toast).append(e),s.css("opacity",d.opacity),d.closeIcon&&((r=M("",{class:p.close+" "+("string"==typeof d.closeIcon?d.closeIcon:"")})).hasClass(p.left)?s.prepend(r):s.append(r))}if(s.hasClass(p.compact)&&(d.compact=!0),s.hasClass("card")&&(d.compact=!1),a=s.find(".actions"),u.has.configActions()&&(0===a.length&&(a=M("",{class:p.actions+" "+(d.classActions||"")}).appendTo(s)),s.hasClass("card")&&!a.hasClass(p.attached)&&(a.addClass(p.extraContent),a.hasClass(p.vertical)&&(a.removeClass(p.vertical),u.error(f.verticalCard))),d.actions.forEach(function(e){var n=e[m.icon]?'':"",t=u.helpers.escape(e[m.text]||"",d.preserveHTML),o=u.helpers.deQuote(e[m.class]||""),s=e[m.click]&&M.isFunction(e[m.click])?e[m.click]:function(){};a.append(M("",{html:n+t,class:p.button+" "+o,click:function(){!1!==s.call(C,h)&&u.close()}}))})),a&&a.hasClass(p.vertical)&&s.addClass(p.vertical),0",{class:p.vertical+" "+p.attached+" "+(d.compact?p.compact:"")})),a.hasClass(p.left)?s.addClass(p.left).parent().addClass(p.left).prepend(a):s.parent().append(a)):a.hasClass(p.top)?(o.prepend(a),s.addClass(p.bottom)):(o.append(a),s.addClass(p.top))),h!==s&&(C=(h=s)[0]),0",{class:p.progress+" "+(d.classProgress||d.class),"data-percent":""}),d.classProgress||(s.hasClass("toast")&&!s.hasClass(p.inverted)?i.addClass(p.inverted):i.removeClass(p.inverted)),c=M("",{class:"bar "+(d.progressUp?"up ":"down ")+t}),i.addClass(d.showProgress).append(c),i.hasClass(p.top)?o.prepend(i):o.append(i),c.css("animation-duration",d.displayTime/1e3+"s")),(l=M("",{class:"wait "+t})).css("animation-duration",d.displayTime/1e3+"s"),l.appendTo(s)}d.compact&&(o.addClass(p.compact),s.addClass(p.compact),i&&i.addClass(p.compact)),d.newestOnTop?o.prependTo(u.get.container()):o.appendTo(u.get.container())}},bind:{events:function(){u.debug("Binding events to toast"),(d.closeOnClick||d.closeIcon)&&(d.closeIcon?r:s).on("click"+t,u.event.click),l&&l.on("animationend"+t,u.close),o.on("click"+t,e.approve,u.event.approve).on("click"+t,e.deny,u.event.deny)}},unbind:{events:function(){u.debug("Unbinding events to toast"),(d.closeOnClick||d.closeIcon)&&(d.closeIcon?r:s).off("click"+t),l&&l.off("animationend"+t),o.off("click"+t)}},animate:{show:function(e){e=M.isFunction(e)?e:function(){},d.transition&&u.can.useElement("transition")&&h.transition("is supported")&&(u.set.visible(),o.transition({animation:d.transition.showMethod+" in",queue:!1,debug:d.debug,verbose:d.verbose,duration:d.transition.showDuration,onComplete:function(){e.call(o,C),d.onVisible.call(o,C)}}))},close:function(e){e=M.isFunction(e)?e:function(){},u.debug("Closing toast"),!1!==d.onHide.call(o,C)?d.transition&&M.fn.transition!==E&&h.transition("is supported")?o.transition({animation:d.transition.hideMethod+" out",queue:!1,duration:d.transition.hideDuration,debug:d.debug,verbose:d.verbose,interval:50,onBeforeHide:function(e){e=M.isFunction(e)?e:function(){},""!==d.transition.closeEasing?(o.css("opacity",0),o.wrap("").parent().slideUp(500,d.transition.closeEasing,function(){o&&(o.parent().remove(),e.call(o))})):e.call(o)},onComplete:function(){e.call(o,C),d.onHidden.call(o,C),u.destroy()}}):u.error(f.noTransition):u.debug("onHide callback returned false, cancelling toast animation")},pause:function(){l.css("animationPlayState","paused"),c&&c.css("animationPlayState","paused")},continue:function(){l.css("animationPlayState","running"),c&&c.css("animationPlayState","running")}},has:{container:function(){return u.verbose("Determining if there is already a container"),0":">",'"':""","'":"'","`":"`"};return/[&<>"'`]/.test(e)?(e=e.replace(/&(?![a-z0-9#]{1,6};)/,"&")).replace(/[<>"'`]/g,function(e){return t[e]}):e}},can:{useElement:function(e){return M.fn[e]!==E||(u.error(f.noElement.replace("{element}",e)),!1)}},setting:function(e,n){if(u.debug("Changing setting",e,n),M.isPlainObject(e))M.extend(!0,d,e);else{if(n===E)return d[e];M.isPlainObject(d[e])?M.extend(!0,d[e],n):d[e]=n}},internal:function(e,n){if(M.isPlainObject(e))M.extend(!0,u,e);else{if(n===E)return u[e];u[e]=n}},debug:function(){!d.silent&&d.debug&&(d.performance?u.performance.log(arguments):(u.debug=Function.prototype.bind.call(console.info,console,d.name+":"),u.debug.apply(console,arguments)))},verbose:function(){!d.silent&&d.verbose&&d.debug&&(d.performance?u.performance.log(arguments):(u.verbose=Function.prototype.bind.call(console.info,console,d.name+":"),u.verbose.apply(console,arguments)))},error:function(){d.silent||(u.error=Function.prototype.bind.call(console.error,console,d.name+":"),u.error.apply(console,arguments))},performance:{log:function(e){var n,t;d.performance&&(t=(n=(new Date).getTime())-(T||n),T=n,I.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:C,"Execution Time":t})),clearTimeout(u.performance.timer),u.performance.timer=setTimeout(u.performance.display,500)},display:function(){var e=d.name+":",t=0;T=!1,clearTimeout(u.performance.timer),M.each(I,function(e,n){t+=n["Execution Time"]}),e+=" "+t+"ms",x&&(e+=" '"+x+"'"),(console.group!==E||console.table!==E)&&0 -1)
- ? parseFloat(duration)
- : parseFloat(duration) * 1000
- : duration
- ;
- },
- displayType: function(shouldDetermine) {
- shouldDetermine = (shouldDetermine !== undefined)
- ? shouldDetermine
- : true
- ;
- if(settings.displayType) {
- return settings.displayType;
- }
- if(shouldDetermine && $module.data(metadata.displayType) === undefined) {
- var currentDisplay = $module.css('display');
- if(currentDisplay === '' || currentDisplay === 'none'){
- // create fake element to determine display state
- module.can.transition(true);
- } else {
- module.save.displayType(currentDisplay);
- }
- }
- return $module.data(metadata.displayType);
- },
- userStyle: function(style) {
- style = style || $module.attr('style') || '';
- return style.replace(/display.*?;/, '');
- },
- transitionExists: function(animation) {
- return $.fn.transition.exists[animation];
- },
- animationStartEvent: function() {
- var
- element = document.createElement('div'),
- animations = {
- 'animation' :'animationstart',
- 'OAnimation' :'oAnimationStart',
- 'MozAnimation' :'mozAnimationStart',
- 'WebkitAnimation' :'webkitAnimationStart'
- },
- animation
- ;
- for(animation in animations){
- if( element.style[animation] !== undefined ){
- return animations[animation];
- }
- }
- return false;
- },
- animationEndEvent: function() {
- var
- element = document.createElement('div'),
- animations = {
- 'animation' :'animationend',
- 'OAnimation' :'oAnimationEnd',
- 'MozAnimation' :'mozAnimationEnd',
- 'WebkitAnimation' :'webkitAnimationEnd'
- },
- animation
- ;
- for(animation in animations){
- if( element.style[animation] !== undefined ){
- return animations[animation];
- }
- }
- return false;
- }
-
- },
-
- can: {
- transition: function(forced) {
- var
- animation = settings.animation,
- transitionExists = module.get.transitionExists(animation),
- displayType = module.get.displayType(false),
- elementClass,
- tagName,
- $clone,
- currentAnimation,
- inAnimation,
- directionExists
- ;
- if( transitionExists === undefined || forced) {
- module.verbose('Determining whether animation exists');
- elementClass = $module.attr('class');
- tagName = $module.prop('tagName');
-
- $clone = $('<' + tagName + ' />').addClass( elementClass ).insertAfter($module);
- currentAnimation = $clone
- .addClass(animation)
- .removeClass(className.inward)
- .removeClass(className.outward)
- .addClass(className.animating)
- .addClass(className.transition)
- .css('animationName')
- ;
- inAnimation = $clone
- .addClass(className.inward)
- .css('animationName')
- ;
- if(!displayType) {
- displayType = $clone
- .attr('class', elementClass)
- .removeAttr('style')
- .removeClass(className.hidden)
- .removeClass(className.visible)
- .show()
- .css('display')
- ;
- module.verbose('Determining final display state', displayType);
- module.save.displayType(displayType);
- }
-
- $clone.remove();
- if(currentAnimation != inAnimation) {
- module.debug('Direction exists for animation', animation);
- directionExists = true;
- }
- else if(currentAnimation == 'none' || !currentAnimation) {
- module.debug('No animation defined in css', animation);
- return;
- }
- else {
- module.debug('Static animation found', animation, displayType);
- directionExists = false;
- }
- module.save.transitionExists(animation, directionExists);
- }
- return (transitionExists !== undefined)
- ? transitionExists
- : directionExists
- ;
- },
- animate: function() {
- // can transition does not return a value if animation does not exist
- return (module.can.transition() !== undefined);
- }
- },
-
- is: {
- animating: function() {
- return $module.hasClass(className.animating);
- },
- inward: function() {
- return $module.hasClass(className.inward);
- },
- outward: function() {
- return $module.hasClass(className.outward);
- },
- looping: function() {
- return $module.hasClass(className.looping);
- },
- occurring: function(animation) {
- animation = animation || settings.animation;
- animation = '.' + animation.replace(' ', '.');
- return ( $module.filter(animation).length > 0 );
- },
- visible: function() {
- return $module.is(':visible');
- },
- hidden: function() {
- return $module.css('visibility') === 'hidden';
- },
- supported: function() {
- return(animationEnd !== false);
- }
- },
-
- hide: function() {
- module.verbose('Hiding element');
- if( module.is.animating() ) {
- module.reset();
- }
- element.blur(); // IE will trigger focus change if element is not blurred before hiding
- module.remove.display();
- module.remove.visible();
- if($.isFunction(settings.onBeforeHide)){
- settings.onBeforeHide.call(element,function(){
- module.hideNow();
- });
- } else {
- module.hideNow();
- }
-
- },
-
- hideNow: function() {
- module.set.hidden();
- module.force.hidden();
- settings.onHide.call(element);
- settings.onComplete.call(element);
- // module.repaint();
- },
-
- show: function(display) {
- module.verbose('Showing element', display);
- if(module.force.visible()) {
- module.remove.hidden();
- module.set.visible();
- settings.onShow.call(element);
- settings.onComplete.call(element);
- // module.repaint();
- }
- },
-
- toggle: function() {
- if( module.is.visible() ) {
- module.hide();
- }
- else {
- module.show();
- }
- },
-
- stop: function() {
- module.debug('Stopping current animation');
- $module.triggerHandler(animationEnd);
- },
-
- stopAll: function() {
- module.debug('Stopping all animation');
- module.remove.queueCallback();
- $module.triggerHandler(animationEnd);
- },
-
- clear: {
- queue: function() {
- module.debug('Clearing animation queue');
- module.remove.queueCallback();
- }
- },
-
- enable: function() {
- module.verbose('Starting animation');
- $module.removeClass(className.disabled);
- },
-
- disable: function() {
- module.debug('Stopping animation');
- $module.addClass(className.disabled);
- },
-
- setting: function(name, value) {
- module.debug('Changing setting', name, value);
- if( $.isPlainObject(name) ) {
- $.extend(true, settings, name);
- }
- else if(value !== undefined) {
- if($.isPlainObject(settings[name])) {
- $.extend(true, settings[name], value);
- }
- else {
- settings[name] = value;
- }
- }
- else {
- return settings[name];
- }
- },
- internal: function(name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, module, name);
- }
- else if(value !== undefined) {
- module[name] = value;
- }
- else {
- return module[name];
- }
- },
- debug: function() {
- if(!settings.silent && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.debug.apply(console, arguments);
- }
- }
- },
- verbose: function() {
- if(!settings.silent && settings.verbose && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.verbose.apply(console, arguments);
- }
- }
- },
- error: function() {
- if(!settings.silent) {
- module.error = Function.prototype.bind.call(console.error, console, settings.name + ':');
- module.error.apply(console, arguments);
- }
- },
- performance: {
- log: function(message) {
- var
- currentTime,
- executionTime,
- previousTime
- ;
- if(settings.performance) {
- currentTime = new Date().getTime();
- previousTime = time || currentTime;
- executionTime = currentTime - previousTime;
- time = currentTime;
- performance.push({
- 'Name' : message[0],
- 'Arguments' : [].slice.call(message, 1) || '',
- 'Element' : element,
- 'Execution Time' : executionTime
- });
- }
- clearTimeout(module.performance.timer);
- module.performance.timer = setTimeout(module.performance.display, 500);
- },
- display: function() {
- var
- title = settings.name + ':',
- totalTime = 0
- ;
- time = false;
- clearTimeout(module.performance.timer);
- $.each(performance, function(index, data) {
- totalTime += data['Execution Time'];
- });
- title += ' ' + totalTime + 'ms';
- if(moduleSelector) {
- title += ' \'' + moduleSelector + '\'';
- }
- if($allModules.length > 1) {
- title += ' ' + '(' + $allModules.length + ')';
- }
- if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) {
- console.groupCollapsed(title);
- if(console.table) {
- console.table(performance);
- }
- else {
- $.each(performance, function(index, data) {
- console.log(data['Name'] + ': ' + data['Execution Time']+'ms');
- });
- }
- console.groupEnd();
- }
- performance = [];
- }
- },
- // modified for transition to return invoke success
- invoke: function(query, passedArguments, context) {
- var
- object = instance,
- maxDepth,
- found,
- response
- ;
- passedArguments = passedArguments || queryArguments;
- context = element || context;
- if(typeof query == 'string' && object !== undefined) {
- query = query.split(/[\. ]/);
- maxDepth = query.length - 1;
- $.each(query, function(depth, value) {
- var camelCaseValue = (depth != maxDepth)
- ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
- : query
- ;
- if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
- object = object[camelCaseValue];
- }
- else if( object[camelCaseValue] !== undefined ) {
- found = object[camelCaseValue];
- return false;
- }
- else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
- object = object[value];
- }
- else if( object[value] !== undefined ) {
- found = object[value];
- return false;
- }
- else {
- return false;
- }
- });
- }
- if ( $.isFunction( found ) ) {
- response = found.apply(context, passedArguments);
- }
- else if(found !== undefined) {
- response = found;
- }
-
- if(Array.isArray(returnedValue)) {
- returnedValue.push(response);
- }
- else if(returnedValue !== undefined) {
- returnedValue = [returnedValue, response];
- }
- else if(response !== undefined) {
- returnedValue = response;
- }
- return (found !== undefined)
- ? found
- : false
- ;
- }
- };
- module.initialize();
- })
- ;
- return (returnedValue !== undefined)
- ? returnedValue
- : this
- ;
-};
-
-// Records if CSS transition is available
-$.fn.transition.exists = {};
-
-$.fn.transition.settings = {
-
- // module info
- name : 'Transition',
-
- // hide all output from this component regardless of other settings
- silent : false,
-
- // debug content outputted to console
- debug : false,
-
- // verbose debug output
- verbose : false,
-
- // performance data output
- performance : true,
-
- // event namespace
- namespace : 'transition',
-
- // delay between animations in group
- interval : 0,
-
- // whether group animations should be reversed
- reverse : 'auto',
-
- // animation callback event
- onStart : function() {},
- onComplete : function() {},
- onShow : function() {},
- onHide : function() {},
-
- // whether timeout should be used to ensure callback fires in cases animationend does not
- useFailSafe : true,
-
- // delay in ms for fail safe
- failSafeDelay : 100,
-
- // whether EXACT animation can occur twice in a row
- allowRepeats : false,
-
- // Override final display type on visible
- displayType : false,
-
- // animation duration
- animation : 'fade',
- duration : false,
-
- // new animations will occur after previous ones
- queue : true,
-
-// whether initially inline hidden objects should be skipped for transition
- skipInlineHidden: false,
-
- metadata : {
- displayType: 'display'
- },
-
- className : {
- animating : 'animating',
- disabled : 'disabled',
- hidden : 'hidden',
- inward : 'in',
- loading : 'loading',
- looping : 'looping',
- outward : 'out',
- transition : 'transition',
- visible : 'visible'
- },
-
- // possible errors
- error: {
- noAnimation : 'Element is no longer attached to DOM. Unable to animate. Use silent setting to surpress this warning in production.',
- repeated : 'That animation is already occurring, cancelling repeated animation',
- method : 'The method you called is not defined',
- support : 'This browser does not support CSS animations'
- }
-
-};
-
-
-})( jQuery, window, document );
diff --git a/src-angular/assets/semantic/dist/components/transition.min.css b/src-angular/assets/semantic/dist/components/transition.min.css
deleted file mode 100644
index c489028..0000000
--- a/src-angular/assets/semantic/dist/components/transition.min.css
+++ /dev/null
@@ -1,9 +0,0 @@
-/*!
- * # Fomantic-UI - Transition
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */.transition{-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:ease;animation-timing-function:ease;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animating.transition{-webkit-backface-visibility:hidden;backface-visibility:hidden;visibility:visible!important}.loading.transition{position:absolute;top:-99999px;left:-99999px}.hidden.transition{display:none;visibility:hidden}.visible.transition{display:block!important;visibility:visible!important}.disabled.transition{-webkit-animation-play-state:paused;animation-play-state:paused}.looping.transition{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.transition.browse{-webkit-animation-duration:.5s;animation-duration:.5s}.transition.browse.in{-webkit-animation-name:browseIn;animation-name:browseIn}.transition.browse.left.out,.transition.browse.out{-webkit-animation-name:browseOutLeft;animation-name:browseOutLeft}.transition.browse.right.out{-webkit-animation-name:browseOutRight;animation-name:browseOutRight}@-webkit-keyframes browseIn{0%{-webkit-transform:scale(.8) translateZ(0);transform:scale(.8) translateZ(0);z-index:-1}10%{-webkit-transform:scale(.8) translateZ(0);transform:scale(.8) translateZ(0);z-index:-1;opacity:.7}80%{-webkit-transform:scale(1.05) translateZ(0);transform:scale(1.05) translateZ(0);opacity:1;z-index:999}100%{-webkit-transform:scale(1) translateZ(0);transform:scale(1) translateZ(0);z-index:999}}@keyframes browseIn{0%{-webkit-transform:scale(.8) translateZ(0);transform:scale(.8) translateZ(0);z-index:-1}10%{-webkit-transform:scale(.8) translateZ(0);transform:scale(.8) translateZ(0);z-index:-1;opacity:.7}80%{-webkit-transform:scale(1.05) translateZ(0);transform:scale(1.05) translateZ(0);opacity:1;z-index:999}100%{-webkit-transform:scale(1) translateZ(0);transform:scale(1) translateZ(0);z-index:999}}@-webkit-keyframes browseOutLeft{0%{z-index:999;-webkit-transform:translateX(0) rotateY(0) rotateX(0);transform:translateX(0) rotateY(0) rotateX(0)}50%{z-index:-1;-webkit-transform:translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);transform:translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px)}80%{opacity:1}100%{z-index:-1;-webkit-transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);opacity:0}}@keyframes browseOutLeft{0%{z-index:999;-webkit-transform:translateX(0) rotateY(0) rotateX(0);transform:translateX(0) rotateY(0) rotateX(0)}50%{z-index:-1;-webkit-transform:translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);transform:translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px)}80%{opacity:1}100%{z-index:-1;-webkit-transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);opacity:0}}@-webkit-keyframes browseOutRight{0%{z-index:999;-webkit-transform:translateX(0) rotateY(0) rotateX(0);transform:translateX(0) rotateY(0) rotateX(0)}50%{z-index:1;-webkit-transform:translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);transform:translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px)}80%{opacity:1}100%{z-index:1;-webkit-transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);opacity:0}}@keyframes browseOutRight{0%{z-index:999;-webkit-transform:translateX(0) rotateY(0) rotateX(0);transform:translateX(0) rotateY(0) rotateX(0)}50%{z-index:1;-webkit-transform:translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);transform:translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px)}80%{opacity:1}100%{z-index:1;-webkit-transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);opacity:0}}.drop.transition{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-duration:.4s;animation-duration:.4s;-webkit-animation-timing-function:cubic-bezier(.34,1.61,.7,1);animation-timing-function:cubic-bezier(.34,1.61,.7,1)}.drop.transition.in{-webkit-animation-name:dropIn;animation-name:dropIn}.drop.transition.out{-webkit-animation-name:dropOut;animation-name:dropOut}@-webkit-keyframes dropIn{0%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes dropIn{0%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes dropOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}}@keyframes dropOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}}.transition.fade.in{-webkit-animation-name:fadeIn;animation-name:fadeIn}.transition[class*="fade up"].in{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}.transition[class*="fade down"].in{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}.transition[class*="fade left"].in{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}.transition[class*="fade right"].in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.transition.fade.out{-webkit-animation-name:fadeOut;animation-name:fadeOut}.transition[class*="fade up"].out{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}.transition[class*="fade down"].out{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}.transition[class*="fade left"].out{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}.transition[class*="fade right"].out{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(10%);transform:translateY(10%)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(10%);transform:translateY(10%)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-10%);transform:translateY(-10%)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-10%);transform:translateY(-10%)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(10%);transform:translateX(10%)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(10%);transform:translateX(10%)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-10%);transform:translateX(-10%)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-10%);transform:translateX(-10%)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@-webkit-keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(5%);transform:translateY(5%)}}@keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(5%);transform:translateY(5%)}}@-webkit-keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-5%);transform:translateY(-5%)}}@keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-5%);transform:translateY(-5%)}}@-webkit-keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(5%);transform:translateX(5%)}}@keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(5%);transform:translateX(5%)}}@-webkit-keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-5%);transform:translateX(-5%)}}@keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-5%);transform:translateX(-5%)}}.flip.transition.in,.flip.transition.out{-webkit-animation-duration:.6s;animation-duration:.6s}.horizontal.flip.transition.in{-webkit-animation-name:horizontalFlipIn;animation-name:horizontalFlipIn}.horizontal.flip.transition.out{-webkit-animation-name:horizontalFlipOut;animation-name:horizontalFlipOut}.vertical.flip.transition.in{-webkit-animation-name:verticalFlipIn;animation-name:verticalFlipIn}.vertical.flip.transition.out{-webkit-animation-name:verticalFlipOut;animation-name:verticalFlipOut}@-webkit-keyframes horizontalFlipIn{0%{-webkit-transform:perspective(2000px) rotateY(-90deg);transform:perspective(2000px) rotateY(-90deg);opacity:0}100%{-webkit-transform:perspective(2000px) rotateY(0);transform:perspective(2000px) rotateY(0);opacity:1}}@keyframes horizontalFlipIn{0%{-webkit-transform:perspective(2000px) rotateY(-90deg);transform:perspective(2000px) rotateY(-90deg);opacity:0}100%{-webkit-transform:perspective(2000px) rotateY(0);transform:perspective(2000px) rotateY(0);opacity:1}}@-webkit-keyframes verticalFlipIn{0%{-webkit-transform:perspective(2000px) rotateX(-90deg);transform:perspective(2000px) rotateX(-90deg);opacity:0}100%{-webkit-transform:perspective(2000px) rotateX(0);transform:perspective(2000px) rotateX(0);opacity:1}}@keyframes verticalFlipIn{0%{-webkit-transform:perspective(2000px) rotateX(-90deg);transform:perspective(2000px) rotateX(-90deg);opacity:0}100%{-webkit-transform:perspective(2000px) rotateX(0);transform:perspective(2000px) rotateX(0);opacity:1}}@-webkit-keyframes horizontalFlipOut{0%{-webkit-transform:perspective(2000px) rotateY(0);transform:perspective(2000px) rotateY(0);opacity:1}100%{-webkit-transform:perspective(2000px) rotateY(90deg);transform:perspective(2000px) rotateY(90deg);opacity:0}}@keyframes horizontalFlipOut{0%{-webkit-transform:perspective(2000px) rotateY(0);transform:perspective(2000px) rotateY(0);opacity:1}100%{-webkit-transform:perspective(2000px) rotateY(90deg);transform:perspective(2000px) rotateY(90deg);opacity:0}}@-webkit-keyframes verticalFlipOut{0%{-webkit-transform:perspective(2000px) rotateX(0);transform:perspective(2000px) rotateX(0);opacity:1}100%{-webkit-transform:perspective(2000px) rotateX(-90deg);transform:perspective(2000px) rotateX(-90deg);opacity:0}}@keyframes verticalFlipOut{0%{-webkit-transform:perspective(2000px) rotateX(0);transform:perspective(2000px) rotateX(0);opacity:1}100%{-webkit-transform:perspective(2000px) rotateX(-90deg);transform:perspective(2000px) rotateX(-90deg);opacity:0}}.scale.transition.in{-webkit-animation-name:scaleIn;animation-name:scaleIn}.scale.transition.out{-webkit-animation-name:scaleOut;animation-name:scaleOut}@-webkit-keyframes scaleIn{0%{opacity:0;-webkit-transform:scale(.8);transform:scale(.8)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes scaleIn{0%{opacity:0;-webkit-transform:scale(.8);transform:scale(.8)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes scaleOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(.9);transform:scale(.9)}}@keyframes scaleOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(.9);transform:scale(.9)}}.transition.fly{-webkit-animation-duration:.6s;animation-duration:.6s;-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}.transition.fly.in{-webkit-animation-name:flyIn;animation-name:flyIn}.transition[class*="fly up"].in{-webkit-animation-name:flyInUp;animation-name:flyInUp}.transition[class*="fly down"].in{-webkit-animation-name:flyInDown;animation-name:flyInDown}.transition[class*="fly left"].in{-webkit-animation-name:flyInLeft;animation-name:flyInLeft}.transition[class*="fly right"].in{-webkit-animation-name:flyInRight;animation-name:flyInRight}.transition.fly.out{-webkit-animation-name:flyOut;animation-name:flyOut}.transition[class*="fly up"].out{-webkit-animation-name:flyOutUp;animation-name:flyOutUp}.transition[class*="fly down"].out{-webkit-animation-name:flyOutDown;animation-name:flyOutDown}.transition[class*="fly left"].out{-webkit-animation-name:flyOutLeft;animation-name:flyOutLeft}.transition[class*="fly right"].out{-webkit-animation-name:flyOutRight;animation-name:flyOutRight}@-webkit-keyframes flyIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}100%{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes flyIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}100%{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@-webkit-keyframes flyInUp{0%{opacity:0;-webkit-transform:translate3d(0,1500px,0);transform:translate3d(0,1500px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes flyInUp{0%{opacity:0;-webkit-transform:translate3d(0,1500px,0);transform:translate3d(0,1500px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@-webkit-keyframes flyInDown{0%{opacity:0;-webkit-transform:translate3d(0,-1500px,0);transform:translate3d(0,-1500px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}100%{-webkit-transform:none;transform:none}}@keyframes flyInDown{0%{opacity:0;-webkit-transform:translate3d(0,-1500px,0);transform:translate3d(0,-1500px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}100%{-webkit-transform:none;transform:none}}@-webkit-keyframes flyInLeft{0%{opacity:0;-webkit-transform:translate3d(1500px,0,0);transform:translate3d(1500px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}100%{-webkit-transform:none;transform:none}}@keyframes flyInLeft{0%{opacity:0;-webkit-transform:translate3d(1500px,0,0);transform:translate3d(1500px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}100%{-webkit-transform:none;transform:none}}@-webkit-keyframes flyInRight{0%{opacity:0;-webkit-transform:translate3d(-1500px,0,0);transform:translate3d(-1500px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}100%{-webkit-transform:none;transform:none}}@keyframes flyInRight{0%{opacity:0;-webkit-transform:translate3d(-1500px,0,0);transform:translate3d(-1500px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}100%{-webkit-transform:none;transform:none}}@-webkit-keyframes flyOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}100%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes flyOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}100%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@-webkit-keyframes flyOutUp{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes flyOutUp{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@-webkit-keyframes flyOutDown{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes flyOutDown{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@-webkit-keyframes flyOutRight{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes flyOutRight{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@-webkit-keyframes flyOutLeft{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes flyOutLeft{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.transition.slide.in,.transition[class*="slide down"].in{-webkit-animation-name:slideInY;animation-name:slideInY;-webkit-transform-origin:top center;transform-origin:top center}.transition[class*="slide up"].in{-webkit-animation-name:slideInY;animation-name:slideInY;-webkit-transform-origin:bottom center;transform-origin:bottom center}.transition[class*="slide left"].in{-webkit-animation-name:slideInX;animation-name:slideInX;-webkit-transform-origin:center right;transform-origin:center right}.transition[class*="slide right"].in{-webkit-animation-name:slideInX;animation-name:slideInX;-webkit-transform-origin:center left;transform-origin:center left}.transition.slide.out,.transition[class*="slide down"].out{-webkit-animation-name:slideOutY;animation-name:slideOutY;-webkit-transform-origin:top center;transform-origin:top center}.transition[class*="slide up"].out{-webkit-animation-name:slideOutY;animation-name:slideOutY;-webkit-transform-origin:bottom center;transform-origin:bottom center}.transition[class*="slide left"].out{-webkit-animation-name:slideOutX;animation-name:slideOutX;-webkit-transform-origin:center right;transform-origin:center right}.transition[class*="slide right"].out{-webkit-animation-name:slideOutX;animation-name:slideOutX;-webkit-transform-origin:center left;transform-origin:center left}@-webkit-keyframes slideInY{0%{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}100%{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1)}}@keyframes slideInY{0%{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}100%{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1)}}@-webkit-keyframes slideInX{0%{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}100%{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes slideInX{0%{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}100%{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@-webkit-keyframes slideOutY{0%{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1)}100%{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}}@keyframes slideOutY{0%{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1)}100%{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}}@-webkit-keyframes slideOutX{0%{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}100%{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}}@keyframes slideOutX{0%{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}100%{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}}.transition.swing{-webkit-animation-duration:.8s;animation-duration:.8s}.transition[class*="swing down"].in{-webkit-animation-name:swingInX;animation-name:swingInX;-webkit-transform-origin:top center;transform-origin:top center}.transition[class*="swing up"].in{-webkit-animation-name:swingInX;animation-name:swingInX;-webkit-transform-origin:bottom center;transform-origin:bottom center}.transition[class*="swing left"].in{-webkit-animation-name:swingInY;animation-name:swingInY;-webkit-transform-origin:center right;transform-origin:center right}.transition[class*="swing right"].in{-webkit-animation-name:swingInY;animation-name:swingInY;-webkit-transform-origin:center left;transform-origin:center left}.transition.swing.out,.transition[class*="swing down"].out{-webkit-animation-name:swingOutX;animation-name:swingOutX;-webkit-transform-origin:top center;transform-origin:top center}.transition[class*="swing up"].out{-webkit-animation-name:swingOutX;animation-name:swingOutX;-webkit-transform-origin:bottom center;transform-origin:bottom center}.transition[class*="swing left"].out{-webkit-animation-name:swingOutY;animation-name:swingOutY;-webkit-transform-origin:center right;transform-origin:center right}.transition[class*="swing right"].out{-webkit-animation-name:swingOutY;animation-name:swingOutY;-webkit-transform-origin:center left;transform-origin:center left}@-webkit-keyframes swingInX{0%{-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(1000px) rotateX(-30deg);transform:perspective(1000px) rotateX(-30deg);opacity:1}60%{-webkit-transform:perspective(1000px) rotateX(15deg);transform:perspective(1000px) rotateX(15deg)}80%{-webkit-transform:perspective(1000px) rotateX(-7.5deg);transform:perspective(1000px) rotateX(-7.5deg)}100%{-webkit-transform:perspective(1000px) rotateX(0);transform:perspective(1000px) rotateX(0)}}@keyframes swingInX{0%{-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(1000px) rotateX(-30deg);transform:perspective(1000px) rotateX(-30deg);opacity:1}60%{-webkit-transform:perspective(1000px) rotateX(15deg);transform:perspective(1000px) rotateX(15deg)}80%{-webkit-transform:perspective(1000px) rotateX(-7.5deg);transform:perspective(1000px) rotateX(-7.5deg)}100%{-webkit-transform:perspective(1000px) rotateX(0);transform:perspective(1000px) rotateX(0)}}@-webkit-keyframes swingInY{0%{-webkit-transform:perspective(1000px) rotateY(-90deg);transform:perspective(1000px) rotateY(-90deg);opacity:0}40%{-webkit-transform:perspective(1000px) rotateY(30deg);transform:perspective(1000px) rotateY(30deg);opacity:1}60%{-webkit-transform:perspective(1000px) rotateY(-17.5deg);transform:perspective(1000px) rotateY(-17.5deg)}80%{-webkit-transform:perspective(1000px) rotateY(7.5deg);transform:perspective(1000px) rotateY(7.5deg)}100%{-webkit-transform:perspective(1000px) rotateY(0);transform:perspective(1000px) rotateY(0)}}@keyframes swingInY{0%{-webkit-transform:perspective(1000px) rotateY(-90deg);transform:perspective(1000px) rotateY(-90deg);opacity:0}40%{-webkit-transform:perspective(1000px) rotateY(30deg);transform:perspective(1000px) rotateY(30deg);opacity:1}60%{-webkit-transform:perspective(1000px) rotateY(-17.5deg);transform:perspective(1000px) rotateY(-17.5deg)}80%{-webkit-transform:perspective(1000px) rotateY(7.5deg);transform:perspective(1000px) rotateY(7.5deg)}100%{-webkit-transform:perspective(1000px) rotateY(0);transform:perspective(1000px) rotateY(0)}}@-webkit-keyframes swingOutX{0%{-webkit-transform:perspective(1000px) rotateX(0);transform:perspective(1000px) rotateX(0)}40%{-webkit-transform:perspective(1000px) rotateX(-7.5deg);transform:perspective(1000px) rotateX(-7.5deg)}60%{-webkit-transform:perspective(1000px) rotateX(17.5deg);transform:perspective(1000px) rotateX(17.5deg)}80%{-webkit-transform:perspective(1000px) rotateX(-30deg);transform:perspective(1000px) rotateX(-30deg);opacity:1}100%{-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg);opacity:0}}@keyframes swingOutX{0%{-webkit-transform:perspective(1000px) rotateX(0);transform:perspective(1000px) rotateX(0)}40%{-webkit-transform:perspective(1000px) rotateX(-7.5deg);transform:perspective(1000px) rotateX(-7.5deg)}60%{-webkit-transform:perspective(1000px) rotateX(17.5deg);transform:perspective(1000px) rotateX(17.5deg)}80%{-webkit-transform:perspective(1000px) rotateX(-30deg);transform:perspective(1000px) rotateX(-30deg);opacity:1}100%{-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg);opacity:0}}@-webkit-keyframes swingOutY{0%{-webkit-transform:perspective(1000px) rotateY(0);transform:perspective(1000px) rotateY(0)}40%{-webkit-transform:perspective(1000px) rotateY(7.5deg);transform:perspective(1000px) rotateY(7.5deg)}60%{-webkit-transform:perspective(1000px) rotateY(-10deg);transform:perspective(1000px) rotateY(-10deg)}80%{-webkit-transform:perspective(1000px) rotateY(30deg);transform:perspective(1000px) rotateY(30deg);opacity:1}100%{-webkit-transform:perspective(1000px) rotateY(-90deg);transform:perspective(1000px) rotateY(-90deg);opacity:0}}@keyframes swingOutY{0%{-webkit-transform:perspective(1000px) rotateY(0);transform:perspective(1000px) rotateY(0)}40%{-webkit-transform:perspective(1000px) rotateY(7.5deg);transform:perspective(1000px) rotateY(7.5deg)}60%{-webkit-transform:perspective(1000px) rotateY(-10deg);transform:perspective(1000px) rotateY(-10deg)}80%{-webkit-transform:perspective(1000px) rotateY(30deg);transform:perspective(1000px) rotateY(30deg);opacity:1}100%{-webkit-transform:perspective(1000px) rotateY(-90deg);transform:perspective(1000px) rotateY(-90deg);opacity:0}}.transition.zoom.in{-webkit-animation-name:zoomIn;animation-name:zoomIn}.transition.zoom.out{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomIn{0%{opacity:1;-webkit-transform:scale(0);transform:scale(0)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes zoomIn{0%{opacity:1;-webkit-transform:scale(0);transform:scale(0)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes zoomOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:1;-webkit-transform:scale(0);transform:scale(0)}}@keyframes zoomOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:1;-webkit-transform:scale(0);transform:scale(0)}}.flash.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:flash;animation-name:flash}.shake.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:shake;animation-name:shake}.bounce.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:bounce;animation-name:bounce}.tada.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:tada;animation-name:tada}.pulse.transition{-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-name:pulse;animation-name:pulse}.jiggle.transition{-webkit-animation-duration:750ms;animation-duration:750ms;-webkit-animation-name:jiggle;animation-name:jiggle}.transition.glow{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-timing-function:cubic-bezier(.19,1,.22,1);animation-timing-function:cubic-bezier(.19,1,.22,1)}.transition.glow{-webkit-animation-name:glow;animation-name:glow}@-webkit-keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@-webkit-keyframes shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@keyframes shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@-webkit-keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@-webkit-keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}@keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}@-webkit-keyframes pulse{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}50%{-webkit-transform:scale(.9);transform:scale(.9);opacity:.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes pulse{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}50%{-webkit-transform:scale(.9);transform:scale(.9);opacity:.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes jiggle{0%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes jiggle{0%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@-webkit-keyframes glow{0%{background-color:#fcfcfd}30%{background-color:#fff6cd}100%{background-color:#fcfcfd}}@keyframes glow{0%{background-color:#fcfcfd}30%{background-color:#fff6cd}100%{background-color:#fcfcfd}}
\ No newline at end of file
diff --git a/src-angular/assets/semantic/dist/components/transition.min.js b/src-angular/assets/semantic/dist/components/transition.min.js
deleted file mode 100644
index 530f38e..0000000
--- a/src-angular/assets/semantic/dist/components/transition.min.js
+++ /dev/null
@@ -1,11 +0,0 @@
- /*
- * # Fomantic UI - 2.8.3
- * https://github.com/fomantic/Fomantic-UI
- * http://fomantic-ui.com/
- *
- * Copyright 2014 Contributors
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-!function(C,n,S,T){"use strict";C.isFunction=C.isFunction||function(n){return"function"==typeof n&&"number"!=typeof n.nodeType},n=void 0!==n&&n.Math==Math?n:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")(),C.fn.transition=function(){var d,r=C(this),p=r.selector||"",g=(new Date).getTime(),v=[],b=arguments,y=b[0],h=[].slice.call(arguments,1),w="string"==typeof y;return r.each(function(t){var u,s,e,c,i,a,n,o,m,f=C(this),l=this;(m={initialize:function(){u=m.get.settings.apply(l,b),c=u.className,e=u.error,i=u.metadata,o="."+u.namespace,n="module-"+u.namespace,s=f.data(n)||m,a=m.get.animationEndEvent(),!1===(w=w&&m.invoke(y))&&(m.verbose("Converted arguments into settings object",u),u.interval?m.delay(u.animate):m.animate(),m.instantiate())},instantiate:function(){m.verbose("Storing instance of module",m),s=m,f.data(n,s)},destroy:function(){m.verbose("Destroying previous module for",l),f.removeData(n)},refresh:function(){m.verbose("Refreshing display type on next animation"),delete m.displayType},forceRepaint:function(){m.verbose("Forcing element repaint");var n=f.parent(),e=f.next();0===e.length?f.detach().appendTo(n):f.detach().insertBefore(e)},repaint:function(){m.verbose("Repainting element");l.offsetWidth},delay:function(n){var e,i=m.get.animationDirection();i=i||(m.can.transition()?m.get.direction():"static"),n=n!==T?n:u.interval,e="auto"==u.reverse&&i==c.outward||1==u.reverse?(r.length-t)*u.interval:t*u.interval,m.debug("Delaying animation by",e),setTimeout(m.animate,e)},animate:function(n){if(u=n||u,!m.is.supported())return m.error(e.support),!1;if(m.debug("Preparing animation",u.animation),m.is.animating()){if(u.queue)return!u.allowRepeats&&m.has.direction()&&m.is.occurring()&&!0!==m.queuing?m.debug("Animation is currently occurring, preventing queueing same animation",u.animation):m.queue(u.animation),!1;if(!u.allowRepeats&&m.is.occurring())return m.debug("Animation is already occurring, will not execute repeated animation",u.animation),!1;m.debug("New animation started, completing previous early",u.animation),s.complete()}m.can.animate()?m.set.animating(u.animation):m.error(e.noAnimation,u.animation,l)},reset:function(){m.debug("Resetting animation to beginning conditions"),m.remove.animationCallbacks(),m.restore.conditions(),m.remove.animating()},queue:function(n){m.debug("Queueing animation of",n),m.queuing=!0,f.one(a+".queue"+o,function(){m.queuing=!1,m.repaint(),m.animate.apply(this,u)})},complete:function(n){n&&n.target===l&&n.stopPropagation(),m.debug("Animation complete",u.animation),m.remove.completeCallback(),m.remove.failSafe(),m.is.looping()||(m.is.outward()?(m.verbose("Animation is outward, hiding element"),m.restore.conditions(),m.hide()):m.is.inward()?(m.verbose("Animation is outward, showing element"),m.restore.conditions(),m.show()):(m.verbose("Static animation completed"),m.restore.conditions(),u.onComplete.call(l)))},force:{visible:function(){var n=f.attr("style"),e=m.get.userStyle(n),i=m.get.displayType(),t=e+"display: "+i+" !important;",a=f[0].style.display;return!i||"none"===a&&u.skipInlineHidden||f[0].tagName.match(/(script|link|style)/i)?(m.remove.transition(),!1):(m.verbose("Overriding default display to show element",i),f.attr("style",t),!0)},hidden:function(){var n=f.attr("style"),e=f.css("display"),i=n===T||""===n;"none"===e||m.is.hidden()?i&&f.removeAttr("style"):(m.verbose("Overriding default display to hide element"),f.css("display","none"))}},has:{direction:function(n){var i=!1;return"string"==typeof(n=n||u.animation)&&(n=n.split(" "),C.each(n,function(n,e){e!==c.inward&&e!==c.outward||(i=!0)})),i},inlineDisplay:function(){var n=f.attr("style")||"";return Array.isArray(n.match(/display.*?;/,""))}},set:{animating:function(n){m.remove.completeCallback(),n=n||u.animation;var e=m.get.animationClass(n);m.save.animation(e),m.force.visible()&&(m.remove.hidden(),m.remove.direction(),m.start.animation(e))},duration:function(n,e){!(e="number"==typeof(e=e||u.duration)?e+"ms":e)&&0!==e||(m.verbose("Setting animation duration",e),f.css({"animation-duration":e}))},direction:function(n){(n=n||m.get.direction())==c.inward?m.set.inward():m.set.outward()},looping:function(){m.debug("Transition set to loop"),f.addClass(c.looping)},hidden:function(){f.addClass(c.transition).addClass(c.hidden)},inward:function(){m.debug("Setting direction to inward"),f.removeClass(c.outward).addClass(c.inward)},outward:function(){m.debug("Setting direction to outward"),f.removeClass(c.inward).addClass(c.outward)},visible:function(){f.addClass(c.transition).addClass(c.visible)}},start:{animation:function(n){n=n||m.get.animationClass(),m.debug("Starting tween",n),f.addClass(n).one(a+".complete"+o,m.complete),u.useFailSafe&&m.add.failSafe(),m.set.duration(u.duration),u.onStart.call(l)}},save:{animation:function(n){m.cache||(m.cache={}),m.cache.animation=n},displayType:function(n){"none"!==n&&f.data(i.displayType,n)},transitionExists:function(n,e){C.fn.transition.exists[n]=e,m.verbose("Saving existence of transition",n,e)}},restore:{conditions:function(){var n=m.get.currentAnimation();n&&(f.removeClass(n),m.verbose("Removing animation class",m.cache)),m.remove.duration()}},add:{failSafe:function(){var n=m.get.duration();m.timer=setTimeout(function(){f.triggerHandler(a)},n+u.failSafeDelay),m.verbose("Adding fail safe timer",m.timer)}},remove:{animating:function(){f.removeClass(c.animating)},animationCallbacks:function(){m.remove.queueCallback(),m.remove.completeCallback()},queueCallback:function(){f.off(".queue"+o)},completeCallback:function(){f.off(".complete"+o)},display:function(){f.css("display","")},direction:function(){f.removeClass(c.inward).removeClass(c.outward)},duration:function(){f.css("animation-duration","")},failSafe:function(){m.verbose("Removing fail safe timer",m.timer),m.timer&&clearTimeout(m.timer)},hidden:function(){f.removeClass(c.hidden)},visible:function(){f.removeClass(c.visible)},looping:function(){m.debug("Transitions are no longer looping"),m.is.looping()&&(m.reset(),f.removeClass(c.looping))},transition:function(){f.removeClass(c.transition).removeClass(c.visible).removeClass(c.hidden)}},get:{settings:function(n,e,i){return"object"==typeof n?C.extend(!0,{},C.fn.transition.settings,n):"function"==typeof i?C.extend({},C.fn.transition.settings,{animation:n,onComplete:i,duration:e}):"string"==typeof e||"number"==typeof e?C.extend({},C.fn.transition.settings,{animation:n,duration:e}):"object"==typeof e?C.extend({},C.fn.transition.settings,e,{animation:n}):"function"==typeof e?C.extend({},C.fn.transition.settings,{animation:n,onComplete:e}):C.extend({},C.fn.transition.settings,{animation:n})},animationClass:function(n){var e=n||u.animation,i=m.can.transition()&&!m.has.direction()?m.get.direction()+" ":"";return c.animating+" "+c.transition+" "+i+e},currentAnimation:function(){return!(!m.cache||m.cache.animation===T)&&m.cache.animation},currentDirection:function(){return m.is.inward()?c.inward:c.outward},direction:function(){return m.is.hidden()||!m.is.visible()?c.inward:c.outward},animationDirection:function(n){var i;return"string"==typeof(n=n||u.animation)&&(n=n.split(" "),C.each(n,function(n,e){e===c.inward?i=c.inward:e===c.outward&&(i=c.outward)})),i||!1},duration:function(n){return!1===(n=n||u.duration)&&(n=f.css("animation-duration")||0),"string"==typeof n?-1").addClass(e).insertAfter(f)).addClass(s).removeClass(c.inward).removeClass(c.outward).addClass(c.animating).addClass(c.transition).css("animationName"),o=t.addClass(c.inward).css("animationName"),d||(d=t.attr("class",e).removeAttr("style").removeClass(c.hidden).removeClass(c.visible).show().css("display"),m.verbose("Determining final display state",d),m.save.displayType(d)),t.remove(),a!=o)m.debug("Direction exists for animation",s),r=!0;else{if("none"==a||!a)return void m.debug("No animation defined in css",s);m.debug("Static animation found",s,d),r=!1}m.save.transitionExists(s,r)}return l!==T?l:r},animate:function(){return m.can.transition()!==T}},is:{animating:function(){return f.hasClass(c.animating)},inward:function(){return f.hasClass(c.inward)},outward:function(){return f.hasClass(c.outward)},looping:function(){return f.hasClass(c.looping)},occurring:function(n){return n="."+(n=n||u.animation).replace(" ","."),0 0) {
- module.debug('Element removed from DOM, tearing down events');
- module.destroy();
- }
- });
- }
- });
- },
- resize: function() {
- module.debug('Window resized');
- if(settings.refreshOnResize) {
- requestAnimationFrame(module.refresh);
- }
- },
- load: function() {
- module.debug('Page finished loading');
- requestAnimationFrame(module.refresh);
- },
- // publishes scrollchange event on one scroll
- scroll: function() {
- if(settings.throttle) {
- clearTimeout(module.timer);
- module.timer = setTimeout(function() {
- $context.triggerHandler('scrollchange' + eventNamespace, [ $context.scrollTop() ]);
- }, settings.throttle);
- }
- else {
- requestAnimationFrame(function() {
- $context.triggerHandler('scrollchange' + eventNamespace, [ $context.scrollTop() ]);
- });
- }
- },
- // subscribes to scrollchange
- scrollchange: function(event, scrollPosition) {
- module.checkVisibility(scrollPosition);
- },
- },
-
- precache: function(images, callback) {
- if (!(images instanceof Array)) {
- images = [images];
- }
- var
- imagesLength = images.length,
- loadedCounter = 0,
- cache = [],
- cacheImage = document.createElement('img'),
- handleLoad = function() {
- loadedCounter++;
- if (loadedCounter >= images.length) {
- if ($.isFunction(callback)) {
- callback();
- }
- }
- }
- ;
- while (imagesLength--) {
- cacheImage = document.createElement('img');
- cacheImage.onload = handleLoad;
- cacheImage.onerror = handleLoad;
- cacheImage.src = images[imagesLength];
- cache.push(cacheImage);
- }
- },
-
- enableCallbacks: function() {
- module.debug('Allowing callbacks to occur');
- disabled = false;
- },
-
- disableCallbacks: function() {
- module.debug('Disabling all callbacks temporarily');
- disabled = true;
- },
-
- should: {
- trackChanges: function() {
- if(methodInvoked) {
- module.debug('One time query, no need to bind events');
- return false;
- }
- module.debug('Callbacks being attached');
- return true;
- }
- },
-
- setup: {
- cache: function() {
- module.cache = {
- occurred : {},
- screen : {},
- element : {},
- };
- },
- image: function() {
- var
- src = $module.data(metadata.src)
- ;
- if(src) {
- module.verbose('Lazy loading image', src);
- settings.once = true;
- settings.observeChanges = false;
-
- // show when top visible
- settings.onOnScreen = function() {
- module.debug('Image on screen', element);
- module.precache(src, function() {
- module.set.image(src, function() {
- loadedCount++;
- if(loadedCount == moduleCount) {
- settings.onAllLoaded.call(this);
- }
- settings.onLoad.call(this);
- });
- });
- };
- }
- },
- fixed: function() {
- module.debug('Setting up fixed');
- settings.once = false;
- settings.observeChanges = false;
- settings.initialCheck = true;
- settings.refreshOnLoad = true;
- if(!parameters.transition) {
- settings.transition = false;
- }
- module.create.placeholder();
- module.debug('Added placeholder', $placeholder);
- settings.onTopPassed = function() {
- module.debug('Element passed, adding fixed position', $module);
- module.show.placeholder();
- module.set.fixed();
- if(settings.transition) {
- if($.fn.transition !== undefined) {
- $module.transition(settings.transition, settings.duration);
- }
- }
- };
- settings.onTopPassedReverse = function() {
- module.debug('Element returned to position, removing fixed', $module);
- module.hide.placeholder();
- module.remove.fixed();
- };
- }
- },
-
- create: {
- placeholder: function() {
- module.verbose('Creating fixed position placeholder');
- $placeholder = $module
- .clone(false)
- .css('display', 'none')
- .addClass(className.placeholder)
- .insertAfter($module)
- ;
- }
- },
-
- show: {
- placeholder: function() {
- module.verbose('Showing placeholder');
- $placeholder
- .css('display', 'block')
- .css('visibility', 'hidden')
- ;
- }
- },
- hide: {
- placeholder: function() {
- module.verbose('Hiding placeholder');
- $placeholder
- .css('display', 'none')
- .css('visibility', '')
- ;
- }
- },
-
- set: {
- fixed: function() {
- module.verbose('Setting element to fixed position');
- $module
- .addClass(className.fixed)
- .css({
- position : 'fixed',
- top : settings.offset + 'px',
- left : 'auto',
- zIndex : settings.zIndex
- })
- ;
- settings.onFixed.call(element);
- },
- image: function(src, callback) {
- $module
- .attr('src', src)
- ;
- if(settings.transition) {
- if( $.fn.transition !== undefined) {
- if($module.hasClass(className.visible)) {
- module.debug('Transition already occurred on this image, skipping animation');
- return;
- }
- $module.transition(settings.transition, settings.duration, callback);
- }
- else {
- $module.fadeIn(settings.duration, callback);
- }
- }
- else {
- $module.show();
- }
- }
- },
-
- is: {
- onScreen: function() {
- var
- calculations = module.get.elementCalculations()
- ;
- return calculations.onScreen;
- },
- offScreen: function() {
- var
- calculations = module.get.elementCalculations()
- ;
- return calculations.offScreen;
- },
- visible: function() {
- if(module.cache && module.cache.element) {
- return !(module.cache.element.width === 0 && module.cache.element.offset.top === 0);
- }
- return false;
- },
- verticallyScrollableContext: function() {
- var
- overflowY = ($context.get(0) !== window)
- ? $context.css('overflow-y')
- : false
- ;
- return (overflowY == 'auto' || overflowY == 'scroll');
- },
- horizontallyScrollableContext: function() {
- var
- overflowX = ($context.get(0) !== window)
- ? $context.css('overflow-x')
- : false
- ;
- return (overflowX == 'auto' || overflowX == 'scroll');
- }
- },
-
- refresh: function() {
- module.debug('Refreshing constants (width/height)');
- if(settings.type == 'fixed') {
- module.resetFixed();
- }
- module.reset();
- module.save.position();
- if(settings.checkOnRefresh) {
- module.checkVisibility();
- }
- settings.onRefresh.call(element);
- },
-
- resetFixed: function () {
- module.remove.fixed();
- module.remove.occurred();
- },
-
- reset: function() {
- module.verbose('Resetting all cached values');
- if( $.isPlainObject(module.cache) ) {
- module.cache.screen = {};
- module.cache.element = {};
- }
- },
-
- checkVisibility: function(scroll) {
- module.verbose('Checking visibility of element', module.cache.element);
-
- if( !disabled && module.is.visible() ) {
-
- // save scroll position
- module.save.scroll(scroll);
-
- // update calculations derived from scroll
- module.save.calculations();
-
- // percentage
- module.passed();
-
- // reverse (must be first)
- module.passingReverse();
- module.topVisibleReverse();
- module.bottomVisibleReverse();
- module.topPassedReverse();
- module.bottomPassedReverse();
-
- // one time
- module.onScreen();
- module.offScreen();
- module.passing();
- module.topVisible();
- module.bottomVisible();
- module.topPassed();
- module.bottomPassed();
-
- // on update callback
- if(settings.onUpdate) {
- settings.onUpdate.call(element, module.get.elementCalculations());
- }
- }
- },
-
- passed: function(amount, newCallback) {
- var
- calculations = module.get.elementCalculations()
- ;
- // assign callback
- if(amount && newCallback) {
- settings.onPassed[amount] = newCallback;
- }
- else if(amount !== undefined) {
- return (module.get.pixelsPassed(amount) > calculations.pixelsPassed);
- }
- else if(calculations.passing) {
- $.each(settings.onPassed, function(amount, callback) {
- if(calculations.bottomVisible || calculations.pixelsPassed > module.get.pixelsPassed(amount)) {
- module.execute(callback, amount);
- }
- else if(!settings.once) {
- module.remove.occurred(callback);
- }
- });
- }
- },
-
- onScreen: function(newCallback) {
- var
- calculations = module.get.elementCalculations(),
- callback = newCallback || settings.onOnScreen,
- callbackName = 'onScreen'
- ;
- if(newCallback) {
- module.debug('Adding callback for onScreen', newCallback);
- settings.onOnScreen = newCallback;
- }
- if(calculations.onScreen) {
- module.execute(callback, callbackName);
- }
- else if(!settings.once) {
- module.remove.occurred(callbackName);
- }
- if(newCallback !== undefined) {
- return calculations.onOnScreen;
- }
- },
-
- offScreen: function(newCallback) {
- var
- calculations = module.get.elementCalculations(),
- callback = newCallback || settings.onOffScreen,
- callbackName = 'offScreen'
- ;
- if(newCallback) {
- module.debug('Adding callback for offScreen', newCallback);
- settings.onOffScreen = newCallback;
- }
- if(calculations.offScreen) {
- module.execute(callback, callbackName);
- }
- else if(!settings.once) {
- module.remove.occurred(callbackName);
- }
- if(newCallback !== undefined) {
- return calculations.onOffScreen;
- }
- },
-
- passing: function(newCallback) {
- var
- calculations = module.get.elementCalculations(),
- callback = newCallback || settings.onPassing,
- callbackName = 'passing'
- ;
- if(newCallback) {
- module.debug('Adding callback for passing', newCallback);
- settings.onPassing = newCallback;
- }
- if(calculations.passing) {
- module.execute(callback, callbackName);
- }
- else if(!settings.once) {
- module.remove.occurred(callbackName);
- }
- if(newCallback !== undefined) {
- return calculations.passing;
- }
- },
-
-
- topVisible: function(newCallback) {
- var
- calculations = module.get.elementCalculations(),
- callback = newCallback || settings.onTopVisible,
- callbackName = 'topVisible'
- ;
- if(newCallback) {
- module.debug('Adding callback for top visible', newCallback);
- settings.onTopVisible = newCallback;
- }
- if(calculations.topVisible) {
- module.execute(callback, callbackName);
- }
- else if(!settings.once) {
- module.remove.occurred(callbackName);
- }
- if(newCallback === undefined) {
- return calculations.topVisible;
- }
- },
-
- bottomVisible: function(newCallback) {
- var
- calculations = module.get.elementCalculations(),
- callback = newCallback || settings.onBottomVisible,
- callbackName = 'bottomVisible'
- ;
- if(newCallback) {
- module.debug('Adding callback for bottom visible', newCallback);
- settings.onBottomVisible = newCallback;
- }
- if(calculations.bottomVisible) {
- module.execute(callback, callbackName);
- }
- else if(!settings.once) {
- module.remove.occurred(callbackName);
- }
- if(newCallback === undefined) {
- return calculations.bottomVisible;
- }
- },
-
- topPassed: function(newCallback) {
- var
- calculations = module.get.elementCalculations(),
- callback = newCallback || settings.onTopPassed,
- callbackName = 'topPassed'
- ;
- if(newCallback) {
- module.debug('Adding callback for top passed', newCallback);
- settings.onTopPassed = newCallback;
- }
- if(calculations.topPassed) {
- module.execute(callback, callbackName);
- }
- else if(!settings.once) {
- module.remove.occurred(callbackName);
- }
- if(newCallback === undefined) {
- return calculations.topPassed;
- }
- },
-
- bottomPassed: function(newCallback) {
- var
- calculations = module.get.elementCalculations(),
- callback = newCallback || settings.onBottomPassed,
- callbackName = 'bottomPassed'
- ;
- if(newCallback) {
- module.debug('Adding callback for bottom passed', newCallback);
- settings.onBottomPassed = newCallback;
- }
- if(calculations.bottomPassed) {
- module.execute(callback, callbackName);
- }
- else if(!settings.once) {
- module.remove.occurred(callbackName);
- }
- if(newCallback === undefined) {
- return calculations.bottomPassed;
- }
- },
-
- passingReverse: function(newCallback) {
- var
- calculations = module.get.elementCalculations(),
- callback = newCallback || settings.onPassingReverse,
- callbackName = 'passingReverse'
- ;
- if(newCallback) {
- module.debug('Adding callback for passing reverse', newCallback);
- settings.onPassingReverse = newCallback;
- }
- if(!calculations.passing) {
- if(module.get.occurred('passing')) {
- module.execute(callback, callbackName);
- }
- }
- else if(!settings.once) {
- module.remove.occurred(callbackName);
- }
- if(newCallback !== undefined) {
- return !calculations.passing;
- }
- },
-
-
- topVisibleReverse: function(newCallback) {
- var
- calculations = module.get.elementCalculations(),
- callback = newCallback || settings.onTopVisibleReverse,
- callbackName = 'topVisibleReverse'
- ;
- if(newCallback) {
- module.debug('Adding callback for top visible reverse', newCallback);
- settings.onTopVisibleReverse = newCallback;
- }
- if(!calculations.topVisible) {
- if(module.get.occurred('topVisible')) {
- module.execute(callback, callbackName);
- }
- }
- else if(!settings.once) {
- module.remove.occurred(callbackName);
- }
- if(newCallback === undefined) {
- return !calculations.topVisible;
- }
- },
-
- bottomVisibleReverse: function(newCallback) {
- var
- calculations = module.get.elementCalculations(),
- callback = newCallback || settings.onBottomVisibleReverse,
- callbackName = 'bottomVisibleReverse'
- ;
- if(newCallback) {
- module.debug('Adding callback for bottom visible reverse', newCallback);
- settings.onBottomVisibleReverse = newCallback;
- }
- if(!calculations.bottomVisible) {
- if(module.get.occurred('bottomVisible')) {
- module.execute(callback, callbackName);
- }
- }
- else if(!settings.once) {
- module.remove.occurred(callbackName);
- }
- if(newCallback === undefined) {
- return !calculations.bottomVisible;
- }
- },
-
- topPassedReverse: function(newCallback) {
- var
- calculations = module.get.elementCalculations(),
- callback = newCallback || settings.onTopPassedReverse,
- callbackName = 'topPassedReverse'
- ;
- if(newCallback) {
- module.debug('Adding callback for top passed reverse', newCallback);
- settings.onTopPassedReverse = newCallback;
- }
- if(!calculations.topPassed) {
- if(module.get.occurred('topPassed')) {
- module.execute(callback, callbackName);
- }
- }
- else if(!settings.once) {
- module.remove.occurred(callbackName);
- }
- if(newCallback === undefined) {
- return !calculations.onTopPassed;
- }
- },
-
- bottomPassedReverse: function(newCallback) {
- var
- calculations = module.get.elementCalculations(),
- callback = newCallback || settings.onBottomPassedReverse,
- callbackName = 'bottomPassedReverse'
- ;
- if(newCallback) {
- module.debug('Adding callback for bottom passed reverse', newCallback);
- settings.onBottomPassedReverse = newCallback;
- }
- if(!calculations.bottomPassed) {
- if(module.get.occurred('bottomPassed')) {
- module.execute(callback, callbackName);
- }
- }
- else if(!settings.once) {
- module.remove.occurred(callbackName);
- }
- if(newCallback === undefined) {
- return !calculations.bottomPassed;
- }
- },
-
- execute: function(callback, callbackName) {
- var
- calculations = module.get.elementCalculations(),
- screen = module.get.screenCalculations()
- ;
- callback = callback || false;
- if(callback) {
- if(settings.continuous) {
- module.debug('Callback being called continuously', callbackName, calculations);
- callback.call(element, calculations, screen);
- }
- else if(!module.get.occurred(callbackName)) {
- module.debug('Conditions met', callbackName, calculations);
- callback.call(element, calculations, screen);
- }
- }
- module.save.occurred(callbackName);
- },
-
- remove: {
- fixed: function() {
- module.debug('Removing fixed position');
- $module
- .removeClass(className.fixed)
- .css({
- position : '',
- top : '',
- left : '',
- zIndex : ''
- })
- ;
- settings.onUnfixed.call(element);
- },
- placeholder: function() {
- module.debug('Removing placeholder content');
- if($placeholder) {
- $placeholder.remove();
- }
- },
- occurred: function(callback) {
- if(callback) {
- var
- occurred = module.cache.occurred
- ;
- if(occurred[callback] !== undefined && occurred[callback] === true) {
- module.debug('Callback can now be called again', callback);
- module.cache.occurred[callback] = false;
- }
- }
- else {
- module.cache.occurred = {};
- }
- }
- },
-
- save: {
- calculations: function() {
- module.verbose('Saving all calculations necessary to determine positioning');
- module.save.direction();
- module.save.screenCalculations();
- module.save.elementCalculations();
- },
- occurred: function(callback) {
- if(callback) {
- if(module.cache.occurred[callback] === undefined || (module.cache.occurred[callback] !== true)) {
- module.verbose('Saving callback occurred', callback);
- module.cache.occurred[callback] = true;
- }
- }
- },
- scroll: function(scrollPosition) {
- scrollPosition = scrollPosition + settings.offset || $context.scrollTop() + settings.offset;
- module.cache.scroll = scrollPosition;
- },
- direction: function() {
- var
- scroll = module.get.scroll(),
- lastScroll = module.get.lastScroll(),
- direction
- ;
- if(scroll > lastScroll && lastScroll) {
- direction = 'down';
- }
- else if(scroll < lastScroll && lastScroll) {
- direction = 'up';
- }
- else {
- direction = 'static';
- }
- module.cache.direction = direction;
- return module.cache.direction;
- },
- elementPosition: function() {
- var
- element = module.cache.element,
- screen = module.get.screenSize()
- ;
- module.verbose('Saving element position');
- // (quicker than $.extend)
- element.fits = (element.height < screen.height);
- element.offset = $module.offset();
- element.width = $module.outerWidth();
- element.height = $module.outerHeight();
- // compensate for scroll in context
- if(module.is.verticallyScrollableContext()) {
- element.offset.top += $context.scrollTop() - $context.offset().top;
- }
- if(module.is.horizontallyScrollableContext()) {
- element.offset.left += $context.scrollLeft - $context.offset().left;
- }
- // store
- module.cache.element = element;
- return element;
- },
- elementCalculations: function() {
- var
- screen = module.get.screenCalculations(),
- element = module.get.elementPosition()
- ;
- // offset
- if(settings.includeMargin) {
- element.margin = {};
- element.margin.top = parseInt($module.css('margin-top'), 10);
- element.margin.bottom = parseInt($module.css('margin-bottom'), 10);
- element.top = element.offset.top - element.margin.top;
- element.bottom = element.offset.top + element.height + element.margin.bottom;
- }
- else {
- element.top = element.offset.top;
- element.bottom = element.offset.top + element.height;
- }
-
- // visibility
- element.topPassed = (screen.top >= element.top);
- element.bottomPassed = (screen.top >= element.bottom);
- element.topVisible = (screen.bottom >= element.top) && !element.topPassed;
- element.bottomVisible = (screen.bottom >= element.bottom) && !element.bottomPassed;
- element.pixelsPassed = 0;
- element.percentagePassed = 0;
-
- // meta calculations
- element.onScreen = ((element.topVisible || element.passing) && !element.bottomPassed);
- element.passing = (element.topPassed && !element.bottomPassed);
- element.offScreen = (!element.onScreen);
-
- // passing calculations
- if(element.passing) {
- element.pixelsPassed = (screen.top - element.top);
- element.percentagePassed = (screen.top - element.top) / element.height;
- }
- module.cache.element = element;
- module.verbose('Updated element calculations', element);
- return element;
- },
- screenCalculations: function() {
- var
- scroll = module.get.scroll()
- ;
- module.save.direction();
- module.cache.screen.top = scroll;
- module.cache.screen.bottom = scroll + module.cache.screen.height;
- return module.cache.screen;
- },
- screenSize: function() {
- module.verbose('Saving window position');
- module.cache.screen = {
- height: $context.height()
- };
- },
- position: function() {
- module.save.screenSize();
- module.save.elementPosition();
- }
- },
-
- get: {
- pixelsPassed: function(amount) {
- var
- element = module.get.elementCalculations()
- ;
- if(amount.search('%') > -1) {
- return ( element.height * (parseInt(amount, 10) / 100) );
- }
- return parseInt(amount, 10);
- },
- occurred: function(callback) {
- return (module.cache.occurred !== undefined)
- ? module.cache.occurred[callback] || false
- : false
- ;
- },
- direction: function() {
- if(module.cache.direction === undefined) {
- module.save.direction();
- }
- return module.cache.direction;
- },
- elementPosition: function() {
- if(module.cache.element === undefined) {
- module.save.elementPosition();
- }
- return module.cache.element;
- },
- elementCalculations: function() {
- if(module.cache.element === undefined) {
- module.save.elementCalculations();
- }
- return module.cache.element;
- },
- screenCalculations: function() {
- if(module.cache.screen === undefined) {
- module.save.screenCalculations();
- }
- return module.cache.screen;
- },
- screenSize: function() {
- if(module.cache.screen === undefined) {
- module.save.screenSize();
- }
- return module.cache.screen;
- },
- scroll: function() {
- if(module.cache.scroll === undefined) {
- module.save.scroll();
- }
- return module.cache.scroll;
- },
- lastScroll: function() {
- if(module.cache.screen === undefined) {
- module.debug('First scroll event, no last scroll could be found');
- return false;
- }
- return module.cache.screen.top;
- }
- },
-
- setting: function(name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, settings, name);
- }
- else if(value !== undefined) {
- settings[name] = value;
- }
- else {
- return settings[name];
- }
- },
- internal: function(name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, module, name);
- }
- else if(value !== undefined) {
- module[name] = value;
- }
- else {
- return module[name];
- }
- },
- debug: function() {
- if(!settings.silent && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.debug.apply(console, arguments);
- }
- }
- },
- verbose: function() {
- if(!settings.silent && settings.verbose && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.verbose.apply(console, arguments);
- }
- }
- },
- error: function() {
- if(!settings.silent) {
- module.error = Function.prototype.bind.call(console.error, console, settings.name + ':');
- module.error.apply(console, arguments);
- }
- },
- performance: {
- log: function(message) {
- var
- currentTime,
- executionTime,
- previousTime
- ;
- if(settings.performance) {
- currentTime = new Date().getTime();
- previousTime = time || currentTime;
- executionTime = currentTime - previousTime;
- time = currentTime;
- performance.push({
- 'Name' : message[0],
- 'Arguments' : [].slice.call(message, 1) || '',
- 'Element' : element,
- 'Execution Time' : executionTime
- });
- }
- clearTimeout(module.performance.timer);
- module.performance.timer = setTimeout(module.performance.display, 500);
- },
- display: function() {
- var
- title = settings.name + ':',
- totalTime = 0
- ;
- time = false;
- clearTimeout(module.performance.timer);
- $.each(performance, function(index, data) {
- totalTime += data['Execution Time'];
- });
- title += ' ' + totalTime + 'ms';
- if(moduleSelector) {
- title += ' \'' + moduleSelector + '\'';
- }
- if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) {
- console.groupCollapsed(title);
- if(console.table) {
- console.table(performance);
- }
- else {
- $.each(performance, function(index, data) {
- console.log(data['Name'] + ': ' + data['Execution Time']+'ms');
- });
- }
- console.groupEnd();
- }
- performance = [];
- }
- },
- invoke: function(query, passedArguments, context) {
- var
- object = instance,
- maxDepth,
- found,
- response
- ;
- passedArguments = passedArguments || queryArguments;
- context = element || context;
- if(typeof query == 'string' && object !== undefined) {
- query = query.split(/[\. ]/);
- maxDepth = query.length - 1;
- $.each(query, function(depth, value) {
- var camelCaseValue = (depth != maxDepth)
- ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
- : query
- ;
- if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
- object = object[camelCaseValue];
- }
- else if( object[camelCaseValue] !== undefined ) {
- found = object[camelCaseValue];
- return false;
- }
- else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
- object = object[value];
- }
- else if( object[value] !== undefined ) {
- found = object[value];
- return false;
- }
- else {
- module.error(error.method, query);
- return false;
- }
- });
- }
- if ( $.isFunction( found ) ) {
- response = found.apply(context, passedArguments);
- }
- else if(found !== undefined) {
- response = found;
- }
- if(Array.isArray(returnedValue)) {
- returnedValue.push(response);
- }
- else if(returnedValue !== undefined) {
- returnedValue = [returnedValue, response];
- }
- else if(response !== undefined) {
- returnedValue = response;
- }
- return found;
- }
- };
-
- if(methodInvoked) {
- if(instance === undefined) {
- module.initialize();
- }
- instance.save.scroll();
- instance.save.calculations();
- module.invoke(query);
- }
- else {
- if(instance !== undefined) {
- instance.invoke('destroy');
- }
- module.initialize();
- }
- })
- ;
-
- return (returnedValue !== undefined)
- ? returnedValue
- : this
- ;
-};
-
-$.fn.visibility.settings = {
-
- name : 'Visibility',
- namespace : 'visibility',
-
- debug : false,
- verbose : false,
- performance : true,
-
- // whether to use mutation observers to follow changes
- observeChanges : true,
-
- // check position immediately on init
- initialCheck : true,
-
- // whether to refresh calculations after all page images load
- refreshOnLoad : true,
-
- // whether to refresh calculations after page resize event
- refreshOnResize : true,
-
- // should call callbacks on refresh event (resize, etc)
- checkOnRefresh : true,
-
- // callback should only occur one time
- once : true,
-
- // callback should fire continuously whe evaluates to true
- continuous : false,
-
- // offset to use with scroll top
- offset : 0,
-
- // whether to include margin in elements position
- includeMargin : false,
-
- // scroll context for visibility checks
- context : window,
-
- // visibility check delay in ms (defaults to animationFrame)
- throttle : false,
-
- // special visibility type (image, fixed)
- type : false,
-
- // z-index to use with visibility 'fixed'
- zIndex : '10',
-
- // image only animation settings
- transition : 'fade in',
- duration : 1000,
-
- // array of callbacks for percentage
- onPassed : {},
-
- // standard callbacks
- onOnScreen : false,
- onOffScreen : false,
- onPassing : false,
- onTopVisible : false,
- onBottomVisible : false,
- onTopPassed : false,
- onBottomPassed : false,
-
- // reverse callbacks
- onPassingReverse : false,
- onTopVisibleReverse : false,
- onBottomVisibleReverse : false,
- onTopPassedReverse : false,
- onBottomPassedReverse : false,
-
- // special callbacks for image
- onLoad : function() {},
- onAllLoaded : function() {},
-
- // special callbacks for fixed position
- onFixed : function() {},
- onUnfixed : function() {},
-
- // utility callbacks
- onUpdate : false, // disabled by default for performance
- onRefresh : function(){},
-
- metadata : {
- src: 'src'
- },
-
- className: {
- fixed : 'fixed',
- placeholder : 'constraint',
- visible : 'visible'
- },
-
- error : {
- method : 'The method you called is not defined.',
- visible : 'Element is hidden, you must call refresh after element becomes visible'
- }
-
-};
-
-})( jQuery, window, document );
diff --git a/src-angular/assets/semantic/dist/components/visibility.min.js b/src-angular/assets/semantic/dist/components/visibility.min.js
deleted file mode 100644
index f2e6c5f..0000000
--- a/src-angular/assets/semantic/dist/components/visibility.min.js
+++ /dev/null
@@ -1,11 +0,0 @@
- /*
- * # Fomantic UI - 2.8.3
- * https://github.com/fomantic/Fomantic-UI
- * http://fomantic-ui.com/
- *
- * Copyright 2014 Contributors
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-!function(O,z,A,w){"use strict";O.isFunction=O.isFunction||function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},z=void 0!==z&&z.Math==Math?z:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")(),O.fn.visibility=function(h){var P,e=O(this),x=e.selector||"",y=(new Date).getTime(),C=[],S=h,R="string"==typeof S,V=[].slice.call(arguments,1),k=e.length,T=0;return e.each(function(){var e,o,n,r,i=O.isPlainObject(h)?O.extend(!0,{},O.fn.visibility.settings,h):O.extend({},O.fn.visibility.settings),t=i.className,s=i.namespace,a=i.error,c=i.metadata,l="."+s,d="module-"+s,u=O(z),f=O(this),b=O(i.context),g=f.data(d),m=z.requestAnimationFrame||z.mozRequestAnimationFrame||z.webkitRequestAnimationFrame||z.msRequestAnimationFrame||function(e){setTimeout(e,0)},p=this,v=!1;r={initialize:function(){r.debug("Initializing",i),r.setup.cache(),r.should.trackChanges()&&("image"==i.type&&r.setup.image(),"fixed"==i.type&&r.setup.fixed(),i.observeChanges&&r.observeChanges(),r.bind.events()),r.save.position(),r.is.visible()||r.error(a.visible,f),i.initialCheck&&r.checkVisibility(),r.instantiate()},instantiate:function(){r.debug("Storing instance",r),f.data(d,r),g=r},destroy:function(){r.verbose("Destroying previous module"),n&&n.disconnect(),o&&o.disconnect(),u.off("load"+l,r.event.load).off("resize"+l,r.event.resize),b.off("scroll"+l,r.event.scroll).off("scrollchange"+l,r.event.scrollchange),"fixed"==i.type&&(r.resetFixed(),r.remove.placeholder()),f.off(l).removeData(d)},observeChanges:function(){"MutationObserver"in z&&(o=new MutationObserver(r.event.contextChanged),n=new MutationObserver(r.event.changed),o.observe(A,{childList:!0,subtree:!0}),n.observe(p,{childList:!0,subtree:!0}),r.debug("Setting up mutation observer",n))},bind:{events:function(){r.verbose("Binding visibility events to scroll and resize"),i.refreshOnLoad&&u.on("load"+l,r.event.load),u.on("resize"+l,r.event.resize),b.off("scroll"+l).on("scroll"+l,r.event.scroll).on("scrollchange"+l,r.event.scrollchange)}},event:{changed:function(e){r.verbose("DOM tree modified, updating visibility calculations"),r.timer=setTimeout(function(){r.verbose("DOM tree modified, updating sticky menu"),r.refresh()},100)},contextChanged:function(e){[].forEach.call(e,function(e){e.removedNodes&&[].forEach.call(e.removedNodes,function(e){(e==p||0=e.length&&O.isFunction(o)&&o()};n--;)(s=A.createElement("img")).onload=c,s.onerror=c,s.src=e[n],i.push(s)},enableCallbacks:function(){r.debug("Allowing callbacks to occur"),v=!1},disableCallbacks:function(){r.debug("Disabling all callbacks temporarily"),v=!0},should:{trackChanges:function(){return R?(r.debug("One time query, no need to bind events"),!1):(r.debug("Callbacks being attached"),!0)}},setup:{cache:function(){r.cache={occurred:{},screen:{},element:{}}},image:function(){var e=f.data(c.src);e&&(r.verbose("Lazy loading image",e),i.once=!0,i.observeChanges=!1,i.onOnScreen=function(){r.debug("Image on screen",p),r.precache(e,function(){r.set.image(e,function(){++T==k&&i.onAllLoaded.call(this),i.onLoad.call(this)})})})},fixed:function(){r.debug("Setting up fixed"),i.once=!1,i.observeChanges=!1,i.initialCheck=!0,i.refreshOnLoad=!0,h.transition||(i.transition=!1),r.create.placeholder(),r.debug("Added placeholder",e),i.onTopPassed=function(){r.debug("Element passed, adding fixed position",f),r.show.placeholder(),r.set.fixed(),i.transition&&O.fn.transition!==w&&f.transition(i.transition,i.duration)},i.onTopPassedReverse=function(){r.debug("Element returned to position, removing fixed",f),r.hide.placeholder(),r.remove.fixed()}}},create:{placeholder:function(){r.verbose("Creating fixed position placeholder"),e=f.clone(!1).css("display","none").addClass(t.placeholder).insertAfter(f)}},show:{placeholder:function(){r.verbose("Showing placeholder"),e.css("display","block").css("visibility","hidden")}},hide:{placeholder:function(){r.verbose("Hiding placeholder"),e.css("display","none").css("visibility","")}},set:{fixed:function(){r.verbose("Setting element to fixed position"),f.addClass(t.fixed).css({position:"fixed",top:i.offset+"px",left:"auto",zIndex:i.zIndex}),i.onFixed.call(p)},image:function(e,o){if(f.attr("src",e),i.transition)if(O.fn.transition!==w){if(f.hasClass(t.visible))return void r.debug("Transition already occurred on this image, skipping animation");f.transition(i.transition,i.duration,o)}else f.fadeIn(i.duration,o);else f.show()}},is:{onScreen:function(){return r.get.elementCalculations().onScreen},offScreen:function(){return r.get.elementCalculations().offScreen},visible:function(){return!(!r.cache||!r.cache.element)&&!(0===r.cache.element.width&&0===r.cache.element.offset.top)},verticallyScrollableContext:function(){var e=b.get(0)!==z&&b.css("overflow-y");return"auto"==e||"scroll"==e},horizontallyScrollableContext:function(){var e=b.get(0)!==z&&b.css("overflow-x");return"auto"==e||"scroll"==e}},refresh:function(){r.debug("Refreshing constants (width/height)"),"fixed"==i.type&&r.resetFixed(),r.reset(),r.save.position(),i.checkOnRefresh&&r.checkVisibility(),i.onRefresh.call(p)},resetFixed:function(){r.remove.fixed(),r.remove.occurred()},reset:function(){r.verbose("Resetting all cached values"),O.isPlainObject(r.cache)&&(r.cache.screen={},r.cache.element={})},checkVisibility:function(e){r.verbose("Checking visibility of element",r.cache.element),!v&&r.is.visible()&&(r.save.scroll(e),r.save.calculations(),r.passed(),r.passingReverse(),r.topVisibleReverse(),r.bottomVisibleReverse(),r.topPassedReverse(),r.bottomPassedReverse(),r.onScreen(),r.offScreen(),r.passing(),r.topVisible(),r.bottomVisible(),r.topPassed(),r.bottomPassed(),i.onUpdate&&i.onUpdate.call(p,r.get.elementCalculations()))},passed:function(e,o){var n=r.get.elementCalculations();if(e&&o)i.onPassed[e]=o;else{if(e!==w)return r.get.pixelsPassed(e)>n.pixelsPassed;n.passing&&O.each(i.onPassed,function(e,o){n.bottomVisible||n.pixelsPassed>r.get.pixelsPassed(e)?r.execute(o,e):i.once||r.remove.occurred(o)})}},onScreen:function(e){var o=r.get.elementCalculations(),n=e||i.onOnScreen,t="onScreen";if(e&&(r.debug("Adding callback for onScreen",e),i.onOnScreen=e),o.onScreen?r.execute(n,t):i.once||r.remove.occurred(t),e!==w)return o.onOnScreen},offScreen:function(e){var o=r.get.elementCalculations(),n=e||i.onOffScreen,t="offScreen";if(e&&(r.debug("Adding callback for offScreen",e),i.onOffScreen=e),o.offScreen?r.execute(n,t):i.once||r.remove.occurred(t),e!==w)return o.onOffScreen},passing:function(e){var o=r.get.elementCalculations(),n=e||i.onPassing,t="passing";if(e&&(r.debug("Adding callback for passing",e),i.onPassing=e),o.passing?r.execute(n,t):i.once||r.remove.occurred(t),e!==w)return o.passing},topVisible:function(e){var o=r.get.elementCalculations(),n=e||i.onTopVisible,t="topVisible";if(e&&(r.debug("Adding callback for top visible",e),i.onTopVisible=e),o.topVisible?r.execute(n,t):i.once||r.remove.occurred(t),e===w)return o.topVisible},bottomVisible:function(e){var o=r.get.elementCalculations(),n=e||i.onBottomVisible,t="bottomVisible";if(e&&(r.debug("Adding callback for bottom visible",e),i.onBottomVisible=e),o.bottomVisible?r.execute(n,t):i.once||r.remove.occurred(t),e===w)return o.bottomVisible},topPassed:function(e){var o=r.get.elementCalculations(),n=e||i.onTopPassed,t="topPassed";if(e&&(r.debug("Adding callback for top passed",e),i.onTopPassed=e),o.topPassed?r.execute(n,t):i.once||r.remove.occurred(t),e===w)return o.topPassed},bottomPassed:function(e){var o=r.get.elementCalculations(),n=e||i.onBottomPassed,t="bottomPassed";if(e&&(r.debug("Adding callback for bottom passed",e),i.onBottomPassed=e),o.bottomPassed?r.execute(n,t):i.once||r.remove.occurred(t),e===w)return o.bottomPassed},passingReverse:function(e){var o=r.get.elementCalculations(),n=e||i.onPassingReverse,t="passingReverse";if(e&&(r.debug("Adding callback for passing reverse",e),i.onPassingReverse=e),o.passing?i.once||r.remove.occurred(t):r.get.occurred("passing")&&r.execute(n,t),e!==w)return!o.passing},topVisibleReverse:function(e){var o=r.get.elementCalculations(),n=e||i.onTopVisibleReverse,t="topVisibleReverse";if(e&&(r.debug("Adding callback for top visible reverse",e),i.onTopVisibleReverse=e),o.topVisible?i.once||r.remove.occurred(t):r.get.occurred("topVisible")&&r.execute(n,t),e===w)return!o.topVisible},bottomVisibleReverse:function(e){var o=r.get.elementCalculations(),n=e||i.onBottomVisibleReverse,t="bottomVisibleReverse";if(e&&(r.debug("Adding callback for bottom visible reverse",e),i.onBottomVisibleReverse=e),o.bottomVisible?i.once||r.remove.occurred(t):r.get.occurred("bottomVisible")&&r.execute(n,t),e===w)return!o.bottomVisible},topPassedReverse:function(e){var o=r.get.elementCalculations(),n=e||i.onTopPassedReverse,t="topPassedReverse";if(e&&(r.debug("Adding callback for top passed reverse",e),i.onTopPassedReverse=e),o.topPassed?i.once||r.remove.occurred(t):r.get.occurred("topPassed")&&r.execute(n,t),e===w)return!o.onTopPassed},bottomPassedReverse:function(e){var o=r.get.elementCalculations(),n=e||i.onBottomPassedReverse,t="bottomPassedReverse";if(e&&(r.debug("Adding callback for bottom passed reverse",e),i.onBottomPassedReverse=e),o.bottomPassed?i.once||r.remove.occurred(t):r.get.occurred("bottomPassed")&&r.execute(n,t),e===w)return!o.bottomPassed},execute:function(e,o){var n=r.get.elementCalculations(),t=r.get.screenCalculations();(e=e||!1)&&(i.continuous?(r.debug("Callback being called continuously",o,n),e.call(p,n,t)):r.get.occurred(o)||(r.debug("Conditions met",o,n),e.call(p,n,t))),r.save.occurred(o)},remove:{fixed:function(){r.debug("Removing fixed position"),f.removeClass(t.fixed).css({position:"",top:"",left:"",zIndex:""}),i.onUnfixed.call(p)},placeholder:function(){r.debug("Removing placeholder content"),e&&e.remove()},occurred:function(e){if(e){var o=r.cache.occurred;o[e]!==w&&!0===o[e]&&(r.debug("Callback can now be called again",e),r.cache.occurred[e]=!1)}else r.cache.occurred={}}},save:{calculations:function(){r.verbose("Saving all calculations necessary to determine positioning"),r.save.direction(),r.save.screenCalculations(),r.save.elementCalculations()},occurred:function(e){e&&(r.cache.occurred[e]!==w&&!0===r.cache.occurred[e]||(r.verbose("Saving callback occurred",e),r.cache.occurred[e]=!0))},scroll:function(e){e=e+i.offset||b.scrollTop()+i.offset,r.cache.scroll=e},direction:function(){var e,o=r.get.scroll(),n=r.get.lastScroll();return e=n=o.top,o.bottomPassed=e.top>=o.bottom,o.topVisible=e.bottom>=o.top&&!o.topPassed,o.bottomVisible=e.bottom>=o.bottom&&!o.bottomPassed,o.pixelsPassed=0,o.percentagePassed=0,o.onScreen=(o.topVisible||o.passing)&&!o.bottomPassed,o.passing=o.topPassed&&!o.bottomPassed,o.offScreen=!o.onScreen,o.passing&&(o.pixelsPassed=e.top-o.top,o.percentagePassed=(e.top-o.top)/o.height),r.cache.element=o,r.verbose("Updated element calculations",o),o},screenCalculations:function(){var e=r.get.scroll();return r.save.direction(),r.cache.screen.top=e,r.cache.screen.bottom=e+r.cache.screen.height,r.cache.screen},screenSize:function(){r.verbose("Saving window position"),r.cache.screen={height:b.height()}},position:function(){r.save.screenSize(),r.save.elementPosition()}},get:{pixelsPassed:function(e){var o=r.get.elementCalculations();return-1 .button {
- margin: 0;
-}
-
-.ui.labeled.button > .label {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- margin: 0 0 0 -1px !important;
- font-size: 1em;
- padding: '';
- border-color: rgba(34, 36, 38, 0.15);
-}
-
-/* Tag */
-
-.ui.labeled.button > .tag.label:before {
- width: 1.85em;
- height: 1.85em;
-}
-
-/* Right */
-
-.ui.labeled.button:not([class*="left labeled"]) > .button {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
-}
-
-.ui.labeled.button:not([class*="left labeled"]) > .label {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
-}
-
-/* Left Side */
-
-.ui[class*="left labeled"].button > .button {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
-}
-
-.ui[class*="left labeled"].button > .label {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
-}
-
-/*-------------------
- Social
- --------------------*/
-
-/* Facebook */
-
-.ui.facebook.button {
- background-color: #3B5998;
- color: #FFFFFF;
- text-shadow: none;
- background-image: none;
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.facebook.button:hover {
- background-color: #304d8a;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.facebook.button:active {
- background-color: #2d4373;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-/* Twitter */
-
-.ui.twitter.button {
- background-color: #1DA1F2;
- color: #FFFFFF;
- text-shadow: none;
- background-image: none;
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.twitter.button:hover {
- background-color: #0298f3;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.twitter.button:active {
- background-color: #0c85d0;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-/* Google Plus */
-
-.ui.google.plus.button {
- background-color: #DD4B39;
- color: #FFFFFF;
- text-shadow: none;
- background-image: none;
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.google.plus.button:hover {
- background-color: #e0321c;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.google.plus.button:active {
- background-color: #c23321;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-/* Linked In */
-
-.ui.linkedin.button {
- background-color: #0077B5;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.linkedin.button:hover {
- background-color: #00669c;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.linkedin.button:active {
- background-color: #005582;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-/* YouTube */
-
-.ui.youtube.button {
- background-color: #FF0000;
- color: #FFFFFF;
- text-shadow: none;
- background-image: none;
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.youtube.button:hover {
- background-color: #e60000;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.youtube.button:active {
- background-color: #cc0000;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-/* Instagram */
-
-.ui.instagram.button {
- background-color: #49769C;
- color: #FFFFFF;
- text-shadow: none;
- background-image: none;
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.instagram.button:hover {
- background-color: #3d698e;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.instagram.button:active {
- background-color: #395c79;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-/* Pinterest */
-
-.ui.pinterest.button {
- background-color: #BD081C;
- color: #FFFFFF;
- text-shadow: none;
- background-image: none;
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.pinterest.button:hover {
- background-color: #ac0013;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.pinterest.button:active {
- background-color: #8c0615;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-/* VK */
-
-.ui.vk.button {
- background-color: #45668E;
- color: #FFFFFF;
- background-image: none;
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.vk.button:hover {
- background-color: #395980;
- color: #FFFFFF;
-}
-
-.ui.vk.button:active {
- background-color: #344d6c;
- color: #FFFFFF;
-}
-
-/* WhatsApp */
-
-.ui.whatsapp.button {
- background-color: #25D366;
- color: #FFFFFF;
- background-image: none;
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.whatsapp.button:hover {
- background-color: #19c55a;
- color: #FFFFFF;
-}
-
-.ui.whatsapp.button:active {
- background-color: #1da851;
- color: #FFFFFF;
-}
-
-/* Telegram */
-
-.ui.telegram.button {
- background-color: #0088CC;
- color: #FFFFFF;
- background-image: none;
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.telegram.button:hover {
- background-color: #0077b3;
- color: #FFFFFF;
-}
-
-.ui.telegram.button:active {
- background-color: #006699;
- color: #FFFFFF;
-}
-
-/*--------------
- Icon
----------------*/
-
-.ui.button > .icon:not(.button) {
- height: auto;
- opacity: 0.8;
- margin: 0 0.42857143em 0 -0.21428571em;
- -webkit-transition: opacity 0.1s ease;
- transition: opacity 0.1s ease;
- vertical-align: '';
- color: '';
-}
-
-.ui.button:not(.icon) > .icon:not(.button):not(.dropdown),
-.ui.button:not(.icon) > .icons:not(.button):not(.dropdown) {
- margin: 0 0.42857143em 0 -0.21428571em;
-}
-
-.ui.button:not(.icon) > .right.icon:not(.button):not(.dropdown) {
- margin: 0 -0.21428571em 0 0.42857143em;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*-------------------
- Floated
- --------------------*/
-
-.ui[class*="left floated"].buttons,
-.ui[class*="left floated"].button {
- float: left;
- margin-left: 0;
- margin-right: 0.25em;
-}
-
-.ui[class*="right floated"].buttons,
-.ui[class*="right floated"].button {
- float: right;
- margin-right: 0;
- margin-left: 0.25em;
-}
-
-/*-------------------
- Compact
- --------------------*/
-
-.ui.compact.buttons .button,
-.ui.compact.button {
- padding: 0.58928571em 1.125em 0.58928571em;
-}
-
-.ui.compact.icon.buttons .button,
-.ui.compact.icon.button {
- padding: 0.58928571em 0.58928571em 0.58928571em;
-}
-
-.ui.compact.labeled.icon.buttons .button,
-.ui.compact.labeled.icon.button {
- padding: 0.58928571em 3.69642857em 0.58928571em;
-}
-
-.ui.compact.labeled.icon.buttons .button > .icon,
-.ui.compact.labeled.icon.button > .icon {
- padding: 0.58928571em 0 0.58928571em 0;
-}
-
-/*-------------------
- Sizes
---------------------*/
-
-.ui.buttons .button,
-.ui.buttons .or,
-.ui.button {
- font-size: 1rem;
-}
-
-.ui.mini.buttons .dropdown,
-.ui.mini.buttons .dropdown .menu > .item,
-.ui.mini.buttons .button,
-.ui.mini.buttons .or,
-.ui.ui.ui.ui.mini.button {
- font-size: 0.78571429rem;
-}
-
-.ui.tiny.buttons .dropdown,
-.ui.tiny.buttons .dropdown .menu > .item,
-.ui.tiny.buttons .button,
-.ui.tiny.buttons .or,
-.ui.ui.ui.ui.tiny.button {
- font-size: 0.85714286rem;
-}
-
-.ui.small.buttons .dropdown,
-.ui.small.buttons .dropdown .menu > .item,
-.ui.small.buttons .button,
-.ui.small.buttons .or,
-.ui.ui.ui.ui.small.button {
- font-size: 0.92857143rem;
-}
-
-.ui.large.buttons .dropdown,
-.ui.large.buttons .dropdown .menu > .item,
-.ui.large.buttons .button,
-.ui.large.buttons .or,
-.ui.ui.ui.ui.large.button {
- font-size: 1.14285714rem;
-}
-
-.ui.big.buttons .dropdown,
-.ui.big.buttons .dropdown .menu > .item,
-.ui.big.buttons .button,
-.ui.big.buttons .or,
-.ui.ui.ui.ui.big.button {
- font-size: 1.28571429rem;
-}
-
-.ui.huge.buttons .dropdown,
-.ui.huge.buttons .dropdown .menu > .item,
-.ui.huge.buttons .button,
-.ui.huge.buttons .or,
-.ui.ui.ui.ui.huge.button {
- font-size: 1.42857143rem;
-}
-
-.ui.massive.buttons .dropdown,
-.ui.massive.buttons .dropdown .menu > .item,
-.ui.massive.buttons .button,
-.ui.massive.buttons .or,
-.ui.ui.ui.ui.massive.button {
- font-size: 1.71428571rem;
-}
-
-/*--------------
- Icon Only
----------------*/
-
-.ui.icon.buttons .button,
-.ui.icon.button {
- padding: 0.78571429em 0.78571429em 0.78571429em;
-}
-
-.ui.icon.buttons .button > .icon,
-.ui.icon.button > .icon {
- opacity: 0.9;
- margin: 0 !important;
- vertical-align: top;
-}
-
-/*-------------------
- Basic
- --------------------*/
-
-.ui.basic.buttons .button,
-.ui.basic.button {
- background: transparent none;
- color: rgba(0, 0, 0, 0.6);
- font-weight: normal;
- border-radius: 0.28571429rem;
- text-transform: none;
- text-shadow: none !important;
- -webkit-box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.basic.buttons {
- -webkit-box-shadow: none;
- box-shadow: none;
- border: 1px solid rgba(34, 36, 38, 0.15);
- border-radius: 0.28571429rem;
-}
-
-.ui.basic.buttons .button {
- border-radius: 0;
-}
-
-.ui.basic.buttons .button:hover,
-.ui.basic.button:hover {
- background: #FFFFFF;
- color: rgba(0, 0, 0, 0.8);
- -webkit-box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.35) inset, 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.35) inset, 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.basic.buttons .button:focus,
-.ui.basic.button:focus {
- background: #FFFFFF;
- color: rgba(0, 0, 0, 0.8);
- -webkit-box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.35) inset, 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.35) inset, 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.basic.buttons .button:active,
-.ui.basic.button:active {
- background: #F8F8F8;
- color: rgba(0, 0, 0, 0.9);
- -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 1px 4px 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 1px 4px 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.basic.buttons .active.button,
-.ui.basic.active.button {
- background: rgba(0, 0, 0, 0.05);
- -webkit-box-shadow: '';
- box-shadow: '';
- color: rgba(0, 0, 0, 0.95);
-}
-
-.ui.basic.buttons .active.button:hover,
-.ui.basic.active.button:hover {
- background-color: rgba(0, 0, 0, 0.05);
-}
-
-/* Vertical */
-
-.ui.basic.buttons .button:hover {
- -webkit-box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.35) inset, 0 0 0 0 rgba(34, 36, 38, 0.15) inset inset;
- box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.35) inset, 0 0 0 0 rgba(34, 36, 38, 0.15) inset inset;
-}
-
-.ui.basic.buttons .button:active {
- -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 1px 4px 0 rgba(34, 36, 38, 0.15) inset inset;
- box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 1px 4px 0 rgba(34, 36, 38, 0.15) inset inset;
-}
-
-.ui.basic.buttons .active.button {
- -webkit-box-shadow: '';
- box-shadow: '';
-}
-
-/* Standard Basic Inverted */
-
-.ui.basic.inverted.buttons .button,
-.ui.basic.inverted.button {
- background-color: transparent;
- color: #F9FAFB;
- -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
-}
-
-.ui.basic.inverted.buttons .button:hover,
-.ui.basic.inverted.button:hover {
- color: #FFFFFF;
- -webkit-box-shadow: 0 0 0 2px #ffffff inset;
- box-shadow: 0 0 0 2px #ffffff inset;
-}
-
-.ui.basic.inverted.buttons .button:focus,
-.ui.basic.inverted.button:focus {
- color: #FFFFFF;
- -webkit-box-shadow: 0 0 0 2px #ffffff inset;
- box-shadow: 0 0 0 2px #ffffff inset;
-}
-
-.ui.basic.inverted.buttons .button:active,
-.ui.basic.inverted.button:active {
- background-color: rgba(255, 255, 255, 0.08);
- color: #FFFFFF;
- -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9) inset;
- box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9) inset;
-}
-
-.ui.basic.inverted.buttons .active.button,
-.ui.basic.inverted.active.button {
- background-color: rgba(255, 255, 255, 0.08);
- color: #FFFFFF;
- text-shadow: none;
- -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.7) inset;
- box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.7) inset;
-}
-
-.ui.basic.inverted.buttons .active.button:hover,
-.ui.basic.inverted.active.button:hover {
- background-color: rgba(255, 255, 255, 0.15);
- -webkit-box-shadow: 0 0 0 2px #ffffff inset;
- box-shadow: 0 0 0 2px #ffffff inset;
-}
-
-/* Basic Group */
-
-.ui.basic.buttons .button {
- border-left: 1px solid rgba(34, 36, 38, 0.15);
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.basic.vertical.buttons .button {
- border-left: none;
- border-left-width: 0;
- border-top: 1px solid rgba(34, 36, 38, 0.15);
-}
-
-.ui.basic.vertical.buttons .button:first-child {
- border-top-width: 0;
-}
-
-/*-------------------
- Tertiary
- --------------------*/
-
-/* Overline Mixin */
-
-.ui.tertiary.button {
- -webkit-transition: color 0.1s ease !important;
- transition: color 0.1s ease !important;
- border-radius: 0;
- margin: 0.28571429em 0.25em 0.28571429em 0 !important;
- padding: 0.5em !important;
- -webkit-box-shadow: none;
- box-shadow: none;
- color: rgba(0, 0, 0, 0.6);
- background: none;
-}
-
-.ui.tertiary.button:hover {
- -webkit-box-shadow: inset 0 -0.2em 0 #666666;
- box-shadow: inset 0 -0.2em 0 #666666;
- color: #333333;
- background: none;
-}
-
-.ui.tertiary.button:focus {
- -webkit-box-shadow: inset 0 -0.2em 0 #666666;
- box-shadow: inset 0 -0.2em 0 #666666;
- color: #333333;
- background: none;
-}
-
-.ui.tertiary.button:active {
- -webkit-box-shadow: inset 0 -0.2em 0 #999999;
- box-shadow: inset 0 -0.2em 0 #999999;
- border-radius: 0.28571429rem 0.28571429rem 0 0;
- color: #666666;
- background: none;
-}
-
-/*--------------
- Labeled Icon
- ---------------*/
-
-.ui.labeled.icon.buttons .button,
-.ui.labeled.icon.button {
- position: relative;
- padding-left: 4.07142857em !important;
- padding-right: 1.5em !important;
-}
-
-/* Left Labeled */
-
-.ui.labeled.icon.buttons > .button > .icon,
-.ui.labeled.icon.button > .icon {
- position: absolute;
- top: 0;
- left: 0;
- height: 100%;
- line-height: 1;
- border-radius: 0;
- border-top-left-radius: inherit;
- border-bottom-left-radius: inherit;
- text-align: center;
- -webkit-animation: none;
- animation: none;
- padding: 0.78571429em 0 0.78571429em 0;
- margin: 0;
- width: 2.57142857em;
- background-color: rgba(0, 0, 0, 0.05);
- color: '';
- -webkit-box-shadow: -1px 0 0 0 transparent inset;
- box-shadow: -1px 0 0 0 transparent inset;
-}
-
-/* Right Labeled */
-
-.ui[class*="right labeled"].icon.button {
- padding-right: 4.07142857em !important;
- padding-left: 1.5em !important;
-}
-
-.ui[class*="right labeled"].icon.button > .icon {
- left: auto;
- right: 0;
- border-radius: 0;
- border-top-right-radius: inherit;
- border-bottom-right-radius: inherit;
- -webkit-box-shadow: 1px 0 0 0 transparent inset;
- box-shadow: 1px 0 0 0 transparent inset;
-}
-
-.ui.labeled.icon.buttons > .button > .icon:before,
-.ui.labeled.icon.button > .icon:before,
-.ui.labeled.icon.buttons > .button > .icon:after,
-.ui.labeled.icon.button > .icon:after {
- display: block;
- position: relative;
- width: 100%;
- top: 0;
- text-align: center;
-}
-
-.ui.labeled.icon.buttons .button > .icon {
- border-radius: 0;
-}
-
-.ui.labeled.icon.buttons .button:first-child > .icon {
- border-top-left-radius: 0.28571429rem;
- border-bottom-left-radius: 0.28571429rem;
-}
-
-.ui.labeled.icon.buttons .button:last-child > .icon {
- border-top-right-radius: 0.28571429rem;
- border-bottom-right-radius: 0.28571429rem;
-}
-
-.ui.vertical.labeled.icon.buttons .button:first-child > .icon {
- border-radius: 0;
- border-top-left-radius: 0.28571429rem;
-}
-
-.ui.vertical.labeled.icon.buttons .button:last-child > .icon {
- border-radius: 0;
- border-bottom-left-radius: 0.28571429rem;
-}
-
-/* Loading Icon in Labeled Button */
-
-.ui.labeled.icon.button > .loading.icon:before {
- -webkit-animation: loader 2s linear infinite;
- animation: loader 2s linear infinite;
-}
-
-/*--------------
- Toggle
- ---------------*/
-
-/* Toggle (Modifies active state to give affordances) */
-
-.ui.toggle.buttons .active.button,
-.ui.buttons .button.toggle.active,
-.ui.button.toggle.active {
- background-color: #21BA45;
- -webkit-box-shadow: none;
- box-shadow: none;
- text-shadow: none;
- color: #FFFFFF;
-}
-
-.ui.button.toggle.active:hover {
- background-color: #16ab39;
- text-shadow: none;
- color: #FFFFFF;
-}
-
-/*--------------
- Circular
- ---------------*/
-
-.ui.circular.button {
- border-radius: 10em;
-}
-
-.ui.circular.button > .icon {
- width: 1em;
- vertical-align: baseline;
-}
-
-/*-------------------
- Or Buttons
- --------------------*/
-
-.ui.buttons .or {
- position: relative;
- width: 0.3em;
- height: 2.57142857em;
- z-index: 3;
-}
-
-.ui.buttons .or:before {
- position: absolute;
- text-align: center;
- border-radius: 500rem;
- content: 'or';
- top: 50%;
- left: 50%;
- background-color: #FFFFFF;
- text-shadow: none;
- margin-top: -0.89285714em;
- margin-left: -0.89285714em;
- width: 1.78571429em;
- height: 1.78571429em;
- line-height: 1.78571429em;
- color: rgba(0, 0, 0, 0.4);
- font-style: normal;
- font-weight: bold;
- -webkit-box-shadow: 0 0 0 1px transparent inset;
- box-shadow: 0 0 0 1px transparent inset;
-}
-
-.ui.buttons .or[data-text]:before {
- content: attr(data-text);
-}
-
-/* Fluid Or */
-
-.ui.fluid.buttons .or {
- width: 0 !important;
-}
-
-.ui.fluid.buttons .or:after {
- display: none;
-}
-
-/*-------------------
- Attached
- --------------------*/
-
-/* Singular */
-
-.ui.attached.button {
- position: relative;
- display: block;
- margin: 0;
- border-radius: 0;
- -webkit-box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.15);
-}
-
-/* Top / Bottom */
-
-.ui.attached.top.button {
- border-radius: 0.28571429rem 0.28571429rem 0 0;
-}
-
-.ui.attached.bottom.button {
- border-radius: 0 0 0.28571429rem 0.28571429rem;
-}
-
-/* Left / Right */
-
-.ui.left.attached.button {
- display: inline-block;
- border-left: none;
- text-align: right;
- padding-right: 0.75em;
- border-radius: 0.28571429rem 0 0 0.28571429rem;
-}
-
-.ui.right.attached.button {
- display: inline-block;
- text-align: left;
- padding-left: 0.75em;
- border-radius: 0 0.28571429rem 0.28571429rem 0;
-}
-
-/* Plural */
-
-.ui.attached.buttons {
- position: relative;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- border-radius: 0;
- width: auto !important;
- z-index: auto;
- margin-left: -1px;
- margin-right: -1px;
-}
-
-.ui.attached.buttons .button {
- margin: 0;
-}
-
-.ui.attached.buttons .button:first-child {
- border-radius: 0;
-}
-
-.ui.attached.buttons .button:last-child {
- border-radius: 0;
-}
-
-/* Top / Bottom */
-
-.ui[class*="top attached"].buttons {
- margin-bottom: -1px;
- border-radius: 0.28571429rem 0.28571429rem 0 0;
-}
-
-.ui[class*="top attached"].buttons .button:first-child {
- border-radius: 0.28571429rem 0 0 0;
-}
-
-.ui[class*="top attached"].buttons .button:last-child {
- border-radius: 0 0.28571429rem 0 0;
-}
-
-.ui[class*="bottom attached"].buttons {
- margin-top: -1px;
- border-radius: 0 0 0.28571429rem 0.28571429rem;
-}
-
-.ui[class*="bottom attached"].buttons .button:first-child {
- border-radius: 0 0 0 0.28571429rem;
-}
-
-.ui[class*="bottom attached"].buttons .button:last-child {
- border-radius: 0 0 0.28571429rem 0;
-}
-
-/* Left / Right */
-
-.ui[class*="left attached"].buttons {
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
- margin-right: 0;
- margin-left: -1px;
- border-radius: 0 0.28571429rem 0.28571429rem 0;
-}
-
-.ui[class*="left attached"].buttons .button:first-child {
- margin-left: -1px;
- border-radius: 0 0.28571429rem 0 0;
-}
-
-.ui[class*="left attached"].buttons .button:last-child {
- margin-left: -1px;
- border-radius: 0 0 0.28571429rem 0;
-}
-
-.ui[class*="right attached"].buttons {
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
- margin-left: 0;
- margin-right: -1px;
- border-radius: 0.28571429rem 0 0 0.28571429rem;
-}
-
-.ui[class*="right attached"].buttons .button:first-child {
- margin-left: -1px;
- border-radius: 0.28571429rem 0 0 0;
-}
-
-.ui[class*="right attached"].buttons .button:last-child {
- margin-left: -1px;
- border-radius: 0 0 0 0.28571429rem;
-}
-
-/*-------------------
- Fluid
- --------------------*/
-
-.ui.fluid.buttons,
-.ui.fluid.button {
- width: 100%;
-}
-
-.ui.fluid.button {
- display: block;
-}
-
-.ui.two.buttons {
- width: 100%;
-}
-
-.ui.two.buttons > .button {
- width: 50%;
-}
-
-.ui.three.buttons {
- width: 100%;
-}
-
-.ui.three.buttons > .button {
- width: 33.333%;
-}
-
-.ui.four.buttons {
- width: 100%;
-}
-
-.ui.four.buttons > .button {
- width: 25%;
-}
-
-.ui.five.buttons {
- width: 100%;
-}
-
-.ui.five.buttons > .button {
- width: 20%;
-}
-
-.ui.six.buttons {
- width: 100%;
-}
-
-.ui.six.buttons > .button {
- width: 16.666%;
-}
-
-.ui.seven.buttons {
- width: 100%;
-}
-
-.ui.seven.buttons > .button {
- width: 14.285%;
-}
-
-.ui.eight.buttons {
- width: 100%;
-}
-
-.ui.eight.buttons > .button {
- width: 12.5%;
-}
-
-.ui.nine.buttons {
- width: 100%;
-}
-
-.ui.nine.buttons > .button {
- width: 11.11%;
-}
-
-.ui.ten.buttons {
- width: 100%;
-}
-
-.ui.ten.buttons > .button {
- width: 10%;
-}
-
-.ui.eleven.buttons {
- width: 100%;
-}
-
-.ui.eleven.buttons > .button {
- width: 9.09%;
-}
-
-.ui.twelve.buttons {
- width: 100%;
-}
-
-.ui.twelve.buttons > .button {
- width: 8.3333%;
-}
-
-/* Fluid Vertical Buttons */
-
-.ui.fluid.vertical.buttons,
-.ui.fluid.vertical.buttons > .button {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- width: auto;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
-}
-
-.ui.two.vertical.buttons > .button {
- height: 50%;
-}
-
-.ui.three.vertical.buttons > .button {
- height: 33.333%;
-}
-
-.ui.four.vertical.buttons > .button {
- height: 25%;
-}
-
-.ui.five.vertical.buttons > .button {
- height: 20%;
-}
-
-.ui.six.vertical.buttons > .button {
- height: 16.666%;
-}
-
-.ui.seven.vertical.buttons > .button {
- height: 14.285%;
-}
-
-.ui.eight.vertical.buttons > .button {
- height: 12.5%;
-}
-
-.ui.nine.vertical.buttons > .button {
- height: 11.11%;
-}
-
-.ui.ten.vertical.buttons > .button {
- height: 10%;
-}
-
-.ui.eleven.vertical.buttons > .button {
- height: 9.09%;
-}
-
-.ui.twelve.vertical.buttons > .button {
- height: 8.3333%;
-}
-
-/*-------------------
- Colors
---------------------*/
-
-.ui.primary.buttons .button,
-.ui.primary.button {
- background-color: #2185D0;
- color: #FFFFFF;
- text-shadow: none;
- background-image: none;
-}
-
-.ui.primary.button {
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.primary.buttons .button:hover,
-.ui.primary.button:hover {
- background-color: #1678c2;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.primary.buttons .button:focus,
-.ui.primary.button:focus {
- background-color: #0d71bb;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.primary.buttons .button:active,
-.ui.primary.button:active {
- background-color: #1a69a4;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.primary.buttons .active.button,
-.ui.primary.buttons .active.button:active,
-.ui.primary.active.button,
-.ui.primary.button .active.button:active {
- background-color: #1279c6;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-/* Basic */
-
-.ui.basic.primary.buttons .button,
-.ui.basic.primary.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #2185D0 inset;
- box-shadow: 0 0 0 1px #2185D0 inset;
- color: #2185D0;
-}
-
-.ui.basic.primary.buttons .button:hover,
-.ui.basic.primary.button:hover {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #1678c2 inset;
- box-shadow: 0 0 0 1px #1678c2 inset;
- color: #1678c2;
-}
-
-.ui.basic.primary.buttons .button:focus,
-.ui.basic.primary.button:focus {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #0d71bb inset;
- box-shadow: 0 0 0 1px #0d71bb inset;
- color: #1678c2;
-}
-
-.ui.basic.primary.buttons .active.button,
-.ui.basic.primary.active.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #1279c6 inset;
- box-shadow: 0 0 0 1px #1279c6 inset;
- color: #1a69a4;
-}
-
-.ui.basic.primary.buttons .button:active,
-.ui.basic.primary.button:active {
- -webkit-box-shadow: 0 0 0 1px #1a69a4 inset;
- box-shadow: 0 0 0 1px #1a69a4 inset;
- color: #1a69a4;
-}
-
-.ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) {
- margin-left: -1px;
-}
-
-/* Inverted */
-
-.ui.inverted.primary.buttons .button,
-.ui.inverted.primary.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px #54C8FF inset;
- box-shadow: 0 0 0 2px #54C8FF inset;
- color: #54C8FF;
-}
-
-.ui.inverted.primary.buttons .button:hover,
-.ui.inverted.primary.button:hover,
-.ui.inverted.primary.buttons .button:focus,
-.ui.inverted.primary.button:focus,
-.ui.inverted.primary.buttons .button.active,
-.ui.inverted.primary.button.active,
-.ui.inverted.primary.buttons .button:active,
-.ui.inverted.primary.button:active {
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #FFFFFF;
-}
-
-.ui.inverted.primary.buttons .button:hover,
-.ui.inverted.primary.button:hover {
- background-color: #21b8ff;
-}
-
-.ui.inverted.primary.buttons .button:focus,
-.ui.inverted.primary.button:focus {
- background-color: #2bbbff;
-}
-
-.ui.inverted.primary.buttons .active.button,
-.ui.inverted.primary.active.button {
- background-color: #3ac0ff;
-}
-
-.ui.inverted.primary.buttons .button:active,
-.ui.inverted.primary.button:active {
- background-color: #21b8ff;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.primary.basic.buttons .button,
-.ui.inverted.primary.buttons .basic.button,
-.ui.inverted.primary.basic.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- color: #FFFFFF;
-}
-
-.ui.inverted.primary.basic.buttons .button:hover,
-.ui.inverted.primary.buttons .basic.button:hover,
-.ui.inverted.primary.basic.button:hover {
- -webkit-box-shadow: 0 0 0 2px #21b8ff inset;
- box-shadow: 0 0 0 2px #21b8ff inset;
- color: #54C8FF;
-}
-
-.ui.inverted.primary.basic.buttons .button:focus,
-.ui.inverted.primary.basic.buttons .button:focus,
-.ui.inverted.primary.basic.button:focus {
- -webkit-box-shadow: 0 0 0 2px #2bbbff inset;
- box-shadow: 0 0 0 2px #2bbbff inset;
- color: #54C8FF;
-}
-
-.ui.inverted.primary.basic.buttons .active.button,
-.ui.inverted.primary.buttons .basic.active.button,
-.ui.inverted.primary.basic.active.button {
- -webkit-box-shadow: 0 0 0 2px #3ac0ff inset;
- box-shadow: 0 0 0 2px #3ac0ff inset;
- color: #54C8FF;
-}
-
-.ui.inverted.primary.basic.buttons .button:active,
-.ui.inverted.primary.buttons .basic.button:active,
-.ui.inverted.primary.basic.button:active {
- -webkit-box-shadow: 0 0 0 2px #21b8ff inset;
- box-shadow: 0 0 0 2px #21b8ff inset;
- color: #54C8FF;
-}
-
-/* Tertiary */
-
-.ui.tertiary.primary.buttons .button,
-.ui.tertiary.primary.buttons .tertiary.button,
-.ui.tertiary.primary.button {
- background: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #2185D0;
-}
-
-.ui.tertiary.primary.buttons .button:hover,
-.ui.tertiary.primary.buttons button:hover,
-.ui.tertiary.primary.button:hover {
- -webkit-box-shadow: inset 0 -0.2em 0 #2b75ac;
- box-shadow: inset 0 -0.2em 0 #2b75ac;
- color: #2b75ac;
-}
-
-.ui.tertiary.primary.buttons .button:focus,
-.ui.tertiary.primary.buttons .tertiary.button:focus,
-.ui.tertiary.primary.button:focus {
- -webkit-box-shadow: inset 0 -0.2em 0 #216ea7;
- box-shadow: inset 0 -0.2em 0 #216ea7;
- color: #216ea7;
-}
-
-.ui.tertiary.primary.buttons .active.button,
-.ui.tertiary.primary.buttons .tertiary.active.button,
-.ui.tertiary.primary.active.button,
-.ui.tertiary.primary.buttons .button:active,
-.ui.tertiary.primary.buttons .tertiary.button:active,
-.ui.tertiary.primary.button:active {
- -webkit-box-shadow: inset 0 -0.2em 0 #007bd8;
- box-shadow: inset 0 -0.2em 0 #007bd8;
- color: #1279c6;
-}
-
-.ui.secondary.buttons .button,
-.ui.secondary.button {
- background-color: #1B1C1D;
- color: #FFFFFF;
- text-shadow: none;
- background-image: none;
-}
-
-.ui.secondary.button {
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.secondary.buttons .button:hover,
-.ui.secondary.button:hover {
- background-color: #27292a;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.secondary.buttons .button:focus,
-.ui.secondary.button:focus {
- background-color: #2e3032;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.secondary.buttons .button:active,
-.ui.secondary.button:active {
- background-color: #343637;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.secondary.buttons .active.button,
-.ui.secondary.buttons .active.button:active,
-.ui.secondary.active.button,
-.ui.secondary.button .active.button:active {
- background-color: #27292a;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-/* Basic */
-
-.ui.basic.secondary.buttons .button,
-.ui.basic.secondary.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #1B1C1D inset;
- box-shadow: 0 0 0 1px #1B1C1D inset;
- color: #1B1C1D;
-}
-
-.ui.basic.secondary.buttons .button:hover,
-.ui.basic.secondary.button:hover {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #27292a inset;
- box-shadow: 0 0 0 1px #27292a inset;
- color: #27292a;
-}
-
-.ui.basic.secondary.buttons .button:focus,
-.ui.basic.secondary.button:focus {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #2e3032 inset;
- box-shadow: 0 0 0 1px #2e3032 inset;
- color: #27292a;
-}
-
-.ui.basic.secondary.buttons .active.button,
-.ui.basic.secondary.active.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #27292a inset;
- box-shadow: 0 0 0 1px #27292a inset;
- color: #343637;
-}
-
-.ui.basic.secondary.buttons .button:active,
-.ui.basic.secondary.button:active {
- -webkit-box-shadow: 0 0 0 1px #343637 inset;
- box-shadow: 0 0 0 1px #343637 inset;
- color: #343637;
-}
-
-.ui.buttons:not(.vertical) > .basic.secondary.button:not(:first-child) {
- margin-left: -1px;
-}
-
-/* Inverted */
-
-.ui.inverted.secondary.buttons .button,
-.ui.inverted.secondary.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px #545454 inset;
- box-shadow: 0 0 0 2px #545454 inset;
- color: #545454;
-}
-
-.ui.inverted.secondary.buttons .button:hover,
-.ui.inverted.secondary.button:hover,
-.ui.inverted.secondary.buttons .button:focus,
-.ui.inverted.secondary.button:focus,
-.ui.inverted.secondary.buttons .button.active,
-.ui.inverted.secondary.button.active,
-.ui.inverted.secondary.buttons .button:active,
-.ui.inverted.secondary.button:active {
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #FFFFFF;
-}
-
-.ui.inverted.secondary.buttons .button:hover,
-.ui.inverted.secondary.button:hover {
- background-color: #6e6e6e;
-}
-
-.ui.inverted.secondary.buttons .button:focus,
-.ui.inverted.secondary.button:focus {
- background-color: #686868;
-}
-
-.ui.inverted.secondary.buttons .active.button,
-.ui.inverted.secondary.active.button {
- background-color: #616161;
-}
-
-.ui.inverted.secondary.buttons .button:active,
-.ui.inverted.secondary.button:active {
- background-color: #6e6e6e;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.secondary.basic.buttons .button,
-.ui.inverted.secondary.buttons .basic.button,
-.ui.inverted.secondary.basic.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- color: #FFFFFF;
-}
-
-.ui.inverted.secondary.basic.buttons .button:hover,
-.ui.inverted.secondary.buttons .basic.button:hover,
-.ui.inverted.secondary.basic.button:hover {
- -webkit-box-shadow: 0 0 0 2px #6e6e6e inset;
- box-shadow: 0 0 0 2px #6e6e6e inset;
- color: #545454;
-}
-
-.ui.inverted.secondary.basic.buttons .button:focus,
-.ui.inverted.secondary.basic.buttons .button:focus,
-.ui.inverted.secondary.basic.button:focus {
- -webkit-box-shadow: 0 0 0 2px #686868 inset;
- box-shadow: 0 0 0 2px #686868 inset;
- color: #545454;
-}
-
-.ui.inverted.secondary.basic.buttons .active.button,
-.ui.inverted.secondary.buttons .basic.active.button,
-.ui.inverted.secondary.basic.active.button {
- -webkit-box-shadow: 0 0 0 2px #616161 inset;
- box-shadow: 0 0 0 2px #616161 inset;
- color: #545454;
-}
-
-.ui.inverted.secondary.basic.buttons .button:active,
-.ui.inverted.secondary.buttons .basic.button:active,
-.ui.inverted.secondary.basic.button:active {
- -webkit-box-shadow: 0 0 0 2px #6e6e6e inset;
- box-shadow: 0 0 0 2px #6e6e6e inset;
- color: #545454;
-}
-
-/* Tertiary */
-
-.ui.tertiary.secondary.buttons .button,
-.ui.tertiary.secondary.buttons .tertiary.button,
-.ui.tertiary.secondary.button {
- background: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #1B1C1D;
-}
-
-.ui.tertiary.secondary.buttons .button:hover,
-.ui.tertiary.secondary.buttons button:hover,
-.ui.tertiary.secondary.button:hover {
- -webkit-box-shadow: inset 0 -0.2em 0 #292929;
- box-shadow: inset 0 -0.2em 0 #292929;
- color: #292929;
-}
-
-.ui.tertiary.secondary.buttons .button:focus,
-.ui.tertiary.secondary.buttons .tertiary.button:focus,
-.ui.tertiary.secondary.button:focus {
- -webkit-box-shadow: inset 0 -0.2em 0 #303030;
- box-shadow: inset 0 -0.2em 0 #303030;
- color: #303030;
-}
-
-.ui.tertiary.secondary.buttons .active.button,
-.ui.tertiary.secondary.buttons .tertiary.active.button,
-.ui.tertiary.secondary.active.button,
-.ui.tertiary.secondary.buttons .button:active,
-.ui.tertiary.secondary.buttons .tertiary.button:active,
-.ui.tertiary.secondary.button:active {
- -webkit-box-shadow: inset 0 -0.2em 0 #1f2933;
- box-shadow: inset 0 -0.2em 0 #1f2933;
- color: #27292a;
-}
-
-.ui.red.buttons .button,
-.ui.red.button {
- background-color: #DB2828;
- color: #FFFFFF;
- text-shadow: none;
- background-image: none;
-}
-
-.ui.red.button {
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.red.buttons .button:hover,
-.ui.red.button:hover {
- background-color: #d01919;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.red.buttons .button:focus,
-.ui.red.button:focus {
- background-color: #ca1010;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.red.buttons .button:active,
-.ui.red.button:active {
- background-color: #b21e1e;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.red.buttons .active.button,
-.ui.red.buttons .active.button:active,
-.ui.red.active.button,
-.ui.red.button .active.button:active {
- background-color: #d41515;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-/* Basic */
-
-.ui.basic.red.buttons .button,
-.ui.basic.red.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #DB2828 inset;
- box-shadow: 0 0 0 1px #DB2828 inset;
- color: #DB2828;
-}
-
-.ui.basic.red.buttons .button:hover,
-.ui.basic.red.button:hover {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #d01919 inset;
- box-shadow: 0 0 0 1px #d01919 inset;
- color: #d01919;
-}
-
-.ui.basic.red.buttons .button:focus,
-.ui.basic.red.button:focus {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #ca1010 inset;
- box-shadow: 0 0 0 1px #ca1010 inset;
- color: #d01919;
-}
-
-.ui.basic.red.buttons .active.button,
-.ui.basic.red.active.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #d41515 inset;
- box-shadow: 0 0 0 1px #d41515 inset;
- color: #b21e1e;
-}
-
-.ui.basic.red.buttons .button:active,
-.ui.basic.red.button:active {
- -webkit-box-shadow: 0 0 0 1px #b21e1e inset;
- box-shadow: 0 0 0 1px #b21e1e inset;
- color: #b21e1e;
-}
-
-.ui.buttons:not(.vertical) > .basic.red.button:not(:first-child) {
- margin-left: -1px;
-}
-
-/* Inverted */
-
-.ui.inverted.red.buttons .button,
-.ui.inverted.red.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px #FF695E inset;
- box-shadow: 0 0 0 2px #FF695E inset;
- color: #FF695E;
-}
-
-.ui.inverted.red.buttons .button:hover,
-.ui.inverted.red.button:hover,
-.ui.inverted.red.buttons .button:focus,
-.ui.inverted.red.button:focus,
-.ui.inverted.red.buttons .button.active,
-.ui.inverted.red.button.active,
-.ui.inverted.red.buttons .button:active,
-.ui.inverted.red.button:active {
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #FFFFFF;
-}
-
-.ui.inverted.red.buttons .button:hover,
-.ui.inverted.red.button:hover {
- background-color: #ff392b;
-}
-
-.ui.inverted.red.buttons .button:focus,
-.ui.inverted.red.button:focus {
- background-color: #ff4335;
-}
-
-.ui.inverted.red.buttons .active.button,
-.ui.inverted.red.active.button {
- background-color: #ff5144;
-}
-
-.ui.inverted.red.buttons .button:active,
-.ui.inverted.red.button:active {
- background-color: #ff392b;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.red.basic.buttons .button,
-.ui.inverted.red.buttons .basic.button,
-.ui.inverted.red.basic.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- color: #FFFFFF;
-}
-
-.ui.inverted.red.basic.buttons .button:hover,
-.ui.inverted.red.buttons .basic.button:hover,
-.ui.inverted.red.basic.button:hover {
- -webkit-box-shadow: 0 0 0 2px #ff392b inset;
- box-shadow: 0 0 0 2px #ff392b inset;
- color: #FF695E;
-}
-
-.ui.inverted.red.basic.buttons .button:focus,
-.ui.inverted.red.basic.buttons .button:focus,
-.ui.inverted.red.basic.button:focus {
- -webkit-box-shadow: 0 0 0 2px #ff4335 inset;
- box-shadow: 0 0 0 2px #ff4335 inset;
- color: #FF695E;
-}
-
-.ui.inverted.red.basic.buttons .active.button,
-.ui.inverted.red.buttons .basic.active.button,
-.ui.inverted.red.basic.active.button {
- -webkit-box-shadow: 0 0 0 2px #ff5144 inset;
- box-shadow: 0 0 0 2px #ff5144 inset;
- color: #FF695E;
-}
-
-.ui.inverted.red.basic.buttons .button:active,
-.ui.inverted.red.buttons .basic.button:active,
-.ui.inverted.red.basic.button:active {
- -webkit-box-shadow: 0 0 0 2px #ff392b inset;
- box-shadow: 0 0 0 2px #ff392b inset;
- color: #FF695E;
-}
-
-/* Tertiary */
-
-.ui.tertiary.red.buttons .button,
-.ui.tertiary.red.buttons .tertiary.button,
-.ui.tertiary.red.button {
- background: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #DB2828;
-}
-
-.ui.tertiary.red.buttons .button:hover,
-.ui.tertiary.red.buttons button:hover,
-.ui.tertiary.red.button:hover {
- -webkit-box-shadow: inset 0 -0.2em 0 #b93131;
- box-shadow: inset 0 -0.2em 0 #b93131;
- color: #b93131;
-}
-
-.ui.tertiary.red.buttons .button:focus,
-.ui.tertiary.red.buttons .tertiary.button:focus,
-.ui.tertiary.red.button:focus {
- -webkit-box-shadow: inset 0 -0.2em 0 #b52626;
- box-shadow: inset 0 -0.2em 0 #b52626;
- color: #b52626;
-}
-
-.ui.tertiary.red.buttons .active.button,
-.ui.tertiary.red.buttons .tertiary.active.button,
-.ui.tertiary.red.active.button,
-.ui.tertiary.red.buttons .button:active,
-.ui.tertiary.red.buttons .tertiary.button:active,
-.ui.tertiary.red.button:active {
- -webkit-box-shadow: inset 0 -0.2em 0 #ea0000;
- box-shadow: inset 0 -0.2em 0 #ea0000;
- color: #d41515;
-}
-
-.ui.orange.buttons .button,
-.ui.orange.button {
- background-color: #F2711C;
- color: #FFFFFF;
- text-shadow: none;
- background-image: none;
-}
-
-.ui.orange.button {
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.orange.buttons .button:hover,
-.ui.orange.button:hover {
- background-color: #f26202;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.orange.buttons .button:focus,
-.ui.orange.button:focus {
- background-color: #e55b00;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.orange.buttons .button:active,
-.ui.orange.button:active {
- background-color: #cf590c;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.orange.buttons .active.button,
-.ui.orange.buttons .active.button:active,
-.ui.orange.active.button,
-.ui.orange.button .active.button:active {
- background-color: #f56100;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-/* Basic */
-
-.ui.basic.orange.buttons .button,
-.ui.basic.orange.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #F2711C inset;
- box-shadow: 0 0 0 1px #F2711C inset;
- color: #F2711C;
-}
-
-.ui.basic.orange.buttons .button:hover,
-.ui.basic.orange.button:hover {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #f26202 inset;
- box-shadow: 0 0 0 1px #f26202 inset;
- color: #f26202;
-}
-
-.ui.basic.orange.buttons .button:focus,
-.ui.basic.orange.button:focus {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #e55b00 inset;
- box-shadow: 0 0 0 1px #e55b00 inset;
- color: #f26202;
-}
-
-.ui.basic.orange.buttons .active.button,
-.ui.basic.orange.active.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #f56100 inset;
- box-shadow: 0 0 0 1px #f56100 inset;
- color: #cf590c;
-}
-
-.ui.basic.orange.buttons .button:active,
-.ui.basic.orange.button:active {
- -webkit-box-shadow: 0 0 0 1px #cf590c inset;
- box-shadow: 0 0 0 1px #cf590c inset;
- color: #cf590c;
-}
-
-.ui.buttons:not(.vertical) > .basic.orange.button:not(:first-child) {
- margin-left: -1px;
-}
-
-/* Inverted */
-
-.ui.inverted.orange.buttons .button,
-.ui.inverted.orange.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px #FF851B inset;
- box-shadow: 0 0 0 2px #FF851B inset;
- color: #FF851B;
-}
-
-.ui.inverted.orange.buttons .button:hover,
-.ui.inverted.orange.button:hover,
-.ui.inverted.orange.buttons .button:focus,
-.ui.inverted.orange.button:focus,
-.ui.inverted.orange.buttons .button.active,
-.ui.inverted.orange.button.active,
-.ui.inverted.orange.buttons .button:active,
-.ui.inverted.orange.button:active {
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #FFFFFF;
-}
-
-.ui.inverted.orange.buttons .button:hover,
-.ui.inverted.orange.button:hover {
- background-color: #e76b00;
-}
-
-.ui.inverted.orange.buttons .button:focus,
-.ui.inverted.orange.button:focus {
- background-color: #f17000;
-}
-
-.ui.inverted.orange.buttons .active.button,
-.ui.inverted.orange.active.button {
- background-color: #ff7701;
-}
-
-.ui.inverted.orange.buttons .button:active,
-.ui.inverted.orange.button:active {
- background-color: #e76b00;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.orange.basic.buttons .button,
-.ui.inverted.orange.buttons .basic.button,
-.ui.inverted.orange.basic.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- color: #FFFFFF;
-}
-
-.ui.inverted.orange.basic.buttons .button:hover,
-.ui.inverted.orange.buttons .basic.button:hover,
-.ui.inverted.orange.basic.button:hover {
- -webkit-box-shadow: 0 0 0 2px #e76b00 inset;
- box-shadow: 0 0 0 2px #e76b00 inset;
- color: #FF851B;
-}
-
-.ui.inverted.orange.basic.buttons .button:focus,
-.ui.inverted.orange.basic.buttons .button:focus,
-.ui.inverted.orange.basic.button:focus {
- -webkit-box-shadow: 0 0 0 2px #f17000 inset;
- box-shadow: 0 0 0 2px #f17000 inset;
- color: #FF851B;
-}
-
-.ui.inverted.orange.basic.buttons .active.button,
-.ui.inverted.orange.buttons .basic.active.button,
-.ui.inverted.orange.basic.active.button {
- -webkit-box-shadow: 0 0 0 2px #ff7701 inset;
- box-shadow: 0 0 0 2px #ff7701 inset;
- color: #FF851B;
-}
-
-.ui.inverted.orange.basic.buttons .button:active,
-.ui.inverted.orange.buttons .basic.button:active,
-.ui.inverted.orange.basic.button:active {
- -webkit-box-shadow: 0 0 0 2px #e76b00 inset;
- box-shadow: 0 0 0 2px #e76b00 inset;
- color: #FF851B;
-}
-
-/* Tertiary */
-
-.ui.tertiary.orange.buttons .button,
-.ui.tertiary.orange.buttons .tertiary.button,
-.ui.tertiary.orange.button {
- background: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #F2711C;
-}
-
-.ui.tertiary.orange.buttons .button:hover,
-.ui.tertiary.orange.buttons button:hover,
-.ui.tertiary.orange.button:hover {
- -webkit-box-shadow: inset 0 -0.2em 0 #da671b;
- box-shadow: inset 0 -0.2em 0 #da671b;
- color: #da671b;
-}
-
-.ui.tertiary.orange.buttons .button:focus,
-.ui.tertiary.orange.buttons .tertiary.button:focus,
-.ui.tertiary.orange.button:focus {
- -webkit-box-shadow: inset 0 -0.2em 0 #ce6017;
- box-shadow: inset 0 -0.2em 0 #ce6017;
- color: #ce6017;
-}
-
-.ui.tertiary.orange.buttons .active.button,
-.ui.tertiary.orange.buttons .tertiary.active.button,
-.ui.tertiary.orange.active.button,
-.ui.tertiary.orange.buttons .button:active,
-.ui.tertiary.orange.buttons .tertiary.button:active,
-.ui.tertiary.orange.button:active {
- -webkit-box-shadow: inset 0 -0.2em 0 #f56100;
- box-shadow: inset 0 -0.2em 0 #f56100;
- color: #f56100;
-}
-
-.ui.yellow.buttons .button,
-.ui.yellow.button {
- background-color: #FBBD08;
- color: #FFFFFF;
- text-shadow: none;
- background-image: none;
-}
-
-.ui.yellow.button {
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.yellow.buttons .button:hover,
-.ui.yellow.button:hover {
- background-color: #eaae00;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.yellow.buttons .button:focus,
-.ui.yellow.button:focus {
- background-color: #daa300;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.yellow.buttons .button:active,
-.ui.yellow.button:active {
- background-color: #cd9903;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.yellow.buttons .active.button,
-.ui.yellow.buttons .active.button:active,
-.ui.yellow.active.button,
-.ui.yellow.button .active.button:active {
- background-color: #eaae00;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-/* Basic */
-
-.ui.basic.yellow.buttons .button,
-.ui.basic.yellow.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #FBBD08 inset;
- box-shadow: 0 0 0 1px #FBBD08 inset;
- color: #FBBD08;
-}
-
-.ui.basic.yellow.buttons .button:hover,
-.ui.basic.yellow.button:hover {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #eaae00 inset;
- box-shadow: 0 0 0 1px #eaae00 inset;
- color: #eaae00;
-}
-
-.ui.basic.yellow.buttons .button:focus,
-.ui.basic.yellow.button:focus {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #daa300 inset;
- box-shadow: 0 0 0 1px #daa300 inset;
- color: #eaae00;
-}
-
-.ui.basic.yellow.buttons .active.button,
-.ui.basic.yellow.active.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #eaae00 inset;
- box-shadow: 0 0 0 1px #eaae00 inset;
- color: #cd9903;
-}
-
-.ui.basic.yellow.buttons .button:active,
-.ui.basic.yellow.button:active {
- -webkit-box-shadow: 0 0 0 1px #cd9903 inset;
- box-shadow: 0 0 0 1px #cd9903 inset;
- color: #cd9903;
-}
-
-.ui.buttons:not(.vertical) > .basic.yellow.button:not(:first-child) {
- margin-left: -1px;
-}
-
-/* Inverted */
-
-.ui.inverted.yellow.buttons .button,
-.ui.inverted.yellow.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px #FFE21F inset;
- box-shadow: 0 0 0 2px #FFE21F inset;
- color: #FFE21F;
-}
-
-.ui.inverted.yellow.buttons .button:hover,
-.ui.inverted.yellow.button:hover,
-.ui.inverted.yellow.buttons .button:focus,
-.ui.inverted.yellow.button:focus,
-.ui.inverted.yellow.buttons .button.active,
-.ui.inverted.yellow.button.active,
-.ui.inverted.yellow.buttons .button:active,
-.ui.inverted.yellow.button:active {
- -webkit-box-shadow: none;
- box-shadow: none;
- color: rgba(0, 0, 0, 0.6);
-}
-
-.ui.inverted.yellow.buttons .button:hover,
-.ui.inverted.yellow.button:hover {
- background-color: #ebcd00;
-}
-
-.ui.inverted.yellow.buttons .button:focus,
-.ui.inverted.yellow.button:focus {
- background-color: #f5d500;
-}
-
-.ui.inverted.yellow.buttons .active.button,
-.ui.inverted.yellow.active.button {
- background-color: #ffdf05;
-}
-
-.ui.inverted.yellow.buttons .button:active,
-.ui.inverted.yellow.button:active {
- background-color: #ebcd00;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.yellow.basic.buttons .button,
-.ui.inverted.yellow.buttons .basic.button,
-.ui.inverted.yellow.basic.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- color: #FFFFFF;
-}
-
-.ui.inverted.yellow.basic.buttons .button:hover,
-.ui.inverted.yellow.buttons .basic.button:hover,
-.ui.inverted.yellow.basic.button:hover {
- -webkit-box-shadow: 0 0 0 2px #ebcd00 inset;
- box-shadow: 0 0 0 2px #ebcd00 inset;
- color: #FFE21F;
-}
-
-.ui.inverted.yellow.basic.buttons .button:focus,
-.ui.inverted.yellow.basic.buttons .button:focus,
-.ui.inverted.yellow.basic.button:focus {
- -webkit-box-shadow: 0 0 0 2px #f5d500 inset;
- box-shadow: 0 0 0 2px #f5d500 inset;
- color: #FFE21F;
-}
-
-.ui.inverted.yellow.basic.buttons .active.button,
-.ui.inverted.yellow.buttons .basic.active.button,
-.ui.inverted.yellow.basic.active.button {
- -webkit-box-shadow: 0 0 0 2px #ffdf05 inset;
- box-shadow: 0 0 0 2px #ffdf05 inset;
- color: #FFE21F;
-}
-
-.ui.inverted.yellow.basic.buttons .button:active,
-.ui.inverted.yellow.buttons .basic.button:active,
-.ui.inverted.yellow.basic.button:active {
- -webkit-box-shadow: 0 0 0 2px #ebcd00 inset;
- box-shadow: 0 0 0 2px #ebcd00 inset;
- color: #FFE21F;
-}
-
-/* Tertiary */
-
-.ui.tertiary.yellow.buttons .button,
-.ui.tertiary.yellow.buttons .tertiary.button,
-.ui.tertiary.yellow.button {
- background: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #FBBD08;
-}
-
-.ui.tertiary.yellow.buttons .button:hover,
-.ui.tertiary.yellow.buttons button:hover,
-.ui.tertiary.yellow.button:hover {
- -webkit-box-shadow: inset 0 -0.2em 0 #d2a217;
- box-shadow: inset 0 -0.2em 0 #d2a217;
- color: #d2a217;
-}
-
-.ui.tertiary.yellow.buttons .button:focus,
-.ui.tertiary.yellow.buttons .tertiary.button:focus,
-.ui.tertiary.yellow.button:focus {
- -webkit-box-shadow: inset 0 -0.2em 0 #c49816;
- box-shadow: inset 0 -0.2em 0 #c49816;
- color: #c49816;
-}
-
-.ui.tertiary.yellow.buttons .active.button,
-.ui.tertiary.yellow.buttons .tertiary.active.button,
-.ui.tertiary.yellow.active.button,
-.ui.tertiary.yellow.buttons .button:active,
-.ui.tertiary.yellow.buttons .tertiary.button:active,
-.ui.tertiary.yellow.button:active {
- -webkit-box-shadow: inset 0 -0.2em 0 #eaae00;
- box-shadow: inset 0 -0.2em 0 #eaae00;
- color: #eaae00;
-}
-
-.ui.olive.buttons .button,
-.ui.olive.button {
- background-color: #B5CC18;
- color: #FFFFFF;
- text-shadow: none;
- background-image: none;
-}
-
-.ui.olive.button {
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.olive.buttons .button:hover,
-.ui.olive.button:hover {
- background-color: #a7bd0d;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.olive.buttons .button:focus,
-.ui.olive.button:focus {
- background-color: #a0b605;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.olive.buttons .button:active,
-.ui.olive.button:active {
- background-color: #8d9e13;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.olive.buttons .active.button,
-.ui.olive.buttons .active.button:active,
-.ui.olive.active.button,
-.ui.olive.button .active.button:active {
- background-color: #aac109;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-/* Basic */
-
-.ui.basic.olive.buttons .button,
-.ui.basic.olive.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #B5CC18 inset;
- box-shadow: 0 0 0 1px #B5CC18 inset;
- color: #B5CC18;
-}
-
-.ui.basic.olive.buttons .button:hover,
-.ui.basic.olive.button:hover {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #a7bd0d inset;
- box-shadow: 0 0 0 1px #a7bd0d inset;
- color: #a7bd0d;
-}
-
-.ui.basic.olive.buttons .button:focus,
-.ui.basic.olive.button:focus {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #a0b605 inset;
- box-shadow: 0 0 0 1px #a0b605 inset;
- color: #a7bd0d;
-}
-
-.ui.basic.olive.buttons .active.button,
-.ui.basic.olive.active.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #aac109 inset;
- box-shadow: 0 0 0 1px #aac109 inset;
- color: #8d9e13;
-}
-
-.ui.basic.olive.buttons .button:active,
-.ui.basic.olive.button:active {
- -webkit-box-shadow: 0 0 0 1px #8d9e13 inset;
- box-shadow: 0 0 0 1px #8d9e13 inset;
- color: #8d9e13;
-}
-
-.ui.buttons:not(.vertical) > .basic.olive.button:not(:first-child) {
- margin-left: -1px;
-}
-
-/* Inverted */
-
-.ui.inverted.olive.buttons .button,
-.ui.inverted.olive.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px #D9E778 inset;
- box-shadow: 0 0 0 2px #D9E778 inset;
- color: #D9E778;
-}
-
-.ui.inverted.olive.buttons .button:hover,
-.ui.inverted.olive.button:hover,
-.ui.inverted.olive.buttons .button:focus,
-.ui.inverted.olive.button:focus,
-.ui.inverted.olive.buttons .button.active,
-.ui.inverted.olive.button.active,
-.ui.inverted.olive.buttons .button:active,
-.ui.inverted.olive.button:active {
- -webkit-box-shadow: none;
- box-shadow: none;
- color: rgba(0, 0, 0, 0.6);
-}
-
-.ui.inverted.olive.buttons .button:hover,
-.ui.inverted.olive.button:hover {
- background-color: #d2e745;
-}
-
-.ui.inverted.olive.buttons .button:focus,
-.ui.inverted.olive.button:focus {
- background-color: #daef47;
-}
-
-.ui.inverted.olive.buttons .active.button,
-.ui.inverted.olive.active.button {
- background-color: #daed59;
-}
-
-.ui.inverted.olive.buttons .button:active,
-.ui.inverted.olive.button:active {
- background-color: #cddf4d;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.olive.basic.buttons .button,
-.ui.inverted.olive.buttons .basic.button,
-.ui.inverted.olive.basic.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- color: #FFFFFF;
-}
-
-.ui.inverted.olive.basic.buttons .button:hover,
-.ui.inverted.olive.buttons .basic.button:hover,
-.ui.inverted.olive.basic.button:hover {
- -webkit-box-shadow: 0 0 0 2px #d2e745 inset;
- box-shadow: 0 0 0 2px #d2e745 inset;
- color: #D9E778;
-}
-
-.ui.inverted.olive.basic.buttons .button:focus,
-.ui.inverted.olive.basic.buttons .button:focus,
-.ui.inverted.olive.basic.button:focus {
- -webkit-box-shadow: 0 0 0 2px #daef47 inset;
- box-shadow: 0 0 0 2px #daef47 inset;
- color: #D9E778;
-}
-
-.ui.inverted.olive.basic.buttons .active.button,
-.ui.inverted.olive.buttons .basic.active.button,
-.ui.inverted.olive.basic.active.button {
- -webkit-box-shadow: 0 0 0 2px #daed59 inset;
- box-shadow: 0 0 0 2px #daed59 inset;
- color: #D9E778;
-}
-
-.ui.inverted.olive.basic.buttons .button:active,
-.ui.inverted.olive.buttons .basic.button:active,
-.ui.inverted.olive.basic.button:active {
- -webkit-box-shadow: 0 0 0 2px #cddf4d inset;
- box-shadow: 0 0 0 2px #cddf4d inset;
- color: #D9E778;
-}
-
-/* Tertiary */
-
-.ui.tertiary.olive.buttons .button,
-.ui.tertiary.olive.buttons .tertiary.button,
-.ui.tertiary.olive.button {
- background: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #B5CC18;
-}
-
-.ui.tertiary.olive.buttons .button:hover,
-.ui.tertiary.olive.buttons button:hover,
-.ui.tertiary.olive.button:hover {
- -webkit-box-shadow: inset 0 -0.2em 0 #98a922;
- box-shadow: inset 0 -0.2em 0 #98a922;
- color: #98a922;
-}
-
-.ui.tertiary.olive.buttons .button:focus,
-.ui.tertiary.olive.buttons .tertiary.button:focus,
-.ui.tertiary.olive.button:focus {
- -webkit-box-shadow: inset 0 -0.2em 0 #92a418;
- box-shadow: inset 0 -0.2em 0 #92a418;
- color: #92a418;
-}
-
-.ui.tertiary.olive.buttons .active.button,
-.ui.tertiary.olive.buttons .tertiary.active.button,
-.ui.tertiary.olive.active.button,
-.ui.tertiary.olive.buttons .button:active,
-.ui.tertiary.olive.buttons .tertiary.button:active,
-.ui.tertiary.olive.button:active {
- -webkit-box-shadow: inset 0 -0.2em 0 #b1cb00;
- box-shadow: inset 0 -0.2em 0 #b1cb00;
- color: #aac109;
-}
-
-.ui.green.buttons .button,
-.ui.green.button {
- background-color: #21BA45;
- color: #FFFFFF;
- text-shadow: none;
- background-image: none;
-}
-
-.ui.green.button {
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.green.buttons .button:hover,
-.ui.green.button:hover {
- background-color: #16ab39;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.green.buttons .button:focus,
-.ui.green.button:focus {
- background-color: #0ea432;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.green.buttons .button:active,
-.ui.green.button:active {
- background-color: #198f35;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.green.buttons .active.button,
-.ui.green.buttons .active.button:active,
-.ui.green.active.button,
-.ui.green.button .active.button:active {
- background-color: #13ae38;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-/* Basic */
-
-.ui.basic.green.buttons .button,
-.ui.basic.green.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #21BA45 inset;
- box-shadow: 0 0 0 1px #21BA45 inset;
- color: #21BA45;
-}
-
-.ui.basic.green.buttons .button:hover,
-.ui.basic.green.button:hover {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #16ab39 inset;
- box-shadow: 0 0 0 1px #16ab39 inset;
- color: #16ab39;
-}
-
-.ui.basic.green.buttons .button:focus,
-.ui.basic.green.button:focus {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #0ea432 inset;
- box-shadow: 0 0 0 1px #0ea432 inset;
- color: #16ab39;
-}
-
-.ui.basic.green.buttons .active.button,
-.ui.basic.green.active.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #13ae38 inset;
- box-shadow: 0 0 0 1px #13ae38 inset;
- color: #198f35;
-}
-
-.ui.basic.green.buttons .button:active,
-.ui.basic.green.button:active {
- -webkit-box-shadow: 0 0 0 1px #198f35 inset;
- box-shadow: 0 0 0 1px #198f35 inset;
- color: #198f35;
-}
-
-.ui.buttons:not(.vertical) > .basic.green.button:not(:first-child) {
- margin-left: -1px;
-}
-
-/* Inverted */
-
-.ui.inverted.green.buttons .button,
-.ui.inverted.green.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px #2ECC40 inset;
- box-shadow: 0 0 0 2px #2ECC40 inset;
- color: #2ECC40;
-}
-
-.ui.inverted.green.buttons .button:hover,
-.ui.inverted.green.button:hover,
-.ui.inverted.green.buttons .button:focus,
-.ui.inverted.green.button:focus,
-.ui.inverted.green.buttons .button.active,
-.ui.inverted.green.button.active,
-.ui.inverted.green.buttons .button:active,
-.ui.inverted.green.button:active {
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #FFFFFF;
-}
-
-.ui.inverted.green.buttons .button:hover,
-.ui.inverted.green.button:hover {
- background-color: #1ea92e;
-}
-
-.ui.inverted.green.buttons .button:focus,
-.ui.inverted.green.button:focus {
- background-color: #19b82b;
-}
-
-.ui.inverted.green.buttons .active.button,
-.ui.inverted.green.active.button {
- background-color: #1fc231;
-}
-
-.ui.inverted.green.buttons .button:active,
-.ui.inverted.green.button:active {
- background-color: #25a233;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.green.basic.buttons .button,
-.ui.inverted.green.buttons .basic.button,
-.ui.inverted.green.basic.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- color: #FFFFFF;
-}
-
-.ui.inverted.green.basic.buttons .button:hover,
-.ui.inverted.green.buttons .basic.button:hover,
-.ui.inverted.green.basic.button:hover {
- -webkit-box-shadow: 0 0 0 2px #1ea92e inset;
- box-shadow: 0 0 0 2px #1ea92e inset;
- color: #2ECC40;
-}
-
-.ui.inverted.green.basic.buttons .button:focus,
-.ui.inverted.green.basic.buttons .button:focus,
-.ui.inverted.green.basic.button:focus {
- -webkit-box-shadow: 0 0 0 2px #19b82b inset;
- box-shadow: 0 0 0 2px #19b82b inset;
- color: #2ECC40;
-}
-
-.ui.inverted.green.basic.buttons .active.button,
-.ui.inverted.green.buttons .basic.active.button,
-.ui.inverted.green.basic.active.button {
- -webkit-box-shadow: 0 0 0 2px #1fc231 inset;
- box-shadow: 0 0 0 2px #1fc231 inset;
- color: #2ECC40;
-}
-
-.ui.inverted.green.basic.buttons .button:active,
-.ui.inverted.green.buttons .basic.button:active,
-.ui.inverted.green.basic.button:active {
- -webkit-box-shadow: 0 0 0 2px #25a233 inset;
- box-shadow: 0 0 0 2px #25a233 inset;
- color: #2ECC40;
-}
-
-/* Tertiary */
-
-.ui.tertiary.green.buttons .button,
-.ui.tertiary.green.buttons .tertiary.button,
-.ui.tertiary.green.button {
- background: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #21BA45;
-}
-
-.ui.tertiary.green.buttons .button:hover,
-.ui.tertiary.green.buttons button:hover,
-.ui.tertiary.green.button:hover {
- -webkit-box-shadow: inset 0 -0.2em 0 #2a9844;
- box-shadow: inset 0 -0.2em 0 #2a9844;
- color: #2a9844;
-}
-
-.ui.tertiary.green.buttons .button:focus,
-.ui.tertiary.green.buttons .tertiary.button:focus,
-.ui.tertiary.green.button:focus {
- -webkit-box-shadow: inset 0 -0.2em 0 #20923b;
- box-shadow: inset 0 -0.2em 0 #20923b;
- color: #20923b;
-}
-
-.ui.tertiary.green.buttons .active.button,
-.ui.tertiary.green.buttons .tertiary.active.button,
-.ui.tertiary.green.active.button,
-.ui.tertiary.green.buttons .button:active,
-.ui.tertiary.green.buttons .tertiary.button:active,
-.ui.tertiary.green.button:active {
- -webkit-box-shadow: inset 0 -0.2em 0 #00c22e;
- box-shadow: inset 0 -0.2em 0 #00c22e;
- color: #13ae38;
-}
-
-.ui.teal.buttons .button,
-.ui.teal.button {
- background-color: #00B5AD;
- color: #FFFFFF;
- text-shadow: none;
- background-image: none;
-}
-
-.ui.teal.button {
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.teal.buttons .button:hover,
-.ui.teal.button:hover {
- background-color: #009c95;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.teal.buttons .button:focus,
-.ui.teal.button:focus {
- background-color: #008c86;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.teal.buttons .button:active,
-.ui.teal.button:active {
- background-color: #00827c;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.teal.buttons .active.button,
-.ui.teal.buttons .active.button:active,
-.ui.teal.active.button,
-.ui.teal.button .active.button:active {
- background-color: #009c95;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-/* Basic */
-
-.ui.basic.teal.buttons .button,
-.ui.basic.teal.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #00B5AD inset;
- box-shadow: 0 0 0 1px #00B5AD inset;
- color: #00B5AD;
-}
-
-.ui.basic.teal.buttons .button:hover,
-.ui.basic.teal.button:hover {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #009c95 inset;
- box-shadow: 0 0 0 1px #009c95 inset;
- color: #009c95;
-}
-
-.ui.basic.teal.buttons .button:focus,
-.ui.basic.teal.button:focus {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #008c86 inset;
- box-shadow: 0 0 0 1px #008c86 inset;
- color: #009c95;
-}
-
-.ui.basic.teal.buttons .active.button,
-.ui.basic.teal.active.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #009c95 inset;
- box-shadow: 0 0 0 1px #009c95 inset;
- color: #00827c;
-}
-
-.ui.basic.teal.buttons .button:active,
-.ui.basic.teal.button:active {
- -webkit-box-shadow: 0 0 0 1px #00827c inset;
- box-shadow: 0 0 0 1px #00827c inset;
- color: #00827c;
-}
-
-.ui.buttons:not(.vertical) > .basic.teal.button:not(:first-child) {
- margin-left: -1px;
-}
-
-/* Inverted */
-
-.ui.inverted.teal.buttons .button,
-.ui.inverted.teal.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px #6DFFFF inset;
- box-shadow: 0 0 0 2px #6DFFFF inset;
- color: #6DFFFF;
-}
-
-.ui.inverted.teal.buttons .button:hover,
-.ui.inverted.teal.button:hover,
-.ui.inverted.teal.buttons .button:focus,
-.ui.inverted.teal.button:focus,
-.ui.inverted.teal.buttons .button.active,
-.ui.inverted.teal.button.active,
-.ui.inverted.teal.buttons .button:active,
-.ui.inverted.teal.button:active {
- -webkit-box-shadow: none;
- box-shadow: none;
- color: rgba(0, 0, 0, 0.6);
-}
-
-.ui.inverted.teal.buttons .button:hover,
-.ui.inverted.teal.button:hover {
- background-color: #3affff;
-}
-
-.ui.inverted.teal.buttons .button:focus,
-.ui.inverted.teal.button:focus {
- background-color: #44ffff;
-}
-
-.ui.inverted.teal.buttons .active.button,
-.ui.inverted.teal.active.button {
- background-color: #54ffff;
-}
-
-.ui.inverted.teal.buttons .button:active,
-.ui.inverted.teal.button:active {
- background-color: #3affff;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.teal.basic.buttons .button,
-.ui.inverted.teal.buttons .basic.button,
-.ui.inverted.teal.basic.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- color: #FFFFFF;
-}
-
-.ui.inverted.teal.basic.buttons .button:hover,
-.ui.inverted.teal.buttons .basic.button:hover,
-.ui.inverted.teal.basic.button:hover {
- -webkit-box-shadow: 0 0 0 2px #3affff inset;
- box-shadow: 0 0 0 2px #3affff inset;
- color: #6DFFFF;
-}
-
-.ui.inverted.teal.basic.buttons .button:focus,
-.ui.inverted.teal.basic.buttons .button:focus,
-.ui.inverted.teal.basic.button:focus {
- -webkit-box-shadow: 0 0 0 2px #44ffff inset;
- box-shadow: 0 0 0 2px #44ffff inset;
- color: #6DFFFF;
-}
-
-.ui.inverted.teal.basic.buttons .active.button,
-.ui.inverted.teal.buttons .basic.active.button,
-.ui.inverted.teal.basic.active.button {
- -webkit-box-shadow: 0 0 0 2px #54ffff inset;
- box-shadow: 0 0 0 2px #54ffff inset;
- color: #6DFFFF;
-}
-
-.ui.inverted.teal.basic.buttons .button:active,
-.ui.inverted.teal.buttons .basic.button:active,
-.ui.inverted.teal.basic.button:active {
- -webkit-box-shadow: 0 0 0 2px #3affff inset;
- box-shadow: 0 0 0 2px #3affff inset;
- color: #6DFFFF;
-}
-
-/* Tertiary */
-
-.ui.tertiary.teal.buttons .button,
-.ui.tertiary.teal.buttons .tertiary.button,
-.ui.tertiary.teal.button {
- background: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #00B5AD;
-}
-
-.ui.tertiary.teal.buttons .button:hover,
-.ui.tertiary.teal.buttons button:hover,
-.ui.tertiary.teal.button:hover {
- -webkit-box-shadow: inset 0 -0.2em 0 #108c86;
- box-shadow: inset 0 -0.2em 0 #108c86;
- color: #108c86;
-}
-
-.ui.tertiary.teal.buttons .button:focus,
-.ui.tertiary.teal.buttons .tertiary.button:focus,
-.ui.tertiary.teal.button:focus {
- -webkit-box-shadow: inset 0 -0.2em 0 #0e7e79;
- box-shadow: inset 0 -0.2em 0 #0e7e79;
- color: #0e7e79;
-}
-
-.ui.tertiary.teal.buttons .active.button,
-.ui.tertiary.teal.buttons .tertiary.active.button,
-.ui.tertiary.teal.active.button,
-.ui.tertiary.teal.buttons .button:active,
-.ui.tertiary.teal.buttons .tertiary.button:active,
-.ui.tertiary.teal.button:active {
- -webkit-box-shadow: inset 0 -0.2em 0 #009c95;
- box-shadow: inset 0 -0.2em 0 #009c95;
- color: #009c95;
-}
-
-.ui.blue.buttons .button,
-.ui.blue.button {
- background-color: #2185D0;
- color: #FFFFFF;
- text-shadow: none;
- background-image: none;
-}
-
-.ui.blue.button {
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.blue.buttons .button:hover,
-.ui.blue.button:hover {
- background-color: #1678c2;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.blue.buttons .button:focus,
-.ui.blue.button:focus {
- background-color: #0d71bb;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.blue.buttons .button:active,
-.ui.blue.button:active {
- background-color: #1a69a4;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.blue.buttons .active.button,
-.ui.blue.buttons .active.button:active,
-.ui.blue.active.button,
-.ui.blue.button .active.button:active {
- background-color: #1279c6;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-/* Basic */
-
-.ui.basic.blue.buttons .button,
-.ui.basic.blue.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #2185D0 inset;
- box-shadow: 0 0 0 1px #2185D0 inset;
- color: #2185D0;
-}
-
-.ui.basic.blue.buttons .button:hover,
-.ui.basic.blue.button:hover {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #1678c2 inset;
- box-shadow: 0 0 0 1px #1678c2 inset;
- color: #1678c2;
-}
-
-.ui.basic.blue.buttons .button:focus,
-.ui.basic.blue.button:focus {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #0d71bb inset;
- box-shadow: 0 0 0 1px #0d71bb inset;
- color: #1678c2;
-}
-
-.ui.basic.blue.buttons .active.button,
-.ui.basic.blue.active.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #1279c6 inset;
- box-shadow: 0 0 0 1px #1279c6 inset;
- color: #1a69a4;
-}
-
-.ui.basic.blue.buttons .button:active,
-.ui.basic.blue.button:active {
- -webkit-box-shadow: 0 0 0 1px #1a69a4 inset;
- box-shadow: 0 0 0 1px #1a69a4 inset;
- color: #1a69a4;
-}
-
-.ui.buttons:not(.vertical) > .basic.blue.button:not(:first-child) {
- margin-left: -1px;
-}
-
-/* Inverted */
-
-.ui.inverted.blue.buttons .button,
-.ui.inverted.blue.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px #54C8FF inset;
- box-shadow: 0 0 0 2px #54C8FF inset;
- color: #54C8FF;
-}
-
-.ui.inverted.blue.buttons .button:hover,
-.ui.inverted.blue.button:hover,
-.ui.inverted.blue.buttons .button:focus,
-.ui.inverted.blue.button:focus,
-.ui.inverted.blue.buttons .button.active,
-.ui.inverted.blue.button.active,
-.ui.inverted.blue.buttons .button:active,
-.ui.inverted.blue.button:active {
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #FFFFFF;
-}
-
-.ui.inverted.blue.buttons .button:hover,
-.ui.inverted.blue.button:hover {
- background-color: #21b8ff;
-}
-
-.ui.inverted.blue.buttons .button:focus,
-.ui.inverted.blue.button:focus {
- background-color: #2bbbff;
-}
-
-.ui.inverted.blue.buttons .active.button,
-.ui.inverted.blue.active.button {
- background-color: #3ac0ff;
-}
-
-.ui.inverted.blue.buttons .button:active,
-.ui.inverted.blue.button:active {
- background-color: #21b8ff;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.blue.basic.buttons .button,
-.ui.inverted.blue.buttons .basic.button,
-.ui.inverted.blue.basic.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- color: #FFFFFF;
-}
-
-.ui.inverted.blue.basic.buttons .button:hover,
-.ui.inverted.blue.buttons .basic.button:hover,
-.ui.inverted.blue.basic.button:hover {
- -webkit-box-shadow: 0 0 0 2px #21b8ff inset;
- box-shadow: 0 0 0 2px #21b8ff inset;
- color: #54C8FF;
-}
-
-.ui.inverted.blue.basic.buttons .button:focus,
-.ui.inverted.blue.basic.buttons .button:focus,
-.ui.inverted.blue.basic.button:focus {
- -webkit-box-shadow: 0 0 0 2px #2bbbff inset;
- box-shadow: 0 0 0 2px #2bbbff inset;
- color: #54C8FF;
-}
-
-.ui.inverted.blue.basic.buttons .active.button,
-.ui.inverted.blue.buttons .basic.active.button,
-.ui.inverted.blue.basic.active.button {
- -webkit-box-shadow: 0 0 0 2px #3ac0ff inset;
- box-shadow: 0 0 0 2px #3ac0ff inset;
- color: #54C8FF;
-}
-
-.ui.inverted.blue.basic.buttons .button:active,
-.ui.inverted.blue.buttons .basic.button:active,
-.ui.inverted.blue.basic.button:active {
- -webkit-box-shadow: 0 0 0 2px #21b8ff inset;
- box-shadow: 0 0 0 2px #21b8ff inset;
- color: #54C8FF;
-}
-
-/* Tertiary */
-
-.ui.tertiary.blue.buttons .button,
-.ui.tertiary.blue.buttons .tertiary.button,
-.ui.tertiary.blue.button {
- background: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #2185D0;
-}
-
-.ui.tertiary.blue.buttons .button:hover,
-.ui.tertiary.blue.buttons button:hover,
-.ui.tertiary.blue.button:hover {
- -webkit-box-shadow: inset 0 -0.2em 0 #2b75ac;
- box-shadow: inset 0 -0.2em 0 #2b75ac;
- color: #2b75ac;
-}
-
-.ui.tertiary.blue.buttons .button:focus,
-.ui.tertiary.blue.buttons .tertiary.button:focus,
-.ui.tertiary.blue.button:focus {
- -webkit-box-shadow: inset 0 -0.2em 0 #216ea7;
- box-shadow: inset 0 -0.2em 0 #216ea7;
- color: #216ea7;
-}
-
-.ui.tertiary.blue.buttons .active.button,
-.ui.tertiary.blue.buttons .tertiary.active.button,
-.ui.tertiary.blue.active.button,
-.ui.tertiary.blue.buttons .button:active,
-.ui.tertiary.blue.buttons .tertiary.button:active,
-.ui.tertiary.blue.button:active {
- -webkit-box-shadow: inset 0 -0.2em 0 #007bd8;
- box-shadow: inset 0 -0.2em 0 #007bd8;
- color: #1279c6;
-}
-
-.ui.violet.buttons .button,
-.ui.violet.button {
- background-color: #6435C9;
- color: #FFFFFF;
- text-shadow: none;
- background-image: none;
-}
-
-.ui.violet.button {
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.violet.buttons .button:hover,
-.ui.violet.button:hover {
- background-color: #5829bb;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.violet.buttons .button:focus,
-.ui.violet.button:focus {
- background-color: #4f20b5;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.violet.buttons .button:active,
-.ui.violet.button:active {
- background-color: #502aa1;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.violet.buttons .active.button,
-.ui.violet.buttons .active.button:active,
-.ui.violet.active.button,
-.ui.violet.button .active.button:active {
- background-color: #5626bf;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-/* Basic */
-
-.ui.basic.violet.buttons .button,
-.ui.basic.violet.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #6435C9 inset;
- box-shadow: 0 0 0 1px #6435C9 inset;
- color: #6435C9;
-}
-
-.ui.basic.violet.buttons .button:hover,
-.ui.basic.violet.button:hover {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #5829bb inset;
- box-shadow: 0 0 0 1px #5829bb inset;
- color: #5829bb;
-}
-
-.ui.basic.violet.buttons .button:focus,
-.ui.basic.violet.button:focus {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #4f20b5 inset;
- box-shadow: 0 0 0 1px #4f20b5 inset;
- color: #5829bb;
-}
-
-.ui.basic.violet.buttons .active.button,
-.ui.basic.violet.active.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #5626bf inset;
- box-shadow: 0 0 0 1px #5626bf inset;
- color: #502aa1;
-}
-
-.ui.basic.violet.buttons .button:active,
-.ui.basic.violet.button:active {
- -webkit-box-shadow: 0 0 0 1px #502aa1 inset;
- box-shadow: 0 0 0 1px #502aa1 inset;
- color: #502aa1;
-}
-
-.ui.buttons:not(.vertical) > .basic.violet.button:not(:first-child) {
- margin-left: -1px;
-}
-
-/* Inverted */
-
-.ui.inverted.violet.buttons .button,
-.ui.inverted.violet.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px #A291FB inset;
- box-shadow: 0 0 0 2px #A291FB inset;
- color: #A291FB;
-}
-
-.ui.inverted.violet.buttons .button:hover,
-.ui.inverted.violet.button:hover,
-.ui.inverted.violet.buttons .button:focus,
-.ui.inverted.violet.button:focus,
-.ui.inverted.violet.buttons .button.active,
-.ui.inverted.violet.button.active,
-.ui.inverted.violet.buttons .button:active,
-.ui.inverted.violet.button:active {
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #FFFFFF;
-}
-
-.ui.inverted.violet.buttons .button:hover,
-.ui.inverted.violet.button:hover {
- background-color: #745aff;
-}
-
-.ui.inverted.violet.buttons .button:focus,
-.ui.inverted.violet.button:focus {
- background-color: #7d64ff;
-}
-
-.ui.inverted.violet.buttons .active.button,
-.ui.inverted.violet.active.button {
- background-color: #8a73ff;
-}
-
-.ui.inverted.violet.buttons .button:active,
-.ui.inverted.violet.button:active {
- background-color: #7860f9;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.violet.basic.buttons .button,
-.ui.inverted.violet.buttons .basic.button,
-.ui.inverted.violet.basic.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- color: #FFFFFF;
-}
-
-.ui.inverted.violet.basic.buttons .button:hover,
-.ui.inverted.violet.buttons .basic.button:hover,
-.ui.inverted.violet.basic.button:hover {
- -webkit-box-shadow: 0 0 0 2px #745aff inset;
- box-shadow: 0 0 0 2px #745aff inset;
- color: #A291FB;
-}
-
-.ui.inverted.violet.basic.buttons .button:focus,
-.ui.inverted.violet.basic.buttons .button:focus,
-.ui.inverted.violet.basic.button:focus {
- -webkit-box-shadow: 0 0 0 2px #7d64ff inset;
- box-shadow: 0 0 0 2px #7d64ff inset;
- color: #A291FB;
-}
-
-.ui.inverted.violet.basic.buttons .active.button,
-.ui.inverted.violet.buttons .basic.active.button,
-.ui.inverted.violet.basic.active.button {
- -webkit-box-shadow: 0 0 0 2px #8a73ff inset;
- box-shadow: 0 0 0 2px #8a73ff inset;
- color: #A291FB;
-}
-
-.ui.inverted.violet.basic.buttons .button:active,
-.ui.inverted.violet.buttons .basic.button:active,
-.ui.inverted.violet.basic.button:active {
- -webkit-box-shadow: 0 0 0 2px #7860f9 inset;
- box-shadow: 0 0 0 2px #7860f9 inset;
- color: #A291FB;
-}
-
-/* Tertiary */
-
-.ui.tertiary.violet.buttons .button,
-.ui.tertiary.violet.buttons .tertiary.button,
-.ui.tertiary.violet.button {
- background: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #6435C9;
-}
-
-.ui.tertiary.violet.buttons .button:hover,
-.ui.tertiary.violet.buttons button:hover,
-.ui.tertiary.violet.button:hover {
- -webkit-box-shadow: inset 0 -0.2em 0 #6040a5;
- box-shadow: inset 0 -0.2em 0 #6040a5;
- color: #6040a5;
-}
-
-.ui.tertiary.violet.buttons .button:focus,
-.ui.tertiary.violet.buttons .tertiary.button:focus,
-.ui.tertiary.violet.button:focus {
- -webkit-box-shadow: inset 0 -0.2em 0 #5735a0;
- box-shadow: inset 0 -0.2em 0 #5735a0;
- color: #5735a0;
-}
-
-.ui.tertiary.violet.buttons .active.button,
-.ui.tertiary.violet.buttons .tertiary.active.button,
-.ui.tertiary.violet.active.button,
-.ui.tertiary.violet.buttons .button:active,
-.ui.tertiary.violet.buttons .tertiary.button:active,
-.ui.tertiary.violet.button:active {
- -webkit-box-shadow: inset 0 -0.2em 0 #4e0fd6;
- box-shadow: inset 0 -0.2em 0 #4e0fd6;
- color: #5626bf;
-}
-
-.ui.purple.buttons .button,
-.ui.purple.button {
- background-color: #A333C8;
- color: #FFFFFF;
- text-shadow: none;
- background-image: none;
-}
-
-.ui.purple.button {
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.purple.buttons .button:hover,
-.ui.purple.button:hover {
- background-color: #9627ba;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.purple.buttons .button:focus,
-.ui.purple.button:focus {
- background-color: #8f1eb4;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.purple.buttons .button:active,
-.ui.purple.button:active {
- background-color: #82299f;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.purple.buttons .active.button,
-.ui.purple.buttons .active.button:active,
-.ui.purple.active.button,
-.ui.purple.button .active.button:active {
- background-color: #9724be;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-/* Basic */
-
-.ui.basic.purple.buttons .button,
-.ui.basic.purple.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #A333C8 inset;
- box-shadow: 0 0 0 1px #A333C8 inset;
- color: #A333C8;
-}
-
-.ui.basic.purple.buttons .button:hover,
-.ui.basic.purple.button:hover {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #9627ba inset;
- box-shadow: 0 0 0 1px #9627ba inset;
- color: #9627ba;
-}
-
-.ui.basic.purple.buttons .button:focus,
-.ui.basic.purple.button:focus {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #8f1eb4 inset;
- box-shadow: 0 0 0 1px #8f1eb4 inset;
- color: #9627ba;
-}
-
-.ui.basic.purple.buttons .active.button,
-.ui.basic.purple.active.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #9724be inset;
- box-shadow: 0 0 0 1px #9724be inset;
- color: #82299f;
-}
-
-.ui.basic.purple.buttons .button:active,
-.ui.basic.purple.button:active {
- -webkit-box-shadow: 0 0 0 1px #82299f inset;
- box-shadow: 0 0 0 1px #82299f inset;
- color: #82299f;
-}
-
-.ui.buttons:not(.vertical) > .basic.purple.button:not(:first-child) {
- margin-left: -1px;
-}
-
-/* Inverted */
-
-.ui.inverted.purple.buttons .button,
-.ui.inverted.purple.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px #DC73FF inset;
- box-shadow: 0 0 0 2px #DC73FF inset;
- color: #DC73FF;
-}
-
-.ui.inverted.purple.buttons .button:hover,
-.ui.inverted.purple.button:hover,
-.ui.inverted.purple.buttons .button:focus,
-.ui.inverted.purple.button:focus,
-.ui.inverted.purple.buttons .button.active,
-.ui.inverted.purple.button.active,
-.ui.inverted.purple.buttons .button:active,
-.ui.inverted.purple.button:active {
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #FFFFFF;
-}
-
-.ui.inverted.purple.buttons .button:hover,
-.ui.inverted.purple.button:hover {
- background-color: #cf40ff;
-}
-
-.ui.inverted.purple.buttons .button:focus,
-.ui.inverted.purple.button:focus {
- background-color: #d24aff;
-}
-
-.ui.inverted.purple.buttons .active.button,
-.ui.inverted.purple.active.button {
- background-color: #d65aff;
-}
-
-.ui.inverted.purple.buttons .button:active,
-.ui.inverted.purple.button:active {
- background-color: #cf40ff;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.purple.basic.buttons .button,
-.ui.inverted.purple.buttons .basic.button,
-.ui.inverted.purple.basic.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- color: #FFFFFF;
-}
-
-.ui.inverted.purple.basic.buttons .button:hover,
-.ui.inverted.purple.buttons .basic.button:hover,
-.ui.inverted.purple.basic.button:hover {
- -webkit-box-shadow: 0 0 0 2px #cf40ff inset;
- box-shadow: 0 0 0 2px #cf40ff inset;
- color: #DC73FF;
-}
-
-.ui.inverted.purple.basic.buttons .button:focus,
-.ui.inverted.purple.basic.buttons .button:focus,
-.ui.inverted.purple.basic.button:focus {
- -webkit-box-shadow: 0 0 0 2px #d24aff inset;
- box-shadow: 0 0 0 2px #d24aff inset;
- color: #DC73FF;
-}
-
-.ui.inverted.purple.basic.buttons .active.button,
-.ui.inverted.purple.buttons .basic.active.button,
-.ui.inverted.purple.basic.active.button {
- -webkit-box-shadow: 0 0 0 2px #d65aff inset;
- box-shadow: 0 0 0 2px #d65aff inset;
- color: #DC73FF;
-}
-
-.ui.inverted.purple.basic.buttons .button:active,
-.ui.inverted.purple.buttons .basic.button:active,
-.ui.inverted.purple.basic.button:active {
- -webkit-box-shadow: 0 0 0 2px #cf40ff inset;
- box-shadow: 0 0 0 2px #cf40ff inset;
- color: #DC73FF;
-}
-
-/* Tertiary */
-
-.ui.tertiary.purple.buttons .button,
-.ui.tertiary.purple.buttons .tertiary.button,
-.ui.tertiary.purple.button {
- background: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #A333C8;
-}
-
-.ui.tertiary.purple.buttons .button:hover,
-.ui.tertiary.purple.buttons button:hover,
-.ui.tertiary.purple.button:hover {
- -webkit-box-shadow: inset 0 -0.2em 0 #8a3ea4;
- box-shadow: inset 0 -0.2em 0 #8a3ea4;
- color: #8a3ea4;
-}
-
-.ui.tertiary.purple.buttons .button:focus,
-.ui.tertiary.purple.buttons .tertiary.button:focus,
-.ui.tertiary.purple.button:focus {
- -webkit-box-shadow: inset 0 -0.2em 0 #84339f;
- box-shadow: inset 0 -0.2em 0 #84339f;
- color: #84339f;
-}
-
-.ui.tertiary.purple.buttons .active.button,
-.ui.tertiary.purple.buttons .tertiary.active.button,
-.ui.tertiary.purple.active.button,
-.ui.tertiary.purple.buttons .button:active,
-.ui.tertiary.purple.buttons .tertiary.button:active,
-.ui.tertiary.purple.button:active {
- -webkit-box-shadow: inset 0 -0.2em 0 #a30dd4;
- box-shadow: inset 0 -0.2em 0 #a30dd4;
- color: #9724be;
-}
-
-.ui.pink.buttons .button,
-.ui.pink.button {
- background-color: #E03997;
- color: #FFFFFF;
- text-shadow: none;
- background-image: none;
-}
-
-.ui.pink.button {
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.pink.buttons .button:hover,
-.ui.pink.button:hover {
- background-color: #e61a8d;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.pink.buttons .button:focus,
-.ui.pink.button:focus {
- background-color: #e10f85;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.pink.buttons .button:active,
-.ui.pink.button:active {
- background-color: #c71f7e;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.pink.buttons .active.button,
-.ui.pink.buttons .active.button:active,
-.ui.pink.active.button,
-.ui.pink.button .active.button:active {
- background-color: #ea158d;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-/* Basic */
-
-.ui.basic.pink.buttons .button,
-.ui.basic.pink.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #E03997 inset;
- box-shadow: 0 0 0 1px #E03997 inset;
- color: #E03997;
-}
-
-.ui.basic.pink.buttons .button:hover,
-.ui.basic.pink.button:hover {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #e61a8d inset;
- box-shadow: 0 0 0 1px #e61a8d inset;
- color: #e61a8d;
-}
-
-.ui.basic.pink.buttons .button:focus,
-.ui.basic.pink.button:focus {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #e10f85 inset;
- box-shadow: 0 0 0 1px #e10f85 inset;
- color: #e61a8d;
-}
-
-.ui.basic.pink.buttons .active.button,
-.ui.basic.pink.active.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #ea158d inset;
- box-shadow: 0 0 0 1px #ea158d inset;
- color: #c71f7e;
-}
-
-.ui.basic.pink.buttons .button:active,
-.ui.basic.pink.button:active {
- -webkit-box-shadow: 0 0 0 1px #c71f7e inset;
- box-shadow: 0 0 0 1px #c71f7e inset;
- color: #c71f7e;
-}
-
-.ui.buttons:not(.vertical) > .basic.pink.button:not(:first-child) {
- margin-left: -1px;
-}
-
-/* Inverted */
-
-.ui.inverted.pink.buttons .button,
-.ui.inverted.pink.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px #FF8EDF inset;
- box-shadow: 0 0 0 2px #FF8EDF inset;
- color: #FF8EDF;
-}
-
-.ui.inverted.pink.buttons .button:hover,
-.ui.inverted.pink.button:hover,
-.ui.inverted.pink.buttons .button:focus,
-.ui.inverted.pink.button:focus,
-.ui.inverted.pink.buttons .button.active,
-.ui.inverted.pink.button.active,
-.ui.inverted.pink.buttons .button:active,
-.ui.inverted.pink.button:active {
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #FFFFFF;
-}
-
-.ui.inverted.pink.buttons .button:hover,
-.ui.inverted.pink.button:hover {
- background-color: #ff5bd1;
-}
-
-.ui.inverted.pink.buttons .button:focus,
-.ui.inverted.pink.button:focus {
- background-color: #ff65d3;
-}
-
-.ui.inverted.pink.buttons .active.button,
-.ui.inverted.pink.active.button {
- background-color: #ff74d8;
-}
-
-.ui.inverted.pink.buttons .button:active,
-.ui.inverted.pink.button:active {
- background-color: #ff5bd1;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.pink.basic.buttons .button,
-.ui.inverted.pink.buttons .basic.button,
-.ui.inverted.pink.basic.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- color: #FFFFFF;
-}
-
-.ui.inverted.pink.basic.buttons .button:hover,
-.ui.inverted.pink.buttons .basic.button:hover,
-.ui.inverted.pink.basic.button:hover {
- -webkit-box-shadow: 0 0 0 2px #ff5bd1 inset;
- box-shadow: 0 0 0 2px #ff5bd1 inset;
- color: #FF8EDF;
-}
-
-.ui.inverted.pink.basic.buttons .button:focus,
-.ui.inverted.pink.basic.buttons .button:focus,
-.ui.inverted.pink.basic.button:focus {
- -webkit-box-shadow: 0 0 0 2px #ff65d3 inset;
- box-shadow: 0 0 0 2px #ff65d3 inset;
- color: #FF8EDF;
-}
-
-.ui.inverted.pink.basic.buttons .active.button,
-.ui.inverted.pink.buttons .basic.active.button,
-.ui.inverted.pink.basic.active.button {
- -webkit-box-shadow: 0 0 0 2px #ff74d8 inset;
- box-shadow: 0 0 0 2px #ff74d8 inset;
- color: #FF8EDF;
-}
-
-.ui.inverted.pink.basic.buttons .button:active,
-.ui.inverted.pink.buttons .basic.button:active,
-.ui.inverted.pink.basic.button:active {
- -webkit-box-shadow: 0 0 0 2px #ff5bd1 inset;
- box-shadow: 0 0 0 2px #ff5bd1 inset;
- color: #FF8EDF;
-}
-
-/* Tertiary */
-
-.ui.tertiary.pink.buttons .button,
-.ui.tertiary.pink.buttons .tertiary.button,
-.ui.tertiary.pink.button {
- background: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #E03997;
-}
-
-.ui.tertiary.pink.buttons .button:hover,
-.ui.tertiary.pink.buttons button:hover,
-.ui.tertiary.pink.button:hover {
- -webkit-box-shadow: inset 0 -0.2em 0 #cc3389;
- box-shadow: inset 0 -0.2em 0 #cc3389;
- color: #cc3389;
-}
-
-.ui.tertiary.pink.buttons .button:focus,
-.ui.tertiary.pink.buttons .tertiary.button:focus,
-.ui.tertiary.pink.button:focus {
- -webkit-box-shadow: inset 0 -0.2em 0 #c92782;
- box-shadow: inset 0 -0.2em 0 #c92782;
- color: #c92782;
-}
-
-.ui.tertiary.pink.buttons .active.button,
-.ui.tertiary.pink.buttons .tertiary.active.button,
-.ui.tertiary.pink.active.button,
-.ui.tertiary.pink.buttons .button:active,
-.ui.tertiary.pink.buttons .tertiary.button:active,
-.ui.tertiary.pink.button:active {
- -webkit-box-shadow: inset 0 -0.2em 0 #ff0090;
- box-shadow: inset 0 -0.2em 0 #ff0090;
- color: #ea158d;
-}
-
-.ui.brown.buttons .button,
-.ui.brown.button {
- background-color: #A5673F;
- color: #FFFFFF;
- text-shadow: none;
- background-image: none;
-}
-
-.ui.brown.button {
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.brown.buttons .button:hover,
-.ui.brown.button:hover {
- background-color: #975b33;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.brown.buttons .button:focus,
-.ui.brown.button:focus {
- background-color: #90532b;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.brown.buttons .button:active,
-.ui.brown.button:active {
- background-color: #805031;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.brown.buttons .active.button,
-.ui.brown.buttons .active.button:active,
-.ui.brown.active.button,
-.ui.brown.button .active.button:active {
- background-color: #995a31;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-/* Basic */
-
-.ui.basic.brown.buttons .button,
-.ui.basic.brown.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #A5673F inset;
- box-shadow: 0 0 0 1px #A5673F inset;
- color: #A5673F;
-}
-
-.ui.basic.brown.buttons .button:hover,
-.ui.basic.brown.button:hover {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #975b33 inset;
- box-shadow: 0 0 0 1px #975b33 inset;
- color: #975b33;
-}
-
-.ui.basic.brown.buttons .button:focus,
-.ui.basic.brown.button:focus {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #90532b inset;
- box-shadow: 0 0 0 1px #90532b inset;
- color: #975b33;
-}
-
-.ui.basic.brown.buttons .active.button,
-.ui.basic.brown.active.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #995a31 inset;
- box-shadow: 0 0 0 1px #995a31 inset;
- color: #805031;
-}
-
-.ui.basic.brown.buttons .button:active,
-.ui.basic.brown.button:active {
- -webkit-box-shadow: 0 0 0 1px #805031 inset;
- box-shadow: 0 0 0 1px #805031 inset;
- color: #805031;
-}
-
-.ui.buttons:not(.vertical) > .basic.brown.button:not(:first-child) {
- margin-left: -1px;
-}
-
-/* Inverted */
-
-.ui.inverted.brown.buttons .button,
-.ui.inverted.brown.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px #D67C1C inset;
- box-shadow: 0 0 0 2px #D67C1C inset;
- color: #D67C1C;
-}
-
-.ui.inverted.brown.buttons .button:hover,
-.ui.inverted.brown.button:hover,
-.ui.inverted.brown.buttons .button:focus,
-.ui.inverted.brown.button:focus,
-.ui.inverted.brown.buttons .button.active,
-.ui.inverted.brown.button.active,
-.ui.inverted.brown.buttons .button:active,
-.ui.inverted.brown.button:active {
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #FFFFFF;
-}
-
-.ui.inverted.brown.buttons .button:hover,
-.ui.inverted.brown.button:hover {
- background-color: #b0620f;
-}
-
-.ui.inverted.brown.buttons .button:focus,
-.ui.inverted.brown.button:focus {
- background-color: #c16808;
-}
-
-.ui.inverted.brown.buttons .active.button,
-.ui.inverted.brown.active.button {
- background-color: #cc6f0d;
-}
-
-.ui.inverted.brown.buttons .button:active,
-.ui.inverted.brown.button:active {
- background-color: #a96216;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.brown.basic.buttons .button,
-.ui.inverted.brown.buttons .basic.button,
-.ui.inverted.brown.basic.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- color: #FFFFFF;
-}
-
-.ui.inverted.brown.basic.buttons .button:hover,
-.ui.inverted.brown.buttons .basic.button:hover,
-.ui.inverted.brown.basic.button:hover {
- -webkit-box-shadow: 0 0 0 2px #b0620f inset;
- box-shadow: 0 0 0 2px #b0620f inset;
- color: #D67C1C;
-}
-
-.ui.inverted.brown.basic.buttons .button:focus,
-.ui.inverted.brown.basic.buttons .button:focus,
-.ui.inverted.brown.basic.button:focus {
- -webkit-box-shadow: 0 0 0 2px #c16808 inset;
- box-shadow: 0 0 0 2px #c16808 inset;
- color: #D67C1C;
-}
-
-.ui.inverted.brown.basic.buttons .active.button,
-.ui.inverted.brown.buttons .basic.active.button,
-.ui.inverted.brown.basic.active.button {
- -webkit-box-shadow: 0 0 0 2px #cc6f0d inset;
- box-shadow: 0 0 0 2px #cc6f0d inset;
- color: #D67C1C;
-}
-
-.ui.inverted.brown.basic.buttons .button:active,
-.ui.inverted.brown.buttons .basic.button:active,
-.ui.inverted.brown.basic.button:active {
- -webkit-box-shadow: 0 0 0 2px #a96216 inset;
- box-shadow: 0 0 0 2px #a96216 inset;
- color: #D67C1C;
-}
-
-/* Tertiary */
-
-.ui.tertiary.brown.buttons .button,
-.ui.tertiary.brown.buttons .tertiary.button,
-.ui.tertiary.brown.button {
- background: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #A5673F;
-}
-
-.ui.tertiary.brown.buttons .button:hover,
-.ui.tertiary.brown.buttons button:hover,
-.ui.tertiary.brown.button:hover {
- -webkit-box-shadow: inset 0 -0.2em 0 #835f48;
- box-shadow: inset 0 -0.2em 0 #835f48;
- color: #835f48;
-}
-
-.ui.tertiary.brown.buttons .button:focus,
-.ui.tertiary.brown.buttons .tertiary.button:focus,
-.ui.tertiary.brown.button:focus {
- -webkit-box-shadow: inset 0 -0.2em 0 #7d573e;
- box-shadow: inset 0 -0.2em 0 #7d573e;
- color: #7d573e;
-}
-
-.ui.tertiary.brown.buttons .active.button,
-.ui.tertiary.brown.buttons .tertiary.active.button,
-.ui.tertiary.brown.active.button,
-.ui.tertiary.brown.buttons .button:active,
-.ui.tertiary.brown.buttons .tertiary.button:active,
-.ui.tertiary.brown.button:active {
- -webkit-box-shadow: inset 0 -0.2em 0 #ae561d;
- box-shadow: inset 0 -0.2em 0 #ae561d;
- color: #995a31;
-}
-
-.ui.grey.buttons .button,
-.ui.grey.button {
- background-color: #767676;
- color: #FFFFFF;
- text-shadow: none;
- background-image: none;
-}
-
-.ui.grey.button {
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.grey.buttons .button:hover,
-.ui.grey.button:hover {
- background-color: #838383;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.grey.buttons .button:focus,
-.ui.grey.button:focus {
- background-color: #8a8a8a;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.grey.buttons .button:active,
-.ui.grey.button:active {
- background-color: #909090;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.grey.buttons .active.button,
-.ui.grey.buttons .active.button:active,
-.ui.grey.active.button,
-.ui.grey.button .active.button:active {
- background-color: #696969;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-/* Basic */
-
-.ui.basic.grey.buttons .button,
-.ui.basic.grey.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #767676 inset;
- box-shadow: 0 0 0 1px #767676 inset;
- color: #767676;
-}
-
-.ui.basic.grey.buttons .button:hover,
-.ui.basic.grey.button:hover {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #838383 inset;
- box-shadow: 0 0 0 1px #838383 inset;
- color: #838383;
-}
-
-.ui.basic.grey.buttons .button:focus,
-.ui.basic.grey.button:focus {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #8a8a8a inset;
- box-shadow: 0 0 0 1px #8a8a8a inset;
- color: #838383;
-}
-
-.ui.basic.grey.buttons .active.button,
-.ui.basic.grey.active.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #696969 inset;
- box-shadow: 0 0 0 1px #696969 inset;
- color: #909090;
-}
-
-.ui.basic.grey.buttons .button:active,
-.ui.basic.grey.button:active {
- -webkit-box-shadow: 0 0 0 1px #909090 inset;
- box-shadow: 0 0 0 1px #909090 inset;
- color: #909090;
-}
-
-.ui.buttons:not(.vertical) > .basic.grey.button:not(:first-child) {
- margin-left: -1px;
-}
-
-/* Inverted */
-
-.ui.inverted.grey.buttons .button,
-.ui.inverted.grey.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px #D4D4D5 inset;
- box-shadow: 0 0 0 2px #D4D4D5 inset;
- color: #FFFFFF;
-}
-
-.ui.inverted.grey.buttons .button:hover,
-.ui.inverted.grey.button:hover,
-.ui.inverted.grey.buttons .button:focus,
-.ui.inverted.grey.button:focus,
-.ui.inverted.grey.buttons .button.active,
-.ui.inverted.grey.button.active,
-.ui.inverted.grey.buttons .button:active,
-.ui.inverted.grey.button:active {
- -webkit-box-shadow: none;
- box-shadow: none;
- color: rgba(0, 0, 0, 0.6);
-}
-
-.ui.inverted.grey.buttons .button:hover,
-.ui.inverted.grey.button:hover {
- background-color: #c2c4c5;
-}
-
-.ui.inverted.grey.buttons .button:focus,
-.ui.inverted.grey.button:focus {
- background-color: #c7c9cb;
-}
-
-.ui.inverted.grey.buttons .active.button,
-.ui.inverted.grey.active.button {
- background-color: #cfd0d2;
-}
-
-.ui.inverted.grey.buttons .button:active,
-.ui.inverted.grey.button:active {
- background-color: #c2c4c5;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.grey.basic.buttons .button,
-.ui.inverted.grey.buttons .basic.button,
-.ui.inverted.grey.basic.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- color: #FFFFFF;
-}
-
-.ui.inverted.grey.basic.buttons .button:hover,
-.ui.inverted.grey.buttons .basic.button:hover,
-.ui.inverted.grey.basic.button:hover {
- -webkit-box-shadow: 0 0 0 2px #c2c4c5 inset;
- box-shadow: 0 0 0 2px #c2c4c5 inset;
- color: #FFFFFF;
-}
-
-.ui.inverted.grey.basic.buttons .button:focus,
-.ui.inverted.grey.basic.buttons .button:focus,
-.ui.inverted.grey.basic.button:focus {
- -webkit-box-shadow: 0 0 0 2px #c7c9cb inset;
- box-shadow: 0 0 0 2px #c7c9cb inset;
- color: #DCDDDE;
-}
-
-.ui.inverted.grey.basic.buttons .active.button,
-.ui.inverted.grey.buttons .basic.active.button,
-.ui.inverted.grey.basic.active.button {
- -webkit-box-shadow: 0 0 0 2px #cfd0d2 inset;
- box-shadow: 0 0 0 2px #cfd0d2 inset;
- color: #FFFFFF;
-}
-
-.ui.inverted.grey.basic.buttons .button:active,
-.ui.inverted.grey.buttons .basic.button:active,
-.ui.inverted.grey.basic.button:active {
- -webkit-box-shadow: 0 0 0 2px #c2c4c5 inset;
- box-shadow: 0 0 0 2px #c2c4c5 inset;
- color: #FFFFFF;
-}
-
-/* Tertiary */
-
-.ui.tertiary.grey.buttons .button,
-.ui.tertiary.grey.buttons .tertiary.button,
-.ui.tertiary.grey.button {
- background: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #767676;
-}
-
-.ui.tertiary.grey.buttons .button:hover,
-.ui.tertiary.grey.buttons button:hover,
-.ui.tertiary.grey.button:hover {
- -webkit-box-shadow: inset 0 -0.2em 0 #838383;
- box-shadow: inset 0 -0.2em 0 #838383;
- color: #838383;
-}
-
-.ui.tertiary.grey.buttons .button:focus,
-.ui.tertiary.grey.buttons .tertiary.button:focus,
-.ui.tertiary.grey.button:focus {
- -webkit-box-shadow: inset 0 -0.2em 0 #8a8a8a;
- box-shadow: inset 0 -0.2em 0 #8a8a8a;
- color: #8a8a8a;
-}
-
-.ui.tertiary.grey.buttons .active.button,
-.ui.tertiary.grey.buttons .tertiary.active.button,
-.ui.tertiary.grey.active.button,
-.ui.tertiary.grey.buttons .button:active,
-.ui.tertiary.grey.buttons .tertiary.button:active,
-.ui.tertiary.grey.button:active {
- -webkit-box-shadow: inset 0 -0.2em 0 #7e5454;
- box-shadow: inset 0 -0.2em 0 #7e5454;
- color: #696969;
-}
-
-.ui.black.buttons .button,
-.ui.black.button {
- background-color: #1B1C1D;
- color: #FFFFFF;
- text-shadow: none;
- background-image: none;
-}
-
-.ui.black.button {
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.black.buttons .button:hover,
-.ui.black.button:hover {
- background-color: #27292a;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.black.buttons .button:focus,
-.ui.black.button:focus {
- background-color: #2f3032;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.black.buttons .button:active,
-.ui.black.button:active {
- background-color: #343637;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.black.buttons .active.button,
-.ui.black.buttons .active.button:active,
-.ui.black.active.button,
-.ui.black.button .active.button:active {
- background-color: #0f0f10;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-/* Basic */
-
-.ui.basic.black.buttons .button,
-.ui.basic.black.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #1B1C1D inset;
- box-shadow: 0 0 0 1px #1B1C1D inset;
- color: #1B1C1D;
-}
-
-.ui.basic.black.buttons .button:hover,
-.ui.basic.black.button:hover {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #27292a inset;
- box-shadow: 0 0 0 1px #27292a inset;
- color: #27292a;
-}
-
-.ui.basic.black.buttons .button:focus,
-.ui.basic.black.button:focus {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #2f3032 inset;
- box-shadow: 0 0 0 1px #2f3032 inset;
- color: #27292a;
-}
-
-.ui.basic.black.buttons .active.button,
-.ui.basic.black.active.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #0f0f10 inset;
- box-shadow: 0 0 0 1px #0f0f10 inset;
- color: #343637;
-}
-
-.ui.basic.black.buttons .button:active,
-.ui.basic.black.button:active {
- -webkit-box-shadow: 0 0 0 1px #343637 inset;
- box-shadow: 0 0 0 1px #343637 inset;
- color: #343637;
-}
-
-.ui.buttons:not(.vertical) > .basic.black.button:not(:first-child) {
- margin-left: -1px;
-}
-
-/* Inverted */
-
-.ui.inverted.black.buttons .button,
-.ui.inverted.black.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px #D4D4D5 inset;
- box-shadow: 0 0 0 2px #D4D4D5 inset;
- color: #FFFFFF;
-}
-
-.ui.inverted.black.buttons .button:hover,
-.ui.inverted.black.button:hover,
-.ui.inverted.black.buttons .button:focus,
-.ui.inverted.black.button:focus,
-.ui.inverted.black.buttons .button.active,
-.ui.inverted.black.button.active,
-.ui.inverted.black.buttons .button:active,
-.ui.inverted.black.button:active {
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #FFFFFF;
-}
-
-.ui.inverted.black.buttons .button:hover,
-.ui.inverted.black.button:hover {
- background-color: #000000;
-}
-
-.ui.inverted.black.buttons .button:focus,
-.ui.inverted.black.button:focus {
- background-color: #000000;
-}
-
-.ui.inverted.black.buttons .active.button,
-.ui.inverted.black.active.button {
- background-color: #000000;
-}
-
-.ui.inverted.black.buttons .button:active,
-.ui.inverted.black.button:active {
- background-color: #000000;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.black.basic.buttons .button,
-.ui.inverted.black.buttons .basic.button,
-.ui.inverted.black.basic.button {
- background-color: transparent;
- -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
- color: #FFFFFF;
-}
-
-.ui.inverted.black.basic.buttons .button:hover,
-.ui.inverted.black.buttons .basic.button:hover,
-.ui.inverted.black.basic.button:hover {
- -webkit-box-shadow: 0 0 0 2px #000000 inset;
- box-shadow: 0 0 0 2px #000000 inset;
- color: #FFFFFF;
-}
-
-.ui.inverted.black.basic.buttons .button:focus,
-.ui.inverted.black.basic.buttons .button:focus,
-.ui.inverted.black.basic.button:focus {
- -webkit-box-shadow: 0 0 0 2px #000000 inset;
- box-shadow: 0 0 0 2px #000000 inset;
- color: #545454;
-}
-
-.ui.inverted.black.basic.buttons .active.button,
-.ui.inverted.black.buttons .basic.active.button,
-.ui.inverted.black.basic.active.button {
- -webkit-box-shadow: 0 0 0 2px #000000 inset;
- box-shadow: 0 0 0 2px #000000 inset;
- color: #FFFFFF;
-}
-
-.ui.inverted.black.basic.buttons .button:active,
-.ui.inverted.black.buttons .basic.button:active,
-.ui.inverted.black.basic.button:active {
- -webkit-box-shadow: 0 0 0 2px #000000 inset;
- box-shadow: 0 0 0 2px #000000 inset;
- color: #FFFFFF;
-}
-
-/* Tertiary */
-
-.ui.tertiary.black.buttons .button,
-.ui.tertiary.black.buttons .tertiary.button,
-.ui.tertiary.black.button {
- background: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
- color: #1B1C1D;
-}
-
-.ui.tertiary.black.buttons .button:hover,
-.ui.tertiary.black.buttons button:hover,
-.ui.tertiary.black.button:hover {
- -webkit-box-shadow: inset 0 -0.2em 0 #8b8f93;
- box-shadow: inset 0 -0.2em 0 #8b8f93;
- color: #8b8f93;
-}
-
-.ui.tertiary.black.buttons .button:focus,
-.ui.tertiary.black.buttons .tertiary.button:focus,
-.ui.tertiary.black.button:focus {
- -webkit-box-shadow: inset 0 -0.2em 0 #93969a;
- box-shadow: inset 0 -0.2em 0 #93969a;
- color: #93969a;
-}
-
-.ui.tertiary.black.buttons .active.button,
-.ui.tertiary.black.buttons .tertiary.active.button,
-.ui.tertiary.black.active.button,
-.ui.tertiary.black.buttons .button:active,
-.ui.tertiary.black.buttons .tertiary.button:active,
-.ui.tertiary.black.button:active {
- -webkit-box-shadow: inset 0 -0.2em 0 #404245;
- box-shadow: inset 0 -0.2em 0 #404245;
- color: #0f0f10;
-}
-
-/*---------------
- Positive
-----------------*/
-
-/* Standard */
-
-.ui.positive.buttons .button,
-.ui.positive.button {
- background-color: #21BA45;
- color: #FFFFFF;
- text-shadow: none;
- background-image: none;
-}
-
-.ui.positive.button {
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.positive.buttons .button:hover,
-.ui.positive.button:hover {
- background-color: #16ab39;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.positive.buttons .button:focus,
-.ui.positive.button:focus {
- background-color: #0ea432;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.positive.buttons .button:active,
-.ui.positive.button:active {
- background-color: #198f35;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.positive.buttons .active.button,
-.ui.positive.buttons .active.button:active,
-.ui.positive.active.button,
-.ui.positive.button .active.button:active {
- background-color: #13ae38;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-/* Basic */
-
-.ui.basic.positive.buttons .button,
-.ui.basic.positive.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #21BA45 inset;
- box-shadow: 0 0 0 1px #21BA45 inset;
- color: #21BA45;
-}
-
-.ui.basic.positive.buttons .button:hover,
-.ui.basic.positive.button:hover {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #16ab39 inset;
- box-shadow: 0 0 0 1px #16ab39 inset;
- color: #16ab39;
-}
-
-.ui.basic.positive.buttons .button:focus,
-.ui.basic.positive.button:focus {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #0ea432 inset;
- box-shadow: 0 0 0 1px #0ea432 inset;
- color: #16ab39;
-}
-
-.ui.basic.positive.buttons .active.button,
-.ui.basic.positive.active.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #13ae38 inset;
- box-shadow: 0 0 0 1px #13ae38 inset;
- color: #198f35;
-}
-
-.ui.basic.positive.buttons .button:active,
-.ui.basic.positive.button:active {
- -webkit-box-shadow: 0 0 0 1px #198f35 inset;
- box-shadow: 0 0 0 1px #198f35 inset;
- color: #198f35;
-}
-
-.ui.buttons:not(.vertical) > .basic.positive.button:not(:first-child) {
- margin-left: -1px;
-}
-
-/*---------------
- Negative
-----------------*/
-
-/* Standard */
-
-.ui.negative.buttons .button,
-.ui.negative.button {
- background-color: #DB2828;
- color: #FFFFFF;
- text-shadow: none;
- background-image: none;
-}
-
-.ui.negative.button {
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.negative.buttons .button:hover,
-.ui.negative.button:hover {
- background-color: #d01919;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.negative.buttons .button:focus,
-.ui.negative.button:focus {
- background-color: #ca1010;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.negative.buttons .button:active,
-.ui.negative.button:active {
- background-color: #b21e1e;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-.ui.negative.buttons .active.button,
-.ui.negative.buttons .active.button:active,
-.ui.negative.active.button,
-.ui.negative.button .active.button:active {
- background-color: #d41515;
- color: #FFFFFF;
- text-shadow: none;
-}
-
-/* Basic */
-
-.ui.basic.negative.buttons .button,
-.ui.basic.negative.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #DB2828 inset;
- box-shadow: 0 0 0 1px #DB2828 inset;
- color: #DB2828;
-}
-
-.ui.basic.negative.buttons .button:hover,
-.ui.basic.negative.button:hover {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #d01919 inset;
- box-shadow: 0 0 0 1px #d01919 inset;
- color: #d01919;
-}
-
-.ui.basic.negative.buttons .button:focus,
-.ui.basic.negative.button:focus {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #ca1010 inset;
- box-shadow: 0 0 0 1px #ca1010 inset;
- color: #d01919;
-}
-
-.ui.basic.negative.buttons .active.button,
-.ui.basic.negative.active.button {
- background: transparent;
- -webkit-box-shadow: 0 0 0 1px #d41515 inset;
- box-shadow: 0 0 0 1px #d41515 inset;
- color: #b21e1e;
-}
-
-.ui.basic.negative.buttons .button:active,
-.ui.basic.negative.button:active {
- -webkit-box-shadow: 0 0 0 1px #b21e1e inset;
- box-shadow: 0 0 0 1px #b21e1e inset;
- color: #b21e1e;
-}
-
-.ui.buttons:not(.vertical) > .basic.negative.button:not(:first-child) {
- margin-left: -1px;
-}
-
-/*******************************
- Groups
- *******************************/
-
-.ui.buttons {
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -ms-flex-direction: row;
- flex-direction: row;
- font-size: 0;
- vertical-align: baseline;
- margin: 0 0.25em 0 0;
-}
-
-.ui.buttons:not(.basic):not(.inverted) {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/* Clearfix */
-
-.ui.buttons:after {
- content: ".";
- display: block;
- height: 0;
- clear: both;
- visibility: hidden;
-}
-
-/* Standard Group */
-
-.ui.buttons .button {
- -webkit-box-flex: 1;
- -ms-flex: 1 0 auto;
- flex: 1 0 auto;
- border-radius: 0;
- margin: 0 0 0 0;
-}
-
-.ui.buttons:not(.basic):not(.inverted) > .button:not(.basic):not(.inverted) {
- -webkit-box-shadow: 0 0 0 1px transparent inset, 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 1px transparent inset, 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
-}
-
-.ui.buttons .button:first-child {
- border-left: none;
- margin-left: 0;
- border-top-left-radius: 0.28571429rem;
- border-bottom-left-radius: 0.28571429rem;
-}
-
-.ui.buttons .button:last-child {
- border-top-right-radius: 0.28571429rem;
- border-bottom-right-radius: 0.28571429rem;
-}
-
-/* Vertical Style */
-
-.ui.vertical.buttons {
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
-}
-
-.ui.vertical.buttons .button {
- display: block;
- float: none;
- width: 100%;
- margin: 0 0 0 0;
- -webkit-box-shadow: none;
- box-shadow: none;
- border-radius: 0;
-}
-
-.ui.vertical.buttons .button:first-child {
- border-top-left-radius: 0.28571429rem;
- border-top-right-radius: 0.28571429rem;
-}
-
-.ui.vertical.buttons .button:last-child {
- margin-bottom: 0;
- border-bottom-left-radius: 0.28571429rem;
- border-bottom-right-radius: 0.28571429rem;
-}
-
-.ui.vertical.buttons .button:only-child {
- border-radius: 0.28571429rem;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Container
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Container
-*******************************/
-
-/* All Sizes */
-
-.ui.container {
- display: block;
- max-width: 100%;
-}
-
-/* Mobile */
-
-@media only screen and (max-width: 767.98px) {
- .ui.ui.ui.container:not(.fluid) {
- width: auto;
- margin-left: 1em;
- margin-right: 1em;
- }
-
- .ui.ui.ui.grid.container {
- width: auto;
- }
-
- .ui.ui.ui.relaxed.grid.container {
- width: auto;
- }
-
- .ui.ui.ui.very.relaxed.grid.container {
- width: auto;
- }
-}
-
-/* Tablet */
-
-@media only screen and (min-width: 768px) and (max-width: 991.98px) {
- .ui.ui.ui.container:not(.fluid) {
- width: 723px;
- margin-left: auto;
- margin-right: auto;
- }
-
- .ui.ui.ui.grid.container {
- width: calc(723px + 2rem);
- }
-
- .ui.ui.ui.relaxed.grid.container {
- width: calc(723px + 3rem);
- }
-
- .ui.ui.ui.very.relaxed.grid.container {
- width: calc(723px + 5rem);
- }
-}
-
-/* Small Monitor */
-
-@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
- .ui.ui.ui.container:not(.fluid) {
- width: 933px;
- margin-left: auto;
- margin-right: auto;
- }
-
- .ui.ui.ui.grid.container {
- width: calc(933px + 2rem);
- }
-
- .ui.ui.ui.relaxed.grid.container {
- width: calc(933px + 3rem);
- }
-
- .ui.ui.ui.very.relaxed.grid.container {
- width: calc(933px + 5rem);
- }
-}
-
-/* Large Monitor */
-
-@media only screen and (min-width: 1200px) {
- .ui.ui.ui.container:not(.fluid) {
- width: 1127px;
- margin-left: auto;
- margin-right: auto;
- }
-
- .ui.ui.ui.grid.container {
- width: calc(1127px + 2rem);
- }
-
- .ui.ui.ui.relaxed.grid.container {
- width: calc(1127px + 3rem);
- }
-
- .ui.ui.ui.very.relaxed.grid.container {
- width: calc(1127px + 5rem);
- }
-}
-
-/*******************************
- Types
-*******************************/
-
-/* Text Container */
-
-.ui.text.container {
- font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
- max-width: 700px;
- line-height: 1.5;
- font-size: 1.14285714rem;
-}
-
-/* Fluid */
-
-.ui.fluid.container {
- width: 100%;
-}
-
-/*******************************
- Variations
-*******************************/
-
-.ui[class*="left aligned"].container {
- text-align: left;
-}
-
-.ui[class*="center aligned"].container {
- text-align: center;
-}
-
-.ui[class*="right aligned"].container {
- text-align: right;
-}
-
-.ui.justified.container {
- text-align: justify;
- -webkit-hyphens: auto;
- -ms-hyphens: auto;
- hyphens: auto;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Divider
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Divider
-*******************************/
-
-.ui.divider {
- margin: 1rem 0;
- line-height: 1;
- height: 0;
- font-weight: bold;
- text-transform: uppercase;
- letter-spacing: 0.05em;
- color: rgba(0, 0, 0, 0.85);
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-}
-
-/*--------------
- Basic
----------------*/
-
-.ui.divider:not(.vertical):not(.horizontal) {
- border-top: 1px solid rgba(34, 36, 38, 0.15);
- border-bottom: 1px solid rgba(255, 255, 255, 0.1);
-}
-
-/*--------------
- Coupling
----------------*/
-
-/* Allow divider between each column row */
-
-.ui.grid > .column + .divider,
-.ui.grid > .row > .column + .divider {
- left: auto;
-}
-
-/*--------------
- Horizontal
- ---------------*/
-
-.ui.horizontal.divider {
- display: table;
- white-space: nowrap;
- height: auto;
- margin: '';
- line-height: 1;
- text-align: center;
-}
-
-.ui.horizontal.divider:before,
-.ui.horizontal.divider:after {
- content: '';
- display: table-cell;
- position: relative;
- top: 50%;
- width: 50%;
- background-repeat: no-repeat;
-}
-
-.ui.horizontal.divider:before {
- background-position: right 1em top 50%;
-}
-
-.ui.horizontal.divider:after {
- background-position: left 1em top 50%;
-}
-
-/*--------------
- Vertical
- ---------------*/
-
-.ui.vertical.divider {
- position: absolute;
- z-index: 2;
- top: 50%;
- left: 50%;
- margin: 0;
- padding: 0;
- width: auto;
- height: 50%;
- line-height: 0;
- text-align: center;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
-}
-
-.ui.vertical.divider:before,
-.ui.vertical.divider:after {
- position: absolute;
- left: 50%;
- content: '';
- z-index: 3;
- border-left: 1px solid rgba(34, 36, 38, 0.15);
- border-right: 1px solid rgba(255, 255, 255, 0.1);
- width: 0;
- height: calc(100% - 1rem);
-}
-
-.ui.vertical.divider:before {
- top: -100%;
-}
-
-.ui.vertical.divider:after {
- top: auto;
- bottom: 0;
-}
-
-/* Inside grid */
-
-@media only screen and (max-width: 767.98px) {
- .ui.stackable.grid .ui.vertical.divider,
- .ui.grid .stackable.row .ui.vertical.divider {
- display: table;
- white-space: nowrap;
- height: auto;
- margin: '';
- overflow: hidden;
- line-height: 1;
- text-align: center;
- position: static;
- top: 0;
- left: 0;
- -webkit-transform: none;
- transform: none;
- }
-
- .ui.stackable.grid .ui.vertical.divider:before,
- .ui.grid .stackable.row .ui.vertical.divider:before,
- .ui.stackable.grid .ui.vertical.divider:after,
- .ui.grid .stackable.row .ui.vertical.divider:after {
- left: 0;
- border-left: none;
- border-right: none;
- content: '';
- display: table-cell;
- position: relative;
- top: 50%;
- width: 50%;
- background-repeat: no-repeat;
- }
-
- .ui.stackable.grid .ui.vertical.divider:before,
- .ui.grid .stackable.row .ui.vertical.divider:before {
- background-position: right 1em top 50%;
- }
-
- .ui.stackable.grid .ui.vertical.divider:after,
- .ui.grid .stackable.row .ui.vertical.divider:after {
- background-position: left 1em top 50%;
- }
-}
-
-/*--------------
- Icon
- ---------------*/
-
-.ui.divider > .icon {
- margin: 0;
- font-size: 1rem;
- height: 1em;
- vertical-align: middle;
-}
-
-/*--------------
- Header
- ---------------*/
-
-.ui.horizontal.divider[class*="left aligned"]:before {
- display: none;
-}
-
-.ui.horizontal.divider[class*="left aligned"]:after {
- width: 100%;
-}
-
-.ui.horizontal.divider[class*="right aligned"]:before {
- width: 100%;
-}
-
-.ui.horizontal.divider[class*="right aligned"]:after {
- display: none;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*--------------
- Hidden
- ---------------*/
-
-.ui.hidden.divider {
- border-color: transparent !important;
-}
-
-.ui.hidden.divider:before,
-.ui.hidden.divider:after {
- display: none;
-}
-
-/*--------------
- Inverted
----------------*/
-
-.ui.divider.inverted,
-.ui.vertical.inverted.divider,
-.ui.horizontal.inverted.divider {
- color: #FFFFFF;
-}
-
-.ui.divider.inverted,
-.ui.divider.inverted:after,
-.ui.divider.inverted:before {
- border-top-color: rgba(34, 36, 38, 0.15) !important;
- border-left-color: rgba(34, 36, 38, 0.15) !important;
- border-bottom-color: rgba(255, 255, 255, 0.15) !important;
- border-right-color: rgba(255, 255, 255, 0.15) !important;
-}
-
-/*--------------
- Fitted
----------------*/
-
-.ui.fitted.divider {
- margin: 0;
-}
-
-/*--------------
- Clearing
- ---------------*/
-
-.ui.clearing.divider {
- clear: both;
-}
-
-/*--------------
- Section
- ---------------*/
-
-.ui.section.divider {
- margin-top: 2rem;
- margin-bottom: 2rem;
-}
-
-/*--------------
- Sizes
----------------*/
-
-.ui.divider {
- font-size: 1rem;
-}
-
-.ui.mini.divider {
- font-size: 0.78571429rem;
-}
-
-.ui.tiny.divider {
- font-size: 0.85714286rem;
-}
-
-.ui.small.divider {
- font-size: 0.92857143rem;
-}
-
-.ui.large.divider {
- font-size: 1.14285714rem;
-}
-
-.ui.big.divider {
- font-size: 1.28571429rem;
-}
-
-.ui.huge.divider {
- font-size: 1.42857143rem;
-}
-
-.ui.massive.divider {
- font-size: 1.71428571rem;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-.ui.horizontal.divider:before,
-.ui.horizontal.divider:after {
- background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC');
-}
-
-@media only screen and (max-width: 767px) {
- .ui.stackable.grid .ui.vertical.divider:before,
- .ui.grid .stackable.row .ui.vertical.divider:before,
- .ui.stackable.grid .ui.vertical.divider:after,
- .ui.grid .stackable.row .ui.vertical.divider:after {
- background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC');
- }
-}
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic UI - Emoji
- * https://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * https://github.com/fomantic/Fomantic-UI/blob/master/LICENSE.md
- *
- */
-
-/*******************************
- Emoji
-*******************************/
-
-em[data-emoji] {
- opacity: 1;
- speak: none;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
-}
-
-em[data-emoji]:before {
- content: '\00A0\00A0\00A0\00A0\00A0\00A0\00A0';
- display: inline-block;
- line-height: 1.28571429em;
- background-repeat: no-repeat;
- background-position: center center;
-}
-
-/*******************************
- States
-*******************************/
-
-em[data-emoji].disabled {
- opacity: 0.45;
-}
-
-/*******************************
- Variations
-*******************************/
-
-em[data-emoji].loading:before {
- -webkit-animation: loader 2s linear infinite;
- animation: loader 2s linear infinite;
-}
-
-/*-------------------
- Link
---------------------*/
-
-em[data-emoji].link {
- cursor: pointer;
-}
-
-/*
-* Tweemoji v12.0 by @twitter - https://twemoji.twitter.com/ - @twitter
-* License - CC-BY 4.0 - https://creativecommons.org/licenses/by/4.0/
-*/
-
-/*******************************
- Emojis
-*******************************/
-
-em[data-emoji].small {
- font-size: 1.5em;
- vertical-align: middle;
-}
-
-em[data-emoji].medium {
- font-size: 3em;
- vertical-align: middle;
-}
-
-em[data-emoji].large {
- font-size: 6em;
- vertical-align: middle;
-}
-
-em[data-emoji].big {
- font-size: 7.5em;
- vertical-align: middle;
-}
-
-em[data-emoji=":interrobang:"]:before,
-em[data-emoji="interrobang"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2049.svg");
-}
-
-em[data-emoji=":tm:"]:before,
-em[data-emoji="tm"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2122.svg");
-}
-
-em[data-emoji=":information_source:"]:before,
-em[data-emoji="information_source"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2139.svg");
-}
-
-em[data-emoji=":left_right_arrow:"]:before,
-em[data-emoji="left_right_arrow"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2194.svg");
-}
-
-em[data-emoji=":arrow_up_down:"]:before,
-em[data-emoji="arrow_up_down"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2195.svg");
-}
-
-em[data-emoji=":arrow_upper_left:"]:before,
-em[data-emoji="arrow_upper_left"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2196.svg");
-}
-
-em[data-emoji=":arrow_upper_right:"]:before,
-em[data-emoji="arrow_upper_right"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2197.svg");
-}
-
-em[data-emoji=":arrow_lower_right:"]:before,
-em[data-emoji="arrow_lower_right"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2198.svg");
-}
-
-em[data-emoji=":arrow_lower_left:"]:before,
-em[data-emoji="arrow_lower_left"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2199.svg");
-}
-
-em[data-emoji=":keyboard:"]:before,
-em[data-emoji="keyboard"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2328.svg");
-}
-
-em[data-emoji=":sunny:"]:before,
-em[data-emoji="sunny"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2600.svg");
-}
-
-em[data-emoji=":cloud:"]:before,
-em[data-emoji="cloud"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2601.svg");
-}
-
-em[data-emoji=":umbrella2:"]:before,
-em[data-emoji="umbrella2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2602.svg");
-}
-
-em[data-emoji=":snowman2:"]:before,
-em[data-emoji="snowman2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2603.svg");
-}
-
-em[data-emoji=":comet:"]:before,
-em[data-emoji="comet"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2604.svg");
-}
-
-em[data-emoji=":ballot_box_with_check:"]:before,
-em[data-emoji="ballot_box_with_check"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2611.svg");
-}
-
-em[data-emoji=":umbrella:"]:before,
-em[data-emoji="umbrella"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2614.svg");
-}
-
-em[data-emoji=":coffee:"]:before,
-em[data-emoji="coffee"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2615.svg");
-}
-
-em[data-emoji=":shamrock:"]:before,
-em[data-emoji="shamrock"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2618.svg");
-}
-
-em[data-emoji=":skull_crossbones:"]:before,
-em[data-emoji="skull_crossbones"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2620.svg");
-}
-
-em[data-emoji=":radioactive:"]:before,
-em[data-emoji="radioactive"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2622.svg");
-}
-
-em[data-emoji=":biohazard:"]:before,
-em[data-emoji="biohazard"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2623.svg");
-}
-
-em[data-emoji=":orthodox_cross:"]:before,
-em[data-emoji="orthodox_cross"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2626.svg");
-}
-
-em[data-emoji=":wheel_of_dharma:"]:before,
-em[data-emoji="wheel_of_dharma"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2638.svg");
-}
-
-em[data-emoji=":frowning2:"]:before,
-em[data-emoji="frowning2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2639.svg");
-}
-
-em[data-emoji=":female_sign:"]:before,
-em[data-emoji="female_sign"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2640.svg");
-}
-
-em[data-emoji=":male_sign:"]:before,
-em[data-emoji="male_sign"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2642.svg");
-}
-
-em[data-emoji=":aries:"]:before,
-em[data-emoji="aries"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2648.svg");
-}
-
-em[data-emoji=":taurus:"]:before,
-em[data-emoji="taurus"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2649.svg");
-}
-
-em[data-emoji=":sagittarius:"]:before,
-em[data-emoji="sagittarius"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2650.svg");
-}
-
-em[data-emoji=":capricorn:"]:before,
-em[data-emoji="capricorn"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2651.svg");
-}
-
-em[data-emoji=":aquarius:"]:before,
-em[data-emoji="aquarius"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2652.svg");
-}
-
-em[data-emoji=":pisces:"]:before,
-em[data-emoji="pisces"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2653.svg");
-}
-
-em[data-emoji=":spades:"]:before,
-em[data-emoji="spades"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2660.svg");
-}
-
-em[data-emoji=":clubs:"]:before,
-em[data-emoji="clubs"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2663.svg");
-}
-
-em[data-emoji=":hearts:"]:before,
-em[data-emoji="hearts"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2665.svg");
-}
-
-em[data-emoji=":diamonds:"]:before,
-em[data-emoji="diamonds"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2666.svg");
-}
-
-em[data-emoji=":hotsprings:"]:before,
-em[data-emoji="hotsprings"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2668.svg");
-}
-
-em[data-emoji=":hammer_pick:"]:before,
-em[data-emoji="hammer_pick"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2692.svg");
-}
-
-em[data-emoji=":anchor:"]:before,
-em[data-emoji="anchor"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2693.svg");
-}
-
-em[data-emoji=":crossed_swords:"]:before,
-em[data-emoji="crossed_swords"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2694.svg");
-}
-
-em[data-emoji=":medical_symbol:"]:before,
-em[data-emoji="medical_symbol"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2695.svg");
-}
-
-em[data-emoji=":scales:"]:before,
-em[data-emoji="scales"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2696.svg");
-}
-
-em[data-emoji=":alembic:"]:before,
-em[data-emoji="alembic"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2697.svg");
-}
-
-em[data-emoji=":gear:"]:before,
-em[data-emoji="gear"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2699.svg");
-}
-
-em[data-emoji=":scissors:"]:before,
-em[data-emoji="scissors"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2702.svg");
-}
-
-em[data-emoji=":white_check_mark:"]:before,
-em[data-emoji="white_check_mark"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2705.svg");
-}
-
-em[data-emoji=":airplane:"]:before,
-em[data-emoji="airplane"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2708.svg");
-}
-
-em[data-emoji=":envelope:"]:before,
-em[data-emoji="envelope"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2709.svg");
-}
-
-em[data-emoji=":black_nib:"]:before,
-em[data-emoji="black_nib"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2712.svg");
-}
-
-em[data-emoji=":heavy_check_mark:"]:before,
-em[data-emoji="heavy_check_mark"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2714.svg");
-}
-
-em[data-emoji=":heavy_multiplication_x:"]:before,
-em[data-emoji="heavy_multiplication_x"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2716.svg");
-}
-
-em[data-emoji=":star_of_david:"]:before,
-em[data-emoji="star_of_david"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2721.svg");
-}
-
-em[data-emoji=":sparkles:"]:before,
-em[data-emoji="sparkles"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2728.svg");
-}
-
-em[data-emoji=":eight_spoked_asterisk:"]:before,
-em[data-emoji="eight_spoked_asterisk"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2733.svg");
-}
-
-em[data-emoji=":eight_pointed_black_star:"]:before,
-em[data-emoji="eight_pointed_black_star"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2734.svg");
-}
-
-em[data-emoji=":snowflake:"]:before,
-em[data-emoji="snowflake"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2744.svg");
-}
-
-em[data-emoji=":sparkle:"]:before,
-em[data-emoji="sparkle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2747.svg");
-}
-
-em[data-emoji=":question:"]:before,
-em[data-emoji="question"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2753.svg");
-}
-
-em[data-emoji=":grey_question:"]:before,
-em[data-emoji="grey_question"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2754.svg");
-}
-
-em[data-emoji=":grey_exclamation:"]:before,
-em[data-emoji="grey_exclamation"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2755.svg");
-}
-
-em[data-emoji=":exclamation:"]:before,
-em[data-emoji="exclamation"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2757.svg");
-}
-
-em[data-emoji=":heart_exclamation:"]:before,
-em[data-emoji="heart_exclamation"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2763.svg");
-}
-
-em[data-emoji=":heart:"]:before,
-em[data-emoji="heart"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2764.svg");
-}
-
-em[data-emoji=":heavy_plus_sign:"]:before,
-em[data-emoji="heavy_plus_sign"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2795.svg");
-}
-
-em[data-emoji=":heavy_minus_sign:"]:before,
-em[data-emoji="heavy_minus_sign"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2796.svg");
-}
-
-em[data-emoji=":heavy_division_sign:"]:before,
-em[data-emoji="heavy_division_sign"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2797.svg");
-}
-
-em[data-emoji=":arrow_heading_up:"]:before,
-em[data-emoji="arrow_heading_up"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2934.svg");
-}
-
-em[data-emoji=":arrow_heading_down:"]:before,
-em[data-emoji="arrow_heading_down"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2935.svg");
-}
-
-em[data-emoji=":wavy_dash:"]:before,
-em[data-emoji="wavy_dash"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/3030.svg");
-}
-
-em[data-emoji=":congratulations:"]:before,
-em[data-emoji="congratulations"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/3297.svg");
-}
-
-em[data-emoji=":secret:"]:before,
-em[data-emoji="secret"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/3299.svg");
-}
-
-em[data-emoji=":orange_heart:"]:before,
-em[data-emoji="orange_heart"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9e1.svg");
-}
-
-em[data-emoji=":yellow_heart:"]:before,
-em[data-emoji="yellow_heart"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f49b.svg");
-}
-
-em[data-emoji=":green_heart:"]:before,
-em[data-emoji="green_heart"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f49a.svg");
-}
-
-em[data-emoji=":blue_heart:"]:before,
-em[data-emoji="blue_heart"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f499.svg");
-}
-
-em[data-emoji=":purple_heart:"]:before,
-em[data-emoji="purple_heart"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f49c.svg");
-}
-
-em[data-emoji=":black_heart:"]:before,
-em[data-emoji="black_heart"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5a4.svg");
-}
-
-em[data-emoji=":brown_heart:"]:before,
-em[data-emoji="brown_heart"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f90e.svg");
-}
-
-em[data-emoji=":white_heart:"]:before,
-em[data-emoji="white_heart"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f90d.svg");
-}
-
-em[data-emoji=":broken_heart:"]:before,
-em[data-emoji="broken_heart"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f494.svg");
-}
-
-em[data-emoji=":two_hearts:"]:before,
-em[data-emoji="two_hearts"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f495.svg");
-}
-
-em[data-emoji=":revolving_hearts:"]:before,
-em[data-emoji="revolving_hearts"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f49e.svg");
-}
-
-em[data-emoji=":heartbeat:"]:before,
-em[data-emoji="heartbeat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f493.svg");
-}
-
-em[data-emoji=":heartpulse:"]:before,
-em[data-emoji="heartpulse"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f497.svg");
-}
-
-em[data-emoji=":sparkling_heart:"]:before,
-em[data-emoji="sparkling_heart"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f496.svg");
-}
-
-em[data-emoji=":cupid:"]:before,
-em[data-emoji="cupid"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f498.svg");
-}
-
-em[data-emoji=":gift_heart:"]:before,
-em[data-emoji="gift_heart"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f49d.svg");
-}
-
-em[data-emoji=":heart_decoration:"]:before,
-em[data-emoji="heart_decoration"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f49f.svg");
-}
-
-em[data-emoji=":peace:"]:before,
-em[data-emoji="peace"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/262e.svg");
-}
-
-em[data-emoji=":cross:"]:before,
-em[data-emoji="cross"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/271d.svg");
-}
-
-em[data-emoji=":star_and_crescent:"]:before,
-em[data-emoji="star_and_crescent"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/262a.svg");
-}
-
-em[data-emoji=":om_symbol:"]:before,
-em[data-emoji="om_symbol"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f549.svg");
-}
-
-em[data-emoji=":six_pointed_star:"]:before,
-em[data-emoji="six_pointed_star"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f52f.svg");
-}
-
-em[data-emoji=":menorah:"]:before,
-em[data-emoji="menorah"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f54e.svg");
-}
-
-em[data-emoji=":yin_yang:"]:before,
-em[data-emoji="yin_yang"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/262f.svg");
-}
-
-em[data-emoji=":place_of_worship:"]:before,
-em[data-emoji="place_of_worship"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6d0.svg");
-}
-
-em[data-emoji=":ophiuchus:"]:before,
-em[data-emoji="ophiuchus"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26ce.svg");
-}
-
-em[data-emoji=":gemini:"]:before,
-em[data-emoji="gemini"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/264a.svg");
-}
-
-em[data-emoji=":cancer:"]:before,
-em[data-emoji="cancer"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/264b.svg");
-}
-
-em[data-emoji=":leo:"]:before,
-em[data-emoji="leo"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/264c.svg");
-}
-
-em[data-emoji=":virgo:"]:before,
-em[data-emoji="virgo"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/264d.svg");
-}
-
-em[data-emoji=":libra:"]:before,
-em[data-emoji="libra"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/264e.svg");
-}
-
-em[data-emoji=":scorpius:"]:before,
-em[data-emoji="scorpius"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/264f.svg");
-}
-
-em[data-emoji=":id:"]:before,
-em[data-emoji="id"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f194.svg");
-}
-
-em[data-emoji=":atom:"]:before,
-em[data-emoji="atom"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/269b.svg");
-}
-
-em[data-emoji=":accept:"]:before,
-em[data-emoji="accept"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f251.svg");
-}
-
-em[data-emoji=":mobile_phone_off:"]:before,
-em[data-emoji="mobile_phone_off"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4f4.svg");
-}
-
-em[data-emoji=":vibration_mode:"]:before,
-em[data-emoji="vibration_mode"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4f3.svg");
-}
-
-em[data-emoji=":u6709:"]:before,
-em[data-emoji="u6709"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f236.svg");
-}
-
-em[data-emoji=":u7121:"]:before,
-em[data-emoji="u7121"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f21a.svg");
-}
-
-em[data-emoji=":u7533:"]:before,
-em[data-emoji="u7533"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f238.svg");
-}
-
-em[data-emoji=":u55b6:"]:before,
-em[data-emoji="u55b6"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f23a.svg");
-}
-
-em[data-emoji=":u6708:"]:before,
-em[data-emoji="u6708"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f237.svg");
-}
-
-em[data-emoji=":vs:"]:before,
-em[data-emoji="vs"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f19a.svg");
-}
-
-em[data-emoji=":white_flower:"]:before,
-em[data-emoji="white_flower"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4ae.svg");
-}
-
-em[data-emoji=":ideograph_advantage:"]:before,
-em[data-emoji="ideograph_advantage"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f250.svg");
-}
-
-em[data-emoji=":u5408:"]:before,
-em[data-emoji="u5408"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f234.svg");
-}
-
-em[data-emoji=":u6e80:"]:before,
-em[data-emoji="u6e80"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f235.svg");
-}
-
-em[data-emoji=":u5272:"]:before,
-em[data-emoji="u5272"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f239.svg");
-}
-
-em[data-emoji=":u7981:"]:before,
-em[data-emoji="u7981"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f232.svg");
-}
-
-em[data-emoji=":a:"]:before,
-em[data-emoji="a"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f170.svg");
-}
-
-em[data-emoji=":b:"]:before,
-em[data-emoji="b"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f171.svg");
-}
-
-em[data-emoji=":ab:"]:before,
-em[data-emoji="ab"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f18e.svg");
-}
-
-em[data-emoji=":cl:"]:before,
-em[data-emoji="cl"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f191.svg");
-}
-
-em[data-emoji=":o2:"]:before,
-em[data-emoji="o2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f17e.svg");
-}
-
-em[data-emoji=":sos:"]:before,
-em[data-emoji="sos"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f198.svg");
-}
-
-em[data-emoji=":x:"]:before,
-em[data-emoji="x"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/274c.svg");
-}
-
-em[data-emoji=":o:"]:before,
-em[data-emoji="o"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2b55.svg");
-}
-
-em[data-emoji=":octagonal_sign:"]:before,
-em[data-emoji="octagonal_sign"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6d1.svg");
-}
-
-em[data-emoji=":no_entry:"]:before,
-em[data-emoji="no_entry"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26d4.svg");
-}
-
-em[data-emoji=":name_badge:"]:before,
-em[data-emoji="name_badge"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4db.svg");
-}
-
-em[data-emoji=":no_entry_sign:"]:before,
-em[data-emoji="no_entry_sign"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6ab.svg");
-}
-
-em[data-emoji=":100:"]:before,
-em[data-emoji="100"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4af.svg");
-}
-
-em[data-emoji=":anger:"]:before,
-em[data-emoji="anger"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4a2.svg");
-}
-
-em[data-emoji=":no_pedestrians:"]:before,
-em[data-emoji="no_pedestrians"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b7.svg");
-}
-
-em[data-emoji=":do_not_litter:"]:before,
-em[data-emoji="do_not_litter"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6af.svg");
-}
-
-em[data-emoji=":no_bicycles:"]:before,
-em[data-emoji="no_bicycles"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b3.svg");
-}
-
-em[data-emoji=":non-potable_water:"]:before,
-em[data-emoji="non-potable_water"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b1.svg");
-}
-
-em[data-emoji=":underage:"]:before,
-em[data-emoji="underage"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f51e.svg");
-}
-
-em[data-emoji=":no_mobile_phones:"]:before,
-em[data-emoji="no_mobile_phones"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4f5.svg");
-}
-
-em[data-emoji=":no_smoking:"]:before,
-em[data-emoji="no_smoking"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6ad.svg");
-}
-
-em[data-emoji=":bangbang:"]:before,
-em[data-emoji="bangbang"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/203c.svg");
-}
-
-em[data-emoji=":low_brightness:"]:before,
-em[data-emoji="low_brightness"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f505.svg");
-}
-
-em[data-emoji=":high_brightness:"]:before,
-em[data-emoji="high_brightness"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f506.svg");
-}
-
-em[data-emoji=":part_alternation_mark:"]:before,
-em[data-emoji="part_alternation_mark"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/303d.svg");
-}
-
-em[data-emoji=":warning:"]:before,
-em[data-emoji="warning"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26a0.svg");
-}
-
-em[data-emoji=":children_crossing:"]:before,
-em[data-emoji="children_crossing"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b8.svg");
-}
-
-em[data-emoji=":trident:"]:before,
-em[data-emoji="trident"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f531.svg");
-}
-
-em[data-emoji=":fleur-de-lis:"]:before,
-em[data-emoji="fleur-de-lis"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/269c.svg");
-}
-
-em[data-emoji=":beginner:"]:before,
-em[data-emoji="beginner"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f530.svg");
-}
-
-em[data-emoji=":recycle:"]:before,
-em[data-emoji="recycle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/267b.svg");
-}
-
-em[data-emoji=":u6307:"]:before,
-em[data-emoji="u6307"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f22f.svg");
-}
-
-em[data-emoji=":chart:"]:before,
-em[data-emoji="chart"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4b9.svg");
-}
-
-em[data-emoji=":negative_squared_cross_mark:"]:before,
-em[data-emoji="negative_squared_cross_mark"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/274e.svg");
-}
-
-em[data-emoji=":globe_with_meridians:"]:before,
-em[data-emoji="globe_with_meridians"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f310.svg");
-}
-
-em[data-emoji=":diamond_shape_with_a_dot_inside:"]:before,
-em[data-emoji="diamond_shape_with_a_dot_inside"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4a0.svg");
-}
-
-em[data-emoji=":m:"]:before,
-em[data-emoji="m"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/24c2.svg");
-}
-
-em[data-emoji=":cyclone:"]:before,
-em[data-emoji="cyclone"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f300.svg");
-}
-
-em[data-emoji=":zzz:"]:before,
-em[data-emoji="zzz"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4a4.svg");
-}
-
-em[data-emoji=":atm:"]:before,
-em[data-emoji="atm"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3e7.svg");
-}
-
-em[data-emoji=":wc:"]:before,
-em[data-emoji="wc"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6be.svg");
-}
-
-em[data-emoji=":wheelchair:"]:before,
-em[data-emoji="wheelchair"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/267f.svg");
-}
-
-em[data-emoji=":parking:"]:before,
-em[data-emoji="parking"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f17f.svg");
-}
-
-em[data-emoji=":u7a7a:"]:before,
-em[data-emoji="u7a7a"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f233.svg");
-}
-
-em[data-emoji=":sa:"]:before,
-em[data-emoji="sa"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f202.svg");
-}
-
-em[data-emoji=":passport_control:"]:before,
-em[data-emoji="passport_control"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6c2.svg");
-}
-
-em[data-emoji=":customs:"]:before,
-em[data-emoji="customs"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6c3.svg");
-}
-
-em[data-emoji=":baggage_claim:"]:before,
-em[data-emoji="baggage_claim"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6c4.svg");
-}
-
-em[data-emoji=":left_luggage:"]:before,
-em[data-emoji="left_luggage"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6c5.svg");
-}
-
-em[data-emoji=":mens:"]:before,
-em[data-emoji="mens"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b9.svg");
-}
-
-em[data-emoji=":womens:"]:before,
-em[data-emoji="womens"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6ba.svg");
-}
-
-em[data-emoji=":baby_symbol:"]:before,
-em[data-emoji="baby_symbol"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6bc.svg");
-}
-
-em[data-emoji=":restroom:"]:before,
-em[data-emoji="restroom"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6bb.svg");
-}
-
-em[data-emoji=":put_litter_in_its_place:"]:before,
-em[data-emoji="put_litter_in_its_place"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6ae.svg");
-}
-
-em[data-emoji=":cinema:"]:before,
-em[data-emoji="cinema"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3a6.svg");
-}
-
-em[data-emoji=":signal_strength:"]:before,
-em[data-emoji="signal_strength"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4f6.svg");
-}
-
-em[data-emoji=":koko:"]:before,
-em[data-emoji="koko"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f201.svg");
-}
-
-em[data-emoji=":symbols:"]:before,
-em[data-emoji="symbols"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f523.svg");
-}
-
-em[data-emoji=":abc:"]:before,
-em[data-emoji="abc"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f524.svg");
-}
-
-em[data-emoji=":abcd:"]:before,
-em[data-emoji="abcd"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f521.svg");
-}
-
-em[data-emoji=":capital_abcd:"]:before,
-em[data-emoji="capital_abcd"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f520.svg");
-}
-
-em[data-emoji=":ng:"]:before,
-em[data-emoji="ng"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f196.svg");
-}
-
-em[data-emoji=":ok:"]:before,
-em[data-emoji="ok"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f197.svg");
-}
-
-em[data-emoji=":up:"]:before,
-em[data-emoji="up"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f199.svg");
-}
-
-em[data-emoji=":cool:"]:before,
-em[data-emoji="cool"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f192.svg");
-}
-
-em[data-emoji=":new:"]:before,
-em[data-emoji="new"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f195.svg");
-}
-
-em[data-emoji=":free:"]:before,
-em[data-emoji="free"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f193.svg");
-}
-
-em[data-emoji=":zero:"]:before,
-em[data-emoji="zero"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/30-20e3.svg");
-}
-
-em[data-emoji=":one:"]:before,
-em[data-emoji="one"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/31-20e3.svg");
-}
-
-em[data-emoji=":two:"]:before,
-em[data-emoji="two"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/32-20e3.svg");
-}
-
-em[data-emoji=":three:"]:before,
-em[data-emoji="three"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/33-20e3.svg");
-}
-
-em[data-emoji=":four:"]:before,
-em[data-emoji="four"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/34-20e3.svg");
-}
-
-em[data-emoji=":five:"]:before,
-em[data-emoji="five"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/35-20e3.svg");
-}
-
-em[data-emoji=":six:"]:before,
-em[data-emoji="six"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/36-20e3.svg");
-}
-
-em[data-emoji=":seven:"]:before,
-em[data-emoji="seven"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/37-20e3.svg");
-}
-
-em[data-emoji=":eight:"]:before,
-em[data-emoji="eight"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/38-20e3.svg");
-}
-
-em[data-emoji=":nine:"]:before,
-em[data-emoji="nine"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/39-20e3.svg");
-}
-
-em[data-emoji=":keycap_ten:"]:before,
-em[data-emoji="keycap_ten"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f51f.svg");
-}
-
-em[data-emoji=":1234:"]:before,
-em[data-emoji="1234"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f522.svg");
-}
-
-em[data-emoji=":hash:"]:before,
-em[data-emoji="hash"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/23-20e3.svg");
-}
-
-em[data-emoji=":asterisk:"]:before,
-em[data-emoji="asterisk"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2a-20e3.svg");
-}
-
-em[data-emoji=":eject:"]:before,
-em[data-emoji="eject"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/23cf.svg");
-}
-
-em[data-emoji=":arrow_forward:"]:before,
-em[data-emoji="arrow_forward"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/25b6.svg");
-}
-
-em[data-emoji=":pause_button:"]:before,
-em[data-emoji="pause_button"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/23f8.svg");
-}
-
-em[data-emoji=":play_pause:"]:before,
-em[data-emoji="play_pause"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/23ef.svg");
-}
-
-em[data-emoji=":stop_button:"]:before,
-em[data-emoji="stop_button"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/23f9.svg");
-}
-
-em[data-emoji=":record_button:"]:before,
-em[data-emoji="record_button"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/23fa.svg");
-}
-
-em[data-emoji=":track_next:"]:before,
-em[data-emoji="track_next"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/23ed.svg");
-}
-
-em[data-emoji=":track_previous:"]:before,
-em[data-emoji="track_previous"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/23ee.svg");
-}
-
-em[data-emoji=":fast_forward:"]:before,
-em[data-emoji="fast_forward"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/23e9.svg");
-}
-
-em[data-emoji=":rewind:"]:before,
-em[data-emoji="rewind"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/23ea.svg");
-}
-
-em[data-emoji=":arrow_double_up:"]:before,
-em[data-emoji="arrow_double_up"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/23eb.svg");
-}
-
-em[data-emoji=":arrow_double_down:"]:before,
-em[data-emoji="arrow_double_down"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/23ec.svg");
-}
-
-em[data-emoji=":arrow_backward:"]:before,
-em[data-emoji="arrow_backward"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/25c0.svg");
-}
-
-em[data-emoji=":arrow_up_small:"]:before,
-em[data-emoji="arrow_up_small"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f53c.svg");
-}
-
-em[data-emoji=":arrow_down_small:"]:before,
-em[data-emoji="arrow_down_small"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f53d.svg");
-}
-
-em[data-emoji=":arrow_right:"]:before,
-em[data-emoji="arrow_right"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/27a1.svg");
-}
-
-em[data-emoji=":arrow_left:"]:before,
-em[data-emoji="arrow_left"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2b05.svg");
-}
-
-em[data-emoji=":arrow_up:"]:before,
-em[data-emoji="arrow_up"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2b06.svg");
-}
-
-em[data-emoji=":arrow_down:"]:before,
-em[data-emoji="arrow_down"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2b07.svg");
-}
-
-em[data-emoji=":arrow_right_hook:"]:before,
-em[data-emoji="arrow_right_hook"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/21aa.svg");
-}
-
-em[data-emoji=":leftwards_arrow_with_hook:"]:before,
-em[data-emoji="leftwards_arrow_with_hook"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/21a9.svg");
-}
-
-em[data-emoji=":twisted_rightwards_arrows:"]:before,
-em[data-emoji="twisted_rightwards_arrows"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f500.svg");
-}
-
-em[data-emoji=":repeat:"]:before,
-em[data-emoji="repeat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f501.svg");
-}
-
-em[data-emoji=":repeat_one:"]:before,
-em[data-emoji="repeat_one"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f502.svg");
-}
-
-em[data-emoji=":arrows_counterclockwise:"]:before,
-em[data-emoji="arrows_counterclockwise"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f504.svg");
-}
-
-em[data-emoji=":arrows_clockwise:"]:before,
-em[data-emoji="arrows_clockwise"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f503.svg");
-}
-
-em[data-emoji=":musical_note:"]:before,
-em[data-emoji="musical_note"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3b5.svg");
-}
-
-em[data-emoji=":notes:"]:before,
-em[data-emoji="notes"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3b6.svg");
-}
-
-em[data-emoji=":infinity:"]:before,
-em[data-emoji="infinity"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/267e.svg");
-}
-
-em[data-emoji=":heavy_dollar_sign:"]:before,
-em[data-emoji="heavy_dollar_sign"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4b2.svg");
-}
-
-em[data-emoji=":currency_exchange:"]:before,
-em[data-emoji="currency_exchange"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4b1.svg");
-}
-
-em[data-emoji=":copyright:"]:before,
-em[data-emoji="copyright"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/a9.svg");
-}
-
-em[data-emoji=":registered:"]:before,
-em[data-emoji="registered"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/ae.svg");
-}
-
-em[data-emoji=":curly_loop:"]:before,
-em[data-emoji="curly_loop"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/27b0.svg");
-}
-
-em[data-emoji=":loop:"]:before,
-em[data-emoji="loop"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/27bf.svg");
-}
-
-em[data-emoji=":end:"]:before,
-em[data-emoji="end"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f51a.svg");
-}
-
-em[data-emoji=":back:"]:before,
-em[data-emoji="back"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f519.svg");
-}
-
-em[data-emoji=":on:"]:before,
-em[data-emoji="on"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f51b.svg");
-}
-
-em[data-emoji=":top:"]:before,
-em[data-emoji="top"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f51d.svg");
-}
-
-em[data-emoji=":soon:"]:before,
-em[data-emoji="soon"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f51c.svg");
-}
-
-em[data-emoji=":radio_button:"]:before,
-em[data-emoji="radio_button"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f518.svg");
-}
-
-em[data-emoji=":white_circle:"]:before,
-em[data-emoji="white_circle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26aa.svg");
-}
-
-em[data-emoji=":black_circle:"]:before,
-em[data-emoji="black_circle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26ab.svg");
-}
-
-em[data-emoji=":red_circle:"]:before,
-em[data-emoji="red_circle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f534.svg");
-}
-
-em[data-emoji=":blue_circle:"]:before,
-em[data-emoji="blue_circle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f535.svg");
-}
-
-em[data-emoji=":brown_circle:"]:before,
-em[data-emoji="brown_circle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f7e4.svg");
-}
-
-em[data-emoji=":purple_circle:"]:before,
-em[data-emoji="purple_circle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f7e3.svg");
-}
-
-em[data-emoji=":green_circle:"]:before,
-em[data-emoji="green_circle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f7e2.svg");
-}
-
-em[data-emoji=":yellow_circle:"]:before,
-em[data-emoji="yellow_circle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f7e1.svg");
-}
-
-em[data-emoji=":orange_circle:"]:before,
-em[data-emoji="orange_circle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f7e0.svg");
-}
-
-em[data-emoji=":small_red_triangle:"]:before,
-em[data-emoji="small_red_triangle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f53a.svg");
-}
-
-em[data-emoji=":small_red_triangle_down:"]:before,
-em[data-emoji="small_red_triangle_down"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f53b.svg");
-}
-
-em[data-emoji=":small_orange_diamond:"]:before,
-em[data-emoji="small_orange_diamond"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f538.svg");
-}
-
-em[data-emoji=":small_blue_diamond:"]:before,
-em[data-emoji="small_blue_diamond"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f539.svg");
-}
-
-em[data-emoji=":large_orange_diamond:"]:before,
-em[data-emoji="large_orange_diamond"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f536.svg");
-}
-
-em[data-emoji=":large_blue_diamond:"]:before,
-em[data-emoji="large_blue_diamond"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f537.svg");
-}
-
-em[data-emoji=":white_square_button:"]:before,
-em[data-emoji="white_square_button"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f533.svg");
-}
-
-em[data-emoji=":black_square_button:"]:before,
-em[data-emoji="black_square_button"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f532.svg");
-}
-
-em[data-emoji=":black_small_square:"]:before,
-em[data-emoji="black_small_square"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/25aa.svg");
-}
-
-em[data-emoji=":white_small_square:"]:before,
-em[data-emoji="white_small_square"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/25ab.svg");
-}
-
-em[data-emoji=":black_medium_small_square:"]:before,
-em[data-emoji="black_medium_small_square"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/25fe.svg");
-}
-
-em[data-emoji=":white_medium_small_square:"]:before,
-em[data-emoji="white_medium_small_square"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/25fd.svg");
-}
-
-em[data-emoji=":black_medium_square:"]:before,
-em[data-emoji="black_medium_square"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/25fc.svg");
-}
-
-em[data-emoji=":white_medium_square:"]:before,
-em[data-emoji="white_medium_square"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/25fb.svg");
-}
-
-em[data-emoji=":black_large_square:"]:before,
-em[data-emoji="black_large_square"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2b1b.svg");
-}
-
-em[data-emoji=":white_large_square:"]:before,
-em[data-emoji="white_large_square"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2b1c.svg");
-}
-
-em[data-emoji=":orange_square:"]:before,
-em[data-emoji="orange_square"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f7e7.svg");
-}
-
-em[data-emoji=":blue_square:"]:before,
-em[data-emoji="blue_square"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f7e6.svg");
-}
-
-em[data-emoji=":red_square:"]:before,
-em[data-emoji="red_square"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f7e5.svg");
-}
-
-em[data-emoji=":brown_square:"]:before,
-em[data-emoji="brown_square"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f7eb.svg");
-}
-
-em[data-emoji=":purple_square:"]:before,
-em[data-emoji="purple_square"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f7ea.svg");
-}
-
-em[data-emoji=":green_square:"]:before,
-em[data-emoji="green_square"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f7e9.svg");
-}
-
-em[data-emoji=":yellow_square:"]:before,
-em[data-emoji="yellow_square"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f7e8.svg");
-}
-
-em[data-emoji=":speaker:"]:before,
-em[data-emoji="speaker"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f508.svg");
-}
-
-em[data-emoji=":mute:"]:before,
-em[data-emoji="mute"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f507.svg");
-}
-
-em[data-emoji=":sound:"]:before,
-em[data-emoji="sound"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f509.svg");
-}
-
-em[data-emoji=":loud_sound:"]:before,
-em[data-emoji="loud_sound"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f50a.svg");
-}
-
-em[data-emoji=":bell:"]:before,
-em[data-emoji="bell"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f514.svg");
-}
-
-em[data-emoji=":no_bell:"]:before,
-em[data-emoji="no_bell"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f515.svg");
-}
-
-em[data-emoji=":mega:"]:before,
-em[data-emoji="mega"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4e3.svg");
-}
-
-em[data-emoji=":loudspeaker:"]:before,
-em[data-emoji="loudspeaker"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4e2.svg");
-}
-
-em[data-emoji=":speech_left:"]:before,
-em[data-emoji="speech_left"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5e8.svg");
-}
-
-em[data-emoji=":eye_in_speech_bubble:"]:before,
-em[data-emoji="eye_in_speech_bubble"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f441-200d-1f5e8.svg");
-}
-
-em[data-emoji=":speech_balloon:"]:before,
-em[data-emoji="speech_balloon"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4ac.svg");
-}
-
-em[data-emoji=":thought_balloon:"]:before,
-em[data-emoji="thought_balloon"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4ad.svg");
-}
-
-em[data-emoji=":anger_right:"]:before,
-em[data-emoji="anger_right"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5ef.svg");
-}
-
-em[data-emoji=":black_joker:"]:before,
-em[data-emoji="black_joker"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f0cf.svg");
-}
-
-em[data-emoji=":flower_playing_cards:"]:before,
-em[data-emoji="flower_playing_cards"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3b4.svg");
-}
-
-em[data-emoji=":mahjong:"]:before,
-em[data-emoji="mahjong"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f004.svg");
-}
-
-em[data-emoji=":clock1:"]:before,
-em[data-emoji="clock1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f550.svg");
-}
-
-em[data-emoji=":clock2:"]:before,
-em[data-emoji="clock2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f551.svg");
-}
-
-em[data-emoji=":clock3:"]:before,
-em[data-emoji="clock3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f552.svg");
-}
-
-em[data-emoji=":clock4:"]:before,
-em[data-emoji="clock4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f553.svg");
-}
-
-em[data-emoji=":clock5:"]:before,
-em[data-emoji="clock5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f554.svg");
-}
-
-em[data-emoji=":clock6:"]:before,
-em[data-emoji="clock6"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f555.svg");
-}
-
-em[data-emoji=":clock7:"]:before,
-em[data-emoji="clock7"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f556.svg");
-}
-
-em[data-emoji=":clock8:"]:before,
-em[data-emoji="clock8"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f557.svg");
-}
-
-em[data-emoji=":clock9:"]:before,
-em[data-emoji="clock9"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f558.svg");
-}
-
-em[data-emoji=":clock10:"]:before,
-em[data-emoji="clock10"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f559.svg");
-}
-
-em[data-emoji=":clock11:"]:before,
-em[data-emoji="clock11"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f55a.svg");
-}
-
-em[data-emoji=":clock12:"]:before,
-em[data-emoji="clock12"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f55b.svg");
-}
-
-em[data-emoji=":clock130:"]:before,
-em[data-emoji="clock130"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f55c.svg");
-}
-
-em[data-emoji=":clock230:"]:before,
-em[data-emoji="clock230"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f55d.svg");
-}
-
-em[data-emoji=":clock330:"]:before,
-em[data-emoji="clock330"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f55e.svg");
-}
-
-em[data-emoji=":clock430:"]:before,
-em[data-emoji="clock430"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f55f.svg");
-}
-
-em[data-emoji=":clock530:"]:before,
-em[data-emoji="clock530"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f560.svg");
-}
-
-em[data-emoji=":clock630:"]:before,
-em[data-emoji="clock630"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f561.svg");
-}
-
-em[data-emoji=":clock730:"]:before,
-em[data-emoji="clock730"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f562.svg");
-}
-
-em[data-emoji=":clock830:"]:before,
-em[data-emoji="clock830"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f563.svg");
-}
-
-em[data-emoji=":clock930:"]:before,
-em[data-emoji="clock930"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f564.svg");
-}
-
-em[data-emoji=":clock1030:"]:before,
-em[data-emoji="clock1030"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f565.svg");
-}
-
-em[data-emoji=":clock1130:"]:before,
-em[data-emoji="clock1130"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f566.svg");
-}
-
-em[data-emoji=":clock1230:"]:before,
-em[data-emoji="clock1230"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f567.svg");
-}
-
-em[data-emoji=":digit_zero:"]:before,
-em[data-emoji="digit_zero"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/30-20e3.svg");
-}
-
-em[data-emoji=":digit_one:"]:before,
-em[data-emoji="digit_one"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/31-20e3.svg");
-}
-
-em[data-emoji=":digit_two:"]:before,
-em[data-emoji="digit_two"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/32-20e3.svg");
-}
-
-em[data-emoji=":digit_three:"]:before,
-em[data-emoji="digit_three"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/33-20e3.svg");
-}
-
-em[data-emoji=":digit_four:"]:before,
-em[data-emoji="digit_four"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/34-20e3.svg");
-}
-
-em[data-emoji=":digit_five:"]:before,
-em[data-emoji="digit_five"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/35-20e3.svg");
-}
-
-em[data-emoji=":digit_six:"]:before,
-em[data-emoji="digit_six"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/36-20e3.svg");
-}
-
-em[data-emoji=":digit_seven:"]:before,
-em[data-emoji="digit_seven"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/37-20e3.svg");
-}
-
-em[data-emoji=":digit_eight:"]:before,
-em[data-emoji="digit_eight"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/38-20e3.svg");
-}
-
-em[data-emoji=":digit_nine:"]:before,
-em[data-emoji="digit_nine"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/39-20e3.svg");
-}
-
-em[data-emoji=":pound_symbol:"]:before,
-em[data-emoji="pound_symbol"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/23-20e3.svg");
-}
-
-em[data-emoji=":asterisk_symbol:"]:before,
-em[data-emoji="asterisk_symbol"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2a-20e3.svg");
-}
-
-em[data-emoji=":soccer:"]:before,
-em[data-emoji="soccer"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26bd.svg");
-}
-
-em[data-emoji=":basketball:"]:before,
-em[data-emoji="basketball"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c0.svg");
-}
-
-em[data-emoji=":football:"]:before,
-em[data-emoji="football"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c8.svg");
-}
-
-em[data-emoji=":baseball:"]:before,
-em[data-emoji="baseball"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26be.svg");
-}
-
-em[data-emoji=":softball:"]:before,
-em[data-emoji="softball"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f94e.svg");
-}
-
-em[data-emoji=":tennis:"]:before,
-em[data-emoji="tennis"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3be.svg");
-}
-
-em[data-emoji=":volleyball:"]:before,
-em[data-emoji="volleyball"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3d0.svg");
-}
-
-em[data-emoji=":rugby_football:"]:before,
-em[data-emoji="rugby_football"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c9.svg");
-}
-
-em[data-emoji=":flying_disc:"]:before,
-em[data-emoji="flying_disc"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f94f.svg");
-}
-
-em[data-emoji=":8ball:"]:before,
-em[data-emoji="8ball"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3b1.svg");
-}
-
-em[data-emoji=":ping_pong:"]:before,
-em[data-emoji="ping_pong"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3d3.svg");
-}
-
-em[data-emoji=":badminton:"]:before,
-em[data-emoji="badminton"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3f8.svg");
-}
-
-em[data-emoji=":hockey:"]:before,
-em[data-emoji="hockey"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3d2.svg");
-}
-
-em[data-emoji=":field_hockey:"]:before,
-em[data-emoji="field_hockey"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3d1.svg");
-}
-
-em[data-emoji=":lacrosse:"]:before,
-em[data-emoji="lacrosse"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f94d.svg");
-}
-
-em[data-emoji=":cricket_game:"]:before,
-em[data-emoji="cricket_game"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cf.svg");
-}
-
-em[data-emoji=":goal:"]:before,
-em[data-emoji="goal"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f945.svg");
-}
-
-em[data-emoji=":golf:"]:before,
-em[data-emoji="golf"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f3.svg");
-}
-
-em[data-emoji=":bow_and_arrow:"]:before,
-em[data-emoji="bow_and_arrow"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3f9.svg");
-}
-
-em[data-emoji=":fishing_pole_and_fish:"]:before,
-em[data-emoji="fishing_pole_and_fish"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3a3.svg");
-}
-
-em[data-emoji=":boxing_glove:"]:before,
-em[data-emoji="boxing_glove"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f94a.svg");
-}
-
-em[data-emoji=":martial_arts_uniform:"]:before,
-em[data-emoji="martial_arts_uniform"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f94b.svg");
-}
-
-em[data-emoji=":running_shirt_with_sash:"]:before,
-em[data-emoji="running_shirt_with_sash"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3bd.svg");
-}
-
-em[data-emoji=":skateboard:"]:before,
-em[data-emoji="skateboard"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6f9.svg");
-}
-
-em[data-emoji=":sled:"]:before,
-em[data-emoji="sled"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6f7.svg");
-}
-
-em[data-emoji=":parachute:"]:before,
-em[data-emoji="parachute"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1fa82.svg");
-}
-
-em[data-emoji=":ice_skate:"]:before,
-em[data-emoji="ice_skate"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f8.svg");
-}
-
-em[data-emoji=":curling_stone:"]:before,
-em[data-emoji="curling_stone"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f94c.svg");
-}
-
-em[data-emoji=":ski:"]:before,
-em[data-emoji="ski"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3bf.svg");
-}
-
-em[data-emoji=":skier:"]:before,
-em[data-emoji="skier"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f7.svg");
-}
-
-em[data-emoji=":snowboarder:"]:before,
-em[data-emoji="snowboarder"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c2.svg");
-}
-
-em[data-emoji=":snowboarder_tone1:"]:before,
-em[data-emoji="snowboarder_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c2-1f3fb.svg");
-}
-
-em[data-emoji=":snowboarder_tone2:"]:before,
-em[data-emoji="snowboarder_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c2-1f3fc.svg");
-}
-
-em[data-emoji=":snowboarder_tone3:"]:before,
-em[data-emoji="snowboarder_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c2-1f3fd.svg");
-}
-
-em[data-emoji=":snowboarder_tone4:"]:before,
-em[data-emoji="snowboarder_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c2-1f3fe.svg");
-}
-
-em[data-emoji=":snowboarder_tone5:"]:before,
-em[data-emoji="snowboarder_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c2-1f3ff.svg");
-}
-
-em[data-emoji=":person_lifting_weights:"]:before,
-em[data-emoji="person_lifting_weights"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cb.svg");
-}
-
-em[data-emoji=":person_lifting_weights_tone1:"]:before,
-em[data-emoji="person_lifting_weights_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cb-1f3fb.svg");
-}
-
-em[data-emoji=":person_lifting_weights_tone2:"]:before,
-em[data-emoji="person_lifting_weights_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cb-1f3fc.svg");
-}
-
-em[data-emoji=":person_lifting_weights_tone3:"]:before,
-em[data-emoji="person_lifting_weights_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cb-1f3fd.svg");
-}
-
-em[data-emoji=":person_lifting_weights_tone4:"]:before,
-em[data-emoji="person_lifting_weights_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cb-1f3fe.svg");
-}
-
-em[data-emoji=":person_lifting_weights_tone5:"]:before,
-em[data-emoji="person_lifting_weights_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cb-1f3ff.svg");
-}
-
-em[data-emoji=":woman_lifting_weights:"]:before,
-em[data-emoji="woman_lifting_weights"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cb-fe0f-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_lifting_weights_tone1:"]:before,
-em[data-emoji="woman_lifting_weights_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cb-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_lifting_weights_tone2:"]:before,
-em[data-emoji="woman_lifting_weights_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cb-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_lifting_weights_tone3:"]:before,
-em[data-emoji="woman_lifting_weights_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cb-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_lifting_weights_tone4:"]:before,
-em[data-emoji="woman_lifting_weights_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cb-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_lifting_weights_tone5:"]:before,
-em[data-emoji="woman_lifting_weights_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cb-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_lifting_weights:"]:before,
-em[data-emoji="man_lifting_weights"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cb-fe0f-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_lifting_weights_tone1:"]:before,
-em[data-emoji="man_lifting_weights_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cb-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_lifting_weights_tone2:"]:before,
-em[data-emoji="man_lifting_weights_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cb-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_lifting_weights_tone3:"]:before,
-em[data-emoji="man_lifting_weights_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cb-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_lifting_weights_tone4:"]:before,
-em[data-emoji="man_lifting_weights_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cb-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_lifting_weights_tone5:"]:before,
-em[data-emoji="man_lifting_weights_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cb-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":people_wrestling:"]:before,
-em[data-emoji="people_wrestling"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93c.svg");
-}
-
-em[data-emoji=":women_wrestling:"]:before,
-em[data-emoji="women_wrestling"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93c-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":men_wrestling:"]:before,
-em[data-emoji="men_wrestling"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93c-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_doing_cartwheel:"]:before,
-em[data-emoji="person_doing_cartwheel"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f938.svg");
-}
-
-em[data-emoji=":person_doing_cartwheel_tone1:"]:before,
-em[data-emoji="person_doing_cartwheel_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f938-1f3fb.svg");
-}
-
-em[data-emoji=":person_doing_cartwheel_tone2:"]:before,
-em[data-emoji="person_doing_cartwheel_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f938-1f3fc.svg");
-}
-
-em[data-emoji=":person_doing_cartwheel_tone3:"]:before,
-em[data-emoji="person_doing_cartwheel_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f938-1f3fd.svg");
-}
-
-em[data-emoji=":person_doing_cartwheel_tone4:"]:before,
-em[data-emoji="person_doing_cartwheel_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f938-1f3fe.svg");
-}
-
-em[data-emoji=":person_doing_cartwheel_tone5:"]:before,
-em[data-emoji="person_doing_cartwheel_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f938-1f3ff.svg");
-}
-
-em[data-emoji=":woman_cartwheeling:"]:before,
-em[data-emoji="woman_cartwheeling"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f938-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_cartwheeling_tone1:"]:before,
-em[data-emoji="woman_cartwheeling_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f938-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_cartwheeling_tone2:"]:before,
-em[data-emoji="woman_cartwheeling_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f938-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_cartwheeling_tone3:"]:before,
-em[data-emoji="woman_cartwheeling_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f938-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_cartwheeling_tone4:"]:before,
-em[data-emoji="woman_cartwheeling_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f938-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_cartwheeling_tone5:"]:before,
-em[data-emoji="woman_cartwheeling_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f938-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_cartwheeling:"]:before,
-em[data-emoji="man_cartwheeling"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f938-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_cartwheeling_tone1:"]:before,
-em[data-emoji="man_cartwheeling_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f938-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_cartwheeling_tone2:"]:before,
-em[data-emoji="man_cartwheeling_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f938-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_cartwheeling_tone3:"]:before,
-em[data-emoji="man_cartwheeling_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f938-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_cartwheeling_tone4:"]:before,
-em[data-emoji="man_cartwheeling_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f938-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_cartwheeling_tone5:"]:before,
-em[data-emoji="man_cartwheeling_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f938-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_bouncing_ball:"]:before,
-em[data-emoji="person_bouncing_ball"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f9.svg");
-}
-
-em[data-emoji=":person_bouncing_ball_tone1:"]:before,
-em[data-emoji="person_bouncing_ball_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f9-1f3fb.svg");
-}
-
-em[data-emoji=":person_bouncing_ball_tone2:"]:before,
-em[data-emoji="person_bouncing_ball_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f9-1f3fc.svg");
-}
-
-em[data-emoji=":person_bouncing_ball_tone3:"]:before,
-em[data-emoji="person_bouncing_ball_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f9-1f3fd.svg");
-}
-
-em[data-emoji=":person_bouncing_ball_tone4:"]:before,
-em[data-emoji="person_bouncing_ball_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f9-1f3fe.svg");
-}
-
-em[data-emoji=":person_bouncing_ball_tone5:"]:before,
-em[data-emoji="person_bouncing_ball_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f9-1f3ff.svg");
-}
-
-em[data-emoji=":woman_bouncing_ball:"]:before,
-em[data-emoji="woman_bouncing_ball"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f9-fe0f-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_bouncing_ball_tone1:"]:before,
-em[data-emoji="woman_bouncing_ball_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f9-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_bouncing_ball_tone2:"]:before,
-em[data-emoji="woman_bouncing_ball_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f9-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_bouncing_ball_tone3:"]:before,
-em[data-emoji="woman_bouncing_ball_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f9-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_bouncing_ball_tone4:"]:before,
-em[data-emoji="woman_bouncing_ball_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f9-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_bouncing_ball_tone5:"]:before,
-em[data-emoji="woman_bouncing_ball_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f9-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_bouncing_ball:"]:before,
-em[data-emoji="man_bouncing_ball"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f9-fe0f-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_bouncing_ball_tone1:"]:before,
-em[data-emoji="man_bouncing_ball_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f9-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_bouncing_ball_tone2:"]:before,
-em[data-emoji="man_bouncing_ball_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f9-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_bouncing_ball_tone3:"]:before,
-em[data-emoji="man_bouncing_ball_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f9-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_bouncing_ball_tone4:"]:before,
-em[data-emoji="man_bouncing_ball_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f9-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_bouncing_ball_tone5:"]:before,
-em[data-emoji="man_bouncing_ball_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f9-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_fencing:"]:before,
-em[data-emoji="person_fencing"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93a.svg");
-}
-
-em[data-emoji=":person_playing_handball:"]:before,
-em[data-emoji="person_playing_handball"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93e.svg");
-}
-
-em[data-emoji=":person_playing_handball_tone1:"]:before,
-em[data-emoji="person_playing_handball_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93e-1f3fb.svg");
-}
-
-em[data-emoji=":person_playing_handball_tone2:"]:before,
-em[data-emoji="person_playing_handball_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93e-1f3fc.svg");
-}
-
-em[data-emoji=":person_playing_handball_tone3:"]:before,
-em[data-emoji="person_playing_handball_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93e-1f3fd.svg");
-}
-
-em[data-emoji=":person_playing_handball_tone4:"]:before,
-em[data-emoji="person_playing_handball_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93e-1f3fe.svg");
-}
-
-em[data-emoji=":person_playing_handball_tone5:"]:before,
-em[data-emoji="person_playing_handball_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93e-1f3ff.svg");
-}
-
-em[data-emoji=":woman_playing_handball:"]:before,
-em[data-emoji="woman_playing_handball"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93e-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_playing_handball_tone1:"]:before,
-em[data-emoji="woman_playing_handball_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93e-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_playing_handball_tone2:"]:before,
-em[data-emoji="woman_playing_handball_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93e-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_playing_handball_tone3:"]:before,
-em[data-emoji="woman_playing_handball_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93e-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_playing_handball_tone4:"]:before,
-em[data-emoji="woman_playing_handball_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93e-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_playing_handball_tone5:"]:before,
-em[data-emoji="woman_playing_handball_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93e-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_playing_handball:"]:before,
-em[data-emoji="man_playing_handball"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93e-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_playing_handball_tone1:"]:before,
-em[data-emoji="man_playing_handball_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93e-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_playing_handball_tone2:"]:before,
-em[data-emoji="man_playing_handball_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93e-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_playing_handball_tone3:"]:before,
-em[data-emoji="man_playing_handball_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93e-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_playing_handball_tone4:"]:before,
-em[data-emoji="man_playing_handball_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93e-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_playing_handball_tone5:"]:before,
-em[data-emoji="man_playing_handball_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93e-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_golfing:"]:before,
-em[data-emoji="person_golfing"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cc.svg");
-}
-
-em[data-emoji=":person_golfing_tone1:"]:before,
-em[data-emoji="person_golfing_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cc-1f3fb.svg");
-}
-
-em[data-emoji=":person_golfing_tone2:"]:before,
-em[data-emoji="person_golfing_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cc-1f3fc.svg");
-}
-
-em[data-emoji=":person_golfing_tone3:"]:before,
-em[data-emoji="person_golfing_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cc-1f3fd.svg");
-}
-
-em[data-emoji=":person_golfing_tone4:"]:before,
-em[data-emoji="person_golfing_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cc-1f3fe.svg");
-}
-
-em[data-emoji=":person_golfing_tone5:"]:before,
-em[data-emoji="person_golfing_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cc-1f3ff.svg");
-}
-
-em[data-emoji=":woman_golfing:"]:before,
-em[data-emoji="woman_golfing"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cc-fe0f-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_golfing_tone1:"]:before,
-em[data-emoji="woman_golfing_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cc-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_golfing_tone2:"]:before,
-em[data-emoji="woman_golfing_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cc-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_golfing_tone3:"]:before,
-em[data-emoji="woman_golfing_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cc-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_golfing_tone4:"]:before,
-em[data-emoji="woman_golfing_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cc-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_golfing_tone5:"]:before,
-em[data-emoji="woman_golfing_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cc-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_golfing:"]:before,
-em[data-emoji="man_golfing"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cc-fe0f-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_golfing_tone1:"]:before,
-em[data-emoji="man_golfing_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cc-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_golfing_tone2:"]:before,
-em[data-emoji="man_golfing_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cc-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_golfing_tone3:"]:before,
-em[data-emoji="man_golfing_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cc-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_golfing_tone4:"]:before,
-em[data-emoji="man_golfing_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cc-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_golfing_tone5:"]:before,
-em[data-emoji="man_golfing_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cc-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":horse_racing:"]:before,
-em[data-emoji="horse_racing"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c7.svg");
-}
-
-em[data-emoji=":horse_racing_tone1:"]:before,
-em[data-emoji="horse_racing_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c7-1f3fb.svg");
-}
-
-em[data-emoji=":horse_racing_tone2:"]:before,
-em[data-emoji="horse_racing_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c7-1f3fc.svg");
-}
-
-em[data-emoji=":horse_racing_tone3:"]:before,
-em[data-emoji="horse_racing_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c7-1f3fd.svg");
-}
-
-em[data-emoji=":horse_racing_tone4:"]:before,
-em[data-emoji="horse_racing_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c7-1f3fe.svg");
-}
-
-em[data-emoji=":horse_racing_tone5:"]:before,
-em[data-emoji="horse_racing_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c7-1f3ff.svg");
-}
-
-em[data-emoji=":person_in_lotus_position:"]:before,
-em[data-emoji="person_in_lotus_position"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d8.svg");
-}
-
-em[data-emoji=":person_in_lotus_position_tone1:"]:before,
-em[data-emoji="person_in_lotus_position_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d8-1f3fb.svg");
-}
-
-em[data-emoji=":person_in_lotus_position_tone2:"]:before,
-em[data-emoji="person_in_lotus_position_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d8-1f3fc.svg");
-}
-
-em[data-emoji=":person_in_lotus_position_tone3:"]:before,
-em[data-emoji="person_in_lotus_position_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d8-1f3fd.svg");
-}
-
-em[data-emoji=":person_in_lotus_position_tone4:"]:before,
-em[data-emoji="person_in_lotus_position_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d8-1f3fe.svg");
-}
-
-em[data-emoji=":person_in_lotus_position_tone5:"]:before,
-em[data-emoji="person_in_lotus_position_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d8-1f3ff.svg");
-}
-
-em[data-emoji=":woman_in_lotus_position:"]:before,
-em[data-emoji="woman_in_lotus_position"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d8-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_in_lotus_position_tone1:"]:before,
-em[data-emoji="woman_in_lotus_position_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d8-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_in_lotus_position_tone2:"]:before,
-em[data-emoji="woman_in_lotus_position_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d8-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_in_lotus_position_tone3:"]:before,
-em[data-emoji="woman_in_lotus_position_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d8-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_in_lotus_position_tone4:"]:before,
-em[data-emoji="woman_in_lotus_position_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d8-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_in_lotus_position_tone5:"]:before,
-em[data-emoji="woman_in_lotus_position_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d8-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_in_lotus_position:"]:before,
-em[data-emoji="man_in_lotus_position"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d8-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_in_lotus_position_tone1:"]:before,
-em[data-emoji="man_in_lotus_position_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d8-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_in_lotus_position_tone2:"]:before,
-em[data-emoji="man_in_lotus_position_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d8-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_in_lotus_position_tone3:"]:before,
-em[data-emoji="man_in_lotus_position_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d8-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_in_lotus_position_tone4:"]:before,
-em[data-emoji="man_in_lotus_position_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d8-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_in_lotus_position_tone5:"]:before,
-em[data-emoji="man_in_lotus_position_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d8-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_surfing:"]:before,
-em[data-emoji="person_surfing"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c4.svg");
-}
-
-em[data-emoji=":person_surfing_tone1:"]:before,
-em[data-emoji="person_surfing_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c4-1f3fb.svg");
-}
-
-em[data-emoji=":person_surfing_tone2:"]:before,
-em[data-emoji="person_surfing_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c4-1f3fc.svg");
-}
-
-em[data-emoji=":person_surfing_tone3:"]:before,
-em[data-emoji="person_surfing_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c4-1f3fd.svg");
-}
-
-em[data-emoji=":person_surfing_tone4:"]:before,
-em[data-emoji="person_surfing_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c4-1f3fe.svg");
-}
-
-em[data-emoji=":person_surfing_tone5:"]:before,
-em[data-emoji="person_surfing_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c4-1f3ff.svg");
-}
-
-em[data-emoji=":woman_surfing:"]:before,
-em[data-emoji="woman_surfing"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c4-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_surfing_tone1:"]:before,
-em[data-emoji="woman_surfing_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c4-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_surfing_tone2:"]:before,
-em[data-emoji="woman_surfing_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c4-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_surfing_tone3:"]:before,
-em[data-emoji="woman_surfing_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c4-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_surfing_tone4:"]:before,
-em[data-emoji="woman_surfing_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c4-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_surfing_tone5:"]:before,
-em[data-emoji="woman_surfing_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c4-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_surfing:"]:before,
-em[data-emoji="man_surfing"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c4-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_surfing_tone1:"]:before,
-em[data-emoji="man_surfing_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c4-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_surfing_tone2:"]:before,
-em[data-emoji="man_surfing_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c4-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_surfing_tone3:"]:before,
-em[data-emoji="man_surfing_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c4-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_surfing_tone4:"]:before,
-em[data-emoji="man_surfing_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c4-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_surfing_tone5:"]:before,
-em[data-emoji="man_surfing_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c4-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_swimming:"]:before,
-em[data-emoji="person_swimming"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ca.svg");
-}
-
-em[data-emoji=":person_swimming_tone1:"]:before,
-em[data-emoji="person_swimming_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ca-1f3fb.svg");
-}
-
-em[data-emoji=":person_swimming_tone2:"]:before,
-em[data-emoji="person_swimming_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ca-1f3fc.svg");
-}
-
-em[data-emoji=":person_swimming_tone3:"]:before,
-em[data-emoji="person_swimming_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ca-1f3fd.svg");
-}
-
-em[data-emoji=":person_swimming_tone4:"]:before,
-em[data-emoji="person_swimming_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ca-1f3fe.svg");
-}
-
-em[data-emoji=":person_swimming_tone5:"]:before,
-em[data-emoji="person_swimming_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ca-1f3ff.svg");
-}
-
-em[data-emoji=":woman_swimming:"]:before,
-em[data-emoji="woman_swimming"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ca-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_swimming_tone1:"]:before,
-em[data-emoji="woman_swimming_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ca-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_swimming_tone2:"]:before,
-em[data-emoji="woman_swimming_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ca-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_swimming_tone3:"]:before,
-em[data-emoji="woman_swimming_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ca-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_swimming_tone4:"]:before,
-em[data-emoji="woman_swimming_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ca-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_swimming_tone5:"]:before,
-em[data-emoji="woman_swimming_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ca-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_swimming:"]:before,
-em[data-emoji="man_swimming"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ca-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_swimming_tone1:"]:before,
-em[data-emoji="man_swimming_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ca-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_swimming_tone2:"]:before,
-em[data-emoji="man_swimming_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ca-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_swimming_tone3:"]:before,
-em[data-emoji="man_swimming_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ca-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_swimming_tone4:"]:before,
-em[data-emoji="man_swimming_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ca-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_swimming_tone5:"]:before,
-em[data-emoji="man_swimming_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ca-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_playing_water_polo:"]:before,
-em[data-emoji="person_playing_water_polo"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93d.svg");
-}
-
-em[data-emoji=":person_playing_water_polo_tone1:"]:before,
-em[data-emoji="person_playing_water_polo_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93d-1f3fb.svg");
-}
-
-em[data-emoji=":person_playing_water_polo_tone2:"]:before,
-em[data-emoji="person_playing_water_polo_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93d-1f3fc.svg");
-}
-
-em[data-emoji=":person_playing_water_polo_tone3:"]:before,
-em[data-emoji="person_playing_water_polo_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93d-1f3fd.svg");
-}
-
-em[data-emoji=":person_playing_water_polo_tone4:"]:before,
-em[data-emoji="person_playing_water_polo_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93d-1f3fe.svg");
-}
-
-em[data-emoji=":person_playing_water_polo_tone5:"]:before,
-em[data-emoji="person_playing_water_polo_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93d-1f3ff.svg");
-}
-
-em[data-emoji=":woman_playing_water_polo:"]:before,
-em[data-emoji="woman_playing_water_polo"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93d-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_playing_water_polo_tone1:"]:before,
-em[data-emoji="woman_playing_water_polo_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93d-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_playing_water_polo_tone2:"]:before,
-em[data-emoji="woman_playing_water_polo_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93d-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_playing_water_polo_tone3:"]:before,
-em[data-emoji="woman_playing_water_polo_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93d-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_playing_water_polo_tone4:"]:before,
-em[data-emoji="woman_playing_water_polo_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93d-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_playing_water_polo_tone5:"]:before,
-em[data-emoji="woman_playing_water_polo_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93d-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_playing_water_polo:"]:before,
-em[data-emoji="man_playing_water_polo"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93d-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_playing_water_polo_tone1:"]:before,
-em[data-emoji="man_playing_water_polo_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93d-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_playing_water_polo_tone2:"]:before,
-em[data-emoji="man_playing_water_polo_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93d-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_playing_water_polo_tone3:"]:before,
-em[data-emoji="man_playing_water_polo_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93d-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_playing_water_polo_tone4:"]:before,
-em[data-emoji="man_playing_water_polo_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93d-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_playing_water_polo_tone5:"]:before,
-em[data-emoji="man_playing_water_polo_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93d-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_rowing_boat:"]:before,
-em[data-emoji="person_rowing_boat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a3.svg");
-}
-
-em[data-emoji=":person_rowing_boat_tone1:"]:before,
-em[data-emoji="person_rowing_boat_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a3-1f3fb.svg");
-}
-
-em[data-emoji=":person_rowing_boat_tone2:"]:before,
-em[data-emoji="person_rowing_boat_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a3-1f3fc.svg");
-}
-
-em[data-emoji=":person_rowing_boat_tone3:"]:before,
-em[data-emoji="person_rowing_boat_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a3-1f3fd.svg");
-}
-
-em[data-emoji=":person_rowing_boat_tone4:"]:before,
-em[data-emoji="person_rowing_boat_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a3-1f3fe.svg");
-}
-
-em[data-emoji=":person_rowing_boat_tone5:"]:before,
-em[data-emoji="person_rowing_boat_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a3-1f3ff.svg");
-}
-
-em[data-emoji=":woman_rowing_boat:"]:before,
-em[data-emoji="woman_rowing_boat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a3-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_rowing_boat_tone1:"]:before,
-em[data-emoji="woman_rowing_boat_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a3-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_rowing_boat_tone2:"]:before,
-em[data-emoji="woman_rowing_boat_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a3-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_rowing_boat_tone3:"]:before,
-em[data-emoji="woman_rowing_boat_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a3-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_rowing_boat_tone4:"]:before,
-em[data-emoji="woman_rowing_boat_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a3-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_rowing_boat_tone5:"]:before,
-em[data-emoji="woman_rowing_boat_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a3-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_rowing_boat:"]:before,
-em[data-emoji="man_rowing_boat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a3-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_rowing_boat_tone1:"]:before,
-em[data-emoji="man_rowing_boat_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a3-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_rowing_boat_tone2:"]:before,
-em[data-emoji="man_rowing_boat_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a3-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_rowing_boat_tone3:"]:before,
-em[data-emoji="man_rowing_boat_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a3-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_rowing_boat_tone4:"]:before,
-em[data-emoji="man_rowing_boat_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a3-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_rowing_boat_tone5:"]:before,
-em[data-emoji="man_rowing_boat_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a3-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_climbing:"]:before,
-em[data-emoji="person_climbing"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d7.svg");
-}
-
-em[data-emoji=":person_climbing_tone1:"]:before,
-em[data-emoji="person_climbing_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d7-1f3fb.svg");
-}
-
-em[data-emoji=":person_climbing_tone2:"]:before,
-em[data-emoji="person_climbing_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d7-1f3fc.svg");
-}
-
-em[data-emoji=":person_climbing_tone3:"]:before,
-em[data-emoji="person_climbing_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d7-1f3fd.svg");
-}
-
-em[data-emoji=":person_climbing_tone4:"]:before,
-em[data-emoji="person_climbing_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d7-1f3fe.svg");
-}
-
-em[data-emoji=":person_climbing_tone5:"]:before,
-em[data-emoji="person_climbing_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d7-1f3ff.svg");
-}
-
-em[data-emoji=":woman_climbing:"]:before,
-em[data-emoji="woman_climbing"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d7-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_climbing_tone1:"]:before,
-em[data-emoji="woman_climbing_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d7-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_climbing_tone2:"]:before,
-em[data-emoji="woman_climbing_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d7-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_climbing_tone3:"]:before,
-em[data-emoji="woman_climbing_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d7-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_climbing_tone4:"]:before,
-em[data-emoji="woman_climbing_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d7-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_climbing_tone5:"]:before,
-em[data-emoji="woman_climbing_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d7-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_climbing:"]:before,
-em[data-emoji="man_climbing"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d7-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_climbing_tone1:"]:before,
-em[data-emoji="man_climbing_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d7-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_climbing_tone2:"]:before,
-em[data-emoji="man_climbing_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d7-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_climbing_tone3:"]:before,
-em[data-emoji="man_climbing_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d7-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_climbing_tone4:"]:before,
-em[data-emoji="man_climbing_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d7-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_climbing_tone5:"]:before,
-em[data-emoji="man_climbing_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d7-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_mountain_biking:"]:before,
-em[data-emoji="person_mountain_biking"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b5.svg");
-}
-
-em[data-emoji=":person_mountain_biking_tone1:"]:before,
-em[data-emoji="person_mountain_biking_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b5-1f3fb.svg");
-}
-
-em[data-emoji=":person_mountain_biking_tone2:"]:before,
-em[data-emoji="person_mountain_biking_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b5-1f3fc.svg");
-}
-
-em[data-emoji=":person_mountain_biking_tone3:"]:before,
-em[data-emoji="person_mountain_biking_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b5-1f3fd.svg");
-}
-
-em[data-emoji=":person_mountain_biking_tone4:"]:before,
-em[data-emoji="person_mountain_biking_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b5-1f3fe.svg");
-}
-
-em[data-emoji=":person_mountain_biking_tone5:"]:before,
-em[data-emoji="person_mountain_biking_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b5-1f3ff.svg");
-}
-
-em[data-emoji=":woman_mountain_biking:"]:before,
-em[data-emoji="woman_mountain_biking"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b5-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_mountain_biking_tone1:"]:before,
-em[data-emoji="woman_mountain_biking_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b5-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_mountain_biking_tone2:"]:before,
-em[data-emoji="woman_mountain_biking_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b5-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_mountain_biking_tone3:"]:before,
-em[data-emoji="woman_mountain_biking_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b5-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_mountain_biking_tone4:"]:before,
-em[data-emoji="woman_mountain_biking_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b5-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_mountain_biking_tone5:"]:before,
-em[data-emoji="woman_mountain_biking_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b5-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_mountain_biking:"]:before,
-em[data-emoji="man_mountain_biking"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b5-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_mountain_biking_tone1:"]:before,
-em[data-emoji="man_mountain_biking_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b5-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_mountain_biking_tone2:"]:before,
-em[data-emoji="man_mountain_biking_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b5-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_mountain_biking_tone3:"]:before,
-em[data-emoji="man_mountain_biking_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b5-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_mountain_biking_tone4:"]:before,
-em[data-emoji="man_mountain_biking_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b5-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_mountain_biking_tone5:"]:before,
-em[data-emoji="man_mountain_biking_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b5-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_biking:"]:before,
-em[data-emoji="person_biking"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b4.svg");
-}
-
-em[data-emoji=":person_biking_tone1:"]:before,
-em[data-emoji="person_biking_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b4-1f3fb.svg");
-}
-
-em[data-emoji=":person_biking_tone2:"]:before,
-em[data-emoji="person_biking_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b4-1f3fc.svg");
-}
-
-em[data-emoji=":person_biking_tone3:"]:before,
-em[data-emoji="person_biking_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b4-1f3fd.svg");
-}
-
-em[data-emoji=":person_biking_tone4:"]:before,
-em[data-emoji="person_biking_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b4-1f3fe.svg");
-}
-
-em[data-emoji=":person_biking_tone5:"]:before,
-em[data-emoji="person_biking_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b4-1f3ff.svg");
-}
-
-em[data-emoji=":woman_biking:"]:before,
-em[data-emoji="woman_biking"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b4-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_biking_tone1:"]:before,
-em[data-emoji="woman_biking_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b4-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_biking_tone2:"]:before,
-em[data-emoji="woman_biking_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b4-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_biking_tone3:"]:before,
-em[data-emoji="woman_biking_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b4-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_biking_tone4:"]:before,
-em[data-emoji="woman_biking_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b4-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_biking_tone5:"]:before,
-em[data-emoji="woman_biking_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b4-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_biking:"]:before,
-em[data-emoji="man_biking"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b4-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_biking_tone1:"]:before,
-em[data-emoji="man_biking_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b4-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_biking_tone2:"]:before,
-em[data-emoji="man_biking_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b4-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_biking_tone3:"]:before,
-em[data-emoji="man_biking_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b4-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_biking_tone4:"]:before,
-em[data-emoji="man_biking_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b4-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_biking_tone5:"]:before,
-em[data-emoji="man_biking_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b4-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":trophy:"]:before,
-em[data-emoji="trophy"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c6.svg");
-}
-
-em[data-emoji=":first_place:"]:before,
-em[data-emoji="first_place"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f947.svg");
-}
-
-em[data-emoji=":second_place:"]:before,
-em[data-emoji="second_place"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f948.svg");
-}
-
-em[data-emoji=":third_place:"]:before,
-em[data-emoji="third_place"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f949.svg");
-}
-
-em[data-emoji=":medal:"]:before,
-em[data-emoji="medal"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c5.svg");
-}
-
-em[data-emoji=":military_medal:"]:before,
-em[data-emoji="military_medal"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f396.svg");
-}
-
-em[data-emoji=":rosette:"]:before,
-em[data-emoji="rosette"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3f5.svg");
-}
-
-em[data-emoji=":reminder_ribbon:"]:before,
-em[data-emoji="reminder_ribbon"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f397.svg");
-}
-
-em[data-emoji=":ticket:"]:before,
-em[data-emoji="ticket"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ab.svg");
-}
-
-em[data-emoji=":tickets:"]:before,
-em[data-emoji="tickets"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f39f.svg");
-}
-
-em[data-emoji=":circus_tent:"]:before,
-em[data-emoji="circus_tent"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3aa.svg");
-}
-
-em[data-emoji=":person_juggling:"]:before,
-em[data-emoji="person_juggling"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f939.svg");
-}
-
-em[data-emoji=":person_juggling_tone1:"]:before,
-em[data-emoji="person_juggling_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f939-1f3fb.svg");
-}
-
-em[data-emoji=":person_juggling_tone2:"]:before,
-em[data-emoji="person_juggling_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f939-1f3fc.svg");
-}
-
-em[data-emoji=":person_juggling_tone3:"]:before,
-em[data-emoji="person_juggling_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f939-1f3fd.svg");
-}
-
-em[data-emoji=":person_juggling_tone4:"]:before,
-em[data-emoji="person_juggling_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f939-1f3fe.svg");
-}
-
-em[data-emoji=":person_juggling_tone5:"]:before,
-em[data-emoji="person_juggling_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f939-1f3ff.svg");
-}
-
-em[data-emoji=":woman_juggling:"]:before,
-em[data-emoji="woman_juggling"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f939-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_juggling_tone1:"]:before,
-em[data-emoji="woman_juggling_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f939-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_juggling_tone2:"]:before,
-em[data-emoji="woman_juggling_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f939-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_juggling_tone3:"]:before,
-em[data-emoji="woman_juggling_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f939-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_juggling_tone4:"]:before,
-em[data-emoji="woman_juggling_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f939-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_juggling_tone5:"]:before,
-em[data-emoji="woman_juggling_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f939-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_juggling:"]:before,
-em[data-emoji="man_juggling"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f939-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_juggling_tone1:"]:before,
-em[data-emoji="man_juggling_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f939-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_juggling_tone2:"]:before,
-em[data-emoji="man_juggling_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f939-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_juggling_tone3:"]:before,
-em[data-emoji="man_juggling_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f939-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_juggling_tone4:"]:before,
-em[data-emoji="man_juggling_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f939-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_juggling_tone5:"]:before,
-em[data-emoji="man_juggling_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f939-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":performing_arts:"]:before,
-em[data-emoji="performing_arts"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ad.svg");
-}
-
-em[data-emoji=":art:"]:before,
-em[data-emoji="art"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3a8.svg");
-}
-
-em[data-emoji=":clapper:"]:before,
-em[data-emoji="clapper"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ac.svg");
-}
-
-em[data-emoji=":microphone:"]:before,
-em[data-emoji="microphone"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3a4.svg");
-}
-
-em[data-emoji=":headphones:"]:before,
-em[data-emoji="headphones"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3a7.svg");
-}
-
-em[data-emoji=":musical_score:"]:before,
-em[data-emoji="musical_score"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3bc.svg");
-}
-
-em[data-emoji=":musical_keyboard:"]:before,
-em[data-emoji="musical_keyboard"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3b9.svg");
-}
-
-em[data-emoji=":drum:"]:before,
-em[data-emoji="drum"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f941.svg");
-}
-
-em[data-emoji=":saxophone:"]:before,
-em[data-emoji="saxophone"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3b7.svg");
-}
-
-em[data-emoji=":trumpet:"]:before,
-em[data-emoji="trumpet"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ba.svg");
-}
-
-em[data-emoji=":banjo:"]:before,
-em[data-emoji="banjo"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1fa95.svg");
-}
-
-em[data-emoji=":guitar:"]:before,
-em[data-emoji="guitar"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3b8.svg");
-}
-
-em[data-emoji=":violin:"]:before,
-em[data-emoji="violin"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3bb.svg");
-}
-
-em[data-emoji=":game_die:"]:before,
-em[data-emoji="game_die"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3b2.svg");
-}
-
-em[data-emoji=":chess_pawn:"]:before,
-em[data-emoji="chess_pawn"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/265f.svg");
-}
-
-em[data-emoji=":dart:"]:before,
-em[data-emoji="dart"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3af.svg");
-}
-
-em[data-emoji=":kite:"]:before,
-em[data-emoji="kite"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1fa81.svg");
-}
-
-em[data-emoji=":yo_yo:"]:before,
-em[data-emoji="yo_yo"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1fa80.svg");
-}
-
-em[data-emoji=":bowling:"]:before,
-em[data-emoji="bowling"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3b3.svg");
-}
-
-em[data-emoji=":video_game:"]:before,
-em[data-emoji="video_game"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ae.svg");
-}
-
-em[data-emoji=":slot_machine:"]:before,
-em[data-emoji="slot_machine"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3b0.svg");
-}
-
-em[data-emoji=":jigsaw:"]:before,
-em[data-emoji="jigsaw"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9e9.svg");
-}
-
-em[data-emoji=":watch:"]:before,
-em[data-emoji="watch"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/231a.svg");
-}
-
-em[data-emoji=":iphone:"]:before,
-em[data-emoji="iphone"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4f1.svg");
-}
-
-em[data-emoji=":calling:"]:before,
-em[data-emoji="calling"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4f2.svg");
-}
-
-em[data-emoji=":computer:"]:before,
-em[data-emoji="computer"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4bb.svg");
-}
-
-em[data-emoji=":desktop:"]:before,
-em[data-emoji="desktop"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5a5.svg");
-}
-
-em[data-emoji=":printer:"]:before,
-em[data-emoji="printer"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5a8.svg");
-}
-
-em[data-emoji=":mouse_three_button:"]:before,
-em[data-emoji="mouse_three_button"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5b1.svg");
-}
-
-em[data-emoji=":trackball:"]:before,
-em[data-emoji="trackball"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5b2.svg");
-}
-
-em[data-emoji=":joystick:"]:before,
-em[data-emoji="joystick"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f579.svg");
-}
-
-em[data-emoji=":compression:"]:before,
-em[data-emoji="compression"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5dc.svg");
-}
-
-em[data-emoji=":minidisc:"]:before,
-em[data-emoji="minidisc"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4bd.svg");
-}
-
-em[data-emoji=":floppy_disk:"]:before,
-em[data-emoji="floppy_disk"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4be.svg");
-}
-
-em[data-emoji=":cd:"]:before,
-em[data-emoji="cd"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4bf.svg");
-}
-
-em[data-emoji=":dvd:"]:before,
-em[data-emoji="dvd"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4c0.svg");
-}
-
-em[data-emoji=":vhs:"]:before,
-em[data-emoji="vhs"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4fc.svg");
-}
-
-em[data-emoji=":camera:"]:before,
-em[data-emoji="camera"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4f7.svg");
-}
-
-em[data-emoji=":camera_with_flash:"]:before,
-em[data-emoji="camera_with_flash"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4f8.svg");
-}
-
-em[data-emoji=":video_camera:"]:before,
-em[data-emoji="video_camera"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4f9.svg");
-}
-
-em[data-emoji=":movie_camera:"]:before,
-em[data-emoji="movie_camera"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3a5.svg");
-}
-
-em[data-emoji=":projector:"]:before,
-em[data-emoji="projector"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4fd.svg");
-}
-
-em[data-emoji=":film_frames:"]:before,
-em[data-emoji="film_frames"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f39e.svg");
-}
-
-em[data-emoji=":telephone_receiver:"]:before,
-em[data-emoji="telephone_receiver"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4de.svg");
-}
-
-em[data-emoji=":telephone:"]:before,
-em[data-emoji="telephone"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/260e.svg");
-}
-
-em[data-emoji=":pager:"]:before,
-em[data-emoji="pager"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4df.svg");
-}
-
-em[data-emoji=":fax:"]:before,
-em[data-emoji="fax"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4e0.svg");
-}
-
-em[data-emoji=":tv:"]:before,
-em[data-emoji="tv"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4fa.svg");
-}
-
-em[data-emoji=":radio:"]:before,
-em[data-emoji="radio"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4fb.svg");
-}
-
-em[data-emoji=":microphone2:"]:before,
-em[data-emoji="microphone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f399.svg");
-}
-
-em[data-emoji=":level_slider:"]:before,
-em[data-emoji="level_slider"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f39a.svg");
-}
-
-em[data-emoji=":control_knobs:"]:before,
-em[data-emoji="control_knobs"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f39b.svg");
-}
-
-em[data-emoji=":compass:"]:before,
-em[data-emoji="compass"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ed.svg");
-}
-
-em[data-emoji=":stopwatch:"]:before,
-em[data-emoji="stopwatch"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/23f1.svg");
-}
-
-em[data-emoji=":timer:"]:before,
-em[data-emoji="timer"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/23f2.svg");
-}
-
-em[data-emoji=":alarm_clock:"]:before,
-em[data-emoji="alarm_clock"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/23f0.svg");
-}
-
-em[data-emoji=":clock:"]:before,
-em[data-emoji="clock"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f570.svg");
-}
-
-em[data-emoji=":hourglass:"]:before,
-em[data-emoji="hourglass"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/231b.svg");
-}
-
-em[data-emoji=":hourglass_flowing_sand:"]:before,
-em[data-emoji="hourglass_flowing_sand"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/23f3.svg");
-}
-
-em[data-emoji=":satellite:"]:before,
-em[data-emoji="satellite"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4e1.svg");
-}
-
-em[data-emoji=":battery:"]:before,
-em[data-emoji="battery"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f50b.svg");
-}
-
-em[data-emoji=":electric_plug:"]:before,
-em[data-emoji="electric_plug"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f50c.svg");
-}
-
-em[data-emoji=":bulb:"]:before,
-em[data-emoji="bulb"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4a1.svg");
-}
-
-em[data-emoji=":flashlight:"]:before,
-em[data-emoji="flashlight"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f526.svg");
-}
-
-em[data-emoji=":candle:"]:before,
-em[data-emoji="candle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f56f.svg");
-}
-
-em[data-emoji=":fire_extinguisher:"]:before,
-em[data-emoji="fire_extinguisher"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ef.svg");
-}
-
-em[data-emoji=":oil:"]:before,
-em[data-emoji="oil"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6e2.svg");
-}
-
-em[data-emoji=":money_with_wings:"]:before,
-em[data-emoji="money_with_wings"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4b8.svg");
-}
-
-em[data-emoji=":dollar:"]:before,
-em[data-emoji="dollar"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4b5.svg");
-}
-
-em[data-emoji=":yen:"]:before,
-em[data-emoji="yen"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4b4.svg");
-}
-
-em[data-emoji=":euro:"]:before,
-em[data-emoji="euro"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4b6.svg");
-}
-
-em[data-emoji=":pound:"]:before,
-em[data-emoji="pound"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4b7.svg");
-}
-
-em[data-emoji=":moneybag:"]:before,
-em[data-emoji="moneybag"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4b0.svg");
-}
-
-em[data-emoji=":credit_card:"]:before,
-em[data-emoji="credit_card"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4b3.svg");
-}
-
-em[data-emoji=":gem:"]:before,
-em[data-emoji="gem"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f48e.svg");
-}
-
-em[data-emoji=":toolbox:"]:before,
-em[data-emoji="toolbox"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9f0.svg");
-}
-
-em[data-emoji=":wrench:"]:before,
-em[data-emoji="wrench"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f527.svg");
-}
-
-em[data-emoji=":hammer:"]:before,
-em[data-emoji="hammer"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f528.svg");
-}
-
-em[data-emoji=":tools:"]:before,
-em[data-emoji="tools"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6e0.svg");
-}
-
-em[data-emoji=":pick:"]:before,
-em[data-emoji="pick"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26cf.svg");
-}
-
-em[data-emoji=":nut_and_bolt:"]:before,
-em[data-emoji="nut_and_bolt"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f529.svg");
-}
-
-em[data-emoji=":bricks:"]:before,
-em[data-emoji="bricks"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9f1.svg");
-}
-
-em[data-emoji=":chains:"]:before,
-em[data-emoji="chains"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26d3.svg");
-}
-
-em[data-emoji=":magnet:"]:before,
-em[data-emoji="magnet"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9f2.svg");
-}
-
-em[data-emoji=":gun:"]:before,
-em[data-emoji="gun"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f52b.svg");
-}
-
-em[data-emoji=":bomb:"]:before,
-em[data-emoji="bomb"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4a3.svg");
-}
-
-em[data-emoji=":firecracker:"]:before,
-em[data-emoji="firecracker"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9e8.svg");
-}
-
-em[data-emoji=":axe:"]:before,
-em[data-emoji="axe"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1fa93.svg");
-}
-
-em[data-emoji=":razor:"]:before,
-em[data-emoji="razor"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1fa92.svg");
-}
-
-em[data-emoji=":knife:"]:before,
-em[data-emoji="knife"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f52a.svg");
-}
-
-em[data-emoji=":dagger:"]:before,
-em[data-emoji="dagger"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5e1.svg");
-}
-
-em[data-emoji=":shield:"]:before,
-em[data-emoji="shield"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6e1.svg");
-}
-
-em[data-emoji=":smoking:"]:before,
-em[data-emoji="smoking"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6ac.svg");
-}
-
-em[data-emoji=":coffin:"]:before,
-em[data-emoji="coffin"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26b0.svg");
-}
-
-em[data-emoji=":urn:"]:before,
-em[data-emoji="urn"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26b1.svg");
-}
-
-em[data-emoji=":amphora:"]:before,
-em[data-emoji="amphora"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3fa.svg");
-}
-
-em[data-emoji=":diya_lamp:"]:before,
-em[data-emoji="diya_lamp"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1fa94.svg");
-}
-
-em[data-emoji=":crystal_ball:"]:before,
-em[data-emoji="crystal_ball"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f52e.svg");
-}
-
-em[data-emoji=":prayer_beads:"]:before,
-em[data-emoji="prayer_beads"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4ff.svg");
-}
-
-em[data-emoji=":nazar_amulet:"]:before,
-em[data-emoji="nazar_amulet"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ff.svg");
-}
-
-em[data-emoji=":barber:"]:before,
-em[data-emoji="barber"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f488.svg");
-}
-
-em[data-emoji=":telescope:"]:before,
-em[data-emoji="telescope"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f52d.svg");
-}
-
-em[data-emoji=":microscope:"]:before,
-em[data-emoji="microscope"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f52c.svg");
-}
-
-em[data-emoji=":hole:"]:before,
-em[data-emoji="hole"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f573.svg");
-}
-
-em[data-emoji=":probing_cane:"]:before,
-em[data-emoji="probing_cane"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9af.svg");
-}
-
-em[data-emoji=":stethoscope:"]:before,
-em[data-emoji="stethoscope"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1fa7a.svg");
-}
-
-em[data-emoji=":adhesive_bandage:"]:before,
-em[data-emoji="adhesive_bandage"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1fa79.svg");
-}
-
-em[data-emoji=":pill:"]:before,
-em[data-emoji="pill"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f48a.svg");
-}
-
-em[data-emoji=":syringe:"]:before,
-em[data-emoji="syringe"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f489.svg");
-}
-
-em[data-emoji=":drop_of_blood:"]:before,
-em[data-emoji="drop_of_blood"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1fa78.svg");
-}
-
-em[data-emoji=":dna:"]:before,
-em[data-emoji="dna"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ec.svg");
-}
-
-em[data-emoji=":microbe:"]:before,
-em[data-emoji="microbe"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9a0.svg");
-}
-
-em[data-emoji=":petri_dish:"]:before,
-em[data-emoji="petri_dish"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9eb.svg");
-}
-
-em[data-emoji=":test_tube:"]:before,
-em[data-emoji="test_tube"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ea.svg");
-}
-
-em[data-emoji=":thermometer:"]:before,
-em[data-emoji="thermometer"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f321.svg");
-}
-
-em[data-emoji=":chair:"]:before,
-em[data-emoji="chair"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1fa91.svg");
-}
-
-em[data-emoji=":broom:"]:before,
-em[data-emoji="broom"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9f9.svg");
-}
-
-em[data-emoji=":basket:"]:before,
-em[data-emoji="basket"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9fa.svg");
-}
-
-em[data-emoji=":roll_of_paper:"]:before,
-em[data-emoji="roll_of_paper"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9fb.svg");
-}
-
-em[data-emoji=":toilet:"]:before,
-em[data-emoji="toilet"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6bd.svg");
-}
-
-em[data-emoji=":potable_water:"]:before,
-em[data-emoji="potable_water"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b0.svg");
-}
-
-em[data-emoji=":shower:"]:before,
-em[data-emoji="shower"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6bf.svg");
-}
-
-em[data-emoji=":bathtub:"]:before,
-em[data-emoji="bathtub"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6c1.svg");
-}
-
-em[data-emoji=":bath:"]:before,
-em[data-emoji="bath"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6c0.svg");
-}
-
-em[data-emoji=":bath_tone1:"]:before,
-em[data-emoji="bath_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6c0-1f3fb.svg");
-}
-
-em[data-emoji=":bath_tone2:"]:before,
-em[data-emoji="bath_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6c0-1f3fc.svg");
-}
-
-em[data-emoji=":bath_tone3:"]:before,
-em[data-emoji="bath_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6c0-1f3fd.svg");
-}
-
-em[data-emoji=":bath_tone4:"]:before,
-em[data-emoji="bath_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6c0-1f3fe.svg");
-}
-
-em[data-emoji=":bath_tone5:"]:before,
-em[data-emoji="bath_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6c0-1f3ff.svg");
-}
-
-em[data-emoji=":soap:"]:before,
-em[data-emoji="soap"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9fc.svg");
-}
-
-em[data-emoji=":sponge:"]:before,
-em[data-emoji="sponge"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9fd.svg");
-}
-
-em[data-emoji=":squeeze_bottle:"]:before,
-em[data-emoji="squeeze_bottle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9f4.svg");
-}
-
-em[data-emoji=":bellhop:"]:before,
-em[data-emoji="bellhop"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6ce.svg");
-}
-
-em[data-emoji=":key:"]:before,
-em[data-emoji="key"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f511.svg");
-}
-
-em[data-emoji=":key2:"]:before,
-em[data-emoji="key2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5dd.svg");
-}
-
-em[data-emoji=":door:"]:before,
-em[data-emoji="door"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6aa.svg");
-}
-
-em[data-emoji=":couch:"]:before,
-em[data-emoji="couch"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6cb.svg");
-}
-
-em[data-emoji=":bed:"]:before,
-em[data-emoji="bed"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6cf.svg");
-}
-
-em[data-emoji=":sleeping_accommodation:"]:before,
-em[data-emoji="sleeping_accommodation"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6cc.svg");
-}
-
-em[data-emoji=":person_in_bed_tone1:"]:before,
-em[data-emoji="person_in_bed_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6cc-1f3fb.svg");
-}
-
-em[data-emoji=":person_in_bed_tone2:"]:before,
-em[data-emoji="person_in_bed_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6cc-1f3fc.svg");
-}
-
-em[data-emoji=":person_in_bed_tone3:"]:before,
-em[data-emoji="person_in_bed_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6cc-1f3fd.svg");
-}
-
-em[data-emoji=":person_in_bed_tone4:"]:before,
-em[data-emoji="person_in_bed_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6cc-1f3fe.svg");
-}
-
-em[data-emoji=":person_in_bed_tone5:"]:before,
-em[data-emoji="person_in_bed_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6cc-1f3ff.svg");
-}
-
-em[data-emoji=":teddy_bear:"]:before,
-em[data-emoji="teddy_bear"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9f8.svg");
-}
-
-em[data-emoji=":frame_photo:"]:before,
-em[data-emoji="frame_photo"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5bc.svg");
-}
-
-em[data-emoji=":shopping_bags:"]:before,
-em[data-emoji="shopping_bags"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6cd.svg");
-}
-
-em[data-emoji=":shopping_cart:"]:before,
-em[data-emoji="shopping_cart"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6d2.svg");
-}
-
-em[data-emoji=":gift:"]:before,
-em[data-emoji="gift"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f381.svg");
-}
-
-em[data-emoji=":balloon:"]:before,
-em[data-emoji="balloon"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f388.svg");
-}
-
-em[data-emoji=":flags:"]:before,
-em[data-emoji="flags"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f38f.svg");
-}
-
-em[data-emoji=":ribbon:"]:before,
-em[data-emoji="ribbon"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f380.svg");
-}
-
-em[data-emoji=":confetti_ball:"]:before,
-em[data-emoji="confetti_ball"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f38a.svg");
-}
-
-em[data-emoji=":tada:"]:before,
-em[data-emoji="tada"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f389.svg");
-}
-
-em[data-emoji=":dolls:"]:before,
-em[data-emoji="dolls"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f38e.svg");
-}
-
-em[data-emoji=":izakaya_lantern:"]:before,
-em[data-emoji="izakaya_lantern"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ee.svg");
-}
-
-em[data-emoji=":wind_chime:"]:before,
-em[data-emoji="wind_chime"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f390.svg");
-}
-
-em[data-emoji=":red_envelope:"]:before,
-em[data-emoji="red_envelope"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9e7.svg");
-}
-
-em[data-emoji=":envelope_with_arrow:"]:before,
-em[data-emoji="envelope_with_arrow"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4e9.svg");
-}
-
-em[data-emoji=":incoming_envelope:"]:before,
-em[data-emoji="incoming_envelope"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4e8.svg");
-}
-
-em[data-emoji=":e-mail:"]:before,
-em[data-emoji="e-mail"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4e7.svg");
-}
-
-em[data-emoji=":love_letter:"]:before,
-em[data-emoji="love_letter"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f48c.svg");
-}
-
-em[data-emoji=":inbox_tray:"]:before,
-em[data-emoji="inbox_tray"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4e5.svg");
-}
-
-em[data-emoji=":outbox_tray:"]:before,
-em[data-emoji="outbox_tray"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4e4.svg");
-}
-
-em[data-emoji=":package:"]:before,
-em[data-emoji="package"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4e6.svg");
-}
-
-em[data-emoji=":label:"]:before,
-em[data-emoji="label"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3f7.svg");
-}
-
-em[data-emoji=":mailbox_closed:"]:before,
-em[data-emoji="mailbox_closed"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4ea.svg");
-}
-
-em[data-emoji=":mailbox:"]:before,
-em[data-emoji="mailbox"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4eb.svg");
-}
-
-em[data-emoji=":mailbox_with_mail:"]:before,
-em[data-emoji="mailbox_with_mail"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4ec.svg");
-}
-
-em[data-emoji=":mailbox_with_no_mail:"]:before,
-em[data-emoji="mailbox_with_no_mail"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4ed.svg");
-}
-
-em[data-emoji=":postbox:"]:before,
-em[data-emoji="postbox"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4ee.svg");
-}
-
-em[data-emoji=":postal_horn:"]:before,
-em[data-emoji="postal_horn"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4ef.svg");
-}
-
-em[data-emoji=":scroll:"]:before,
-em[data-emoji="scroll"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4dc.svg");
-}
-
-em[data-emoji=":page_with_curl:"]:before,
-em[data-emoji="page_with_curl"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4c3.svg");
-}
-
-em[data-emoji=":page_facing_up:"]:before,
-em[data-emoji="page_facing_up"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4c4.svg");
-}
-
-em[data-emoji=":bookmark_tabs:"]:before,
-em[data-emoji="bookmark_tabs"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4d1.svg");
-}
-
-em[data-emoji=":receipt:"]:before,
-em[data-emoji="receipt"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9fe.svg");
-}
-
-em[data-emoji=":bar_chart:"]:before,
-em[data-emoji="bar_chart"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4ca.svg");
-}
-
-em[data-emoji=":chart_with_upwards_trend:"]:before,
-em[data-emoji="chart_with_upwards_trend"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4c8.svg");
-}
-
-em[data-emoji=":chart_with_downwards_trend:"]:before,
-em[data-emoji="chart_with_downwards_trend"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4c9.svg");
-}
-
-em[data-emoji=":notepad_spiral:"]:before,
-em[data-emoji="notepad_spiral"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5d2.svg");
-}
-
-em[data-emoji=":calendar_spiral:"]:before,
-em[data-emoji="calendar_spiral"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5d3.svg");
-}
-
-em[data-emoji=":calendar:"]:before,
-em[data-emoji="calendar"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4c6.svg");
-}
-
-em[data-emoji=":date:"]:before,
-em[data-emoji="date"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4c5.svg");
-}
-
-em[data-emoji=":wastebasket:"]:before,
-em[data-emoji="wastebasket"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5d1.svg");
-}
-
-em[data-emoji=":card_index:"]:before,
-em[data-emoji="card_index"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4c7.svg");
-}
-
-em[data-emoji=":card_box:"]:before,
-em[data-emoji="card_box"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5c3.svg");
-}
-
-em[data-emoji=":ballot_box:"]:before,
-em[data-emoji="ballot_box"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5f3.svg");
-}
-
-em[data-emoji=":file_cabinet:"]:before,
-em[data-emoji="file_cabinet"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5c4.svg");
-}
-
-em[data-emoji=":clipboard:"]:before,
-em[data-emoji="clipboard"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4cb.svg");
-}
-
-em[data-emoji=":file_folder:"]:before,
-em[data-emoji="file_folder"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4c1.svg");
-}
-
-em[data-emoji=":open_file_folder:"]:before,
-em[data-emoji="open_file_folder"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4c2.svg");
-}
-
-em[data-emoji=":dividers:"]:before,
-em[data-emoji="dividers"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5c2.svg");
-}
-
-em[data-emoji=":newspaper2:"]:before,
-em[data-emoji="newspaper2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5de.svg");
-}
-
-em[data-emoji=":newspaper:"]:before,
-em[data-emoji="newspaper"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4f0.svg");
-}
-
-em[data-emoji=":notebook:"]:before,
-em[data-emoji="notebook"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4d3.svg");
-}
-
-em[data-emoji=":notebook_with_decorative_cover:"]:before,
-em[data-emoji="notebook_with_decorative_cover"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4d4.svg");
-}
-
-em[data-emoji=":ledger:"]:before,
-em[data-emoji="ledger"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4d2.svg");
-}
-
-em[data-emoji=":closed_book:"]:before,
-em[data-emoji="closed_book"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4d5.svg");
-}
-
-em[data-emoji=":green_book:"]:before,
-em[data-emoji="green_book"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4d7.svg");
-}
-
-em[data-emoji=":blue_book:"]:before,
-em[data-emoji="blue_book"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4d8.svg");
-}
-
-em[data-emoji=":orange_book:"]:before,
-em[data-emoji="orange_book"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4d9.svg");
-}
-
-em[data-emoji=":books:"]:before,
-em[data-emoji="books"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4da.svg");
-}
-
-em[data-emoji=":book:"]:before,
-em[data-emoji="book"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4d6.svg");
-}
-
-em[data-emoji=":bookmark:"]:before,
-em[data-emoji="bookmark"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f516.svg");
-}
-
-em[data-emoji=":safety_pin:"]:before,
-em[data-emoji="safety_pin"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9f7.svg");
-}
-
-em[data-emoji=":link:"]:before,
-em[data-emoji="link"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f517.svg");
-}
-
-em[data-emoji=":paperclip:"]:before,
-em[data-emoji="paperclip"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4ce.svg");
-}
-
-em[data-emoji=":paperclips:"]:before,
-em[data-emoji="paperclips"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f587.svg");
-}
-
-em[data-emoji=":triangular_ruler:"]:before,
-em[data-emoji="triangular_ruler"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4d0.svg");
-}
-
-em[data-emoji=":straight_ruler:"]:before,
-em[data-emoji="straight_ruler"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4cf.svg");
-}
-
-em[data-emoji=":abacus:"]:before,
-em[data-emoji="abacus"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ee.svg");
-}
-
-em[data-emoji=":pushpin:"]:before,
-em[data-emoji="pushpin"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4cc.svg");
-}
-
-em[data-emoji=":round_pushpin:"]:before,
-em[data-emoji="round_pushpin"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4cd.svg");
-}
-
-em[data-emoji=":pen_ballpoint:"]:before,
-em[data-emoji="pen_ballpoint"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f58a.svg");
-}
-
-em[data-emoji=":pen_fountain:"]:before,
-em[data-emoji="pen_fountain"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f58b.svg");
-}
-
-em[data-emoji=":paintbrush:"]:before,
-em[data-emoji="paintbrush"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f58c.svg");
-}
-
-em[data-emoji=":crayon:"]:before,
-em[data-emoji="crayon"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f58d.svg");
-}
-
-em[data-emoji=":pencil:"]:before,
-em[data-emoji="pencil"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4dd.svg");
-}
-
-em[data-emoji=":pencil2:"]:before,
-em[data-emoji="pencil2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270f.svg");
-}
-
-em[data-emoji=":mag:"]:before,
-em[data-emoji="mag"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f50d.svg");
-}
-
-em[data-emoji=":mag_right:"]:before,
-em[data-emoji="mag_right"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f50e.svg");
-}
-
-em[data-emoji=":lock_with_ink_pen:"]:before,
-em[data-emoji="lock_with_ink_pen"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f50f.svg");
-}
-
-em[data-emoji=":closed_lock_with_key:"]:before,
-em[data-emoji="closed_lock_with_key"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f510.svg");
-}
-
-em[data-emoji=":lock:"]:before,
-em[data-emoji="lock"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f512.svg");
-}
-
-em[data-emoji=":unlock:"]:before,
-em[data-emoji="unlock"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f513.svg");
-}
-
-em[data-emoji=":dog:"]:before,
-em[data-emoji="dog"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f436.svg");
-}
-
-em[data-emoji=":cat:"]:before,
-em[data-emoji="cat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f431.svg");
-}
-
-em[data-emoji=":mouse:"]:before,
-em[data-emoji="mouse"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f42d.svg");
-}
-
-em[data-emoji=":hamster:"]:before,
-em[data-emoji="hamster"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f439.svg");
-}
-
-em[data-emoji=":rabbit:"]:before,
-em[data-emoji="rabbit"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f430.svg");
-}
-
-em[data-emoji=":fox:"]:before,
-em[data-emoji="fox"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f98a.svg");
-}
-
-em[data-emoji=":bear:"]:before,
-em[data-emoji="bear"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f43b.svg");
-}
-
-em[data-emoji=":panda_face:"]:before,
-em[data-emoji="panda_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f43c.svg");
-}
-
-em[data-emoji=":koala:"]:before,
-em[data-emoji="koala"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f428.svg");
-}
-
-em[data-emoji=":tiger:"]:before,
-em[data-emoji="tiger"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f42f.svg");
-}
-
-em[data-emoji=":lion_face:"]:before,
-em[data-emoji="lion_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f981.svg");
-}
-
-em[data-emoji=":cow:"]:before,
-em[data-emoji="cow"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f42e.svg");
-}
-
-em[data-emoji=":pig:"]:before,
-em[data-emoji="pig"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f437.svg");
-}
-
-em[data-emoji=":pig_nose:"]:before,
-em[data-emoji="pig_nose"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f43d.svg");
-}
-
-em[data-emoji=":frog:"]:before,
-em[data-emoji="frog"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f438.svg");
-}
-
-em[data-emoji=":monkey_face:"]:before,
-em[data-emoji="monkey_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f435.svg");
-}
-
-em[data-emoji=":see_no_evil:"]:before,
-em[data-emoji="see_no_evil"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f648.svg");
-}
-
-em[data-emoji=":hear_no_evil:"]:before,
-em[data-emoji="hear_no_evil"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f649.svg");
-}
-
-em[data-emoji=":speak_no_evil:"]:before,
-em[data-emoji="speak_no_evil"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64a.svg");
-}
-
-em[data-emoji=":monkey:"]:before,
-em[data-emoji="monkey"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f412.svg");
-}
-
-em[data-emoji=":chicken:"]:before,
-em[data-emoji="chicken"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f414.svg");
-}
-
-em[data-emoji=":penguin:"]:before,
-em[data-emoji="penguin"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f427.svg");
-}
-
-em[data-emoji=":bird:"]:before,
-em[data-emoji="bird"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f426.svg");
-}
-
-em[data-emoji=":baby_chick:"]:before,
-em[data-emoji="baby_chick"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f424.svg");
-}
-
-em[data-emoji=":hatching_chick:"]:before,
-em[data-emoji="hatching_chick"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f423.svg");
-}
-
-em[data-emoji=":hatched_chick:"]:before,
-em[data-emoji="hatched_chick"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f425.svg");
-}
-
-em[data-emoji=":duck:"]:before,
-em[data-emoji="duck"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f986.svg");
-}
-
-em[data-emoji=":eagle:"]:before,
-em[data-emoji="eagle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f985.svg");
-}
-
-em[data-emoji=":owl:"]:before,
-em[data-emoji="owl"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f989.svg");
-}
-
-em[data-emoji=":bat:"]:before,
-em[data-emoji="bat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f987.svg");
-}
-
-em[data-emoji=":wolf:"]:before,
-em[data-emoji="wolf"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f43a.svg");
-}
-
-em[data-emoji=":boar:"]:before,
-em[data-emoji="boar"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f417.svg");
-}
-
-em[data-emoji=":horse:"]:before,
-em[data-emoji="horse"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f434.svg");
-}
-
-em[data-emoji=":unicorn:"]:before,
-em[data-emoji="unicorn"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f984.svg");
-}
-
-em[data-emoji=":bee:"]:before,
-em[data-emoji="bee"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f41d.svg");
-}
-
-em[data-emoji=":bug:"]:before,
-em[data-emoji="bug"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f41b.svg");
-}
-
-em[data-emoji=":butterfly:"]:before,
-em[data-emoji="butterfly"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f98b.svg");
-}
-
-em[data-emoji=":snail:"]:before,
-em[data-emoji="snail"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f40c.svg");
-}
-
-em[data-emoji=":shell:"]:before,
-em[data-emoji="shell"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f41a.svg");
-}
-
-em[data-emoji=":beetle:"]:before,
-em[data-emoji="beetle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f41e.svg");
-}
-
-em[data-emoji=":ant:"]:before,
-em[data-emoji="ant"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f41c.svg");
-}
-
-em[data-emoji=":mosquito:"]:before,
-em[data-emoji="mosquito"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f99f.svg");
-}
-
-em[data-emoji=":cricket:"]:before,
-em[data-emoji="cricket"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f997.svg");
-}
-
-em[data-emoji=":spider:"]:before,
-em[data-emoji="spider"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f577.svg");
-}
-
-em[data-emoji=":spider_web:"]:before,
-em[data-emoji="spider_web"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f578.svg");
-}
-
-em[data-emoji=":scorpion:"]:before,
-em[data-emoji="scorpion"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f982.svg");
-}
-
-em[data-emoji=":turtle:"]:before,
-em[data-emoji="turtle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f422.svg");
-}
-
-em[data-emoji=":snake:"]:before,
-em[data-emoji="snake"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f40d.svg");
-}
-
-em[data-emoji=":lizard:"]:before,
-em[data-emoji="lizard"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f98e.svg");
-}
-
-em[data-emoji=":t_rex:"]:before,
-em[data-emoji="t_rex"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f996.svg");
-}
-
-em[data-emoji=":sauropod:"]:before,
-em[data-emoji="sauropod"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f995.svg");
-}
-
-em[data-emoji=":octopus:"]:before,
-em[data-emoji="octopus"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f419.svg");
-}
-
-em[data-emoji=":squid:"]:before,
-em[data-emoji="squid"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f991.svg");
-}
-
-em[data-emoji=":shrimp:"]:before,
-em[data-emoji="shrimp"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f990.svg");
-}
-
-em[data-emoji=":lobster:"]:before,
-em[data-emoji="lobster"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f99e.svg");
-}
-
-em[data-emoji=":oyster:"]:before,
-em[data-emoji="oyster"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9aa.svg");
-}
-
-em[data-emoji=":crab:"]:before,
-em[data-emoji="crab"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f980.svg");
-}
-
-em[data-emoji=":blowfish:"]:before,
-em[data-emoji="blowfish"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f421.svg");
-}
-
-em[data-emoji=":tropical_fish:"]:before,
-em[data-emoji="tropical_fish"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f420.svg");
-}
-
-em[data-emoji=":fish:"]:before,
-em[data-emoji="fish"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f41f.svg");
-}
-
-em[data-emoji=":dolphin:"]:before,
-em[data-emoji="dolphin"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f42c.svg");
-}
-
-em[data-emoji=":whale:"]:before,
-em[data-emoji="whale"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f433.svg");
-}
-
-em[data-emoji=":whale2:"]:before,
-em[data-emoji="whale2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f40b.svg");
-}
-
-em[data-emoji=":shark:"]:before,
-em[data-emoji="shark"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f988.svg");
-}
-
-em[data-emoji=":crocodile:"]:before,
-em[data-emoji="crocodile"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f40a.svg");
-}
-
-em[data-emoji=":tiger2:"]:before,
-em[data-emoji="tiger2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f405.svg");
-}
-
-em[data-emoji=":leopard:"]:before,
-em[data-emoji="leopard"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f406.svg");
-}
-
-em[data-emoji=":zebra:"]:before,
-em[data-emoji="zebra"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f993.svg");
-}
-
-em[data-emoji=":gorilla:"]:before,
-em[data-emoji="gorilla"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f98d.svg");
-}
-
-em[data-emoji=":orangutan:"]:before,
-em[data-emoji="orangutan"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9a7.svg");
-}
-
-em[data-emoji=":elephant:"]:before,
-em[data-emoji="elephant"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f418.svg");
-}
-
-em[data-emoji=":hippopotamus:"]:before,
-em[data-emoji="hippopotamus"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f99b.svg");
-}
-
-em[data-emoji=":rhino:"]:before,
-em[data-emoji="rhino"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f98f.svg");
-}
-
-em[data-emoji=":dromedary_camel:"]:before,
-em[data-emoji="dromedary_camel"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f42a.svg");
-}
-
-em[data-emoji=":camel:"]:before,
-em[data-emoji="camel"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f42b.svg");
-}
-
-em[data-emoji=":giraffe:"]:before,
-em[data-emoji="giraffe"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f992.svg");
-}
-
-em[data-emoji=":kangaroo:"]:before,
-em[data-emoji="kangaroo"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f998.svg");
-}
-
-em[data-emoji=":water_buffalo:"]:before,
-em[data-emoji="water_buffalo"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f403.svg");
-}
-
-em[data-emoji=":ox:"]:before,
-em[data-emoji="ox"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f402.svg");
-}
-
-em[data-emoji=":cow2:"]:before,
-em[data-emoji="cow2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f404.svg");
-}
-
-em[data-emoji=":racehorse:"]:before,
-em[data-emoji="racehorse"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f40e.svg");
-}
-
-em[data-emoji=":pig2:"]:before,
-em[data-emoji="pig2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f416.svg");
-}
-
-em[data-emoji=":ram:"]:before,
-em[data-emoji="ram"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f40f.svg");
-}
-
-em[data-emoji=":llama:"]:before,
-em[data-emoji="llama"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f999.svg");
-}
-
-em[data-emoji=":sheep:"]:before,
-em[data-emoji="sheep"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f411.svg");
-}
-
-em[data-emoji=":goat:"]:before,
-em[data-emoji="goat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f410.svg");
-}
-
-em[data-emoji=":deer:"]:before,
-em[data-emoji="deer"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f98c.svg");
-}
-
-em[data-emoji=":dog2:"]:before,
-em[data-emoji="dog2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f415.svg");
-}
-
-em[data-emoji=":guide_dog:"]:before,
-em[data-emoji="guide_dog"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ae.svg");
-}
-
-em[data-emoji=":service_dog:"]:before,
-em[data-emoji="service_dog"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f415-200d-1f9ba.svg");
-}
-
-em[data-emoji=":poodle:"]:before,
-em[data-emoji="poodle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f429.svg");
-}
-
-em[data-emoji=":cat2:"]:before,
-em[data-emoji="cat2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f408.svg");
-}
-
-em[data-emoji=":rooster:"]:before,
-em[data-emoji="rooster"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f413.svg");
-}
-
-em[data-emoji=":turkey:"]:before,
-em[data-emoji="turkey"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f983.svg");
-}
-
-em[data-emoji=":peacock:"]:before,
-em[data-emoji="peacock"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f99a.svg");
-}
-
-em[data-emoji=":parrot:"]:before,
-em[data-emoji="parrot"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f99c.svg");
-}
-
-em[data-emoji=":swan:"]:before,
-em[data-emoji="swan"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9a2.svg");
-}
-
-em[data-emoji=":flamingo:"]:before,
-em[data-emoji="flamingo"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9a9.svg");
-}
-
-em[data-emoji=":dove:"]:before,
-em[data-emoji="dove"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f54a.svg");
-}
-
-em[data-emoji=":rabbit2:"]:before,
-em[data-emoji="rabbit2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f407.svg");
-}
-
-em[data-emoji=":sloth:"]:before,
-em[data-emoji="sloth"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9a5.svg");
-}
-
-em[data-emoji=":otter:"]:before,
-em[data-emoji="otter"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9a6.svg");
-}
-
-em[data-emoji=":skunk:"]:before,
-em[data-emoji="skunk"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9a8.svg");
-}
-
-em[data-emoji=":raccoon:"]:before,
-em[data-emoji="raccoon"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f99d.svg");
-}
-
-em[data-emoji=":badger:"]:before,
-em[data-emoji="badger"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9a1.svg");
-}
-
-em[data-emoji=":mouse2:"]:before,
-em[data-emoji="mouse2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f401.svg");
-}
-
-em[data-emoji=":rat:"]:before,
-em[data-emoji="rat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f400.svg");
-}
-
-em[data-emoji=":chipmunk:"]:before,
-em[data-emoji="chipmunk"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f43f.svg");
-}
-
-em[data-emoji=":hedgehog:"]:before,
-em[data-emoji="hedgehog"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f994.svg");
-}
-
-em[data-emoji=":feet:"]:before,
-em[data-emoji="feet"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f43e.svg");
-}
-
-em[data-emoji=":dragon:"]:before,
-em[data-emoji="dragon"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f409.svg");
-}
-
-em[data-emoji=":dragon_face:"]:before,
-em[data-emoji="dragon_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f432.svg");
-}
-
-em[data-emoji=":cactus:"]:before,
-em[data-emoji="cactus"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f335.svg");
-}
-
-em[data-emoji=":christmas_tree:"]:before,
-em[data-emoji="christmas_tree"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f384.svg");
-}
-
-em[data-emoji=":evergreen_tree:"]:before,
-em[data-emoji="evergreen_tree"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f332.svg");
-}
-
-em[data-emoji=":deciduous_tree:"]:before,
-em[data-emoji="deciduous_tree"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f333.svg");
-}
-
-em[data-emoji=":palm_tree:"]:before,
-em[data-emoji="palm_tree"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f334.svg");
-}
-
-em[data-emoji=":seedling:"]:before,
-em[data-emoji="seedling"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f331.svg");
-}
-
-em[data-emoji=":herb:"]:before,
-em[data-emoji="herb"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f33f.svg");
-}
-
-em[data-emoji=":four_leaf_clover:"]:before,
-em[data-emoji="four_leaf_clover"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f340.svg");
-}
-
-em[data-emoji=":bamboo:"]:before,
-em[data-emoji="bamboo"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f38d.svg");
-}
-
-em[data-emoji=":tanabata_tree:"]:before,
-em[data-emoji="tanabata_tree"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f38b.svg");
-}
-
-em[data-emoji=":leaves:"]:before,
-em[data-emoji="leaves"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f343.svg");
-}
-
-em[data-emoji=":fallen_leaf:"]:before,
-em[data-emoji="fallen_leaf"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f342.svg");
-}
-
-em[data-emoji=":maple_leaf:"]:before,
-em[data-emoji="maple_leaf"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f341.svg");
-}
-
-em[data-emoji=":mushroom:"]:before,
-em[data-emoji="mushroom"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f344.svg");
-}
-
-em[data-emoji=":ear_of_rice:"]:before,
-em[data-emoji="ear_of_rice"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f33e.svg");
-}
-
-em[data-emoji=":bouquet:"]:before,
-em[data-emoji="bouquet"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f490.svg");
-}
-
-em[data-emoji=":tulip:"]:before,
-em[data-emoji="tulip"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f337.svg");
-}
-
-em[data-emoji=":rose:"]:before,
-em[data-emoji="rose"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f339.svg");
-}
-
-em[data-emoji=":wilted_rose:"]:before,
-em[data-emoji="wilted_rose"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f940.svg");
-}
-
-em[data-emoji=":hibiscus:"]:before,
-em[data-emoji="hibiscus"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f33a.svg");
-}
-
-em[data-emoji=":cherry_blossom:"]:before,
-em[data-emoji="cherry_blossom"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f338.svg");
-}
-
-em[data-emoji=":blossom:"]:before,
-em[data-emoji="blossom"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f33c.svg");
-}
-
-em[data-emoji=":sunflower:"]:before,
-em[data-emoji="sunflower"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f33b.svg");
-}
-
-em[data-emoji=":sun_with_face:"]:before,
-em[data-emoji="sun_with_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f31e.svg");
-}
-
-em[data-emoji=":full_moon_with_face:"]:before,
-em[data-emoji="full_moon_with_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f31d.svg");
-}
-
-em[data-emoji=":first_quarter_moon_with_face:"]:before,
-em[data-emoji="first_quarter_moon_with_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f31b.svg");
-}
-
-em[data-emoji=":last_quarter_moon_with_face:"]:before,
-em[data-emoji="last_quarter_moon_with_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f31c.svg");
-}
-
-em[data-emoji=":new_moon_with_face:"]:before,
-em[data-emoji="new_moon_with_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f31a.svg");
-}
-
-em[data-emoji=":full_moon:"]:before,
-em[data-emoji="full_moon"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f315.svg");
-}
-
-em[data-emoji=":waning_gibbous_moon:"]:before,
-em[data-emoji="waning_gibbous_moon"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f316.svg");
-}
-
-em[data-emoji=":last_quarter_moon:"]:before,
-em[data-emoji="last_quarter_moon"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f317.svg");
-}
-
-em[data-emoji=":waning_crescent_moon:"]:before,
-em[data-emoji="waning_crescent_moon"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f318.svg");
-}
-
-em[data-emoji=":new_moon:"]:before,
-em[data-emoji="new_moon"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f311.svg");
-}
-
-em[data-emoji=":waxing_crescent_moon:"]:before,
-em[data-emoji="waxing_crescent_moon"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f312.svg");
-}
-
-em[data-emoji=":first_quarter_moon:"]:before,
-em[data-emoji="first_quarter_moon"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f313.svg");
-}
-
-em[data-emoji=":waxing_gibbous_moon:"]:before,
-em[data-emoji="waxing_gibbous_moon"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f314.svg");
-}
-
-em[data-emoji=":crescent_moon:"]:before,
-em[data-emoji="crescent_moon"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f319.svg");
-}
-
-em[data-emoji=":earth_americas:"]:before,
-em[data-emoji="earth_americas"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f30e.svg");
-}
-
-em[data-emoji=":earth_africa:"]:before,
-em[data-emoji="earth_africa"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f30d.svg");
-}
-
-em[data-emoji=":earth_asia:"]:before,
-em[data-emoji="earth_asia"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f30f.svg");
-}
-
-em[data-emoji=":ringed_planet:"]:before,
-em[data-emoji="ringed_planet"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1fa90.svg");
-}
-
-em[data-emoji=":dizzy:"]:before,
-em[data-emoji="dizzy"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4ab.svg");
-}
-
-em[data-emoji=":star:"]:before,
-em[data-emoji="star"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/2b50.svg");
-}
-
-em[data-emoji=":star2:"]:before,
-em[data-emoji="star2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f31f.svg");
-}
-
-em[data-emoji=":zap:"]:before,
-em[data-emoji="zap"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26a1.svg");
-}
-
-em[data-emoji=":boom:"]:before,
-em[data-emoji="boom"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4a5.svg");
-}
-
-em[data-emoji=":fire:"]:before,
-em[data-emoji="fire"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f525.svg");
-}
-
-em[data-emoji=":cloud_tornado:"]:before,
-em[data-emoji="cloud_tornado"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f32a.svg");
-}
-
-em[data-emoji=":rainbow:"]:before,
-em[data-emoji="rainbow"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f308.svg");
-}
-
-em[data-emoji=":white_sun_small_cloud:"]:before,
-em[data-emoji="white_sun_small_cloud"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f324.svg");
-}
-
-em[data-emoji=":partly_sunny:"]:before,
-em[data-emoji="partly_sunny"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26c5.svg");
-}
-
-em[data-emoji=":white_sun_cloud:"]:before,
-em[data-emoji="white_sun_cloud"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f325.svg");
-}
-
-em[data-emoji=":white_sun_rain_cloud:"]:before,
-em[data-emoji="white_sun_rain_cloud"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f326.svg");
-}
-
-em[data-emoji=":cloud_rain:"]:before,
-em[data-emoji="cloud_rain"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f327.svg");
-}
-
-em[data-emoji=":thunder_cloud_rain:"]:before,
-em[data-emoji="thunder_cloud_rain"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26c8.svg");
-}
-
-em[data-emoji=":cloud_lightning:"]:before,
-em[data-emoji="cloud_lightning"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f329.svg");
-}
-
-em[data-emoji=":cloud_snow:"]:before,
-em[data-emoji="cloud_snow"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f328.svg");
-}
-
-em[data-emoji=":snowman:"]:before,
-em[data-emoji="snowman"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26c4.svg");
-}
-
-em[data-emoji=":wind_blowing_face:"]:before,
-em[data-emoji="wind_blowing_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f32c.svg");
-}
-
-em[data-emoji=":dash:"]:before,
-em[data-emoji="dash"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4a8.svg");
-}
-
-em[data-emoji=":droplet:"]:before,
-em[data-emoji="droplet"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4a7.svg");
-}
-
-em[data-emoji=":sweat_drops:"]:before,
-em[data-emoji="sweat_drops"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4a6.svg");
-}
-
-em[data-emoji=":ocean:"]:before,
-em[data-emoji="ocean"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f30a.svg");
-}
-
-em[data-emoji=":fog:"]:before,
-em[data-emoji="fog"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f32b.svg");
-}
-
-em[data-emoji=":green_apple:"]:before,
-em[data-emoji="green_apple"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f34f.svg");
-}
-
-em[data-emoji=":apple:"]:before,
-em[data-emoji="apple"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f34e.svg");
-}
-
-em[data-emoji=":pear:"]:before,
-em[data-emoji="pear"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f350.svg");
-}
-
-em[data-emoji=":tangerine:"]:before,
-em[data-emoji="tangerine"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f34a.svg");
-}
-
-em[data-emoji=":lemon:"]:before,
-em[data-emoji="lemon"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f34b.svg");
-}
-
-em[data-emoji=":banana:"]:before,
-em[data-emoji="banana"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f34c.svg");
-}
-
-em[data-emoji=":watermelon:"]:before,
-em[data-emoji="watermelon"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f349.svg");
-}
-
-em[data-emoji=":grapes:"]:before,
-em[data-emoji="grapes"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f347.svg");
-}
-
-em[data-emoji=":strawberry:"]:before,
-em[data-emoji="strawberry"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f353.svg");
-}
-
-em[data-emoji=":melon:"]:before,
-em[data-emoji="melon"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f348.svg");
-}
-
-em[data-emoji=":cherries:"]:before,
-em[data-emoji="cherries"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f352.svg");
-}
-
-em[data-emoji=":peach:"]:before,
-em[data-emoji="peach"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f351.svg");
-}
-
-em[data-emoji=":mango:"]:before,
-em[data-emoji="mango"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f96d.svg");
-}
-
-em[data-emoji=":pineapple:"]:before,
-em[data-emoji="pineapple"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f34d.svg");
-}
-
-em[data-emoji=":coconut:"]:before,
-em[data-emoji="coconut"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f965.svg");
-}
-
-em[data-emoji=":kiwi:"]:before,
-em[data-emoji="kiwi"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f95d.svg");
-}
-
-em[data-emoji=":tomato:"]:before,
-em[data-emoji="tomato"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f345.svg");
-}
-
-em[data-emoji=":eggplant:"]:before,
-em[data-emoji="eggplant"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f346.svg");
-}
-
-em[data-emoji=":avocado:"]:before,
-em[data-emoji="avocado"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f951.svg");
-}
-
-em[data-emoji=":broccoli:"]:before,
-em[data-emoji="broccoli"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f966.svg");
-}
-
-em[data-emoji=":leafy_green:"]:before,
-em[data-emoji="leafy_green"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f96c.svg");
-}
-
-em[data-emoji=":cucumber:"]:before,
-em[data-emoji="cucumber"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f952.svg");
-}
-
-em[data-emoji=":hot_pepper:"]:before,
-em[data-emoji="hot_pepper"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f336.svg");
-}
-
-em[data-emoji=":corn:"]:before,
-em[data-emoji="corn"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f33d.svg");
-}
-
-em[data-emoji=":carrot:"]:before,
-em[data-emoji="carrot"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f955.svg");
-}
-
-em[data-emoji=":onion:"]:before,
-em[data-emoji="onion"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9c5.svg");
-}
-
-em[data-emoji=":garlic:"]:before,
-em[data-emoji="garlic"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9c4.svg");
-}
-
-em[data-emoji=":potato:"]:before,
-em[data-emoji="potato"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f954.svg");
-}
-
-em[data-emoji=":sweet_potato:"]:before,
-em[data-emoji="sweet_potato"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f360.svg");
-}
-
-em[data-emoji=":croissant:"]:before,
-em[data-emoji="croissant"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f950.svg");
-}
-
-em[data-emoji=":bagel:"]:before,
-em[data-emoji="bagel"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f96f.svg");
-}
-
-em[data-emoji=":bread:"]:before,
-em[data-emoji="bread"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f35e.svg");
-}
-
-em[data-emoji=":french_bread:"]:before,
-em[data-emoji="french_bread"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f956.svg");
-}
-
-em[data-emoji=":pretzel:"]:before,
-em[data-emoji="pretzel"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f968.svg");
-}
-
-em[data-emoji=":cheese:"]:before,
-em[data-emoji="cheese"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9c0.svg");
-}
-
-em[data-emoji=":egg:"]:before,
-em[data-emoji="egg"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f95a.svg");
-}
-
-em[data-emoji=":cooking:"]:before,
-em[data-emoji="cooking"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f373.svg");
-}
-
-em[data-emoji=":pancakes:"]:before,
-em[data-emoji="pancakes"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f95e.svg");
-}
-
-em[data-emoji=":waffle:"]:before,
-em[data-emoji="waffle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9c7.svg");
-}
-
-em[data-emoji=":bacon:"]:before,
-em[data-emoji="bacon"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f953.svg");
-}
-
-em[data-emoji=":cut_of_meat:"]:before,
-em[data-emoji="cut_of_meat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f969.svg");
-}
-
-em[data-emoji=":poultry_leg:"]:before,
-em[data-emoji="poultry_leg"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f357.svg");
-}
-
-em[data-emoji=":meat_on_bone:"]:before,
-em[data-emoji="meat_on_bone"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f356.svg");
-}
-
-em[data-emoji=":hotdog:"]:before,
-em[data-emoji="hotdog"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f32d.svg");
-}
-
-em[data-emoji=":hamburger:"]:before,
-em[data-emoji="hamburger"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f354.svg");
-}
-
-em[data-emoji=":fries:"]:before,
-em[data-emoji="fries"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f35f.svg");
-}
-
-em[data-emoji=":pizza:"]:before,
-em[data-emoji="pizza"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f355.svg");
-}
-
-em[data-emoji=":sandwich:"]:before,
-em[data-emoji="sandwich"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f96a.svg");
-}
-
-em[data-emoji=":falafel:"]:before,
-em[data-emoji="falafel"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9c6.svg");
-}
-
-em[data-emoji=":stuffed_flatbread:"]:before,
-em[data-emoji="stuffed_flatbread"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f959.svg");
-}
-
-em[data-emoji=":taco:"]:before,
-em[data-emoji="taco"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f32e.svg");
-}
-
-em[data-emoji=":burrito:"]:before,
-em[data-emoji="burrito"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f32f.svg");
-}
-
-em[data-emoji=":salad:"]:before,
-em[data-emoji="salad"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f957.svg");
-}
-
-em[data-emoji=":shallow_pan_of_food:"]:before,
-em[data-emoji="shallow_pan_of_food"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f958.svg");
-}
-
-em[data-emoji=":canned_food:"]:before,
-em[data-emoji="canned_food"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f96b.svg");
-}
-
-em[data-emoji=":spaghetti:"]:before,
-em[data-emoji="spaghetti"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f35d.svg");
-}
-
-em[data-emoji=":ramen:"]:before,
-em[data-emoji="ramen"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f35c.svg");
-}
-
-em[data-emoji=":stew:"]:before,
-em[data-emoji="stew"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f372.svg");
-}
-
-em[data-emoji=":curry:"]:before,
-em[data-emoji="curry"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f35b.svg");
-}
-
-em[data-emoji=":sushi:"]:before,
-em[data-emoji="sushi"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f363.svg");
-}
-
-em[data-emoji=":bento:"]:before,
-em[data-emoji="bento"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f371.svg");
-}
-
-em[data-emoji=":dumpling:"]:before,
-em[data-emoji="dumpling"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f95f.svg");
-}
-
-em[data-emoji=":fried_shrimp:"]:before,
-em[data-emoji="fried_shrimp"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f364.svg");
-}
-
-em[data-emoji=":rice_ball:"]:before,
-em[data-emoji="rice_ball"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f359.svg");
-}
-
-em[data-emoji=":rice:"]:before,
-em[data-emoji="rice"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f35a.svg");
-}
-
-em[data-emoji=":rice_cracker:"]:before,
-em[data-emoji="rice_cracker"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f358.svg");
-}
-
-em[data-emoji=":fish_cake:"]:before,
-em[data-emoji="fish_cake"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f365.svg");
-}
-
-em[data-emoji=":fortune_cookie:"]:before,
-em[data-emoji="fortune_cookie"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f960.svg");
-}
-
-em[data-emoji=":moon_cake:"]:before,
-em[data-emoji="moon_cake"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f96e.svg");
-}
-
-em[data-emoji=":oden:"]:before,
-em[data-emoji="oden"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f362.svg");
-}
-
-em[data-emoji=":dango:"]:before,
-em[data-emoji="dango"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f361.svg");
-}
-
-em[data-emoji=":shaved_ice:"]:before,
-em[data-emoji="shaved_ice"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f367.svg");
-}
-
-em[data-emoji=":ice_cream:"]:before,
-em[data-emoji="ice_cream"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f368.svg");
-}
-
-em[data-emoji=":icecream:"]:before,
-em[data-emoji="icecream"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f366.svg");
-}
-
-em[data-emoji=":pie:"]:before,
-em[data-emoji="pie"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f967.svg");
-}
-
-em[data-emoji=":cupcake:"]:before,
-em[data-emoji="cupcake"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9c1.svg");
-}
-
-em[data-emoji=":cake:"]:before,
-em[data-emoji="cake"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f370.svg");
-}
-
-em[data-emoji=":birthday:"]:before,
-em[data-emoji="birthday"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f382.svg");
-}
-
-em[data-emoji=":custard:"]:before,
-em[data-emoji="custard"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f36e.svg");
-}
-
-em[data-emoji=":lollipop:"]:before,
-em[data-emoji="lollipop"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f36d.svg");
-}
-
-em[data-emoji=":candy:"]:before,
-em[data-emoji="candy"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f36c.svg");
-}
-
-em[data-emoji=":chocolate_bar:"]:before,
-em[data-emoji="chocolate_bar"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f36b.svg");
-}
-
-em[data-emoji=":popcorn:"]:before,
-em[data-emoji="popcorn"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f37f.svg");
-}
-
-em[data-emoji=":doughnut:"]:before,
-em[data-emoji="doughnut"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f369.svg");
-}
-
-em[data-emoji=":cookie:"]:before,
-em[data-emoji="cookie"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f36a.svg");
-}
-
-em[data-emoji=":chestnut:"]:before,
-em[data-emoji="chestnut"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f330.svg");
-}
-
-em[data-emoji=":peanuts:"]:before,
-em[data-emoji="peanuts"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f95c.svg");
-}
-
-em[data-emoji=":honey_pot:"]:before,
-em[data-emoji="honey_pot"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f36f.svg");
-}
-
-em[data-emoji=":butter:"]:before,
-em[data-emoji="butter"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9c8.svg");
-}
-
-em[data-emoji=":milk:"]:before,
-em[data-emoji="milk"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f95b.svg");
-}
-
-em[data-emoji=":baby_bottle:"]:before,
-em[data-emoji="baby_bottle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f37c.svg");
-}
-
-em[data-emoji=":tea:"]:before,
-em[data-emoji="tea"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f375.svg");
-}
-
-em[data-emoji=":mate:"]:before,
-em[data-emoji="mate"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9c9.svg");
-}
-
-em[data-emoji=":cup_with_straw:"]:before,
-em[data-emoji="cup_with_straw"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f964.svg");
-}
-
-em[data-emoji=":beverage_box:"]:before,
-em[data-emoji="beverage_box"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9c3.svg");
-}
-
-em[data-emoji=":ice_cube:"]:before,
-em[data-emoji="ice_cube"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ca.svg");
-}
-
-em[data-emoji=":sake:"]:before,
-em[data-emoji="sake"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f376.svg");
-}
-
-em[data-emoji=":beer:"]:before,
-em[data-emoji="beer"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f37a.svg");
-}
-
-em[data-emoji=":beers:"]:before,
-em[data-emoji="beers"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f37b.svg");
-}
-
-em[data-emoji=":champagne_glass:"]:before,
-em[data-emoji="champagne_glass"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f942.svg");
-}
-
-em[data-emoji=":wine_glass:"]:before,
-em[data-emoji="wine_glass"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f377.svg");
-}
-
-em[data-emoji=":tumbler_glass:"]:before,
-em[data-emoji="tumbler_glass"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f943.svg");
-}
-
-em[data-emoji=":cocktail:"]:before,
-em[data-emoji="cocktail"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f378.svg");
-}
-
-em[data-emoji=":tropical_drink:"]:before,
-em[data-emoji="tropical_drink"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f379.svg");
-}
-
-em[data-emoji=":champagne:"]:before,
-em[data-emoji="champagne"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f37e.svg");
-}
-
-em[data-emoji=":spoon:"]:before,
-em[data-emoji="spoon"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f944.svg");
-}
-
-em[data-emoji=":fork_and_knife:"]:before,
-em[data-emoji="fork_and_knife"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f374.svg");
-}
-
-em[data-emoji=":fork_knife_plate:"]:before,
-em[data-emoji="fork_knife_plate"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f37d.svg");
-}
-
-em[data-emoji=":bowl_with_spoon:"]:before,
-em[data-emoji="bowl_with_spoon"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f963.svg");
-}
-
-em[data-emoji=":takeout_box:"]:before,
-em[data-emoji="takeout_box"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f961.svg");
-}
-
-em[data-emoji=":chopsticks:"]:before,
-em[data-emoji="chopsticks"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f962.svg");
-}
-
-em[data-emoji=":salt:"]:before,
-em[data-emoji="salt"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9c2.svg");
-}
-
-em[data-emoji=":blush:"]:before,
-em[data-emoji="blush"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f60a.svg");
-}
-
-em[data-emoji=":innocent:"]:before,
-em[data-emoji="innocent"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f607.svg");
-}
-
-em[data-emoji=":slight_smile:"]:before,
-em[data-emoji="slight_smile"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f642.svg");
-}
-
-em[data-emoji=":upside_down:"]:before,
-em[data-emoji="upside_down"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f643.svg");
-}
-
-em[data-emoji=":wink:"]:before,
-em[data-emoji="wink"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f609.svg");
-}
-
-em[data-emoji=":grinning:"]:before,
-em[data-emoji="grinning"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f600.svg");
-}
-
-em[data-emoji=":smiley:"]:before,
-em[data-emoji="smiley"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f603.svg");
-}
-
-em[data-emoji=":smile:"]:before,
-em[data-emoji="smile"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f604.svg");
-}
-
-em[data-emoji=":grin:"]:before,
-em[data-emoji="grin"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f601.svg");
-}
-
-em[data-emoji=":laughing:"]:before,
-em[data-emoji="laughing"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f606.svg");
-}
-
-em[data-emoji=":sweat_smile:"]:before,
-em[data-emoji="sweat_smile"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f605.svg");
-}
-
-em[data-emoji=":joy:"]:before,
-em[data-emoji="joy"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f602.svg");
-}
-
-em[data-emoji=":rofl:"]:before,
-em[data-emoji="rofl"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f923.svg");
-}
-
-em[data-emoji=":relaxed:"]:before,
-em[data-emoji="relaxed"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/263a.svg");
-}
-
-em[data-emoji=":relieved:"]:before,
-em[data-emoji="relieved"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f60c.svg");
-}
-
-em[data-emoji=":heart_eyes:"]:before,
-em[data-emoji="heart_eyes"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f60d.svg");
-}
-
-em[data-emoji=":smiling_face_with_3_hearts:"]:before,
-em[data-emoji="smiling_face_with_3_hearts"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f970.svg");
-}
-
-em[data-emoji=":kissing_heart:"]:before,
-em[data-emoji="kissing_heart"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f618.svg");
-}
-
-em[data-emoji=":kissing:"]:before,
-em[data-emoji="kissing"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f617.svg");
-}
-
-em[data-emoji=":kissing_smiling_eyes:"]:before,
-em[data-emoji="kissing_smiling_eyes"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f619.svg");
-}
-
-em[data-emoji=":kissing_closed_eyes:"]:before,
-em[data-emoji="kissing_closed_eyes"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f61a.svg");
-}
-
-em[data-emoji=":yum:"]:before,
-em[data-emoji="yum"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f60b.svg");
-}
-
-em[data-emoji=":stuck_out_tongue:"]:before,
-em[data-emoji="stuck_out_tongue"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f61b.svg");
-}
-
-em[data-emoji=":stuck_out_tongue_closed_eyes:"]:before,
-em[data-emoji="stuck_out_tongue_closed_eyes"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f61d.svg");
-}
-
-em[data-emoji=":stuck_out_tongue_winking_eye:"]:before,
-em[data-emoji="stuck_out_tongue_winking_eye"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f61c.svg");
-}
-
-em[data-emoji=":zany_face:"]:before,
-em[data-emoji="zany_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f92a.svg");
-}
-
-em[data-emoji=":face_with_raised_eyebrow:"]:before,
-em[data-emoji="face_with_raised_eyebrow"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f928.svg");
-}
-
-em[data-emoji=":face_with_monocle:"]:before,
-em[data-emoji="face_with_monocle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d0.svg");
-}
-
-em[data-emoji=":nerd:"]:before,
-em[data-emoji="nerd"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f913.svg");
-}
-
-em[data-emoji=":sunglasses:"]:before,
-em[data-emoji="sunglasses"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f60e.svg");
-}
-
-em[data-emoji=":star_struck:"]:before,
-em[data-emoji="star_struck"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f929.svg");
-}
-
-em[data-emoji=":partying_face:"]:before,
-em[data-emoji="partying_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f973.svg");
-}
-
-em[data-emoji=":smirk:"]:before,
-em[data-emoji="smirk"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f60f.svg");
-}
-
-em[data-emoji=":unamused:"]:before,
-em[data-emoji="unamused"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f612.svg");
-}
-
-em[data-emoji=":disappointed:"]:before,
-em[data-emoji="disappointed"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f61e.svg");
-}
-
-em[data-emoji=":pensive:"]:before,
-em[data-emoji="pensive"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f614.svg");
-}
-
-em[data-emoji=":worried:"]:before,
-em[data-emoji="worried"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f61f.svg");
-}
-
-em[data-emoji=":confused:"]:before,
-em[data-emoji="confused"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f615.svg");
-}
-
-em[data-emoji=":slight_frown:"]:before,
-em[data-emoji="slight_frown"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f641.svg");
-}
-
-em[data-emoji=":persevere:"]:before,
-em[data-emoji="persevere"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f623.svg");
-}
-
-em[data-emoji=":confounded:"]:before,
-em[data-emoji="confounded"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f616.svg");
-}
-
-em[data-emoji=":tired_face:"]:before,
-em[data-emoji="tired_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f62b.svg");
-}
-
-em[data-emoji=":weary:"]:before,
-em[data-emoji="weary"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f629.svg");
-}
-
-em[data-emoji=":yawning_face:"]:before,
-em[data-emoji="yawning_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f971.svg");
-}
-
-em[data-emoji=":pleading_face:"]:before,
-em[data-emoji="pleading_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f97a.svg");
-}
-
-em[data-emoji=":cry:"]:before,
-em[data-emoji="cry"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f622.svg");
-}
-
-em[data-emoji=":sob:"]:before,
-em[data-emoji="sob"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f62d.svg");
-}
-
-em[data-emoji=":triumph:"]:before,
-em[data-emoji="triumph"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f624.svg");
-}
-
-em[data-emoji=":angry:"]:before,
-em[data-emoji="angry"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f620.svg");
-}
-
-em[data-emoji=":rage:"]:before,
-em[data-emoji="rage"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f621.svg");
-}
-
-em[data-emoji=":face_with_symbols_over_mouth:"]:before,
-em[data-emoji="face_with_symbols_over_mouth"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f92c.svg");
-}
-
-em[data-emoji=":exploding_head:"]:before,
-em[data-emoji="exploding_head"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f92f.svg");
-}
-
-em[data-emoji=":flushed:"]:before,
-em[data-emoji="flushed"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f633.svg");
-}
-
-em[data-emoji=":hot_face:"]:before,
-em[data-emoji="hot_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f975.svg");
-}
-
-em[data-emoji=":cold_face:"]:before,
-em[data-emoji="cold_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f976.svg");
-}
-
-em[data-emoji=":scream:"]:before,
-em[data-emoji="scream"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f631.svg");
-}
-
-em[data-emoji=":fearful:"]:before,
-em[data-emoji="fearful"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f628.svg");
-}
-
-em[data-emoji=":cold_sweat:"]:before,
-em[data-emoji="cold_sweat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f630.svg");
-}
-
-em[data-emoji=":disappointed_relieved:"]:before,
-em[data-emoji="disappointed_relieved"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f625.svg");
-}
-
-em[data-emoji=":sweat:"]:before,
-em[data-emoji="sweat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f613.svg");
-}
-
-em[data-emoji=":hugging:"]:before,
-em[data-emoji="hugging"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f917.svg");
-}
-
-em[data-emoji=":thinking:"]:before,
-em[data-emoji="thinking"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f914.svg");
-}
-
-em[data-emoji=":face_with_hand_over_mouth:"]:before,
-em[data-emoji="face_with_hand_over_mouth"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f92d.svg");
-}
-
-em[data-emoji=":shushing_face:"]:before,
-em[data-emoji="shushing_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f92b.svg");
-}
-
-em[data-emoji=":lying_face:"]:before,
-em[data-emoji="lying_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f925.svg");
-}
-
-em[data-emoji=":no_mouth:"]:before,
-em[data-emoji="no_mouth"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f636.svg");
-}
-
-em[data-emoji=":neutral_face:"]:before,
-em[data-emoji="neutral_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f610.svg");
-}
-
-em[data-emoji=":expressionless:"]:before,
-em[data-emoji="expressionless"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f611.svg");
-}
-
-em[data-emoji=":grimacing:"]:before,
-em[data-emoji="grimacing"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f62c.svg");
-}
-
-em[data-emoji=":rolling_eyes:"]:before,
-em[data-emoji="rolling_eyes"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f644.svg");
-}
-
-em[data-emoji=":hushed:"]:before,
-em[data-emoji="hushed"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f62f.svg");
-}
-
-em[data-emoji=":frowning:"]:before,
-em[data-emoji="frowning"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f626.svg");
-}
-
-em[data-emoji=":anguished:"]:before,
-em[data-emoji="anguished"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f627.svg");
-}
-
-em[data-emoji=":open_mouth:"]:before,
-em[data-emoji="open_mouth"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f62e.svg");
-}
-
-em[data-emoji=":astonished:"]:before,
-em[data-emoji="astonished"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f632.svg");
-}
-
-em[data-emoji=":sleeping:"]:before,
-em[data-emoji="sleeping"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f634.svg");
-}
-
-em[data-emoji=":drooling_face:"]:before,
-em[data-emoji="drooling_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f924.svg");
-}
-
-em[data-emoji=":sleepy:"]:before,
-em[data-emoji="sleepy"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f62a.svg");
-}
-
-em[data-emoji=":dizzy_face:"]:before,
-em[data-emoji="dizzy_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f635.svg");
-}
-
-em[data-emoji=":zipper_mouth:"]:before,
-em[data-emoji="zipper_mouth"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f910.svg");
-}
-
-em[data-emoji=":woozy_face:"]:before,
-em[data-emoji="woozy_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f974.svg");
-}
-
-em[data-emoji=":nauseated_face:"]:before,
-em[data-emoji="nauseated_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f922.svg");
-}
-
-em[data-emoji=":face_vomiting:"]:before,
-em[data-emoji="face_vomiting"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f92e.svg");
-}
-
-em[data-emoji=":sneezing_face:"]:before,
-em[data-emoji="sneezing_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f927.svg");
-}
-
-em[data-emoji=":mask:"]:before,
-em[data-emoji="mask"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f637.svg");
-}
-
-em[data-emoji=":thermometer_face:"]:before,
-em[data-emoji="thermometer_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f912.svg");
-}
-
-em[data-emoji=":head_bandage:"]:before,
-em[data-emoji="head_bandage"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f915.svg");
-}
-
-em[data-emoji=":money_mouth:"]:before,
-em[data-emoji="money_mouth"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f911.svg");
-}
-
-em[data-emoji=":cowboy:"]:before,
-em[data-emoji="cowboy"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f920.svg");
-}
-
-em[data-emoji=":smiling_imp:"]:before,
-em[data-emoji="smiling_imp"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f608.svg");
-}
-
-em[data-emoji=":imp:"]:before,
-em[data-emoji="imp"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f47f.svg");
-}
-
-em[data-emoji=":japanese_ogre:"]:before,
-em[data-emoji="japanese_ogre"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f479.svg");
-}
-
-em[data-emoji=":japanese_goblin:"]:before,
-em[data-emoji="japanese_goblin"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f47a.svg");
-}
-
-em[data-emoji=":clown:"]:before,
-em[data-emoji="clown"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f921.svg");
-}
-
-em[data-emoji=":poop:"]:before,
-em[data-emoji="poop"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4a9.svg");
-}
-
-em[data-emoji=":ghost:"]:before,
-em[data-emoji="ghost"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f47b.svg");
-}
-
-em[data-emoji=":skull:"]:before,
-em[data-emoji="skull"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f480.svg");
-}
-
-em[data-emoji=":alien:"]:before,
-em[data-emoji="alien"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f47d.svg");
-}
-
-em[data-emoji=":space_invader:"]:before,
-em[data-emoji="space_invader"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f47e.svg");
-}
-
-em[data-emoji=":robot:"]:before,
-em[data-emoji="robot"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f916.svg");
-}
-
-em[data-emoji=":jack_o_lantern:"]:before,
-em[data-emoji="jack_o_lantern"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f383.svg");
-}
-
-em[data-emoji=":smiley_cat:"]:before,
-em[data-emoji="smiley_cat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f63a.svg");
-}
-
-em[data-emoji=":smile_cat:"]:before,
-em[data-emoji="smile_cat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f638.svg");
-}
-
-em[data-emoji=":joy_cat:"]:before,
-em[data-emoji="joy_cat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f639.svg");
-}
-
-em[data-emoji=":heart_eyes_cat:"]:before,
-em[data-emoji="heart_eyes_cat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f63b.svg");
-}
-
-em[data-emoji=":smirk_cat:"]:before,
-em[data-emoji="smirk_cat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f63c.svg");
-}
-
-em[data-emoji=":kissing_cat:"]:before,
-em[data-emoji="kissing_cat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f63d.svg");
-}
-
-em[data-emoji=":scream_cat:"]:before,
-em[data-emoji="scream_cat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f640.svg");
-}
-
-em[data-emoji=":crying_cat_face:"]:before,
-em[data-emoji="crying_cat_face"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f63f.svg");
-}
-
-em[data-emoji=":pouting_cat:"]:before,
-em[data-emoji="pouting_cat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f63e.svg");
-}
-
-em[data-emoji=":handshake:"]:before,
-em[data-emoji="handshake"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91d.svg");
-}
-
-em[data-emoji=":palms_up_together:"]:before,
-em[data-emoji="palms_up_together"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f932.svg");
-}
-
-em[data-emoji=":palms_up_together_tone1:"]:before,
-em[data-emoji="palms_up_together_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f932-1f3fb.svg");
-}
-
-em[data-emoji=":palms_up_together_tone2:"]:before,
-em[data-emoji="palms_up_together_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f932-1f3fc.svg");
-}
-
-em[data-emoji=":palms_up_together_tone3:"]:before,
-em[data-emoji="palms_up_together_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f932-1f3fd.svg");
-}
-
-em[data-emoji=":palms_up_together_tone4:"]:before,
-em[data-emoji="palms_up_together_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f932-1f3fe.svg");
-}
-
-em[data-emoji=":palms_up_together_tone5:"]:before,
-em[data-emoji="palms_up_together_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f932-1f3ff.svg");
-}
-
-em[data-emoji=":open_hands:"]:before,
-em[data-emoji="open_hands"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f450.svg");
-}
-
-em[data-emoji=":open_hands_tone1:"]:before,
-em[data-emoji="open_hands_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f450-1f3fb.svg");
-}
-
-em[data-emoji=":open_hands_tone2:"]:before,
-em[data-emoji="open_hands_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f450-1f3fc.svg");
-}
-
-em[data-emoji=":open_hands_tone3:"]:before,
-em[data-emoji="open_hands_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f450-1f3fd.svg");
-}
-
-em[data-emoji=":open_hands_tone4:"]:before,
-em[data-emoji="open_hands_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f450-1f3fe.svg");
-}
-
-em[data-emoji=":open_hands_tone5:"]:before,
-em[data-emoji="open_hands_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f450-1f3ff.svg");
-}
-
-em[data-emoji=":raised_hands:"]:before,
-em[data-emoji="raised_hands"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64c.svg");
-}
-
-em[data-emoji=":raised_hands_tone1:"]:before,
-em[data-emoji="raised_hands_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64c-1f3fb.svg");
-}
-
-em[data-emoji=":raised_hands_tone2:"]:before,
-em[data-emoji="raised_hands_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64c-1f3fc.svg");
-}
-
-em[data-emoji=":raised_hands_tone3:"]:before,
-em[data-emoji="raised_hands_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64c-1f3fd.svg");
-}
-
-em[data-emoji=":raised_hands_tone4:"]:before,
-em[data-emoji="raised_hands_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64c-1f3fe.svg");
-}
-
-em[data-emoji=":raised_hands_tone5:"]:before,
-em[data-emoji="raised_hands_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64c-1f3ff.svg");
-}
-
-em[data-emoji=":clap:"]:before,
-em[data-emoji="clap"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44f.svg");
-}
-
-em[data-emoji=":clap_tone1:"]:before,
-em[data-emoji="clap_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44f-1f3fb.svg");
-}
-
-em[data-emoji=":clap_tone2:"]:before,
-em[data-emoji="clap_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44f-1f3fc.svg");
-}
-
-em[data-emoji=":clap_tone3:"]:before,
-em[data-emoji="clap_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44f-1f3fd.svg");
-}
-
-em[data-emoji=":clap_tone4:"]:before,
-em[data-emoji="clap_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44f-1f3fe.svg");
-}
-
-em[data-emoji=":clap_tone5:"]:before,
-em[data-emoji="clap_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44f-1f3ff.svg");
-}
-
-em[data-emoji=":thumbsup:"]:before,
-em[data-emoji="thumbsup"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44d.svg");
-}
-
-em[data-emoji=":thumbsup_tone1:"]:before,
-em[data-emoji="thumbsup_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44d-1f3fb.svg");
-}
-
-em[data-emoji=":thumbsup_tone2:"]:before,
-em[data-emoji="thumbsup_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44d-1f3fc.svg");
-}
-
-em[data-emoji=":thumbsup_tone3:"]:before,
-em[data-emoji="thumbsup_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44d-1f3fd.svg");
-}
-
-em[data-emoji=":thumbsup_tone4:"]:before,
-em[data-emoji="thumbsup_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44d-1f3fe.svg");
-}
-
-em[data-emoji=":thumbsup_tone5:"]:before,
-em[data-emoji="thumbsup_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44d-1f3ff.svg");
-}
-
-em[data-emoji=":thumbsdown:"]:before,
-em[data-emoji="thumbsdown"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44e.svg");
-}
-
-em[data-emoji=":thumbsdown_tone1:"]:before,
-em[data-emoji="thumbsdown_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44e-1f3fb.svg");
-}
-
-em[data-emoji=":thumbsdown_tone2:"]:before,
-em[data-emoji="thumbsdown_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44e-1f3fc.svg");
-}
-
-em[data-emoji=":thumbsdown_tone3:"]:before,
-em[data-emoji="thumbsdown_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44e-1f3fd.svg");
-}
-
-em[data-emoji=":thumbsdown_tone4:"]:before,
-em[data-emoji="thumbsdown_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44e-1f3fe.svg");
-}
-
-em[data-emoji=":thumbsdown_tone5:"]:before,
-em[data-emoji="thumbsdown_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44e-1f3ff.svg");
-}
-
-em[data-emoji=":punch:"]:before,
-em[data-emoji="punch"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44a.svg");
-}
-
-em[data-emoji=":punch_tone1:"]:before,
-em[data-emoji="punch_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44a-1f3fb.svg");
-}
-
-em[data-emoji=":punch_tone2:"]:before,
-em[data-emoji="punch_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44a-1f3fc.svg");
-}
-
-em[data-emoji=":punch_tone3:"]:before,
-em[data-emoji="punch_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44a-1f3fd.svg");
-}
-
-em[data-emoji=":punch_tone4:"]:before,
-em[data-emoji="punch_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44a-1f3fe.svg");
-}
-
-em[data-emoji=":punch_tone5:"]:before,
-em[data-emoji="punch_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44a-1f3ff.svg");
-}
-
-em[data-emoji=":fist:"]:before,
-em[data-emoji="fist"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270a.svg");
-}
-
-em[data-emoji=":fist_tone1:"]:before,
-em[data-emoji="fist_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270a-1f3fb.svg");
-}
-
-em[data-emoji=":fist_tone2:"]:before,
-em[data-emoji="fist_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270a-1f3fc.svg");
-}
-
-em[data-emoji=":fist_tone3:"]:before,
-em[data-emoji="fist_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270a-1f3fd.svg");
-}
-
-em[data-emoji=":fist_tone4:"]:before,
-em[data-emoji="fist_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270a-1f3fe.svg");
-}
-
-em[data-emoji=":fist_tone5:"]:before,
-em[data-emoji="fist_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270a-1f3ff.svg");
-}
-
-em[data-emoji=":left_facing_fist:"]:before,
-em[data-emoji="left_facing_fist"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91b.svg");
-}
-
-em[data-emoji=":left_facing_fist_tone1:"]:before,
-em[data-emoji="left_facing_fist_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91b-1f3fb.svg");
-}
-
-em[data-emoji=":left_facing_fist_tone2:"]:before,
-em[data-emoji="left_facing_fist_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91b-1f3fc.svg");
-}
-
-em[data-emoji=":left_facing_fist_tone3:"]:before,
-em[data-emoji="left_facing_fist_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91b-1f3fd.svg");
-}
-
-em[data-emoji=":left_facing_fist_tone4:"]:before,
-em[data-emoji="left_facing_fist_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91b-1f3fe.svg");
-}
-
-em[data-emoji=":left_facing_fist_tone5:"]:before,
-em[data-emoji="left_facing_fist_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91b-1f3ff.svg");
-}
-
-em[data-emoji=":right_facing_fist:"]:before,
-em[data-emoji="right_facing_fist"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91c.svg");
-}
-
-em[data-emoji=":right_facing_fist_tone1:"]:before,
-em[data-emoji="right_facing_fist_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91c-1f3fb.svg");
-}
-
-em[data-emoji=":right_facing_fist_tone2:"]:before,
-em[data-emoji="right_facing_fist_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91c-1f3fc.svg");
-}
-
-em[data-emoji=":right_facing_fist_tone3:"]:before,
-em[data-emoji="right_facing_fist_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91c-1f3fd.svg");
-}
-
-em[data-emoji=":right_facing_fist_tone4:"]:before,
-em[data-emoji="right_facing_fist_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91c-1f3fe.svg");
-}
-
-em[data-emoji=":right_facing_fist_tone5:"]:before,
-em[data-emoji="right_facing_fist_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91c-1f3ff.svg");
-}
-
-em[data-emoji=":fingers_crossed:"]:before,
-em[data-emoji="fingers_crossed"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91e.svg");
-}
-
-em[data-emoji=":fingers_crossed_tone1:"]:before,
-em[data-emoji="fingers_crossed_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91e-1f3fb.svg");
-}
-
-em[data-emoji=":fingers_crossed_tone2:"]:before,
-em[data-emoji="fingers_crossed_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91e-1f3fc.svg");
-}
-
-em[data-emoji=":fingers_crossed_tone3:"]:before,
-em[data-emoji="fingers_crossed_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91e-1f3fd.svg");
-}
-
-em[data-emoji=":fingers_crossed_tone4:"]:before,
-em[data-emoji="fingers_crossed_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91e-1f3fe.svg");
-}
-
-em[data-emoji=":fingers_crossed_tone5:"]:before,
-em[data-emoji="fingers_crossed_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91e-1f3ff.svg");
-}
-
-em[data-emoji=":v:"]:before,
-em[data-emoji="v"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270c.svg");
-}
-
-em[data-emoji=":v_tone1:"]:before,
-em[data-emoji="v_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270c-1f3fb.svg");
-}
-
-em[data-emoji=":v_tone2:"]:before,
-em[data-emoji="v_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270c-1f3fc.svg");
-}
-
-em[data-emoji=":v_tone3:"]:before,
-em[data-emoji="v_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270c-1f3fd.svg");
-}
-
-em[data-emoji=":v_tone4:"]:before,
-em[data-emoji="v_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270c-1f3fe.svg");
-}
-
-em[data-emoji=":v_tone5:"]:before,
-em[data-emoji="v_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270c-1f3ff.svg");
-}
-
-em[data-emoji=":love_you_gesture:"]:before,
-em[data-emoji="love_you_gesture"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91f.svg");
-}
-
-em[data-emoji=":love_you_gesture_tone1:"]:before,
-em[data-emoji="love_you_gesture_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91f-1f3fb.svg");
-}
-
-em[data-emoji=":love_you_gesture_tone2:"]:before,
-em[data-emoji="love_you_gesture_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91f-1f3fc.svg");
-}
-
-em[data-emoji=":love_you_gesture_tone3:"]:before,
-em[data-emoji="love_you_gesture_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91f-1f3fd.svg");
-}
-
-em[data-emoji=":love_you_gesture_tone4:"]:before,
-em[data-emoji="love_you_gesture_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91f-1f3fe.svg");
-}
-
-em[data-emoji=":love_you_gesture_tone5:"]:before,
-em[data-emoji="love_you_gesture_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91f-1f3ff.svg");
-}
-
-em[data-emoji=":metal:"]:before,
-em[data-emoji="metal"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f918.svg");
-}
-
-em[data-emoji=":metal_tone1:"]:before,
-em[data-emoji="metal_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f918-1f3fb.svg");
-}
-
-em[data-emoji=":metal_tone2:"]:before,
-em[data-emoji="metal_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f918-1f3fc.svg");
-}
-
-em[data-emoji=":metal_tone3:"]:before,
-em[data-emoji="metal_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f918-1f3fd.svg");
-}
-
-em[data-emoji=":metal_tone4:"]:before,
-em[data-emoji="metal_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f918-1f3fe.svg");
-}
-
-em[data-emoji=":metal_tone5:"]:before,
-em[data-emoji="metal_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f918-1f3ff.svg");
-}
-
-em[data-emoji=":ok_hand:"]:before,
-em[data-emoji="ok_hand"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44c.svg");
-}
-
-em[data-emoji=":ok_hand_tone1:"]:before,
-em[data-emoji="ok_hand_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44c-1f3fb.svg");
-}
-
-em[data-emoji=":ok_hand_tone2:"]:before,
-em[data-emoji="ok_hand_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44c-1f3fc.svg");
-}
-
-em[data-emoji=":ok_hand_tone3:"]:before,
-em[data-emoji="ok_hand_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44c-1f3fd.svg");
-}
-
-em[data-emoji=":ok_hand_tone4:"]:before,
-em[data-emoji="ok_hand_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44c-1f3fe.svg");
-}
-
-em[data-emoji=":ok_hand_tone5:"]:before,
-em[data-emoji="ok_hand_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44c-1f3ff.svg");
-}
-
-em[data-emoji=":pinching_hand:"]:before,
-em[data-emoji="pinching_hand"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f90f.svg");
-}
-
-em[data-emoji=":pinching_hand_tone1:"]:before,
-em[data-emoji="pinching_hand_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f90f-1f3fb.svg");
-}
-
-em[data-emoji=":pinching_hand_tone2:"]:before,
-em[data-emoji="pinching_hand_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f90f-1f3fc.svg");
-}
-
-em[data-emoji=":pinching_hand_tone3:"]:before,
-em[data-emoji="pinching_hand_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f90f-1f3fd.svg");
-}
-
-em[data-emoji=":pinching_hand_tone4:"]:before,
-em[data-emoji="pinching_hand_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f90f-1f3fe.svg");
-}
-
-em[data-emoji=":pinching_hand_tone5:"]:before,
-em[data-emoji="pinching_hand_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f90f-1f3ff.svg");
-}
-
-em[data-emoji=":point_left:"]:before,
-em[data-emoji="point_left"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f448.svg");
-}
-
-em[data-emoji=":point_left_tone1:"]:before,
-em[data-emoji="point_left_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f448-1f3fb.svg");
-}
-
-em[data-emoji=":point_left_tone2:"]:before,
-em[data-emoji="point_left_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f448-1f3fc.svg");
-}
-
-em[data-emoji=":point_left_tone3:"]:before,
-em[data-emoji="point_left_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f448-1f3fd.svg");
-}
-
-em[data-emoji=":point_left_tone4:"]:before,
-em[data-emoji="point_left_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f448-1f3fe.svg");
-}
-
-em[data-emoji=":point_left_tone5:"]:before,
-em[data-emoji="point_left_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f448-1f3ff.svg");
-}
-
-em[data-emoji=":point_right:"]:before,
-em[data-emoji="point_right"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f449.svg");
-}
-
-em[data-emoji=":point_right_tone1:"]:before,
-em[data-emoji="point_right_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f449-1f3fb.svg");
-}
-
-em[data-emoji=":point_right_tone2:"]:before,
-em[data-emoji="point_right_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f449-1f3fc.svg");
-}
-
-em[data-emoji=":point_right_tone3:"]:before,
-em[data-emoji="point_right_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f449-1f3fd.svg");
-}
-
-em[data-emoji=":point_right_tone4:"]:before,
-em[data-emoji="point_right_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f449-1f3fe.svg");
-}
-
-em[data-emoji=":point_right_tone5:"]:before,
-em[data-emoji="point_right_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f449-1f3ff.svg");
-}
-
-em[data-emoji=":point_up_2:"]:before,
-em[data-emoji="point_up_2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f446.svg");
-}
-
-em[data-emoji=":point_up_2_tone1:"]:before,
-em[data-emoji="point_up_2_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f446-1f3fb.svg");
-}
-
-em[data-emoji=":point_up_2_tone2:"]:before,
-em[data-emoji="point_up_2_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f446-1f3fc.svg");
-}
-
-em[data-emoji=":point_up_2_tone3:"]:before,
-em[data-emoji="point_up_2_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f446-1f3fd.svg");
-}
-
-em[data-emoji=":point_up_2_tone4:"]:before,
-em[data-emoji="point_up_2_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f446-1f3fe.svg");
-}
-
-em[data-emoji=":point_up_2_tone5:"]:before,
-em[data-emoji="point_up_2_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f446-1f3ff.svg");
-}
-
-em[data-emoji=":point_down:"]:before,
-em[data-emoji="point_down"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f447.svg");
-}
-
-em[data-emoji=":point_down_tone1:"]:before,
-em[data-emoji="point_down_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f447-1f3fb.svg");
-}
-
-em[data-emoji=":point_down_tone2:"]:before,
-em[data-emoji="point_down_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f447-1f3fc.svg");
-}
-
-em[data-emoji=":point_down_tone3:"]:before,
-em[data-emoji="point_down_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f447-1f3fd.svg");
-}
-
-em[data-emoji=":point_down_tone4:"]:before,
-em[data-emoji="point_down_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f447-1f3fe.svg");
-}
-
-em[data-emoji=":point_down_tone5:"]:before,
-em[data-emoji="point_down_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f447-1f3ff.svg");
-}
-
-em[data-emoji=":point_up:"]:before,
-em[data-emoji="point_up"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/261d.svg");
-}
-
-em[data-emoji=":point_up_tone1:"]:before,
-em[data-emoji="point_up_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/261d-1f3fb.svg");
-}
-
-em[data-emoji=":point_up_tone2:"]:before,
-em[data-emoji="point_up_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/261d-1f3fc.svg");
-}
-
-em[data-emoji=":point_up_tone3:"]:before,
-em[data-emoji="point_up_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/261d-1f3fd.svg");
-}
-
-em[data-emoji=":point_up_tone4:"]:before,
-em[data-emoji="point_up_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/261d-1f3fe.svg");
-}
-
-em[data-emoji=":point_up_tone5:"]:before,
-em[data-emoji="point_up_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/261d-1f3ff.svg");
-}
-
-em[data-emoji=":raised_hand:"]:before,
-em[data-emoji="raised_hand"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270b.svg");
-}
-
-em[data-emoji=":raised_hand_tone1:"]:before,
-em[data-emoji="raised_hand_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270b-1f3fb.svg");
-}
-
-em[data-emoji=":raised_hand_tone2:"]:before,
-em[data-emoji="raised_hand_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270b-1f3fc.svg");
-}
-
-em[data-emoji=":raised_hand_tone3:"]:before,
-em[data-emoji="raised_hand_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270b-1f3fd.svg");
-}
-
-em[data-emoji=":raised_hand_tone4:"]:before,
-em[data-emoji="raised_hand_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270b-1f3fe.svg");
-}
-
-em[data-emoji=":raised_hand_tone5:"]:before,
-em[data-emoji="raised_hand_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270b-1f3ff.svg");
-}
-
-em[data-emoji=":raised_back_of_hand:"]:before,
-em[data-emoji="raised_back_of_hand"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91a.svg");
-}
-
-em[data-emoji=":raised_back_of_hand_tone1:"]:before,
-em[data-emoji="raised_back_of_hand_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91a-1f3fb.svg");
-}
-
-em[data-emoji=":raised_back_of_hand_tone2:"]:before,
-em[data-emoji="raised_back_of_hand_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91a-1f3fc.svg");
-}
-
-em[data-emoji=":raised_back_of_hand_tone3:"]:before,
-em[data-emoji="raised_back_of_hand_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91a-1f3fd.svg");
-}
-
-em[data-emoji=":raised_back_of_hand_tone4:"]:before,
-em[data-emoji="raised_back_of_hand_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91a-1f3fe.svg");
-}
-
-em[data-emoji=":raised_back_of_hand_tone5:"]:before,
-em[data-emoji="raised_back_of_hand_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f91a-1f3ff.svg");
-}
-
-em[data-emoji=":hand_splayed:"]:before,
-em[data-emoji="hand_splayed"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f590.svg");
-}
-
-em[data-emoji=":hand_splayed_tone1:"]:before,
-em[data-emoji="hand_splayed_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f590-1f3fb.svg");
-}
-
-em[data-emoji=":hand_splayed_tone2:"]:before,
-em[data-emoji="hand_splayed_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f590-1f3fc.svg");
-}
-
-em[data-emoji=":hand_splayed_tone3:"]:before,
-em[data-emoji="hand_splayed_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f590-1f3fd.svg");
-}
-
-em[data-emoji=":hand_splayed_tone4:"]:before,
-em[data-emoji="hand_splayed_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f590-1f3fe.svg");
-}
-
-em[data-emoji=":hand_splayed_tone5:"]:before,
-em[data-emoji="hand_splayed_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f590-1f3ff.svg");
-}
-
-em[data-emoji=":vulcan:"]:before,
-em[data-emoji="vulcan"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f596.svg");
-}
-
-em[data-emoji=":vulcan_tone1:"]:before,
-em[data-emoji="vulcan_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f596-1f3fb.svg");
-}
-
-em[data-emoji=":vulcan_tone2:"]:before,
-em[data-emoji="vulcan_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f596-1f3fc.svg");
-}
-
-em[data-emoji=":vulcan_tone3:"]:before,
-em[data-emoji="vulcan_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f596-1f3fd.svg");
-}
-
-em[data-emoji=":vulcan_tone4:"]:before,
-em[data-emoji="vulcan_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f596-1f3fe.svg");
-}
-
-em[data-emoji=":vulcan_tone5:"]:before,
-em[data-emoji="vulcan_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f596-1f3ff.svg");
-}
-
-em[data-emoji=":wave:"]:before,
-em[data-emoji="wave"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44b.svg");
-}
-
-em[data-emoji=":wave_tone1:"]:before,
-em[data-emoji="wave_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44b-1f3fb.svg");
-}
-
-em[data-emoji=":wave_tone2:"]:before,
-em[data-emoji="wave_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44b-1f3fc.svg");
-}
-
-em[data-emoji=":wave_tone3:"]:before,
-em[data-emoji="wave_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44b-1f3fd.svg");
-}
-
-em[data-emoji=":wave_tone4:"]:before,
-em[data-emoji="wave_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44b-1f3fe.svg");
-}
-
-em[data-emoji=":wave_tone5:"]:before,
-em[data-emoji="wave_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f44b-1f3ff.svg");
-}
-
-em[data-emoji=":call_me:"]:before,
-em[data-emoji="call_me"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f919.svg");
-}
-
-em[data-emoji=":call_me_tone1:"]:before,
-em[data-emoji="call_me_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f919-1f3fb.svg");
-}
-
-em[data-emoji=":call_me_tone2:"]:before,
-em[data-emoji="call_me_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f919-1f3fc.svg");
-}
-
-em[data-emoji=":call_me_tone3:"]:before,
-em[data-emoji="call_me_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f919-1f3fd.svg");
-}
-
-em[data-emoji=":call_me_tone4:"]:before,
-em[data-emoji="call_me_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f919-1f3fe.svg");
-}
-
-em[data-emoji=":call_me_tone5:"]:before,
-em[data-emoji="call_me_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f919-1f3ff.svg");
-}
-
-em[data-emoji=":muscle:"]:before,
-em[data-emoji="muscle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4aa.svg");
-}
-
-em[data-emoji=":muscle_tone1:"]:before,
-em[data-emoji="muscle_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4aa-1f3fb.svg");
-}
-
-em[data-emoji=":muscle_tone2:"]:before,
-em[data-emoji="muscle_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4aa-1f3fc.svg");
-}
-
-em[data-emoji=":muscle_tone3:"]:before,
-em[data-emoji="muscle_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4aa-1f3fd.svg");
-}
-
-em[data-emoji=":muscle_tone4:"]:before,
-em[data-emoji="muscle_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4aa-1f3fe.svg");
-}
-
-em[data-emoji=":muscle_tone5:"]:before,
-em[data-emoji="muscle_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4aa-1f3ff.svg");
-}
-
-em[data-emoji=":mechanical_arm:"]:before,
-em[data-emoji="mechanical_arm"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9be.svg");
-}
-
-em[data-emoji=":middle_finger:"]:before,
-em[data-emoji="middle_finger"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f595.svg");
-}
-
-em[data-emoji=":middle_finger_tone1:"]:before,
-em[data-emoji="middle_finger_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f595-1f3fb.svg");
-}
-
-em[data-emoji=":middle_finger_tone2:"]:before,
-em[data-emoji="middle_finger_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f595-1f3fc.svg");
-}
-
-em[data-emoji=":middle_finger_tone3:"]:before,
-em[data-emoji="middle_finger_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f595-1f3fd.svg");
-}
-
-em[data-emoji=":middle_finger_tone4:"]:before,
-em[data-emoji="middle_finger_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f595-1f3fe.svg");
-}
-
-em[data-emoji=":middle_finger_tone5:"]:before,
-em[data-emoji="middle_finger_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f595-1f3ff.svg");
-}
-
-em[data-emoji=":writing_hand:"]:before,
-em[data-emoji="writing_hand"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270d.svg");
-}
-
-em[data-emoji=":writing_hand_tone1:"]:before,
-em[data-emoji="writing_hand_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270d-1f3fb.svg");
-}
-
-em[data-emoji=":writing_hand_tone2:"]:before,
-em[data-emoji="writing_hand_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270d-1f3fc.svg");
-}
-
-em[data-emoji=":writing_hand_tone3:"]:before,
-em[data-emoji="writing_hand_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270d-1f3fd.svg");
-}
-
-em[data-emoji=":writing_hand_tone4:"]:before,
-em[data-emoji="writing_hand_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270d-1f3fe.svg");
-}
-
-em[data-emoji=":writing_hand_tone5:"]:before,
-em[data-emoji="writing_hand_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/270d-1f3ff.svg");
-}
-
-em[data-emoji=":pray:"]:before,
-em[data-emoji="pray"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64f.svg");
-}
-
-em[data-emoji=":pray_tone1:"]:before,
-em[data-emoji="pray_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64f-1f3fb.svg");
-}
-
-em[data-emoji=":pray_tone2:"]:before,
-em[data-emoji="pray_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64f-1f3fc.svg");
-}
-
-em[data-emoji=":pray_tone3:"]:before,
-em[data-emoji="pray_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64f-1f3fd.svg");
-}
-
-em[data-emoji=":pray_tone4:"]:before,
-em[data-emoji="pray_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64f-1f3fe.svg");
-}
-
-em[data-emoji=":pray_tone5:"]:before,
-em[data-emoji="pray_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64f-1f3ff.svg");
-}
-
-em[data-emoji=":foot:"]:before,
-em[data-emoji="foot"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b6.svg");
-}
-
-em[data-emoji=":foot_tone1:"]:before,
-em[data-emoji="foot_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b6-1f3fb.svg");
-}
-
-em[data-emoji=":foot_tone2:"]:before,
-em[data-emoji="foot_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b6-1f3fc.svg");
-}
-
-em[data-emoji=":foot_tone3:"]:before,
-em[data-emoji="foot_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b6-1f3fd.svg");
-}
-
-em[data-emoji=":foot_tone4:"]:before,
-em[data-emoji="foot_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b6-1f3fe.svg");
-}
-
-em[data-emoji=":foot_tone5:"]:before,
-em[data-emoji="foot_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b6-1f3ff.svg");
-}
-
-em[data-emoji=":leg:"]:before,
-em[data-emoji="leg"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b5.svg");
-}
-
-em[data-emoji=":leg_tone1:"]:before,
-em[data-emoji="leg_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b5-1f3fb.svg");
-}
-
-em[data-emoji=":leg_tone2:"]:before,
-em[data-emoji="leg_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b5-1f3fc.svg");
-}
-
-em[data-emoji=":leg_tone3:"]:before,
-em[data-emoji="leg_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b5-1f3fd.svg");
-}
-
-em[data-emoji=":leg_tone4:"]:before,
-em[data-emoji="leg_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b5-1f3fe.svg");
-}
-
-em[data-emoji=":leg_tone5:"]:before,
-em[data-emoji="leg_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b5-1f3ff.svg");
-}
-
-em[data-emoji=":mechanical_leg:"]:before,
-em[data-emoji="mechanical_leg"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9bf.svg");
-}
-
-em[data-emoji=":lipstick:"]:before,
-em[data-emoji="lipstick"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f484.svg");
-}
-
-em[data-emoji=":kiss:"]:before,
-em[data-emoji="kiss"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f48b.svg");
-}
-
-em[data-emoji=":lips:"]:before,
-em[data-emoji="lips"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f444.svg");
-}
-
-em[data-emoji=":tongue:"]:before,
-em[data-emoji="tongue"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f445.svg");
-}
-
-em[data-emoji=":tooth:"]:before,
-em[data-emoji="tooth"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b7.svg");
-}
-
-em[data-emoji=":bone:"]:before,
-em[data-emoji="bone"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b4.svg");
-}
-
-em[data-emoji=":ear:"]:before,
-em[data-emoji="ear"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f442.svg");
-}
-
-em[data-emoji=":ear_tone1:"]:before,
-em[data-emoji="ear_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f442-1f3fb.svg");
-}
-
-em[data-emoji=":ear_tone2:"]:before,
-em[data-emoji="ear_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f442-1f3fc.svg");
-}
-
-em[data-emoji=":ear_tone3:"]:before,
-em[data-emoji="ear_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f442-1f3fd.svg");
-}
-
-em[data-emoji=":ear_tone4:"]:before,
-em[data-emoji="ear_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f442-1f3fe.svg");
-}
-
-em[data-emoji=":ear_tone5:"]:before,
-em[data-emoji="ear_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f442-1f3ff.svg");
-}
-
-em[data-emoji=":ear_with_hearing_aid:"]:before,
-em[data-emoji="ear_with_hearing_aid"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9bb.svg");
-}
-
-em[data-emoji=":ear_with_hearing_aid_tone1:"]:before,
-em[data-emoji="ear_with_hearing_aid_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9bb-1f3fb.svg");
-}
-
-em[data-emoji=":ear_with_hearing_aid_tone2:"]:before,
-em[data-emoji="ear_with_hearing_aid_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9bb-1f3fc.svg");
-}
-
-em[data-emoji=":ear_with_hearing_aid_tone3:"]:before,
-em[data-emoji="ear_with_hearing_aid_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9bb-1f3fd.svg");
-}
-
-em[data-emoji=":ear_with_hearing_aid_tone4:"]:before,
-em[data-emoji="ear_with_hearing_aid_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9bb-1f3fe.svg");
-}
-
-em[data-emoji=":ear_with_hearing_aid_tone5:"]:before,
-em[data-emoji="ear_with_hearing_aid_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9bb-1f3ff.svg");
-}
-
-em[data-emoji=":nose:"]:before,
-em[data-emoji="nose"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f443.svg");
-}
-
-em[data-emoji=":nose_tone1:"]:before,
-em[data-emoji="nose_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f443-1f3fb.svg");
-}
-
-em[data-emoji=":nose_tone2:"]:before,
-em[data-emoji="nose_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f443-1f3fc.svg");
-}
-
-em[data-emoji=":nose_tone3:"]:before,
-em[data-emoji="nose_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f443-1f3fd.svg");
-}
-
-em[data-emoji=":nose_tone4:"]:before,
-em[data-emoji="nose_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f443-1f3fe.svg");
-}
-
-em[data-emoji=":nose_tone5:"]:before,
-em[data-emoji="nose_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f443-1f3ff.svg");
-}
-
-em[data-emoji=":footprints:"]:before,
-em[data-emoji="footprints"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f463.svg");
-}
-
-em[data-emoji=":eye:"]:before,
-em[data-emoji="eye"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f441.svg");
-}
-
-em[data-emoji=":eyes:"]:before,
-em[data-emoji="eyes"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f440.svg");
-}
-
-em[data-emoji=":brain:"]:before,
-em[data-emoji="brain"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9e0.svg");
-}
-
-em[data-emoji=":speaking_head:"]:before,
-em[data-emoji="speaking_head"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5e3.svg");
-}
-
-em[data-emoji=":bust_in_silhouette:"]:before,
-em[data-emoji="bust_in_silhouette"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f464.svg");
-}
-
-em[data-emoji=":busts_in_silhouette:"]:before,
-em[data-emoji="busts_in_silhouette"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f465.svg");
-}
-
-em[data-emoji=":baby:"]:before,
-em[data-emoji="baby"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f476.svg");
-}
-
-em[data-emoji=":baby_tone1:"]:before,
-em[data-emoji="baby_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f476-1f3fb.svg");
-}
-
-em[data-emoji=":baby_tone2:"]:before,
-em[data-emoji="baby_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f476-1f3fc.svg");
-}
-
-em[data-emoji=":baby_tone3:"]:before,
-em[data-emoji="baby_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f476-1f3fd.svg");
-}
-
-em[data-emoji=":baby_tone4:"]:before,
-em[data-emoji="baby_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f476-1f3fe.svg");
-}
-
-em[data-emoji=":baby_tone5:"]:before,
-em[data-emoji="baby_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f476-1f3ff.svg");
-}
-
-em[data-emoji=":girl:"]:before,
-em[data-emoji="girl"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f467.svg");
-}
-
-em[data-emoji=":girl_tone1:"]:before,
-em[data-emoji="girl_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f467-1f3fb.svg");
-}
-
-em[data-emoji=":girl_tone2:"]:before,
-em[data-emoji="girl_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f467-1f3fc.svg");
-}
-
-em[data-emoji=":girl_tone3:"]:before,
-em[data-emoji="girl_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f467-1f3fd.svg");
-}
-
-em[data-emoji=":girl_tone4:"]:before,
-em[data-emoji="girl_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f467-1f3fe.svg");
-}
-
-em[data-emoji=":girl_tone5:"]:before,
-em[data-emoji="girl_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f467-1f3ff.svg");
-}
-
-em[data-emoji=":child:"]:before,
-em[data-emoji="child"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d2.svg");
-}
-
-em[data-emoji=":child_tone1:"]:before,
-em[data-emoji="child_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d2-1f3fb.svg");
-}
-
-em[data-emoji=":child_tone2:"]:before,
-em[data-emoji="child_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d2-1f3fc.svg");
-}
-
-em[data-emoji=":child_tone3:"]:before,
-em[data-emoji="child_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d2-1f3fd.svg");
-}
-
-em[data-emoji=":child_tone4:"]:before,
-em[data-emoji="child_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d2-1f3fe.svg");
-}
-
-em[data-emoji=":child_tone5:"]:before,
-em[data-emoji="child_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d2-1f3ff.svg");
-}
-
-em[data-emoji=":boy:"]:before,
-em[data-emoji="boy"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f466.svg");
-}
-
-em[data-emoji=":boy_tone1:"]:before,
-em[data-emoji="boy_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f466-1f3fb.svg");
-}
-
-em[data-emoji=":boy_tone2:"]:before,
-em[data-emoji="boy_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f466-1f3fc.svg");
-}
-
-em[data-emoji=":boy_tone3:"]:before,
-em[data-emoji="boy_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f466-1f3fd.svg");
-}
-
-em[data-emoji=":boy_tone4:"]:before,
-em[data-emoji="boy_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f466-1f3fe.svg");
-}
-
-em[data-emoji=":boy_tone5:"]:before,
-em[data-emoji="boy_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f466-1f3ff.svg");
-}
-
-em[data-emoji=":woman:"]:before,
-em[data-emoji="woman"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469.svg");
-}
-
-em[data-emoji=":woman_tone1:"]:before,
-em[data-emoji="woman_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb.svg");
-}
-
-em[data-emoji=":woman_tone2:"]:before,
-em[data-emoji="woman_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc.svg");
-}
-
-em[data-emoji=":woman_tone3:"]:before,
-em[data-emoji="woman_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd.svg");
-}
-
-em[data-emoji=":woman_tone4:"]:before,
-em[data-emoji="woman_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe.svg");
-}
-
-em[data-emoji=":woman_tone5:"]:before,
-em[data-emoji="woman_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff.svg");
-}
-
-em[data-emoji=":adult:"]:before,
-em[data-emoji="adult"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d1.svg");
-}
-
-em[data-emoji=":adult_tone1:"]:before,
-em[data-emoji="adult_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d1-1f3fb.svg");
-}
-
-em[data-emoji=":adult_tone2:"]:before,
-em[data-emoji="adult_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d1-1f3fc.svg");
-}
-
-em[data-emoji=":adult_tone3:"]:before,
-em[data-emoji="adult_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d1-1f3fd.svg");
-}
-
-em[data-emoji=":adult_tone4:"]:before,
-em[data-emoji="adult_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d1-1f3fe.svg");
-}
-
-em[data-emoji=":adult_tone5:"]:before,
-em[data-emoji="adult_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d1-1f3ff.svg");
-}
-
-em[data-emoji=":man:"]:before,
-em[data-emoji="man"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468.svg");
-}
-
-em[data-emoji=":man_tone1:"]:before,
-em[data-emoji="man_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fb.svg");
-}
-
-em[data-emoji=":man_tone2:"]:before,
-em[data-emoji="man_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc.svg");
-}
-
-em[data-emoji=":man_tone3:"]:before,
-em[data-emoji="man_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd.svg");
-}
-
-em[data-emoji=":man_tone4:"]:before,
-em[data-emoji="man_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe.svg");
-}
-
-em[data-emoji=":man_tone5:"]:before,
-em[data-emoji="man_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff.svg");
-}
-
-em[data-emoji=":woman_curly_haired:"]:before,
-em[data-emoji="woman_curly_haired"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f9b1.svg");
-}
-
-em[data-emoji=":woman_curly_haired_tone1:"]:before,
-em[data-emoji="woman_curly_haired_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-1f9b1.svg");
-}
-
-em[data-emoji=":woman_curly_haired_tone2:"]:before,
-em[data-emoji="woman_curly_haired_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f9b1.svg");
-}
-
-em[data-emoji=":woman_curly_haired_tone3:"]:before,
-em[data-emoji="woman_curly_haired_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f9b1.svg");
-}
-
-em[data-emoji=":woman_curly_haired_tone4:"]:before,
-em[data-emoji="woman_curly_haired_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f9b1.svg");
-}
-
-em[data-emoji=":woman_curly_haired_tone5:"]:before,
-em[data-emoji="woman_curly_haired_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f9b1.svg");
-}
-
-em[data-emoji=":man_curly_haired:"]:before,
-em[data-emoji="man_curly_haired"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f9b1.svg");
-}
-
-em[data-emoji=":man_curly_haired_tone1:"]:before,
-em[data-emoji="man_curly_haired_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fb-200d-1f9b1.svg");
-}
-
-em[data-emoji=":man_curly_haired_tone2:"]:before,
-em[data-emoji="man_curly_haired_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc-200d-1f9b1.svg");
-}
-
-em[data-emoji=":man_curly_haired_tone3:"]:before,
-em[data-emoji="man_curly_haired_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-1f9b1.svg");
-}
-
-em[data-emoji=":man_curly_haired_tone4:"]:before,
-em[data-emoji="man_curly_haired_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-1f9b1.svg");
-}
-
-em[data-emoji=":man_curly_haired_tone5:"]:before,
-em[data-emoji="man_curly_haired_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-1f9b1.svg");
-}
-
-em[data-emoji=":woman_red_haired:"]:before,
-em[data-emoji="woman_red_haired"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f9b0.svg");
-}
-
-em[data-emoji=":woman_red_haired_tone1:"]:before,
-em[data-emoji="woman_red_haired_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-1f9b0.svg");
-}
-
-em[data-emoji=":woman_red_haired_tone2:"]:before,
-em[data-emoji="woman_red_haired_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f9b0.svg");
-}
-
-em[data-emoji=":woman_red_haired_tone3:"]:before,
-em[data-emoji="woman_red_haired_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f9b0.svg");
-}
-
-em[data-emoji=":woman_red_haired_tone4:"]:before,
-em[data-emoji="woman_red_haired_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f9b0.svg");
-}
-
-em[data-emoji=":woman_red_haired_tone5:"]:before,
-em[data-emoji="woman_red_haired_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f9b0.svg");
-}
-
-em[data-emoji=":man_red_haired:"]:before,
-em[data-emoji="man_red_haired"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f9b0.svg");
-}
-
-em[data-emoji=":man_red_haired_tone1:"]:before,
-em[data-emoji="man_red_haired_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fb-200d-1f9b0.svg");
-}
-
-em[data-emoji=":man_red_haired_tone2:"]:before,
-em[data-emoji="man_red_haired_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc-200d-1f9b0.svg");
-}
-
-em[data-emoji=":man_red_haired_tone3:"]:before,
-em[data-emoji="man_red_haired_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-1f9b0.svg");
-}
-
-em[data-emoji=":man_red_haired_tone4:"]:before,
-em[data-emoji="man_red_haired_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-1f9b0.svg");
-}
-
-em[data-emoji=":man_red_haired_tone5:"]:before,
-em[data-emoji="man_red_haired_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-1f9b0.svg");
-}
-
-em[data-emoji=":blond-haired_woman:"]:before,
-em[data-emoji="blond-haired_woman"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f471-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":blond-haired_woman_tone1:"]:before,
-em[data-emoji="blond-haired_woman_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f471-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":blond-haired_woman_tone2:"]:before,
-em[data-emoji="blond-haired_woman_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f471-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":blond-haired_woman_tone3:"]:before,
-em[data-emoji="blond-haired_woman_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f471-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":blond-haired_woman_tone4:"]:before,
-em[data-emoji="blond-haired_woman_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f471-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":blond-haired_woman_tone5:"]:before,
-em[data-emoji="blond-haired_woman_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f471-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":blond_haired_person:"]:before,
-em[data-emoji="blond_haired_person"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f471.svg");
-}
-
-em[data-emoji=":blond_haired_person_tone1:"]:before,
-em[data-emoji="blond_haired_person_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f471-1f3fb.svg");
-}
-
-em[data-emoji=":blond_haired_person_tone2:"]:before,
-em[data-emoji="blond_haired_person_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f471-1f3fc.svg");
-}
-
-em[data-emoji=":blond_haired_person_tone3:"]:before,
-em[data-emoji="blond_haired_person_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f471-1f3fd.svg");
-}
-
-em[data-emoji=":blond_haired_person_tone4:"]:before,
-em[data-emoji="blond_haired_person_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f471-1f3fe.svg");
-}
-
-em[data-emoji=":blond_haired_person_tone5:"]:before,
-em[data-emoji="blond_haired_person_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f471-1f3ff.svg");
-}
-
-em[data-emoji=":blond-haired_man:"]:before,
-em[data-emoji="blond-haired_man"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f471-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":blond-haired_man_tone1:"]:before,
-em[data-emoji="blond-haired_man_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f471-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":blond-haired_man_tone2:"]:before,
-em[data-emoji="blond-haired_man_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f471-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":blond-haired_man_tone3:"]:before,
-em[data-emoji="blond-haired_man_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f471-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":blond-haired_man_tone4:"]:before,
-em[data-emoji="blond-haired_man_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f471-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":blond-haired_man_tone5:"]:before,
-em[data-emoji="blond-haired_man_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f471-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":woman_white_haired:"]:before,
-em[data-emoji="woman_white_haired"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f9b3.svg");
-}
-
-em[data-emoji=":woman_white_haired_tone1:"]:before,
-em[data-emoji="woman_white_haired_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-1f9b3.svg");
-}
-
-em[data-emoji=":woman_white_haired_tone2:"]:before,
-em[data-emoji="woman_white_haired_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f9b3.svg");
-}
-
-em[data-emoji=":woman_white_haired_tone3:"]:before,
-em[data-emoji="woman_white_haired_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f9b3.svg");
-}
-
-em[data-emoji=":woman_white_haired_tone4:"]:before,
-em[data-emoji="woman_white_haired_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f9b3.svg");
-}
-
-em[data-emoji=":woman_white_haired_tone5:"]:before,
-em[data-emoji="woman_white_haired_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f9b3.svg");
-}
-
-em[data-emoji=":man_white_haired:"]:before,
-em[data-emoji="man_white_haired"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f9b3.svg");
-}
-
-em[data-emoji=":man_white_haired_tone1:"]:before,
-em[data-emoji="man_white_haired_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fb-200d-1f9b3.svg");
-}
-
-em[data-emoji=":man_white_haired_tone2:"]:before,
-em[data-emoji="man_white_haired_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc-200d-1f9b3.svg");
-}
-
-em[data-emoji=":man_white_haired_tone3:"]:before,
-em[data-emoji="man_white_haired_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-1f9b3.svg");
-}
-
-em[data-emoji=":man_white_haired_tone4:"]:before,
-em[data-emoji="man_white_haired_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-1f9b3.svg");
-}
-
-em[data-emoji=":man_white_haired_tone5:"]:before,
-em[data-emoji="man_white_haired_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-1f9b3.svg");
-}
-
-em[data-emoji=":woman_bald:"]:before,
-em[data-emoji="woman_bald"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f9b2.svg");
-}
-
-em[data-emoji=":woman_bald_tone1:"]:before,
-em[data-emoji="woman_bald_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-1f9b2.svg");
-}
-
-em[data-emoji=":woman_bald_tone2:"]:before,
-em[data-emoji="woman_bald_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f9b2.svg");
-}
-
-em[data-emoji=":woman_bald_tone3:"]:before,
-em[data-emoji="woman_bald_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f9b2.svg");
-}
-
-em[data-emoji=":woman_bald_tone4:"]:before,
-em[data-emoji="woman_bald_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f9b2.svg");
-}
-
-em[data-emoji=":woman_bald_tone5:"]:before,
-em[data-emoji="woman_bald_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f9b2.svg");
-}
-
-em[data-emoji=":man_bald:"]:before,
-em[data-emoji="man_bald"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f9b2.svg");
-}
-
-em[data-emoji=":man_bald_tone1:"]:before,
-em[data-emoji="man_bald_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fb-200d-1f9b2.svg");
-}
-
-em[data-emoji=":man_bald_tone2:"]:before,
-em[data-emoji="man_bald_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc-200d-1f9b2.svg");
-}
-
-em[data-emoji=":man_bald_tone3:"]:before,
-em[data-emoji="man_bald_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-1f9b2.svg");
-}
-
-em[data-emoji=":man_bald_tone4:"]:before,
-em[data-emoji="man_bald_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-1f9b2.svg");
-}
-
-em[data-emoji=":man_bald_tone5:"]:before,
-em[data-emoji="man_bald_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-1f9b2.svg");
-}
-
-em[data-emoji=":bearded_person:"]:before,
-em[data-emoji="bearded_person"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d4.svg");
-}
-
-em[data-emoji=":bearded_person_tone1:"]:before,
-em[data-emoji="bearded_person_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d4-1f3fb.svg");
-}
-
-em[data-emoji=":bearded_person_tone2:"]:before,
-em[data-emoji="bearded_person_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d4-1f3fc.svg");
-}
-
-em[data-emoji=":bearded_person_tone3:"]:before,
-em[data-emoji="bearded_person_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d4-1f3fd.svg");
-}
-
-em[data-emoji=":bearded_person_tone4:"]:before,
-em[data-emoji="bearded_person_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d4-1f3fe.svg");
-}
-
-em[data-emoji=":bearded_person_tone5:"]:before,
-em[data-emoji="bearded_person_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d4-1f3ff.svg");
-}
-
-em[data-emoji=":older_woman:"]:before,
-em[data-emoji="older_woman"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f475.svg");
-}
-
-em[data-emoji=":older_woman_tone1:"]:before,
-em[data-emoji="older_woman_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f475-1f3fb.svg");
-}
-
-em[data-emoji=":older_woman_tone2:"]:before,
-em[data-emoji="older_woman_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f475-1f3fc.svg");
-}
-
-em[data-emoji=":older_woman_tone3:"]:before,
-em[data-emoji="older_woman_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f475-1f3fd.svg");
-}
-
-em[data-emoji=":older_woman_tone4:"]:before,
-em[data-emoji="older_woman_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f475-1f3fe.svg");
-}
-
-em[data-emoji=":older_woman_tone5:"]:before,
-em[data-emoji="older_woman_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f475-1f3ff.svg");
-}
-
-em[data-emoji=":older_adult:"]:before,
-em[data-emoji="older_adult"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d3.svg");
-}
-
-em[data-emoji=":older_adult_tone1:"]:before,
-em[data-emoji="older_adult_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d3-1f3fb.svg");
-}
-
-em[data-emoji=":older_adult_tone2:"]:before,
-em[data-emoji="older_adult_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d3-1f3fc.svg");
-}
-
-em[data-emoji=":older_adult_tone3:"]:before,
-em[data-emoji="older_adult_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d3-1f3fd.svg");
-}
-
-em[data-emoji=":older_adult_tone4:"]:before,
-em[data-emoji="older_adult_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d3-1f3fe.svg");
-}
-
-em[data-emoji=":older_adult_tone5:"]:before,
-em[data-emoji="older_adult_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d3-1f3ff.svg");
-}
-
-em[data-emoji=":older_man:"]:before,
-em[data-emoji="older_man"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f474.svg");
-}
-
-em[data-emoji=":older_man_tone1:"]:before,
-em[data-emoji="older_man_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f474-1f3fb.svg");
-}
-
-em[data-emoji=":older_man_tone2:"]:before,
-em[data-emoji="older_man_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f474-1f3fc.svg");
-}
-
-em[data-emoji=":older_man_tone3:"]:before,
-em[data-emoji="older_man_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f474-1f3fd.svg");
-}
-
-em[data-emoji=":older_man_tone4:"]:before,
-em[data-emoji="older_man_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f474-1f3fe.svg");
-}
-
-em[data-emoji=":older_man_tone5:"]:before,
-em[data-emoji="older_man_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f474-1f3ff.svg");
-}
-
-em[data-emoji=":man_with_chinese_cap:"]:before,
-em[data-emoji="man_with_chinese_cap"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f472.svg");
-}
-
-em[data-emoji=":man_with_chinese_cap_tone1:"]:before,
-em[data-emoji="man_with_chinese_cap_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f472-1f3fb.svg");
-}
-
-em[data-emoji=":man_with_chinese_cap_tone2:"]:before,
-em[data-emoji="man_with_chinese_cap_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f472-1f3fc.svg");
-}
-
-em[data-emoji=":man_with_chinese_cap_tone3:"]:before,
-em[data-emoji="man_with_chinese_cap_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f472-1f3fd.svg");
-}
-
-em[data-emoji=":man_with_chinese_cap_tone4:"]:before,
-em[data-emoji="man_with_chinese_cap_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f472-1f3fe.svg");
-}
-
-em[data-emoji=":man_with_chinese_cap_tone5:"]:before,
-em[data-emoji="man_with_chinese_cap_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f472-1f3ff.svg");
-}
-
-em[data-emoji=":person_wearing_turban:"]:before,
-em[data-emoji="person_wearing_turban"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f473.svg");
-}
-
-em[data-emoji=":person_wearing_turban_tone1:"]:before,
-em[data-emoji="person_wearing_turban_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f473-1f3fb.svg");
-}
-
-em[data-emoji=":person_wearing_turban_tone2:"]:before,
-em[data-emoji="person_wearing_turban_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f473-1f3fc.svg");
-}
-
-em[data-emoji=":person_wearing_turban_tone3:"]:before,
-em[data-emoji="person_wearing_turban_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f473-1f3fd.svg");
-}
-
-em[data-emoji=":person_wearing_turban_tone4:"]:before,
-em[data-emoji="person_wearing_turban_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f473-1f3fe.svg");
-}
-
-em[data-emoji=":person_wearing_turban_tone5:"]:before,
-em[data-emoji="person_wearing_turban_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f473-1f3ff.svg");
-}
-
-em[data-emoji=":woman_wearing_turban:"]:before,
-em[data-emoji="woman_wearing_turban"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f473-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_wearing_turban_tone1:"]:before,
-em[data-emoji="woman_wearing_turban_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f473-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_wearing_turban_tone2:"]:before,
-em[data-emoji="woman_wearing_turban_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f473-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_wearing_turban_tone3:"]:before,
-em[data-emoji="woman_wearing_turban_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f473-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_wearing_turban_tone4:"]:before,
-em[data-emoji="woman_wearing_turban_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f473-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_wearing_turban_tone5:"]:before,
-em[data-emoji="woman_wearing_turban_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f473-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_wearing_turban:"]:before,
-em[data-emoji="man_wearing_turban"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f473-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_wearing_turban_tone1:"]:before,
-em[data-emoji="man_wearing_turban_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f473-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_wearing_turban_tone2:"]:before,
-em[data-emoji="man_wearing_turban_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f473-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_wearing_turban_tone3:"]:before,
-em[data-emoji="man_wearing_turban_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f473-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_wearing_turban_tone4:"]:before,
-em[data-emoji="man_wearing_turban_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f473-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_wearing_turban_tone5:"]:before,
-em[data-emoji="man_wearing_turban_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f473-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":woman_with_headscarf:"]:before,
-em[data-emoji="woman_with_headscarf"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d5.svg");
-}
-
-em[data-emoji=":woman_with_headscarf_tone1:"]:before,
-em[data-emoji="woman_with_headscarf_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d5-1f3fb.svg");
-}
-
-em[data-emoji=":woman_with_headscarf_tone2:"]:before,
-em[data-emoji="woman_with_headscarf_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d5-1f3fc.svg");
-}
-
-em[data-emoji=":woman_with_headscarf_tone3:"]:before,
-em[data-emoji="woman_with_headscarf_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d5-1f3fd.svg");
-}
-
-em[data-emoji=":woman_with_headscarf_tone4:"]:before,
-em[data-emoji="woman_with_headscarf_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d5-1f3fe.svg");
-}
-
-em[data-emoji=":woman_with_headscarf_tone5:"]:before,
-em[data-emoji="woman_with_headscarf_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d5-1f3ff.svg");
-}
-
-em[data-emoji=":police_officer:"]:before,
-em[data-emoji="police_officer"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46e.svg");
-}
-
-em[data-emoji=":police_officer_tone1:"]:before,
-em[data-emoji="police_officer_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46e-1f3fb.svg");
-}
-
-em[data-emoji=":police_officer_tone2:"]:before,
-em[data-emoji="police_officer_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46e-1f3fc.svg");
-}
-
-em[data-emoji=":police_officer_tone3:"]:before,
-em[data-emoji="police_officer_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46e-1f3fd.svg");
-}
-
-em[data-emoji=":police_officer_tone4:"]:before,
-em[data-emoji="police_officer_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46e-1f3fe.svg");
-}
-
-em[data-emoji=":police_officer_tone5:"]:before,
-em[data-emoji="police_officer_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46e-1f3ff.svg");
-}
-
-em[data-emoji=":woman_police_officer:"]:before,
-em[data-emoji="woman_police_officer"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46e-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_police_officer_tone1:"]:before,
-em[data-emoji="woman_police_officer_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46e-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_police_officer_tone2:"]:before,
-em[data-emoji="woman_police_officer_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46e-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_police_officer_tone3:"]:before,
-em[data-emoji="woman_police_officer_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46e-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_police_officer_tone4:"]:before,
-em[data-emoji="woman_police_officer_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46e-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_police_officer_tone5:"]:before,
-em[data-emoji="woman_police_officer_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46e-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_police_officer:"]:before,
-em[data-emoji="man_police_officer"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46e-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_police_officer_tone1:"]:before,
-em[data-emoji="man_police_officer_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46e-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_police_officer_tone2:"]:before,
-em[data-emoji="man_police_officer_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46e-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_police_officer_tone3:"]:before,
-em[data-emoji="man_police_officer_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46e-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_police_officer_tone4:"]:before,
-em[data-emoji="man_police_officer_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46e-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_police_officer_tone5:"]:before,
-em[data-emoji="man_police_officer_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46e-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":construction_worker:"]:before,
-em[data-emoji="construction_worker"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f477.svg");
-}
-
-em[data-emoji=":construction_worker_tone1:"]:before,
-em[data-emoji="construction_worker_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f477-1f3fb.svg");
-}
-
-em[data-emoji=":construction_worker_tone2:"]:before,
-em[data-emoji="construction_worker_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f477-1f3fc.svg");
-}
-
-em[data-emoji=":construction_worker_tone3:"]:before,
-em[data-emoji="construction_worker_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f477-1f3fd.svg");
-}
-
-em[data-emoji=":construction_worker_tone4:"]:before,
-em[data-emoji="construction_worker_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f477-1f3fe.svg");
-}
-
-em[data-emoji=":construction_worker_tone5:"]:before,
-em[data-emoji="construction_worker_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f477-1f3ff.svg");
-}
-
-em[data-emoji=":woman_construction_worker:"]:before,
-em[data-emoji="woman_construction_worker"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f477-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_construction_worker_tone1:"]:before,
-em[data-emoji="woman_construction_worker_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f477-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_construction_worker_tone2:"]:before,
-em[data-emoji="woman_construction_worker_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f477-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_construction_worker_tone3:"]:before,
-em[data-emoji="woman_construction_worker_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f477-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_construction_worker_tone4:"]:before,
-em[data-emoji="woman_construction_worker_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f477-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_construction_worker_tone5:"]:before,
-em[data-emoji="woman_construction_worker_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f477-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_construction_worker:"]:before,
-em[data-emoji="man_construction_worker"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f477-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_construction_worker_tone1:"]:before,
-em[data-emoji="man_construction_worker_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f477-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_construction_worker_tone2:"]:before,
-em[data-emoji="man_construction_worker_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f477-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_construction_worker_tone3:"]:before,
-em[data-emoji="man_construction_worker_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f477-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_construction_worker_tone4:"]:before,
-em[data-emoji="man_construction_worker_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f477-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_construction_worker_tone5:"]:before,
-em[data-emoji="man_construction_worker_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f477-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":guard:"]:before,
-em[data-emoji="guard"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f482.svg");
-}
-
-em[data-emoji=":guard_tone1:"]:before,
-em[data-emoji="guard_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f482-1f3fb.svg");
-}
-
-em[data-emoji=":guard_tone2:"]:before,
-em[data-emoji="guard_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f482-1f3fc.svg");
-}
-
-em[data-emoji=":guard_tone3:"]:before,
-em[data-emoji="guard_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f482-1f3fd.svg");
-}
-
-em[data-emoji=":guard_tone4:"]:before,
-em[data-emoji="guard_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f482-1f3fe.svg");
-}
-
-em[data-emoji=":guard_tone5:"]:before,
-em[data-emoji="guard_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f482-1f3ff.svg");
-}
-
-em[data-emoji=":woman_guard:"]:before,
-em[data-emoji="woman_guard"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f482-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_guard_tone1:"]:before,
-em[data-emoji="woman_guard_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f482-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_guard_tone2:"]:before,
-em[data-emoji="woman_guard_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f482-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_guard_tone3:"]:before,
-em[data-emoji="woman_guard_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f482-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_guard_tone4:"]:before,
-em[data-emoji="woman_guard_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f482-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_guard_tone5:"]:before,
-em[data-emoji="woman_guard_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f482-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_guard:"]:before,
-em[data-emoji="man_guard"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f482-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_guard_tone1:"]:before,
-em[data-emoji="man_guard_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f482-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_guard_tone2:"]:before,
-em[data-emoji="man_guard_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f482-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_guard_tone3:"]:before,
-em[data-emoji="man_guard_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f482-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_guard_tone4:"]:before,
-em[data-emoji="man_guard_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f482-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_guard_tone5:"]:before,
-em[data-emoji="man_guard_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f482-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":detective:"]:before,
-em[data-emoji="detective"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f575.svg");
-}
-
-em[data-emoji=":detective_tone1:"]:before,
-em[data-emoji="detective_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f575-1f3fb.svg");
-}
-
-em[data-emoji=":detective_tone2:"]:before,
-em[data-emoji="detective_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f575-1f3fc.svg");
-}
-
-em[data-emoji=":detective_tone3:"]:before,
-em[data-emoji="detective_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f575-1f3fd.svg");
-}
-
-em[data-emoji=":detective_tone4:"]:before,
-em[data-emoji="detective_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f575-1f3fe.svg");
-}
-
-em[data-emoji=":detective_tone5:"]:before,
-em[data-emoji="detective_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f575-1f3ff.svg");
-}
-
-em[data-emoji=":woman_detective:"]:before,
-em[data-emoji="woman_detective"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f575-fe0f-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_detective_tone1:"]:before,
-em[data-emoji="woman_detective_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f575-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_detective_tone2:"]:before,
-em[data-emoji="woman_detective_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f575-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_detective_tone3:"]:before,
-em[data-emoji="woman_detective_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f575-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_detective_tone4:"]:before,
-em[data-emoji="woman_detective_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f575-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_detective_tone5:"]:before,
-em[data-emoji="woman_detective_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f575-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_detective:"]:before,
-em[data-emoji="man_detective"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f575-fe0f-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_detective_tone1:"]:before,
-em[data-emoji="man_detective_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f575-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_detective_tone2:"]:before,
-em[data-emoji="man_detective_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f575-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_detective_tone3:"]:before,
-em[data-emoji="man_detective_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f575-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_detective_tone4:"]:before,
-em[data-emoji="man_detective_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f575-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_detective_tone5:"]:before,
-em[data-emoji="man_detective_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f575-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":woman_health_worker:"]:before,
-em[data-emoji="woman_health_worker"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-2695-fe0f.svg");
-}
-
-em[data-emoji=":woman_health_worker_tone1:"]:before,
-em[data-emoji="woman_health_worker_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-2695-fe0f.svg");
-}
-
-em[data-emoji=":woman_health_worker_tone2:"]:before,
-em[data-emoji="woman_health_worker_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-2695-fe0f.svg");
-}
-
-em[data-emoji=":woman_health_worker_tone3:"]:before,
-em[data-emoji="woman_health_worker_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-2695-fe0f.svg");
-}
-
-em[data-emoji=":woman_health_worker_tone4:"]:before,
-em[data-emoji="woman_health_worker_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-2695-fe0f.svg");
-}
-
-em[data-emoji=":woman_health_worker_tone5:"]:before,
-em[data-emoji="woman_health_worker_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-2695-fe0f.svg");
-}
-
-em[data-emoji=":man_health_worker:"]:before,
-em[data-emoji="man_health_worker"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-2695-fe0f.svg");
-}
-
-em[data-emoji=":man_health_worker_tone1:"]:before,
-em[data-emoji="man_health_worker_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fb-200d-2695-fe0f.svg");
-}
-
-em[data-emoji=":man_health_worker_tone2:"]:before,
-em[data-emoji="man_health_worker_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc-200d-2695-fe0f.svg");
-}
-
-em[data-emoji=":man_health_worker_tone3:"]:before,
-em[data-emoji="man_health_worker_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-2695-fe0f.svg");
-}
-
-em[data-emoji=":man_health_worker_tone4:"]:before,
-em[data-emoji="man_health_worker_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-2695-fe0f.svg");
-}
-
-em[data-emoji=":man_health_worker_tone5:"]:before,
-em[data-emoji="man_health_worker_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-2695-fe0f.svg");
-}
-
-em[data-emoji=":woman_farmer:"]:before,
-em[data-emoji="woman_farmer"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f33e.svg");
-}
-
-em[data-emoji=":woman_farmer_tone1:"]:before,
-em[data-emoji="woman_farmer_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-1f33e.svg");
-}
-
-em[data-emoji=":woman_farmer_tone2:"]:before,
-em[data-emoji="woman_farmer_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f33e.svg");
-}
-
-em[data-emoji=":woman_farmer_tone3:"]:before,
-em[data-emoji="woman_farmer_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f33e.svg");
-}
-
-em[data-emoji=":woman_farmer_tone4:"]:before,
-em[data-emoji="woman_farmer_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f33e.svg");
-}
-
-em[data-emoji=":woman_farmer_tone5:"]:before,
-em[data-emoji="woman_farmer_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f33e.svg");
-}
-
-em[data-emoji=":man_farmer:"]:before,
-em[data-emoji="man_farmer"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f33e.svg");
-}
-
-em[data-emoji=":man_farmer_tone1:"]:before,
-em[data-emoji="man_farmer_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fb-200d-1f33e.svg");
-}
-
-em[data-emoji=":man_farmer_tone2:"]:before,
-em[data-emoji="man_farmer_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc-200d-1f33e.svg");
-}
-
-em[data-emoji=":man_farmer_tone3:"]:before,
-em[data-emoji="man_farmer_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-1f33e.svg");
-}
-
-em[data-emoji=":man_farmer_tone4:"]:before,
-em[data-emoji="man_farmer_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-1f33e.svg");
-}
-
-em[data-emoji=":man_farmer_tone5:"]:before,
-em[data-emoji="man_farmer_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-1f33e.svg");
-}
-
-em[data-emoji=":woman_cook:"]:before,
-em[data-emoji="woman_cook"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f373.svg");
-}
-
-em[data-emoji=":woman_cook_tone1:"]:before,
-em[data-emoji="woman_cook_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-1f373.svg");
-}
-
-em[data-emoji=":woman_cook_tone2:"]:before,
-em[data-emoji="woman_cook_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f373.svg");
-}
-
-em[data-emoji=":woman_cook_tone3:"]:before,
-em[data-emoji="woman_cook_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f373.svg");
-}
-
-em[data-emoji=":woman_cook_tone4:"]:before,
-em[data-emoji="woman_cook_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f373.svg");
-}
-
-em[data-emoji=":woman_cook_tone5:"]:before,
-em[data-emoji="woman_cook_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f373.svg");
-}
-
-em[data-emoji=":man_cook:"]:before,
-em[data-emoji="man_cook"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f373.svg");
-}
-
-em[data-emoji=":man_cook_tone1:"]:before,
-em[data-emoji="man_cook_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fb-200d-1f373.svg");
-}
-
-em[data-emoji=":man_cook_tone2:"]:before,
-em[data-emoji="man_cook_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc-200d-1f373.svg");
-}
-
-em[data-emoji=":man_cook_tone3:"]:before,
-em[data-emoji="man_cook_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-1f373.svg");
-}
-
-em[data-emoji=":man_cook_tone4:"]:before,
-em[data-emoji="man_cook_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-1f373.svg");
-}
-
-em[data-emoji=":man_cook_tone5:"]:before,
-em[data-emoji="man_cook_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-1f373.svg");
-}
-
-em[data-emoji=":woman_student:"]:before,
-em[data-emoji="woman_student"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f393.svg");
-}
-
-em[data-emoji=":woman_student_tone1:"]:before,
-em[data-emoji="woman_student_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-1f393.svg");
-}
-
-em[data-emoji=":woman_student_tone2:"]:before,
-em[data-emoji="woman_student_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f393.svg");
-}
-
-em[data-emoji=":woman_student_tone3:"]:before,
-em[data-emoji="woman_student_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f393.svg");
-}
-
-em[data-emoji=":woman_student_tone4:"]:before,
-em[data-emoji="woman_student_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f393.svg");
-}
-
-em[data-emoji=":woman_student_tone5:"]:before,
-em[data-emoji="woman_student_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f393.svg");
-}
-
-em[data-emoji=":man_student:"]:before,
-em[data-emoji="man_student"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f393.svg");
-}
-
-em[data-emoji=":man_student_tone1:"]:before,
-em[data-emoji="man_student_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fb-200d-1f393.svg");
-}
-
-em[data-emoji=":man_student_tone2:"]:before,
-em[data-emoji="man_student_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc-200d-1f393.svg");
-}
-
-em[data-emoji=":man_student_tone3:"]:before,
-em[data-emoji="man_student_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-1f393.svg");
-}
-
-em[data-emoji=":man_student_tone4:"]:before,
-em[data-emoji="man_student_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-1f393.svg");
-}
-
-em[data-emoji=":man_student_tone5:"]:before,
-em[data-emoji="man_student_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-1f393.svg");
-}
-
-em[data-emoji=":woman_singer:"]:before,
-em[data-emoji="woman_singer"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f3a4.svg");
-}
-
-em[data-emoji=":woman_singer_tone1:"]:before,
-em[data-emoji="woman_singer_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-1f3a4.svg");
-}
-
-em[data-emoji=":woman_singer_tone2:"]:before,
-em[data-emoji="woman_singer_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f3a4.svg");
-}
-
-em[data-emoji=":woman_singer_tone3:"]:before,
-em[data-emoji="woman_singer_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f3a4.svg");
-}
-
-em[data-emoji=":woman_singer_tone4:"]:before,
-em[data-emoji="woman_singer_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f3a4.svg");
-}
-
-em[data-emoji=":woman_singer_tone5:"]:before,
-em[data-emoji="woman_singer_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f3a4.svg");
-}
-
-em[data-emoji=":man_singer:"]:before,
-em[data-emoji="man_singer"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f3a4.svg");
-}
-
-em[data-emoji=":man_singer_tone1:"]:before,
-em[data-emoji="man_singer_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fb-200d-1f3a4.svg");
-}
-
-em[data-emoji=":man_singer_tone2:"]:before,
-em[data-emoji="man_singer_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc-200d-1f3a4.svg");
-}
-
-em[data-emoji=":man_singer_tone3:"]:before,
-em[data-emoji="man_singer_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-1f3a4.svg");
-}
-
-em[data-emoji=":man_singer_tone4:"]:before,
-em[data-emoji="man_singer_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-1f3a4.svg");
-}
-
-em[data-emoji=":man_singer_tone5:"]:before,
-em[data-emoji="man_singer_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-1f3a4.svg");
-}
-
-em[data-emoji=":woman_teacher:"]:before,
-em[data-emoji="woman_teacher"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f3eb.svg");
-}
-
-em[data-emoji=":woman_teacher_tone1:"]:before,
-em[data-emoji="woman_teacher_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-1f3eb.svg");
-}
-
-em[data-emoji=":woman_teacher_tone2:"]:before,
-em[data-emoji="woman_teacher_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f3eb.svg");
-}
-
-em[data-emoji=":woman_teacher_tone3:"]:before,
-em[data-emoji="woman_teacher_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f3eb.svg");
-}
-
-em[data-emoji=":woman_teacher_tone4:"]:before,
-em[data-emoji="woman_teacher_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f3eb.svg");
-}
-
-em[data-emoji=":woman_teacher_tone5:"]:before,
-em[data-emoji="woman_teacher_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f3eb.svg");
-}
-
-em[data-emoji=":man_teacher:"]:before,
-em[data-emoji="man_teacher"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f3eb.svg");
-}
-
-em[data-emoji=":man_teacher_tone1:"]:before,
-em[data-emoji="man_teacher_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fb-200d-1f3eb.svg");
-}
-
-em[data-emoji=":man_teacher_tone2:"]:before,
-em[data-emoji="man_teacher_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc-200d-1f3eb.svg");
-}
-
-em[data-emoji=":man_teacher_tone3:"]:before,
-em[data-emoji="man_teacher_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-1f3eb.svg");
-}
-
-em[data-emoji=":man_teacher_tone4:"]:before,
-em[data-emoji="man_teacher_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-1f3eb.svg");
-}
-
-em[data-emoji=":man_teacher_tone5:"]:before,
-em[data-emoji="man_teacher_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-1f3eb.svg");
-}
-
-em[data-emoji=":woman_factory_worker:"]:before,
-em[data-emoji="woman_factory_worker"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f3ed.svg");
-}
-
-em[data-emoji=":woman_factory_worker_tone1:"]:before,
-em[data-emoji="woman_factory_worker_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-1f3ed.svg");
-}
-
-em[data-emoji=":woman_factory_worker_tone2:"]:before,
-em[data-emoji="woman_factory_worker_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f3ed.svg");
-}
-
-em[data-emoji=":woman_factory_worker_tone3:"]:before,
-em[data-emoji="woman_factory_worker_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f3ed.svg");
-}
-
-em[data-emoji=":woman_factory_worker_tone4:"]:before,
-em[data-emoji="woman_factory_worker_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f3ed.svg");
-}
-
-em[data-emoji=":woman_factory_worker_tone5:"]:before,
-em[data-emoji="woman_factory_worker_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f3ed.svg");
-}
-
-em[data-emoji=":man_factory_worker:"]:before,
-em[data-emoji="man_factory_worker"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f3ed.svg");
-}
-
-em[data-emoji=":man_factory_worker_tone1:"]:before,
-em[data-emoji="man_factory_worker_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fb-200d-1f3ed.svg");
-}
-
-em[data-emoji=":man_factory_worker_tone2:"]:before,
-em[data-emoji="man_factory_worker_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc-200d-1f3ed.svg");
-}
-
-em[data-emoji=":man_factory_worker_tone3:"]:before,
-em[data-emoji="man_factory_worker_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-1f3ed.svg");
-}
-
-em[data-emoji=":man_factory_worker_tone4:"]:before,
-em[data-emoji="man_factory_worker_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-1f3ed.svg");
-}
-
-em[data-emoji=":man_factory_worker_tone5:"]:before,
-em[data-emoji="man_factory_worker_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-1f3ed.svg");
-}
-
-em[data-emoji=":woman_technologist:"]:before,
-em[data-emoji="woman_technologist"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f4bb.svg");
-}
-
-em[data-emoji=":woman_technologist_tone1:"]:before,
-em[data-emoji="woman_technologist_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-1f4bb.svg");
-}
-
-em[data-emoji=":woman_technologist_tone2:"]:before,
-em[data-emoji="woman_technologist_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f4bb.svg");
-}
-
-em[data-emoji=":woman_technologist_tone3:"]:before,
-em[data-emoji="woman_technologist_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f4bb.svg");
-}
-
-em[data-emoji=":woman_technologist_tone4:"]:before,
-em[data-emoji="woman_technologist_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f4bb.svg");
-}
-
-em[data-emoji=":woman_technologist_tone5:"]:before,
-em[data-emoji="woman_technologist_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f4bb.svg");
-}
-
-em[data-emoji=":man_technologist:"]:before,
-em[data-emoji="man_technologist"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f4bb.svg");
-}
-
-em[data-emoji=":man_technologist_tone1:"]:before,
-em[data-emoji="man_technologist_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fb-200d-1f4bb.svg");
-}
-
-em[data-emoji=":man_technologist_tone2:"]:before,
-em[data-emoji="man_technologist_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc-200d-1f4bb.svg");
-}
-
-em[data-emoji=":man_technologist_tone3:"]:before,
-em[data-emoji="man_technologist_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-1f4bb.svg");
-}
-
-em[data-emoji=":man_technologist_tone4:"]:before,
-em[data-emoji="man_technologist_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-1f4bb.svg");
-}
-
-em[data-emoji=":man_technologist_tone5:"]:before,
-em[data-emoji="man_technologist_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-1f4bb.svg");
-}
-
-em[data-emoji=":woman_office_worker:"]:before,
-em[data-emoji="woman_office_worker"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f4bc.svg");
-}
-
-em[data-emoji=":woman_office_worker_tone1:"]:before,
-em[data-emoji="woman_office_worker_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-1f4bc.svg");
-}
-
-em[data-emoji=":woman_office_worker_tone2:"]:before,
-em[data-emoji="woman_office_worker_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f4bc.svg");
-}
-
-em[data-emoji=":woman_office_worker_tone3:"]:before,
-em[data-emoji="woman_office_worker_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f4bc.svg");
-}
-
-em[data-emoji=":woman_office_worker_tone4:"]:before,
-em[data-emoji="woman_office_worker_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f4bc.svg");
-}
-
-em[data-emoji=":woman_office_worker_tone5:"]:before,
-em[data-emoji="woman_office_worker_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f4bc.svg");
-}
-
-em[data-emoji=":man_office_worker:"]:before,
-em[data-emoji="man_office_worker"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f4bc.svg");
-}
-
-em[data-emoji=":man_office_worker_tone1:"]:before,
-em[data-emoji="man_office_worker_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fb-200d-1f4bc.svg");
-}
-
-em[data-emoji=":man_office_worker_tone2:"]:before,
-em[data-emoji="man_office_worker_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc-200d-1f4bc.svg");
-}
-
-em[data-emoji=":man_office_worker_tone3:"]:before,
-em[data-emoji="man_office_worker_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-1f4bc.svg");
-}
-
-em[data-emoji=":man_office_worker_tone4:"]:before,
-em[data-emoji="man_office_worker_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-1f4bc.svg");
-}
-
-em[data-emoji=":man_office_worker_tone5:"]:before,
-em[data-emoji="man_office_worker_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-1f4bc.svg");
-}
-
-em[data-emoji=":woman_mechanic:"]:before,
-em[data-emoji="woman_mechanic"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f527.svg");
-}
-
-em[data-emoji=":woman_mechanic_tone1:"]:before,
-em[data-emoji="woman_mechanic_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-1f527.svg");
-}
-
-em[data-emoji=":woman_mechanic_tone2:"]:before,
-em[data-emoji="woman_mechanic_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f527.svg");
-}
-
-em[data-emoji=":woman_mechanic_tone3:"]:before,
-em[data-emoji="woman_mechanic_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f527.svg");
-}
-
-em[data-emoji=":woman_mechanic_tone4:"]:before,
-em[data-emoji="woman_mechanic_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f527.svg");
-}
-
-em[data-emoji=":woman_mechanic_tone5:"]:before,
-em[data-emoji="woman_mechanic_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f527.svg");
-}
-
-em[data-emoji=":man_mechanic:"]:before,
-em[data-emoji="man_mechanic"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f527.svg");
-}
-
-em[data-emoji=":man_mechanic_tone1:"]:before,
-em[data-emoji="man_mechanic_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fb-200d-1f527.svg");
-}
-
-em[data-emoji=":man_mechanic_tone2:"]:before,
-em[data-emoji="man_mechanic_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc-200d-1f527.svg");
-}
-
-em[data-emoji=":man_mechanic_tone3:"]:before,
-em[data-emoji="man_mechanic_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-1f527.svg");
-}
-
-em[data-emoji=":man_mechanic_tone4:"]:before,
-em[data-emoji="man_mechanic_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-1f527.svg");
-}
-
-em[data-emoji=":man_mechanic_tone5:"]:before,
-em[data-emoji="man_mechanic_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-1f527.svg");
-}
-
-em[data-emoji=":woman_scientist:"]:before,
-em[data-emoji="woman_scientist"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f52c.svg");
-}
-
-em[data-emoji=":woman_scientist_tone1:"]:before,
-em[data-emoji="woman_scientist_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-1f52c.svg");
-}
-
-em[data-emoji=":woman_scientist_tone2:"]:before,
-em[data-emoji="woman_scientist_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f52c.svg");
-}
-
-em[data-emoji=":woman_scientist_tone3:"]:before,
-em[data-emoji="woman_scientist_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f52c.svg");
-}
-
-em[data-emoji=":woman_scientist_tone4:"]:before,
-em[data-emoji="woman_scientist_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f52c.svg");
-}
-
-em[data-emoji=":woman_scientist_tone5:"]:before,
-em[data-emoji="woman_scientist_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f52c.svg");
-}
-
-em[data-emoji=":man_scientist:"]:before,
-em[data-emoji="man_scientist"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f52c.svg");
-}
-
-em[data-emoji=":man_scientist_tone1:"]:before,
-em[data-emoji="man_scientist_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fb-200d-1f52c.svg");
-}
-
-em[data-emoji=":man_scientist_tone2:"]:before,
-em[data-emoji="man_scientist_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc-200d-1f52c.svg");
-}
-
-em[data-emoji=":man_scientist_tone3:"]:before,
-em[data-emoji="man_scientist_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-1f52c.svg");
-}
-
-em[data-emoji=":man_scientist_tone4:"]:before,
-em[data-emoji="man_scientist_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-1f52c.svg");
-}
-
-em[data-emoji=":man_scientist_tone5:"]:before,
-em[data-emoji="man_scientist_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-1f52c.svg");
-}
-
-em[data-emoji=":woman_artist:"]:before,
-em[data-emoji="woman_artist"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f3a8.svg");
-}
-
-em[data-emoji=":woman_artist_tone1:"]:before,
-em[data-emoji="woman_artist_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-1f3a8.svg");
-}
-
-em[data-emoji=":woman_artist_tone2:"]:before,
-em[data-emoji="woman_artist_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f3a8.svg");
-}
-
-em[data-emoji=":woman_artist_tone3:"]:before,
-em[data-emoji="woman_artist_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f3a8.svg");
-}
-
-em[data-emoji=":woman_artist_tone4:"]:before,
-em[data-emoji="woman_artist_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f3a8.svg");
-}
-
-em[data-emoji=":woman_artist_tone5:"]:before,
-em[data-emoji="woman_artist_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f3a8.svg");
-}
-
-em[data-emoji=":man_artist:"]:before,
-em[data-emoji="man_artist"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f3a8.svg");
-}
-
-em[data-emoji=":man_artist_tone1:"]:before,
-em[data-emoji="man_artist_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fb-200d-1f3a8.svg");
-}
-
-em[data-emoji=":man_artist_tone2:"]:before,
-em[data-emoji="man_artist_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc-200d-1f3a8.svg");
-}
-
-em[data-emoji=":man_artist_tone3:"]:before,
-em[data-emoji="man_artist_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-1f3a8.svg");
-}
-
-em[data-emoji=":man_artist_tone4:"]:before,
-em[data-emoji="man_artist_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-1f3a8.svg");
-}
-
-em[data-emoji=":man_artist_tone5:"]:before,
-em[data-emoji="man_artist_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-1f3a8.svg");
-}
-
-em[data-emoji=":woman_firefighter:"]:before,
-em[data-emoji="woman_firefighter"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f692.svg");
-}
-
-em[data-emoji=":woman_firefighter_tone1:"]:before,
-em[data-emoji="woman_firefighter_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-1f692.svg");
-}
-
-em[data-emoji=":woman_firefighter_tone2:"]:before,
-em[data-emoji="woman_firefighter_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f692.svg");
-}
-
-em[data-emoji=":woman_firefighter_tone3:"]:before,
-em[data-emoji="woman_firefighter_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f692.svg");
-}
-
-em[data-emoji=":woman_firefighter_tone4:"]:before,
-em[data-emoji="woman_firefighter_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f692.svg");
-}
-
-em[data-emoji=":woman_firefighter_tone5:"]:before,
-em[data-emoji="woman_firefighter_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f692.svg");
-}
-
-em[data-emoji=":man_firefighter:"]:before,
-em[data-emoji="man_firefighter"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f692.svg");
-}
-
-em[data-emoji=":man_firefighter_tone1:"]:before,
-em[data-emoji="man_firefighter_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fb-200d-1f692.svg");
-}
-
-em[data-emoji=":man_firefighter_tone2:"]:before,
-em[data-emoji="man_firefighter_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc-200d-1f692.svg");
-}
-
-em[data-emoji=":man_firefighter_tone3:"]:before,
-em[data-emoji="man_firefighter_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-1f692.svg");
-}
-
-em[data-emoji=":man_firefighter_tone4:"]:before,
-em[data-emoji="man_firefighter_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-1f692.svg");
-}
-
-em[data-emoji=":man_firefighter_tone5:"]:before,
-em[data-emoji="man_firefighter_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-1f692.svg");
-}
-
-em[data-emoji=":woman_pilot:"]:before,
-em[data-emoji="woman_pilot"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-2708-fe0f.svg");
-}
-
-em[data-emoji=":woman_pilot_tone1:"]:before,
-em[data-emoji="woman_pilot_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-2708-fe0f.svg");
-}
-
-em[data-emoji=":woman_pilot_tone2:"]:before,
-em[data-emoji="woman_pilot_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-2708-fe0f.svg");
-}
-
-em[data-emoji=":woman_pilot_tone3:"]:before,
-em[data-emoji="woman_pilot_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-2708-fe0f.svg");
-}
-
-em[data-emoji=":woman_pilot_tone4:"]:before,
-em[data-emoji="woman_pilot_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-2708-fe0f.svg");
-}
-
-em[data-emoji=":woman_pilot_tone5:"]:before,
-em[data-emoji="woman_pilot_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-2708-fe0f.svg");
-}
-
-em[data-emoji=":man_pilot:"]:before,
-em[data-emoji="man_pilot"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-2708-fe0f.svg");
-}
-
-em[data-emoji=":man_pilot_tone1:"]:before,
-em[data-emoji="man_pilot_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fb-200d-2708-fe0f.svg");
-}
-
-em[data-emoji=":man_pilot_tone2:"]:before,
-em[data-emoji="man_pilot_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc-200d-2708-fe0f.svg");
-}
-
-em[data-emoji=":man_pilot_tone3:"]:before,
-em[data-emoji="man_pilot_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-2708-fe0f.svg");
-}
-
-em[data-emoji=":man_pilot_tone4:"]:before,
-em[data-emoji="man_pilot_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-2708-fe0f.svg");
-}
-
-em[data-emoji=":man_pilot_tone5:"]:before,
-em[data-emoji="man_pilot_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-2708-fe0f.svg");
-}
-
-em[data-emoji=":woman_astronaut:"]:before,
-em[data-emoji="woman_astronaut"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f680.svg");
-}
-
-em[data-emoji=":woman_astronaut_tone1:"]:before,
-em[data-emoji="woman_astronaut_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-1f680.svg");
-}
-
-em[data-emoji=":woman_astronaut_tone2:"]:before,
-em[data-emoji="woman_astronaut_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f680.svg");
-}
-
-em[data-emoji=":woman_astronaut_tone3:"]:before,
-em[data-emoji="woman_astronaut_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f680.svg");
-}
-
-em[data-emoji=":woman_astronaut_tone4:"]:before,
-em[data-emoji="woman_astronaut_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f680.svg");
-}
-
-em[data-emoji=":woman_astronaut_tone5:"]:before,
-em[data-emoji="woman_astronaut_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f680.svg");
-}
-
-em[data-emoji=":man_astronaut:"]:before,
-em[data-emoji="man_astronaut"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f680.svg");
-}
-
-em[data-emoji=":man_astronaut_tone1:"]:before,
-em[data-emoji="man_astronaut_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fb-200d-1f680.svg");
-}
-
-em[data-emoji=":man_astronaut_tone2:"]:before,
-em[data-emoji="man_astronaut_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc-200d-1f680.svg");
-}
-
-em[data-emoji=":man_astronaut_tone3:"]:before,
-em[data-emoji="man_astronaut_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-1f680.svg");
-}
-
-em[data-emoji=":man_astronaut_tone4:"]:before,
-em[data-emoji="man_astronaut_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-1f680.svg");
-}
-
-em[data-emoji=":man_astronaut_tone5:"]:before,
-em[data-emoji="man_astronaut_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-1f680.svg");
-}
-
-em[data-emoji=":woman_judge:"]:before,
-em[data-emoji="woman_judge"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-2696-fe0f.svg");
-}
-
-em[data-emoji=":woman_judge_tone1:"]:before,
-em[data-emoji="woman_judge_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-2696-fe0f.svg");
-}
-
-em[data-emoji=":woman_judge_tone2:"]:before,
-em[data-emoji="woman_judge_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-2696-fe0f.svg");
-}
-
-em[data-emoji=":woman_judge_tone3:"]:before,
-em[data-emoji="woman_judge_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-2696-fe0f.svg");
-}
-
-em[data-emoji=":woman_judge_tone4:"]:before,
-em[data-emoji="woman_judge_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-2696-fe0f.svg");
-}
-
-em[data-emoji=":woman_judge_tone5:"]:before,
-em[data-emoji="woman_judge_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-2696-fe0f.svg");
-}
-
-em[data-emoji=":man_judge:"]:before,
-em[data-emoji="man_judge"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-2696-fe0f.svg");
-}
-
-em[data-emoji=":man_judge_tone1:"]:before,
-em[data-emoji="man_judge_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fb-200d-2696-fe0f.svg");
-}
-
-em[data-emoji=":man_judge_tone2:"]:before,
-em[data-emoji="man_judge_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc-200d-2696-fe0f.svg");
-}
-
-em[data-emoji=":man_judge_tone3:"]:before,
-em[data-emoji="man_judge_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-2696-fe0f.svg");
-}
-
-em[data-emoji=":man_judge_tone4:"]:before,
-em[data-emoji="man_judge_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-2696-fe0f.svg");
-}
-
-em[data-emoji=":man_judge_tone5:"]:before,
-em[data-emoji="man_judge_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-2696-fe0f.svg");
-}
-
-em[data-emoji=":bride_with_veil:"]:before,
-em[data-emoji="bride_with_veil"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f470.svg");
-}
-
-em[data-emoji=":bride_with_veil_tone1:"]:before,
-em[data-emoji="bride_with_veil_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f470-1f3fb.svg");
-}
-
-em[data-emoji=":bride_with_veil_tone2:"]:before,
-em[data-emoji="bride_with_veil_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f470-1f3fc.svg");
-}
-
-em[data-emoji=":bride_with_veil_tone3:"]:before,
-em[data-emoji="bride_with_veil_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f470-1f3fd.svg");
-}
-
-em[data-emoji=":bride_with_veil_tone4:"]:before,
-em[data-emoji="bride_with_veil_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f470-1f3fe.svg");
-}
-
-em[data-emoji=":bride_with_veil_tone5:"]:before,
-em[data-emoji="bride_with_veil_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f470-1f3ff.svg");
-}
-
-em[data-emoji=":man_in_tuxedo:"]:before,
-em[data-emoji="man_in_tuxedo"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f935.svg");
-}
-
-em[data-emoji=":man_in_tuxedo_tone1:"]:before,
-em[data-emoji="man_in_tuxedo_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f935-1f3fb.svg");
-}
-
-em[data-emoji=":man_in_tuxedo_tone2:"]:before,
-em[data-emoji="man_in_tuxedo_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f935-1f3fc.svg");
-}
-
-em[data-emoji=":man_in_tuxedo_tone3:"]:before,
-em[data-emoji="man_in_tuxedo_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f935-1f3fd.svg");
-}
-
-em[data-emoji=":man_in_tuxedo_tone4:"]:before,
-em[data-emoji="man_in_tuxedo_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f935-1f3fe.svg");
-}
-
-em[data-emoji=":man_in_tuxedo_tone5:"]:before,
-em[data-emoji="man_in_tuxedo_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f935-1f3ff.svg");
-}
-
-em[data-emoji=":princess:"]:before,
-em[data-emoji="princess"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f478.svg");
-}
-
-em[data-emoji=":princess_tone1:"]:before,
-em[data-emoji="princess_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f478-1f3fb.svg");
-}
-
-em[data-emoji=":princess_tone2:"]:before,
-em[data-emoji="princess_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f478-1f3fc.svg");
-}
-
-em[data-emoji=":princess_tone3:"]:before,
-em[data-emoji="princess_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f478-1f3fd.svg");
-}
-
-em[data-emoji=":princess_tone4:"]:before,
-em[data-emoji="princess_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f478-1f3fe.svg");
-}
-
-em[data-emoji=":princess_tone5:"]:before,
-em[data-emoji="princess_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f478-1f3ff.svg");
-}
-
-em[data-emoji=":prince:"]:before,
-em[data-emoji="prince"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f934.svg");
-}
-
-em[data-emoji=":prince_tone1:"]:before,
-em[data-emoji="prince_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f934-1f3fb.svg");
-}
-
-em[data-emoji=":prince_tone2:"]:before,
-em[data-emoji="prince_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f934-1f3fc.svg");
-}
-
-em[data-emoji=":prince_tone3:"]:before,
-em[data-emoji="prince_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f934-1f3fd.svg");
-}
-
-em[data-emoji=":prince_tone4:"]:before,
-em[data-emoji="prince_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f934-1f3fe.svg");
-}
-
-em[data-emoji=":prince_tone5:"]:before,
-em[data-emoji="prince_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f934-1f3ff.svg");
-}
-
-em[data-emoji=":superhero:"]:before,
-em[data-emoji="superhero"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b8.svg");
-}
-
-em[data-emoji=":superhero_tone1:"]:before,
-em[data-emoji="superhero_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b8-1f3fb.svg");
-}
-
-em[data-emoji=":superhero_tone2:"]:before,
-em[data-emoji="superhero_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b8-1f3fc.svg");
-}
-
-em[data-emoji=":superhero_tone3:"]:before,
-em[data-emoji="superhero_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b8-1f3fd.svg");
-}
-
-em[data-emoji=":superhero_tone4:"]:before,
-em[data-emoji="superhero_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b8-1f3fe.svg");
-}
-
-em[data-emoji=":superhero_tone5:"]:before,
-em[data-emoji="superhero_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b8-1f3ff.svg");
-}
-
-em[data-emoji=":woman_superhero:"]:before,
-em[data-emoji="woman_superhero"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b8-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_superhero_tone1:"]:before,
-em[data-emoji="woman_superhero_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b8-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_superhero_tone2:"]:before,
-em[data-emoji="woman_superhero_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b8-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_superhero_tone3:"]:before,
-em[data-emoji="woman_superhero_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b8-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_superhero_tone4:"]:before,
-em[data-emoji="woman_superhero_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b8-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_superhero_tone5:"]:before,
-em[data-emoji="woman_superhero_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b8-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_superhero:"]:before,
-em[data-emoji="man_superhero"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b8-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_superhero_tone1:"]:before,
-em[data-emoji="man_superhero_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b8-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_superhero_tone2:"]:before,
-em[data-emoji="man_superhero_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b8-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_superhero_tone3:"]:before,
-em[data-emoji="man_superhero_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b8-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_superhero_tone4:"]:before,
-em[data-emoji="man_superhero_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b8-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_superhero_tone5:"]:before,
-em[data-emoji="man_superhero_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b8-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":supervillain:"]:before,
-em[data-emoji="supervillain"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b9.svg");
-}
-
-em[data-emoji=":supervillain_tone1:"]:before,
-em[data-emoji="supervillain_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b9-1f3fb.svg");
-}
-
-em[data-emoji=":supervillain_tone2:"]:before,
-em[data-emoji="supervillain_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b9-1f3fc.svg");
-}
-
-em[data-emoji=":supervillain_tone3:"]:before,
-em[data-emoji="supervillain_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b9-1f3fd.svg");
-}
-
-em[data-emoji=":supervillain_tone4:"]:before,
-em[data-emoji="supervillain_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b9-1f3fe.svg");
-}
-
-em[data-emoji=":supervillain_tone5:"]:before,
-em[data-emoji="supervillain_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b9-1f3ff.svg");
-}
-
-em[data-emoji=":woman_supervillain:"]:before,
-em[data-emoji="woman_supervillain"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b9-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_supervillain_tone1:"]:before,
-em[data-emoji="woman_supervillain_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b9-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_supervillain_tone2:"]:before,
-em[data-emoji="woman_supervillain_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b9-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_supervillain_tone3:"]:before,
-em[data-emoji="woman_supervillain_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b9-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_supervillain_tone4:"]:before,
-em[data-emoji="woman_supervillain_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b9-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_supervillain_tone5:"]:before,
-em[data-emoji="woman_supervillain_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b9-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_supervillain:"]:before,
-em[data-emoji="man_supervillain"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b9-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_supervillain_tone1:"]:before,
-em[data-emoji="man_supervillain_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b9-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_supervillain_tone2:"]:before,
-em[data-emoji="man_supervillain_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b9-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_supervillain_tone3:"]:before,
-em[data-emoji="man_supervillain_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b9-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_supervillain_tone4:"]:before,
-em[data-emoji="man_supervillain_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b9-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_supervillain_tone5:"]:before,
-em[data-emoji="man_supervillain_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b9-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":mrs_claus:"]:before,
-em[data-emoji="mrs_claus"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f936.svg");
-}
-
-em[data-emoji=":mrs_claus_tone1:"]:before,
-em[data-emoji="mrs_claus_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f936-1f3fb.svg");
-}
-
-em[data-emoji=":mrs_claus_tone2:"]:before,
-em[data-emoji="mrs_claus_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f936-1f3fc.svg");
-}
-
-em[data-emoji=":mrs_claus_tone3:"]:before,
-em[data-emoji="mrs_claus_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f936-1f3fd.svg");
-}
-
-em[data-emoji=":mrs_claus_tone4:"]:before,
-em[data-emoji="mrs_claus_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f936-1f3fe.svg");
-}
-
-em[data-emoji=":mrs_claus_tone5:"]:before,
-em[data-emoji="mrs_claus_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f936-1f3ff.svg");
-}
-
-em[data-emoji=":santa:"]:before,
-em[data-emoji="santa"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f385.svg");
-}
-
-em[data-emoji=":santa_tone1:"]:before,
-em[data-emoji="santa_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f385-1f3fb.svg");
-}
-
-em[data-emoji=":santa_tone2:"]:before,
-em[data-emoji="santa_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f385-1f3fc.svg");
-}
-
-em[data-emoji=":santa_tone3:"]:before,
-em[data-emoji="santa_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f385-1f3fd.svg");
-}
-
-em[data-emoji=":santa_tone4:"]:before,
-em[data-emoji="santa_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f385-1f3fe.svg");
-}
-
-em[data-emoji=":santa_tone5:"]:before,
-em[data-emoji="santa_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f385-1f3ff.svg");
-}
-
-em[data-emoji=":mage:"]:before,
-em[data-emoji="mage"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d9.svg");
-}
-
-em[data-emoji=":mage_tone1:"]:before,
-em[data-emoji="mage_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d9-1f3fb.svg");
-}
-
-em[data-emoji=":mage_tone2:"]:before,
-em[data-emoji="mage_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d9-1f3fc.svg");
-}
-
-em[data-emoji=":mage_tone3:"]:before,
-em[data-emoji="mage_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d9-1f3fd.svg");
-}
-
-em[data-emoji=":mage_tone4:"]:before,
-em[data-emoji="mage_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d9-1f3fe.svg");
-}
-
-em[data-emoji=":mage_tone5:"]:before,
-em[data-emoji="mage_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d9-1f3ff.svg");
-}
-
-em[data-emoji=":woman_mage:"]:before,
-em[data-emoji="woman_mage"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d9-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_mage_tone1:"]:before,
-em[data-emoji="woman_mage_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d9-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_mage_tone2:"]:before,
-em[data-emoji="woman_mage_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d9-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_mage_tone3:"]:before,
-em[data-emoji="woman_mage_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d9-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_mage_tone4:"]:before,
-em[data-emoji="woman_mage_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d9-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_mage_tone5:"]:before,
-em[data-emoji="woman_mage_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d9-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_mage:"]:before,
-em[data-emoji="man_mage"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d9-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_mage_tone1:"]:before,
-em[data-emoji="man_mage_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d9-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_mage_tone2:"]:before,
-em[data-emoji="man_mage_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d9-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_mage_tone3:"]:before,
-em[data-emoji="man_mage_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d9-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_mage_tone4:"]:before,
-em[data-emoji="man_mage_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d9-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_mage_tone5:"]:before,
-em[data-emoji="man_mage_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d9-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":elf:"]:before,
-em[data-emoji="elf"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dd.svg");
-}
-
-em[data-emoji=":elf_tone1:"]:before,
-em[data-emoji="elf_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dd-1f3fb.svg");
-}
-
-em[data-emoji=":elf_tone2:"]:before,
-em[data-emoji="elf_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dd-1f3fc.svg");
-}
-
-em[data-emoji=":elf_tone3:"]:before,
-em[data-emoji="elf_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dd-1f3fd.svg");
-}
-
-em[data-emoji=":elf_tone4:"]:before,
-em[data-emoji="elf_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dd-1f3fe.svg");
-}
-
-em[data-emoji=":elf_tone5:"]:before,
-em[data-emoji="elf_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dd-1f3ff.svg");
-}
-
-em[data-emoji=":woman_elf:"]:before,
-em[data-emoji="woman_elf"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_elf_tone1:"]:before,
-em[data-emoji="woman_elf_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dd-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_elf_tone2:"]:before,
-em[data-emoji="woman_elf_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dd-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_elf_tone3:"]:before,
-em[data-emoji="woman_elf_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dd-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_elf_tone4:"]:before,
-em[data-emoji="woman_elf_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dd-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_elf_tone5:"]:before,
-em[data-emoji="woman_elf_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dd-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_elf:"]:before,
-em[data-emoji="man_elf"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_elf_tone1:"]:before,
-em[data-emoji="man_elf_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dd-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_elf_tone2:"]:before,
-em[data-emoji="man_elf_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dd-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_elf_tone3:"]:before,
-em[data-emoji="man_elf_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dd-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_elf_tone4:"]:before,
-em[data-emoji="man_elf_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dd-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_elf_tone5:"]:before,
-em[data-emoji="man_elf_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dd-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":vampire:"]:before,
-em[data-emoji="vampire"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9db.svg");
-}
-
-em[data-emoji=":vampire_tone1:"]:before,
-em[data-emoji="vampire_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9db-1f3fb.svg");
-}
-
-em[data-emoji=":vampire_tone2:"]:before,
-em[data-emoji="vampire_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9db-1f3fc.svg");
-}
-
-em[data-emoji=":vampire_tone3:"]:before,
-em[data-emoji="vampire_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9db-1f3fd.svg");
-}
-
-em[data-emoji=":vampire_tone4:"]:before,
-em[data-emoji="vampire_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9db-1f3fe.svg");
-}
-
-em[data-emoji=":vampire_tone5:"]:before,
-em[data-emoji="vampire_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9db-1f3ff.svg");
-}
-
-em[data-emoji=":woman_vampire:"]:before,
-em[data-emoji="woman_vampire"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9db-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_vampire_tone1:"]:before,
-em[data-emoji="woman_vampire_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9db-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_vampire_tone2:"]:before,
-em[data-emoji="woman_vampire_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9db-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_vampire_tone3:"]:before,
-em[data-emoji="woman_vampire_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9db-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_vampire_tone4:"]:before,
-em[data-emoji="woman_vampire_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9db-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_vampire_tone5:"]:before,
-em[data-emoji="woman_vampire_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9db-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_vampire:"]:before,
-em[data-emoji="man_vampire"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9db-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_vampire_tone1:"]:before,
-em[data-emoji="man_vampire_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9db-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_vampire_tone2:"]:before,
-em[data-emoji="man_vampire_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9db-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_vampire_tone3:"]:before,
-em[data-emoji="man_vampire_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9db-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_vampire_tone4:"]:before,
-em[data-emoji="man_vampire_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9db-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_vampire_tone5:"]:before,
-em[data-emoji="man_vampire_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9db-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":zombie:"]:before,
-em[data-emoji="zombie"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9df.svg");
-}
-
-em[data-emoji=":woman_zombie:"]:before,
-em[data-emoji="woman_zombie"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9df-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_zombie:"]:before,
-em[data-emoji="man_zombie"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9df-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":genie:"]:before,
-em[data-emoji="genie"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9de.svg");
-}
-
-em[data-emoji=":woman_genie:"]:before,
-em[data-emoji="woman_genie"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9de-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_genie:"]:before,
-em[data-emoji="man_genie"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9de-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":merperson:"]:before,
-em[data-emoji="merperson"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dc.svg");
-}
-
-em[data-emoji=":merperson_tone1:"]:before,
-em[data-emoji="merperson_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dc-1f3fb.svg");
-}
-
-em[data-emoji=":merperson_tone2:"]:before,
-em[data-emoji="merperson_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dc-1f3fc.svg");
-}
-
-em[data-emoji=":merperson_tone3:"]:before,
-em[data-emoji="merperson_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dc-1f3fd.svg");
-}
-
-em[data-emoji=":merperson_tone4:"]:before,
-em[data-emoji="merperson_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dc-1f3fe.svg");
-}
-
-em[data-emoji=":merperson_tone5:"]:before,
-em[data-emoji="merperson_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dc-1f3ff.svg");
-}
-
-em[data-emoji=":mermaid:"]:before,
-em[data-emoji="mermaid"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":mermaid_tone1:"]:before,
-em[data-emoji="mermaid_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dc-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":mermaid_tone2:"]:before,
-em[data-emoji="mermaid_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dc-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":mermaid_tone3:"]:before,
-em[data-emoji="mermaid_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dc-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":mermaid_tone4:"]:before,
-em[data-emoji="mermaid_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dc-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":mermaid_tone5:"]:before,
-em[data-emoji="mermaid_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dc-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":merman:"]:before,
-em[data-emoji="merman"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":merman_tone1:"]:before,
-em[data-emoji="merman_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dc-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":merman_tone2:"]:before,
-em[data-emoji="merman_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dc-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":merman_tone3:"]:before,
-em[data-emoji="merman_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dc-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":merman_tone4:"]:before,
-em[data-emoji="merman_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dc-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":merman_tone5:"]:before,
-em[data-emoji="merman_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9dc-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":fairy:"]:before,
-em[data-emoji="fairy"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9da.svg");
-}
-
-em[data-emoji=":fairy_tone1:"]:before,
-em[data-emoji="fairy_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9da-1f3fb.svg");
-}
-
-em[data-emoji=":fairy_tone2:"]:before,
-em[data-emoji="fairy_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9da-1f3fc.svg");
-}
-
-em[data-emoji=":fairy_tone3:"]:before,
-em[data-emoji="fairy_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9da-1f3fd.svg");
-}
-
-em[data-emoji=":fairy_tone4:"]:before,
-em[data-emoji="fairy_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9da-1f3fe.svg");
-}
-
-em[data-emoji=":fairy_tone5:"]:before,
-em[data-emoji="fairy_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9da-1f3ff.svg");
-}
-
-em[data-emoji=":woman_fairy:"]:before,
-em[data-emoji="woman_fairy"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9da-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_fairy_tone1:"]:before,
-em[data-emoji="woman_fairy_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9da-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_fairy_tone2:"]:before,
-em[data-emoji="woman_fairy_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9da-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_fairy_tone3:"]:before,
-em[data-emoji="woman_fairy_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9da-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_fairy_tone4:"]:before,
-em[data-emoji="woman_fairy_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9da-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_fairy_tone5:"]:before,
-em[data-emoji="woman_fairy_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9da-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_fairy:"]:before,
-em[data-emoji="man_fairy"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9da-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_fairy_tone1:"]:before,
-em[data-emoji="man_fairy_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9da-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_fairy_tone2:"]:before,
-em[data-emoji="man_fairy_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9da-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_fairy_tone3:"]:before,
-em[data-emoji="man_fairy_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9da-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_fairy_tone4:"]:before,
-em[data-emoji="man_fairy_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9da-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_fairy_tone5:"]:before,
-em[data-emoji="man_fairy_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9da-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":angel:"]:before,
-em[data-emoji="angel"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f47c.svg");
-}
-
-em[data-emoji=":angel_tone1:"]:before,
-em[data-emoji="angel_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f47c-1f3fb.svg");
-}
-
-em[data-emoji=":angel_tone2:"]:before,
-em[data-emoji="angel_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f47c-1f3fc.svg");
-}
-
-em[data-emoji=":angel_tone3:"]:before,
-em[data-emoji="angel_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f47c-1f3fd.svg");
-}
-
-em[data-emoji=":angel_tone4:"]:before,
-em[data-emoji="angel_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f47c-1f3fe.svg");
-}
-
-em[data-emoji=":angel_tone5:"]:before,
-em[data-emoji="angel_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f47c-1f3ff.svg");
-}
-
-em[data-emoji=":pregnant_woman:"]:before,
-em[data-emoji="pregnant_woman"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f930.svg");
-}
-
-em[data-emoji=":pregnant_woman_tone1:"]:before,
-em[data-emoji="pregnant_woman_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f930-1f3fb.svg");
-}
-
-em[data-emoji=":pregnant_woman_tone2:"]:before,
-em[data-emoji="pregnant_woman_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f930-1f3fc.svg");
-}
-
-em[data-emoji=":pregnant_woman_tone3:"]:before,
-em[data-emoji="pregnant_woman_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f930-1f3fd.svg");
-}
-
-em[data-emoji=":pregnant_woman_tone4:"]:before,
-em[data-emoji="pregnant_woman_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f930-1f3fe.svg");
-}
-
-em[data-emoji=":pregnant_woman_tone5:"]:before,
-em[data-emoji="pregnant_woman_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f930-1f3ff.svg");
-}
-
-em[data-emoji=":breast_feeding:"]:before,
-em[data-emoji="breast_feeding"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f931.svg");
-}
-
-em[data-emoji=":breast_feeding_tone1:"]:before,
-em[data-emoji="breast_feeding_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f931-1f3fb.svg");
-}
-
-em[data-emoji=":breast_feeding_tone2:"]:before,
-em[data-emoji="breast_feeding_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f931-1f3fc.svg");
-}
-
-em[data-emoji=":breast_feeding_tone3:"]:before,
-em[data-emoji="breast_feeding_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f931-1f3fd.svg");
-}
-
-em[data-emoji=":breast_feeding_tone4:"]:before,
-em[data-emoji="breast_feeding_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f931-1f3fe.svg");
-}
-
-em[data-emoji=":breast_feeding_tone5:"]:before,
-em[data-emoji="breast_feeding_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f931-1f3ff.svg");
-}
-
-em[data-emoji=":person_bowing:"]:before,
-em[data-emoji="person_bowing"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f647.svg");
-}
-
-em[data-emoji=":person_bowing_tone1:"]:before,
-em[data-emoji="person_bowing_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f647-1f3fb.svg");
-}
-
-em[data-emoji=":person_bowing_tone2:"]:before,
-em[data-emoji="person_bowing_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f647-1f3fc.svg");
-}
-
-em[data-emoji=":person_bowing_tone3:"]:before,
-em[data-emoji="person_bowing_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f647-1f3fd.svg");
-}
-
-em[data-emoji=":person_bowing_tone4:"]:before,
-em[data-emoji="person_bowing_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f647-1f3fe.svg");
-}
-
-em[data-emoji=":person_bowing_tone5:"]:before,
-em[data-emoji="person_bowing_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f647-1f3ff.svg");
-}
-
-em[data-emoji=":woman_bowing:"]:before,
-em[data-emoji="woman_bowing"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f647-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_bowing_tone1:"]:before,
-em[data-emoji="woman_bowing_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f647-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_bowing_tone2:"]:before,
-em[data-emoji="woman_bowing_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f647-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_bowing_tone3:"]:before,
-em[data-emoji="woman_bowing_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f647-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_bowing_tone4:"]:before,
-em[data-emoji="woman_bowing_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f647-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_bowing_tone5:"]:before,
-em[data-emoji="woman_bowing_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f647-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_bowing:"]:before,
-em[data-emoji="man_bowing"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f647-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_bowing_tone1:"]:before,
-em[data-emoji="man_bowing_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f647-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_bowing_tone2:"]:before,
-em[data-emoji="man_bowing_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f647-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_bowing_tone3:"]:before,
-em[data-emoji="man_bowing_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f647-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_bowing_tone4:"]:before,
-em[data-emoji="man_bowing_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f647-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_bowing_tone5:"]:before,
-em[data-emoji="man_bowing_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f647-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_tipping_hand:"]:before,
-em[data-emoji="person_tipping_hand"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f481.svg");
-}
-
-em[data-emoji=":person_tipping_hand_tone1:"]:before,
-em[data-emoji="person_tipping_hand_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f481-1f3fb.svg");
-}
-
-em[data-emoji=":person_tipping_hand_tone2:"]:before,
-em[data-emoji="person_tipping_hand_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f481-1f3fc.svg");
-}
-
-em[data-emoji=":person_tipping_hand_tone3:"]:before,
-em[data-emoji="person_tipping_hand_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f481-1f3fd.svg");
-}
-
-em[data-emoji=":person_tipping_hand_tone4:"]:before,
-em[data-emoji="person_tipping_hand_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f481-1f3fe.svg");
-}
-
-em[data-emoji=":person_tipping_hand_tone5:"]:before,
-em[data-emoji="person_tipping_hand_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f481-1f3ff.svg");
-}
-
-em[data-emoji=":woman_tipping_hand:"]:before,
-em[data-emoji="woman_tipping_hand"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f481-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_tipping_hand_tone1:"]:before,
-em[data-emoji="woman_tipping_hand_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f481-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_tipping_hand_tone2:"]:before,
-em[data-emoji="woman_tipping_hand_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f481-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_tipping_hand_tone3:"]:before,
-em[data-emoji="woman_tipping_hand_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f481-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_tipping_hand_tone4:"]:before,
-em[data-emoji="woman_tipping_hand_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f481-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_tipping_hand_tone5:"]:before,
-em[data-emoji="woman_tipping_hand_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f481-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_tipping_hand:"]:before,
-em[data-emoji="man_tipping_hand"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f481-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_tipping_hand_tone1:"]:before,
-em[data-emoji="man_tipping_hand_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f481-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_tipping_hand_tone2:"]:before,
-em[data-emoji="man_tipping_hand_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f481-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_tipping_hand_tone3:"]:before,
-em[data-emoji="man_tipping_hand_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f481-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_tipping_hand_tone4:"]:before,
-em[data-emoji="man_tipping_hand_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f481-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_tipping_hand_tone5:"]:before,
-em[data-emoji="man_tipping_hand_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f481-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_gesturing_no:"]:before,
-em[data-emoji="person_gesturing_no"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f645.svg");
-}
-
-em[data-emoji=":person_gesturing_no_tone1:"]:before,
-em[data-emoji="person_gesturing_no_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f645-1f3fb.svg");
-}
-
-em[data-emoji=":person_gesturing_no_tone2:"]:before,
-em[data-emoji="person_gesturing_no_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f645-1f3fc.svg");
-}
-
-em[data-emoji=":person_gesturing_no_tone3:"]:before,
-em[data-emoji="person_gesturing_no_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f645-1f3fd.svg");
-}
-
-em[data-emoji=":person_gesturing_no_tone4:"]:before,
-em[data-emoji="person_gesturing_no_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f645-1f3fe.svg");
-}
-
-em[data-emoji=":person_gesturing_no_tone5:"]:before,
-em[data-emoji="person_gesturing_no_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f645-1f3ff.svg");
-}
-
-em[data-emoji=":woman_gesturing_no:"]:before,
-em[data-emoji="woman_gesturing_no"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f645-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_gesturing_no_tone1:"]:before,
-em[data-emoji="woman_gesturing_no_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f645-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_gesturing_no_tone2:"]:before,
-em[data-emoji="woman_gesturing_no_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f645-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_gesturing_no_tone3:"]:before,
-em[data-emoji="woman_gesturing_no_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f645-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_gesturing_no_tone4:"]:before,
-em[data-emoji="woman_gesturing_no_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f645-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_gesturing_no_tone5:"]:before,
-em[data-emoji="woman_gesturing_no_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f645-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_gesturing_no:"]:before,
-em[data-emoji="man_gesturing_no"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f645-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_gesturing_no_tone1:"]:before,
-em[data-emoji="man_gesturing_no_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f645-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_gesturing_no_tone2:"]:before,
-em[data-emoji="man_gesturing_no_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f645-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_gesturing_no_tone3:"]:before,
-em[data-emoji="man_gesturing_no_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f645-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_gesturing_no_tone4:"]:before,
-em[data-emoji="man_gesturing_no_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f645-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_gesturing_no_tone5:"]:before,
-em[data-emoji="man_gesturing_no_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f645-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_gesturing_ok:"]:before,
-em[data-emoji="person_gesturing_ok"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f646.svg");
-}
-
-em[data-emoji=":person_gesturing_ok_tone1:"]:before,
-em[data-emoji="person_gesturing_ok_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f646-1f3fb.svg");
-}
-
-em[data-emoji=":person_gesturing_ok_tone2:"]:before,
-em[data-emoji="person_gesturing_ok_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f646-1f3fc.svg");
-}
-
-em[data-emoji=":person_gesturing_ok_tone3:"]:before,
-em[data-emoji="person_gesturing_ok_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f646-1f3fd.svg");
-}
-
-em[data-emoji=":person_gesturing_ok_tone4:"]:before,
-em[data-emoji="person_gesturing_ok_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f646-1f3fe.svg");
-}
-
-em[data-emoji=":person_gesturing_ok_tone5:"]:before,
-em[data-emoji="person_gesturing_ok_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f646-1f3ff.svg");
-}
-
-em[data-emoji=":woman_gesturing_ok:"]:before,
-em[data-emoji="woman_gesturing_ok"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f646-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_gesturing_ok_tone1:"]:before,
-em[data-emoji="woman_gesturing_ok_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f646-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_gesturing_ok_tone2:"]:before,
-em[data-emoji="woman_gesturing_ok_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f646-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_gesturing_ok_tone3:"]:before,
-em[data-emoji="woman_gesturing_ok_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f646-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_gesturing_ok_tone4:"]:before,
-em[data-emoji="woman_gesturing_ok_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f646-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_gesturing_ok_tone5:"]:before,
-em[data-emoji="woman_gesturing_ok_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f646-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_gesturing_ok:"]:before,
-em[data-emoji="man_gesturing_ok"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f646-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_gesturing_ok_tone1:"]:before,
-em[data-emoji="man_gesturing_ok_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f646-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_gesturing_ok_tone2:"]:before,
-em[data-emoji="man_gesturing_ok_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f646-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_gesturing_ok_tone3:"]:before,
-em[data-emoji="man_gesturing_ok_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f646-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_gesturing_ok_tone4:"]:before,
-em[data-emoji="man_gesturing_ok_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f646-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_gesturing_ok_tone5:"]:before,
-em[data-emoji="man_gesturing_ok_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f646-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_raising_hand:"]:before,
-em[data-emoji="person_raising_hand"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64b.svg");
-}
-
-em[data-emoji=":person_raising_hand_tone1:"]:before,
-em[data-emoji="person_raising_hand_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64b-1f3fb.svg");
-}
-
-em[data-emoji=":person_raising_hand_tone2:"]:before,
-em[data-emoji="person_raising_hand_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64b-1f3fc.svg");
-}
-
-em[data-emoji=":person_raising_hand_tone3:"]:before,
-em[data-emoji="person_raising_hand_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64b-1f3fd.svg");
-}
-
-em[data-emoji=":person_raising_hand_tone4:"]:before,
-em[data-emoji="person_raising_hand_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64b-1f3fe.svg");
-}
-
-em[data-emoji=":person_raising_hand_tone5:"]:before,
-em[data-emoji="person_raising_hand_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64b-1f3ff.svg");
-}
-
-em[data-emoji=":woman_raising_hand:"]:before,
-em[data-emoji="woman_raising_hand"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64b-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_raising_hand_tone1:"]:before,
-em[data-emoji="woman_raising_hand_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64b-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_raising_hand_tone2:"]:before,
-em[data-emoji="woman_raising_hand_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64b-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_raising_hand_tone3:"]:before,
-em[data-emoji="woman_raising_hand_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64b-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_raising_hand_tone4:"]:before,
-em[data-emoji="woman_raising_hand_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64b-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_raising_hand_tone5:"]:before,
-em[data-emoji="woman_raising_hand_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64b-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_raising_hand:"]:before,
-em[data-emoji="man_raising_hand"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64b-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_raising_hand_tone1:"]:before,
-em[data-emoji="man_raising_hand_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64b-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_raising_hand_tone2:"]:before,
-em[data-emoji="man_raising_hand_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64b-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_raising_hand_tone3:"]:before,
-em[data-emoji="man_raising_hand_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64b-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_raising_hand_tone4:"]:before,
-em[data-emoji="man_raising_hand_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64b-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_raising_hand_tone5:"]:before,
-em[data-emoji="man_raising_hand_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64b-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":deaf_person:"]:before,
-em[data-emoji="deaf_person"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cf.svg");
-}
-
-em[data-emoji=":deaf_person_tone1:"]:before,
-em[data-emoji="deaf_person_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cf-1f3fb.svg");
-}
-
-em[data-emoji=":deaf_person_tone2:"]:before,
-em[data-emoji="deaf_person_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cf-1f3fc.svg");
-}
-
-em[data-emoji=":deaf_person_tone3:"]:before,
-em[data-emoji="deaf_person_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cf-1f3fd.svg");
-}
-
-em[data-emoji=":deaf_person_tone4:"]:before,
-em[data-emoji="deaf_person_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cf-1f3fe.svg");
-}
-
-em[data-emoji=":deaf_person_tone5:"]:before,
-em[data-emoji="deaf_person_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cf-1f3ff.svg");
-}
-
-em[data-emoji=":deaf_woman:"]:before,
-em[data-emoji="deaf_woman"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cf-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":deaf_woman_tone1:"]:before,
-em[data-emoji="deaf_woman_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cf-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":deaf_woman_tone2:"]:before,
-em[data-emoji="deaf_woman_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cf-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":deaf_woman_tone3:"]:before,
-em[data-emoji="deaf_woman_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cf-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":deaf_woman_tone4:"]:before,
-em[data-emoji="deaf_woman_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cf-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":deaf_woman_tone5:"]:before,
-em[data-emoji="deaf_woman_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cf-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":deaf_man:"]:before,
-em[data-emoji="deaf_man"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cf-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":deaf_man_tone1:"]:before,
-em[data-emoji="deaf_man_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cf-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":deaf_man_tone2:"]:before,
-em[data-emoji="deaf_man_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cf-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":deaf_man_tone3:"]:before,
-em[data-emoji="deaf_man_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cf-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":deaf_man_tone4:"]:before,
-em[data-emoji="deaf_man_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cf-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":deaf_man_tone5:"]:before,
-em[data-emoji="deaf_man_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cf-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_facepalming:"]:before,
-em[data-emoji="person_facepalming"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f926.svg");
-}
-
-em[data-emoji=":person_facepalming_tone1:"]:before,
-em[data-emoji="person_facepalming_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f926-1f3fb.svg");
-}
-
-em[data-emoji=":person_facepalming_tone2:"]:before,
-em[data-emoji="person_facepalming_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f926-1f3fc.svg");
-}
-
-em[data-emoji=":person_facepalming_tone3:"]:before,
-em[data-emoji="person_facepalming_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f926-1f3fd.svg");
-}
-
-em[data-emoji=":person_facepalming_tone4:"]:before,
-em[data-emoji="person_facepalming_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f926-1f3fe.svg");
-}
-
-em[data-emoji=":person_facepalming_tone5:"]:before,
-em[data-emoji="person_facepalming_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f926-1f3ff.svg");
-}
-
-em[data-emoji=":woman_facepalming:"]:before,
-em[data-emoji="woman_facepalming"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f926-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_facepalming_tone1:"]:before,
-em[data-emoji="woman_facepalming_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f926-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_facepalming_tone2:"]:before,
-em[data-emoji="woman_facepalming_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f926-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_facepalming_tone3:"]:before,
-em[data-emoji="woman_facepalming_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f926-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_facepalming_tone4:"]:before,
-em[data-emoji="woman_facepalming_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f926-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_facepalming_tone5:"]:before,
-em[data-emoji="woman_facepalming_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f926-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_facepalming:"]:before,
-em[data-emoji="man_facepalming"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f926-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_facepalming_tone1:"]:before,
-em[data-emoji="man_facepalming_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f926-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_facepalming_tone2:"]:before,
-em[data-emoji="man_facepalming_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f926-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_facepalming_tone3:"]:before,
-em[data-emoji="man_facepalming_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f926-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_facepalming_tone4:"]:before,
-em[data-emoji="man_facepalming_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f926-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_facepalming_tone5:"]:before,
-em[data-emoji="man_facepalming_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f926-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_shrugging:"]:before,
-em[data-emoji="person_shrugging"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f937.svg");
-}
-
-em[data-emoji=":person_shrugging_tone1:"]:before,
-em[data-emoji="person_shrugging_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f937-1f3fb.svg");
-}
-
-em[data-emoji=":person_shrugging_tone2:"]:before,
-em[data-emoji="person_shrugging_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f937-1f3fc.svg");
-}
-
-em[data-emoji=":person_shrugging_tone3:"]:before,
-em[data-emoji="person_shrugging_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f937-1f3fd.svg");
-}
-
-em[data-emoji=":person_shrugging_tone4:"]:before,
-em[data-emoji="person_shrugging_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f937-1f3fe.svg");
-}
-
-em[data-emoji=":person_shrugging_tone5:"]:before,
-em[data-emoji="person_shrugging_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f937-1f3ff.svg");
-}
-
-em[data-emoji=":woman_shrugging:"]:before,
-em[data-emoji="woman_shrugging"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f937-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_shrugging_tone1:"]:before,
-em[data-emoji="woman_shrugging_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f937-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_shrugging_tone2:"]:before,
-em[data-emoji="woman_shrugging_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f937-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_shrugging_tone3:"]:before,
-em[data-emoji="woman_shrugging_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f937-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_shrugging_tone4:"]:before,
-em[data-emoji="woman_shrugging_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f937-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_shrugging_tone5:"]:before,
-em[data-emoji="woman_shrugging_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f937-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_shrugging:"]:before,
-em[data-emoji="man_shrugging"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f937-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_shrugging_tone1:"]:before,
-em[data-emoji="man_shrugging_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f937-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_shrugging_tone2:"]:before,
-em[data-emoji="man_shrugging_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f937-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_shrugging_tone3:"]:before,
-em[data-emoji="man_shrugging_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f937-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_shrugging_tone4:"]:before,
-em[data-emoji="man_shrugging_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f937-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_shrugging_tone5:"]:before,
-em[data-emoji="man_shrugging_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f937-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_pouting:"]:before,
-em[data-emoji="person_pouting"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64e.svg");
-}
-
-em[data-emoji=":person_pouting_tone1:"]:before,
-em[data-emoji="person_pouting_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64e-1f3fb.svg");
-}
-
-em[data-emoji=":person_pouting_tone2:"]:before,
-em[data-emoji="person_pouting_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64e-1f3fc.svg");
-}
-
-em[data-emoji=":person_pouting_tone3:"]:before,
-em[data-emoji="person_pouting_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64e-1f3fd.svg");
-}
-
-em[data-emoji=":person_pouting_tone4:"]:before,
-em[data-emoji="person_pouting_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64e-1f3fe.svg");
-}
-
-em[data-emoji=":person_pouting_tone5:"]:before,
-em[data-emoji="person_pouting_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64e-1f3ff.svg");
-}
-
-em[data-emoji=":woman_pouting:"]:before,
-em[data-emoji="woman_pouting"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64e-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_pouting_tone1:"]:before,
-em[data-emoji="woman_pouting_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64e-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_pouting_tone2:"]:before,
-em[data-emoji="woman_pouting_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64e-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_pouting_tone3:"]:before,
-em[data-emoji="woman_pouting_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64e-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_pouting_tone4:"]:before,
-em[data-emoji="woman_pouting_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64e-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_pouting_tone5:"]:before,
-em[data-emoji="woman_pouting_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64e-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_pouting:"]:before,
-em[data-emoji="man_pouting"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64e-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_pouting_tone1:"]:before,
-em[data-emoji="man_pouting_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64e-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_pouting_tone2:"]:before,
-em[data-emoji="man_pouting_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64e-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_pouting_tone3:"]:before,
-em[data-emoji="man_pouting_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64e-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_pouting_tone4:"]:before,
-em[data-emoji="man_pouting_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64e-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_pouting_tone5:"]:before,
-em[data-emoji="man_pouting_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64e-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_frowning:"]:before,
-em[data-emoji="person_frowning"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64d.svg");
-}
-
-em[data-emoji=":person_frowning_tone1:"]:before,
-em[data-emoji="person_frowning_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64d-1f3fb.svg");
-}
-
-em[data-emoji=":person_frowning_tone2:"]:before,
-em[data-emoji="person_frowning_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64d-1f3fc.svg");
-}
-
-em[data-emoji=":person_frowning_tone3:"]:before,
-em[data-emoji="person_frowning_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64d-1f3fd.svg");
-}
-
-em[data-emoji=":person_frowning_tone4:"]:before,
-em[data-emoji="person_frowning_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64d-1f3fe.svg");
-}
-
-em[data-emoji=":person_frowning_tone5:"]:before,
-em[data-emoji="person_frowning_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64d-1f3ff.svg");
-}
-
-em[data-emoji=":woman_frowning:"]:before,
-em[data-emoji="woman_frowning"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64d-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_frowning_tone1:"]:before,
-em[data-emoji="woman_frowning_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64d-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_frowning_tone2:"]:before,
-em[data-emoji="woman_frowning_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64d-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_frowning_tone3:"]:before,
-em[data-emoji="woman_frowning_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64d-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_frowning_tone4:"]:before,
-em[data-emoji="woman_frowning_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64d-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_frowning_tone5:"]:before,
-em[data-emoji="woman_frowning_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64d-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_frowning:"]:before,
-em[data-emoji="man_frowning"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64d-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_frowning_tone1:"]:before,
-em[data-emoji="man_frowning_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64d-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_frowning_tone2:"]:before,
-em[data-emoji="man_frowning_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64d-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_frowning_tone3:"]:before,
-em[data-emoji="man_frowning_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64d-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_frowning_tone4:"]:before,
-em[data-emoji="man_frowning_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64d-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_frowning_tone5:"]:before,
-em[data-emoji="man_frowning_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f64d-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_getting_haircut:"]:before,
-em[data-emoji="person_getting_haircut"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f487.svg");
-}
-
-em[data-emoji=":person_getting_haircut_tone1:"]:before,
-em[data-emoji="person_getting_haircut_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f487-1f3fb.svg");
-}
-
-em[data-emoji=":person_getting_haircut_tone2:"]:before,
-em[data-emoji="person_getting_haircut_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f487-1f3fc.svg");
-}
-
-em[data-emoji=":person_getting_haircut_tone3:"]:before,
-em[data-emoji="person_getting_haircut_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f487-1f3fd.svg");
-}
-
-em[data-emoji=":person_getting_haircut_tone4:"]:before,
-em[data-emoji="person_getting_haircut_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f487-1f3fe.svg");
-}
-
-em[data-emoji=":person_getting_haircut_tone5:"]:before,
-em[data-emoji="person_getting_haircut_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f487-1f3ff.svg");
-}
-
-em[data-emoji=":woman_getting_haircut:"]:before,
-em[data-emoji="woman_getting_haircut"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f487-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_getting_haircut_tone1:"]:before,
-em[data-emoji="woman_getting_haircut_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f487-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_getting_haircut_tone2:"]:before,
-em[data-emoji="woman_getting_haircut_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f487-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_getting_haircut_tone3:"]:before,
-em[data-emoji="woman_getting_haircut_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f487-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_getting_haircut_tone4:"]:before,
-em[data-emoji="woman_getting_haircut_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f487-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_getting_haircut_tone5:"]:before,
-em[data-emoji="woman_getting_haircut_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f487-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_getting_haircut:"]:before,
-em[data-emoji="man_getting_haircut"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f487-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_getting_haircut_tone1:"]:before,
-em[data-emoji="man_getting_haircut_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f487-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_getting_haircut_tone2:"]:before,
-em[data-emoji="man_getting_haircut_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f487-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_getting_haircut_tone3:"]:before,
-em[data-emoji="man_getting_haircut_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f487-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_getting_haircut_tone4:"]:before,
-em[data-emoji="man_getting_haircut_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f487-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_getting_haircut_tone5:"]:before,
-em[data-emoji="man_getting_haircut_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f487-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_getting_massage:"]:before,
-em[data-emoji="person_getting_massage"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f486.svg");
-}
-
-em[data-emoji=":person_getting_massage_tone1:"]:before,
-em[data-emoji="person_getting_massage_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f486-1f3fb.svg");
-}
-
-em[data-emoji=":person_getting_massage_tone2:"]:before,
-em[data-emoji="person_getting_massage_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f486-1f3fc.svg");
-}
-
-em[data-emoji=":person_getting_massage_tone3:"]:before,
-em[data-emoji="person_getting_massage_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f486-1f3fd.svg");
-}
-
-em[data-emoji=":person_getting_massage_tone4:"]:before,
-em[data-emoji="person_getting_massage_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f486-1f3fe.svg");
-}
-
-em[data-emoji=":person_getting_massage_tone5:"]:before,
-em[data-emoji="person_getting_massage_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f486-1f3ff.svg");
-}
-
-em[data-emoji=":woman_getting_face_massage:"]:before,
-em[data-emoji="woman_getting_face_massage"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f486-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_getting_face_massage_tone1:"]:before,
-em[data-emoji="woman_getting_face_massage_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f486-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_getting_face_massage_tone2:"]:before,
-em[data-emoji="woman_getting_face_massage_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f486-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_getting_face_massage_tone3:"]:before,
-em[data-emoji="woman_getting_face_massage_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f486-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_getting_face_massage_tone4:"]:before,
-em[data-emoji="woman_getting_face_massage_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f486-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_getting_face_massage_tone5:"]:before,
-em[data-emoji="woman_getting_face_massage_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f486-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_getting_face_massage:"]:before,
-em[data-emoji="man_getting_face_massage"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f486-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_getting_face_massage_tone1:"]:before,
-em[data-emoji="man_getting_face_massage_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f486-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_getting_face_massage_tone2:"]:before,
-em[data-emoji="man_getting_face_massage_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f486-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_getting_face_massage_tone3:"]:before,
-em[data-emoji="man_getting_face_massage_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f486-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_getting_face_massage_tone4:"]:before,
-em[data-emoji="man_getting_face_massage_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f486-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_getting_face_massage_tone5:"]:before,
-em[data-emoji="man_getting_face_massage_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f486-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_in_steamy_room:"]:before,
-em[data-emoji="person_in_steamy_room"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d6.svg");
-}
-
-em[data-emoji=":person_in_steamy_room_tone1:"]:before,
-em[data-emoji="person_in_steamy_room_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d6-1f3fb.svg");
-}
-
-em[data-emoji=":person_in_steamy_room_tone2:"]:before,
-em[data-emoji="person_in_steamy_room_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d6-1f3fc.svg");
-}
-
-em[data-emoji=":person_in_steamy_room_tone3:"]:before,
-em[data-emoji="person_in_steamy_room_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d6-1f3fd.svg");
-}
-
-em[data-emoji=":person_in_steamy_room_tone4:"]:before,
-em[data-emoji="person_in_steamy_room_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d6-1f3fe.svg");
-}
-
-em[data-emoji=":person_in_steamy_room_tone5:"]:before,
-em[data-emoji="person_in_steamy_room_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d6-1f3ff.svg");
-}
-
-em[data-emoji=":woman_in_steamy_room:"]:before,
-em[data-emoji="woman_in_steamy_room"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d6-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_in_steamy_room_tone1:"]:before,
-em[data-emoji="woman_in_steamy_room_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d6-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_in_steamy_room_tone2:"]:before,
-em[data-emoji="woman_in_steamy_room_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d6-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_in_steamy_room_tone3:"]:before,
-em[data-emoji="woman_in_steamy_room_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d6-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_in_steamy_room_tone4:"]:before,
-em[data-emoji="woman_in_steamy_room_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d6-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_in_steamy_room_tone5:"]:before,
-em[data-emoji="woman_in_steamy_room_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d6-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_in_steamy_room:"]:before,
-em[data-emoji="man_in_steamy_room"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d6-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_in_steamy_room_tone1:"]:before,
-em[data-emoji="man_in_steamy_room_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d6-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_in_steamy_room_tone2:"]:before,
-em[data-emoji="man_in_steamy_room_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d6-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_in_steamy_room_tone3:"]:before,
-em[data-emoji="man_in_steamy_room_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d6-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_in_steamy_room_tone4:"]:before,
-em[data-emoji="man_in_steamy_room_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d6-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_in_steamy_room_tone5:"]:before,
-em[data-emoji="man_in_steamy_room_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d6-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":nail_care:"]:before,
-em[data-emoji="nail_care"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f485.svg");
-}
-
-em[data-emoji=":nail_care_tone1:"]:before,
-em[data-emoji="nail_care_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f485-1f3fb.svg");
-}
-
-em[data-emoji=":nail_care_tone2:"]:before,
-em[data-emoji="nail_care_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f485-1f3fc.svg");
-}
-
-em[data-emoji=":nail_care_tone3:"]:before,
-em[data-emoji="nail_care_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f485-1f3fd.svg");
-}
-
-em[data-emoji=":nail_care_tone4:"]:before,
-em[data-emoji="nail_care_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f485-1f3fe.svg");
-}
-
-em[data-emoji=":nail_care_tone5:"]:before,
-em[data-emoji="nail_care_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f485-1f3ff.svg");
-}
-
-em[data-emoji=":selfie:"]:before,
-em[data-emoji="selfie"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f933.svg");
-}
-
-em[data-emoji=":selfie_tone1:"]:before,
-em[data-emoji="selfie_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f933-1f3fb.svg");
-}
-
-em[data-emoji=":selfie_tone2:"]:before,
-em[data-emoji="selfie_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f933-1f3fc.svg");
-}
-
-em[data-emoji=":selfie_tone3:"]:before,
-em[data-emoji="selfie_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f933-1f3fd.svg");
-}
-
-em[data-emoji=":selfie_tone4:"]:before,
-em[data-emoji="selfie_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f933-1f3fe.svg");
-}
-
-em[data-emoji=":selfie_tone5:"]:before,
-em[data-emoji="selfie_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f933-1f3ff.svg");
-}
-
-em[data-emoji=":dancer:"]:before,
-em[data-emoji="dancer"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f483.svg");
-}
-
-em[data-emoji=":dancer_tone1:"]:before,
-em[data-emoji="dancer_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f483-1f3fb.svg");
-}
-
-em[data-emoji=":dancer_tone2:"]:before,
-em[data-emoji="dancer_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f483-1f3fc.svg");
-}
-
-em[data-emoji=":dancer_tone3:"]:before,
-em[data-emoji="dancer_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f483-1f3fd.svg");
-}
-
-em[data-emoji=":dancer_tone4:"]:before,
-em[data-emoji="dancer_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f483-1f3fe.svg");
-}
-
-em[data-emoji=":dancer_tone5:"]:before,
-em[data-emoji="dancer_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f483-1f3ff.svg");
-}
-
-em[data-emoji=":man_dancing:"]:before,
-em[data-emoji="man_dancing"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f57a.svg");
-}
-
-em[data-emoji=":man_dancing_tone1:"]:before,
-em[data-emoji="man_dancing_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f57a-1f3fb.svg");
-}
-
-em[data-emoji=":man_dancing_tone2:"]:before,
-em[data-emoji="man_dancing_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f57a-1f3fc.svg");
-}
-
-em[data-emoji=":man_dancing_tone3:"]:before,
-em[data-emoji="man_dancing_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f57a-1f3fd.svg");
-}
-
-em[data-emoji=":man_dancing_tone5:"]:before,
-em[data-emoji="man_dancing_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f57a-1f3ff.svg");
-}
-
-em[data-emoji=":man_dancing_tone4:"]:before,
-em[data-emoji="man_dancing_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f57a-1f3fe.svg");
-}
-
-em[data-emoji=":people_with_bunny_ears_partying:"]:before,
-em[data-emoji="people_with_bunny_ears_partying"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46f.svg");
-}
-
-em[data-emoji=":women_with_bunny_ears_partying:"]:before,
-em[data-emoji="women_with_bunny_ears_partying"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46f-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":men_with_bunny_ears_partying:"]:before,
-em[data-emoji="men_with_bunny_ears_partying"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46f-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":levitate:"]:before,
-em[data-emoji="levitate"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f574.svg");
-}
-
-em[data-emoji=":levitate_tone1:"]:before,
-em[data-emoji="levitate_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f574-1f3fb.svg");
-}
-
-em[data-emoji=":levitate_tone2:"]:before,
-em[data-emoji="levitate_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f574-1f3fc.svg");
-}
-
-em[data-emoji=":levitate_tone3:"]:before,
-em[data-emoji="levitate_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f574-1f3fd.svg");
-}
-
-em[data-emoji=":levitate_tone4:"]:before,
-em[data-emoji="levitate_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f574-1f3fe.svg");
-}
-
-em[data-emoji=":levitate_tone5:"]:before,
-em[data-emoji="levitate_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f574-1f3ff.svg");
-}
-
-em[data-emoji=":person_walking:"]:before,
-em[data-emoji="person_walking"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b6.svg");
-}
-
-em[data-emoji=":person_walking_tone1:"]:before,
-em[data-emoji="person_walking_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b6-1f3fb.svg");
-}
-
-em[data-emoji=":person_walking_tone2:"]:before,
-em[data-emoji="person_walking_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b6-1f3fc.svg");
-}
-
-em[data-emoji=":person_walking_tone3:"]:before,
-em[data-emoji="person_walking_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b6-1f3fd.svg");
-}
-
-em[data-emoji=":person_walking_tone4:"]:before,
-em[data-emoji="person_walking_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b6-1f3fe.svg");
-}
-
-em[data-emoji=":person_walking_tone5:"]:before,
-em[data-emoji="person_walking_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b6-1f3ff.svg");
-}
-
-em[data-emoji=":woman_walking:"]:before,
-em[data-emoji="woman_walking"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b6-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_walking_tone1:"]:before,
-em[data-emoji="woman_walking_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b6-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_walking_tone2:"]:before,
-em[data-emoji="woman_walking_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b6-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_walking_tone3:"]:before,
-em[data-emoji="woman_walking_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b6-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_walking_tone4:"]:before,
-em[data-emoji="woman_walking_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b6-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_walking_tone5:"]:before,
-em[data-emoji="woman_walking_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b6-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_walking:"]:before,
-em[data-emoji="man_walking"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b6-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_walking_tone1:"]:before,
-em[data-emoji="man_walking_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b6-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_walking_tone2:"]:before,
-em[data-emoji="man_walking_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b6-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_walking_tone3:"]:before,
-em[data-emoji="man_walking_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b6-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_walking_tone4:"]:before,
-em[data-emoji="man_walking_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b6-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_walking_tone5:"]:before,
-em[data-emoji="man_walking_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b6-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_running:"]:before,
-em[data-emoji="person_running"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c3.svg");
-}
-
-em[data-emoji=":person_running_tone1:"]:before,
-em[data-emoji="person_running_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c3-1f3fb.svg");
-}
-
-em[data-emoji=":person_running_tone2:"]:before,
-em[data-emoji="person_running_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c3-1f3fc.svg");
-}
-
-em[data-emoji=":person_running_tone3:"]:before,
-em[data-emoji="person_running_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c3-1f3fd.svg");
-}
-
-em[data-emoji=":person_running_tone4:"]:before,
-em[data-emoji="person_running_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c3-1f3fe.svg");
-}
-
-em[data-emoji=":person_running_tone5:"]:before,
-em[data-emoji="person_running_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c3-1f3ff.svg");
-}
-
-em[data-emoji=":woman_running:"]:before,
-em[data-emoji="woman_running"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c3-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_running_tone1:"]:before,
-em[data-emoji="woman_running_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c3-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_running_tone2:"]:before,
-em[data-emoji="woman_running_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c3-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_running_tone3:"]:before,
-em[data-emoji="woman_running_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c3-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_running_tone4:"]:before,
-em[data-emoji="woman_running_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c3-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_running_tone5:"]:before,
-em[data-emoji="woman_running_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c3-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_running:"]:before,
-em[data-emoji="man_running"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c3-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_running_tone1:"]:before,
-em[data-emoji="man_running_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c3-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_running_tone2:"]:before,
-em[data-emoji="man_running_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c3-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_running_tone3:"]:before,
-em[data-emoji="man_running_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c3-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_running_tone4:"]:before,
-em[data-emoji="man_running_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c3-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_running_tone5:"]:before,
-em[data-emoji="man_running_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c3-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_standing:"]:before,
-em[data-emoji="person_standing"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cd.svg");
-}
-
-em[data-emoji=":person_standing_tone1:"]:before,
-em[data-emoji="person_standing_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cd-1f3fb.svg");
-}
-
-em[data-emoji=":person_standing_tone2:"]:before,
-em[data-emoji="person_standing_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cd-1f3fc.svg");
-}
-
-em[data-emoji=":person_standing_tone3:"]:before,
-em[data-emoji="person_standing_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cd-1f3fd.svg");
-}
-
-em[data-emoji=":person_standing_tone4:"]:before,
-em[data-emoji="person_standing_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cd-1f3fe.svg");
-}
-
-em[data-emoji=":person_standing_tone5:"]:before,
-em[data-emoji="person_standing_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cd-1f3ff.svg");
-}
-
-em[data-emoji=":woman_standing:"]:before,
-em[data-emoji="woman_standing"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_standing_tone1:"]:before,
-em[data-emoji="woman_standing_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cd-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_standing_tone2:"]:before,
-em[data-emoji="woman_standing_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cd-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_standing_tone3:"]:before,
-em[data-emoji="woman_standing_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cd-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_standing_tone4:"]:before,
-em[data-emoji="woman_standing_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cd-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_standing_tone5:"]:before,
-em[data-emoji="woman_standing_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cd-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_standing:"]:before,
-em[data-emoji="man_standing"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_standing_tone1:"]:before,
-em[data-emoji="man_standing_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cd-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_standing_tone2:"]:before,
-em[data-emoji="man_standing_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cd-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_standing_tone3:"]:before,
-em[data-emoji="man_standing_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cd-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_standing_tone4:"]:before,
-em[data-emoji="man_standing_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cd-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_standing_tone5:"]:before,
-em[data-emoji="man_standing_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9cd-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":person_kneeling:"]:before,
-em[data-emoji="person_kneeling"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ce.svg");
-}
-
-em[data-emoji=":person_kneeling_tone1:"]:before,
-em[data-emoji="person_kneeling_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ce-1f3fb.svg");
-}
-
-em[data-emoji=":person_kneeling_tone2:"]:before,
-em[data-emoji="person_kneeling_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ce-1f3fc.svg");
-}
-
-em[data-emoji=":person_kneeling_tone3:"]:before,
-em[data-emoji="person_kneeling_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ce-1f3fd.svg");
-}
-
-em[data-emoji=":person_kneeling_tone4:"]:before,
-em[data-emoji="person_kneeling_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ce-1f3fe.svg");
-}
-
-em[data-emoji=":person_kneeling_tone5:"]:before,
-em[data-emoji="person_kneeling_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ce-1f3ff.svg");
-}
-
-em[data-emoji=":woman_kneeling:"]:before,
-em[data-emoji="woman_kneeling"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ce-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_kneeling_tone1:"]:before,
-em[data-emoji="woman_kneeling_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ce-1f3fb-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_kneeling_tone2:"]:before,
-em[data-emoji="woman_kneeling_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ce-1f3fc-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_kneeling_tone3:"]:before,
-em[data-emoji="woman_kneeling_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ce-1f3fd-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_kneeling_tone4:"]:before,
-em[data-emoji="woman_kneeling_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ce-1f3fe-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":woman_kneeling_tone5:"]:before,
-em[data-emoji="woman_kneeling_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ce-1f3ff-200d-2640-fe0f.svg");
-}
-
-em[data-emoji=":man_kneeling:"]:before,
-em[data-emoji="man_kneeling"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ce-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_kneeling_tone1:"]:before,
-em[data-emoji="man_kneeling_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ce-1f3fb-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_kneeling_tone2:"]:before,
-em[data-emoji="man_kneeling_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ce-1f3fc-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_kneeling_tone3:"]:before,
-em[data-emoji="man_kneeling_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ce-1f3fd-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_kneeling_tone4:"]:before,
-em[data-emoji="man_kneeling_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ce-1f3fe-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":man_kneeling_tone5:"]:before,
-em[data-emoji="man_kneeling_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ce-1f3ff-200d-2642-fe0f.svg");
-}
-
-em[data-emoji=":woman_with_probing_cane:"]:before,
-em[data-emoji="woman_with_probing_cane"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f9af.svg");
-}
-
-em[data-emoji=":woman_with_probing_cane_tone1:"]:before,
-em[data-emoji="woman_with_probing_cane_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-1f9af.svg");
-}
-
-em[data-emoji=":woman_with_probing_cane_tone2:"]:before,
-em[data-emoji="woman_with_probing_cane_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f9af.svg");
-}
-
-em[data-emoji=":woman_with_probing_cane_tone3:"]:before,
-em[data-emoji="woman_with_probing_cane_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f9af.svg");
-}
-
-em[data-emoji=":woman_with_probing_cane_tone4:"]:before,
-em[data-emoji="woman_with_probing_cane_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f9af.svg");
-}
-
-em[data-emoji=":woman_with_probing_cane_tone5:"]:before,
-em[data-emoji="woman_with_probing_cane_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f9af.svg");
-}
-
-em[data-emoji=":man_with_probing_cane:"]:before,
-em[data-emoji="man_with_probing_cane"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f9af.svg");
-}
-
-em[data-emoji=":man_with_probing_cane_tone1:"]:before,
-em[data-emoji="man_with_probing_cane_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fb-200d-1f9af.svg");
-}
-
-em[data-emoji=":man_with_probing_cane_tone2:"]:before,
-em[data-emoji="man_with_probing_cane_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc-200d-1f9af.svg");
-}
-
-em[data-emoji=":man_with_probing_cane_tone3:"]:before,
-em[data-emoji="man_with_probing_cane_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-1f9af.svg");
-}
-
-em[data-emoji=":man_with_probing_cane_tone4:"]:before,
-em[data-emoji="man_with_probing_cane_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-1f9af.svg");
-}
-
-em[data-emoji=":man_with_probing_cane_tone5:"]:before,
-em[data-emoji="man_with_probing_cane_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-1f9af.svg");
-}
-
-em[data-emoji=":woman_in_motorized_wheelchair:"]:before,
-em[data-emoji="woman_in_motorized_wheelchair"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f9bc.svg");
-}
-
-em[data-emoji=":woman_in_motorized_wheelchair_tone1:"]:before,
-em[data-emoji="woman_in_motorized_wheelchair_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-1f9bc.svg");
-}
-
-em[data-emoji=":woman_in_motorized_wheelchair_tone2:"]:before,
-em[data-emoji="woman_in_motorized_wheelchair_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f9bc.svg");
-}
-
-em[data-emoji=":woman_in_motorized_wheelchair_tone3:"]:before,
-em[data-emoji="woman_in_motorized_wheelchair_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f9bc.svg");
-}
-
-em[data-emoji=":woman_in_motorized_wheelchair_tone4:"]:before,
-em[data-emoji="woman_in_motorized_wheelchair_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f9bc.svg");
-}
-
-em[data-emoji=":woman_in_motorized_wheelchair_tone5:"]:before,
-em[data-emoji="woman_in_motorized_wheelchair_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f9bc.svg");
-}
-
-em[data-emoji=":man_in_motorized_wheelchair:"]:before,
-em[data-emoji="man_in_motorized_wheelchair"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f9bc.svg");
-}
-
-em[data-emoji=":man_in_motorized_wheelchair_tone1:"]:before,
-em[data-emoji="man_in_motorized_wheelchair_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fb-200d-1f9bc.svg");
-}
-
-em[data-emoji=":man_in_motorized_wheelchair_tone2:"]:before,
-em[data-emoji="man_in_motorized_wheelchair_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc-200d-1f9bc.svg");
-}
-
-em[data-emoji=":man_in_motorized_wheelchair_tone3:"]:before,
-em[data-emoji="man_in_motorized_wheelchair_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-1f9bc.svg");
-}
-
-em[data-emoji=":man_in_motorized_wheelchair_tone4:"]:before,
-em[data-emoji="man_in_motorized_wheelchair_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-1f9bc.svg");
-}
-
-em[data-emoji=":man_in_motorized_wheelchair_tone5:"]:before,
-em[data-emoji="man_in_motorized_wheelchair_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-1f9bc.svg");
-}
-
-em[data-emoji=":woman_in_manual_wheelchair:"]:before,
-em[data-emoji="woman_in_manual_wheelchair"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f9bd.svg");
-}
-
-em[data-emoji=":woman_in_manual_wheelchair_tone1:"]:before,
-em[data-emoji="woman_in_manual_wheelchair_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-1f9bd.svg");
-}
-
-em[data-emoji=":woman_in_manual_wheelchair_tone2:"]:before,
-em[data-emoji="woman_in_manual_wheelchair_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f9bd.svg");
-}
-
-em[data-emoji=":woman_in_manual_wheelchair_tone3:"]:before,
-em[data-emoji="woman_in_manual_wheelchair_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f9bd.svg");
-}
-
-em[data-emoji=":woman_in_manual_wheelchair_tone4:"]:before,
-em[data-emoji="woman_in_manual_wheelchair_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f9bd.svg");
-}
-
-em[data-emoji=":woman_in_manual_wheelchair_tone5:"]:before,
-em[data-emoji="woman_in_manual_wheelchair_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f9bd.svg");
-}
-
-em[data-emoji=":man_in_manual_wheelchair:"]:before,
-em[data-emoji="man_in_manual_wheelchair"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f9bd.svg");
-}
-
-em[data-emoji=":man_in_manual_wheelchair_tone1:"]:before,
-em[data-emoji="man_in_manual_wheelchair_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fb-200d-1f9bd.svg");
-}
-
-em[data-emoji=":man_in_manual_wheelchair_tone2:"]:before,
-em[data-emoji="man_in_manual_wheelchair_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc-200d-1f9bd.svg");
-}
-
-em[data-emoji=":man_in_manual_wheelchair_tone3:"]:before,
-em[data-emoji="man_in_manual_wheelchair_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-1f9bd.svg");
-}
-
-em[data-emoji=":man_in_manual_wheelchair_tone4:"]:before,
-em[data-emoji="man_in_manual_wheelchair_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-1f9bd.svg");
-}
-
-em[data-emoji=":man_in_manual_wheelchair_tone5:"]:before,
-em[data-emoji="man_in_manual_wheelchair_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-1f9bd.svg");
-}
-
-em[data-emoji=":people_holding_hands:"]:before,
-em[data-emoji="people_holding_hands"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d1-200d-1f91d-200d-1f9d1.svg");
-}
-
-em[data-emoji=":people_holding_hands_tone1:"]:before,
-em[data-emoji="people_holding_hands_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb.svg");
-}
-
-em[data-emoji=":people_holding_hands_tone2:"]:before,
-em[data-emoji="people_holding_hands_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc.svg");
-}
-
-em[data-emoji=":people_holding_hands_tone2_tone1:"]:before,
-em[data-emoji="people_holding_hands_tone2_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb.svg");
-}
-
-em[data-emoji=":people_holding_hands_tone3:"]:before,
-em[data-emoji="people_holding_hands_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd.svg");
-}
-
-em[data-emoji=":people_holding_hands_tone3_tone1:"]:before,
-em[data-emoji="people_holding_hands_tone3_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb.svg");
-}
-
-em[data-emoji=":people_holding_hands_tone3_tone2:"]:before,
-em[data-emoji="people_holding_hands_tone3_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc.svg");
-}
-
-em[data-emoji=":people_holding_hands_tone4:"]:before,
-em[data-emoji="people_holding_hands_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe.svg");
-}
-
-em[data-emoji=":people_holding_hands_tone4_tone1:"]:before,
-em[data-emoji="people_holding_hands_tone4_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb.svg");
-}
-
-em[data-emoji=":people_holding_hands_tone4_tone2:"]:before,
-em[data-emoji="people_holding_hands_tone4_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc.svg");
-}
-
-em[data-emoji=":people_holding_hands_tone4_tone3:"]:before,
-em[data-emoji="people_holding_hands_tone4_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd.svg");
-}
-
-em[data-emoji=":people_holding_hands_tone5:"]:before,
-em[data-emoji="people_holding_hands_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff.svg");
-}
-
-em[data-emoji=":people_holding_hands_tone5_tone1:"]:before,
-em[data-emoji="people_holding_hands_tone5_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb.svg");
-}
-
-em[data-emoji=":people_holding_hands_tone5_tone2:"]:before,
-em[data-emoji="people_holding_hands_tone5_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc.svg");
-}
-
-em[data-emoji=":people_holding_hands_tone5_tone3:"]:before,
-em[data-emoji="people_holding_hands_tone5_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd.svg");
-}
-
-em[data-emoji=":people_holding_hands_tone5_tone4:"]:before,
-em[data-emoji="people_holding_hands_tone5_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe.svg");
-}
-
-em[data-emoji=":couple:"]:before,
-em[data-emoji="couple"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46b.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone1:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46b-1f3fb.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone1_tone2:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone1_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone1_tone3:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone1_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone1_tone4:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone1_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone1_tone5:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone1_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone2:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46b-1f3fc.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone2_tone1:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone2_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone2_tone3:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone2_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone2_tone4:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone2_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone2_tone5:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone2_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone3:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46b-1f3fd.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone3_tone1:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone3_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone3_tone2:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone3_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone3_tone4:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone3_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone3_tone5:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone3_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone4:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46b-1f3fe.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone4_tone1:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone4_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone4_tone2:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone4_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone4_tone3:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone4_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone4_tone5:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone4_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone5:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46b-1f3ff.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone5_tone1:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone5_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone5_tone2:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone5_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone5_tone3:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone5_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg");
-}
-
-em[data-emoji=":woman_and_man_holding_hands_tone5_tone4:"]:before,
-em[data-emoji="woman_and_man_holding_hands_tone5_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg");
-}
-
-em[data-emoji=":two_women_holding_hands:"]:before,
-em[data-emoji="two_women_holding_hands"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46d.svg");
-}
-
-em[data-emoji=":women_holding_hands_tone1:"]:before,
-em[data-emoji="women_holding_hands_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46d-1f3fb.svg");
-}
-
-em[data-emoji=":women_holding_hands_tone2:"]:before,
-em[data-emoji="women_holding_hands_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46d-1f3fc.svg");
-}
-
-em[data-emoji=":women_holding_hands_tone2_tone1:"]:before,
-em[data-emoji="women_holding_hands_tone2_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb.svg");
-}
-
-em[data-emoji=":women_holding_hands_tone3:"]:before,
-em[data-emoji="women_holding_hands_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46d-1f3fd.svg");
-}
-
-em[data-emoji=":women_holding_hands_tone3_tone1:"]:before,
-em[data-emoji="women_holding_hands_tone3_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb.svg");
-}
-
-em[data-emoji=":women_holding_hands_tone3_tone2:"]:before,
-em[data-emoji="women_holding_hands_tone3_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc.svg");
-}
-
-em[data-emoji=":women_holding_hands_tone4:"]:before,
-em[data-emoji="women_holding_hands_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46d-1f3fe.svg");
-}
-
-em[data-emoji=":women_holding_hands_tone4_tone1:"]:before,
-em[data-emoji="women_holding_hands_tone4_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb.svg");
-}
-
-em[data-emoji=":women_holding_hands_tone4_tone2:"]:before,
-em[data-emoji="women_holding_hands_tone4_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc.svg");
-}
-
-em[data-emoji=":women_holding_hands_tone4_tone3:"]:before,
-em[data-emoji="women_holding_hands_tone4_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd.svg");
-}
-
-em[data-emoji=":women_holding_hands_tone5:"]:before,
-em[data-emoji="women_holding_hands_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46d-1f3ff.svg");
-}
-
-em[data-emoji=":women_holding_hands_tone5_tone1:"]:before,
-em[data-emoji="women_holding_hands_tone5_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb.svg");
-}
-
-em[data-emoji=":women_holding_hands_tone5_tone2:"]:before,
-em[data-emoji="women_holding_hands_tone5_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc.svg");
-}
-
-em[data-emoji=":women_holding_hands_tone5_tone3:"]:before,
-em[data-emoji="women_holding_hands_tone5_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd.svg");
-}
-
-em[data-emoji=":women_holding_hands_tone5_tone4:"]:before,
-em[data-emoji="women_holding_hands_tone5_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe.svg");
-}
-
-em[data-emoji=":two_men_holding_hands:"]:before,
-em[data-emoji="two_men_holding_hands"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46c.svg");
-}
-
-em[data-emoji=":men_holding_hands_tone1:"]:before,
-em[data-emoji="men_holding_hands_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46c-1f3fb.svg");
-}
-
-em[data-emoji=":men_holding_hands_tone2:"]:before,
-em[data-emoji="men_holding_hands_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46c-1f3fc.svg");
-}
-
-em[data-emoji=":men_holding_hands_tone2_tone1:"]:before,
-em[data-emoji="men_holding_hands_tone2_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg");
-}
-
-em[data-emoji=":men_holding_hands_tone3:"]:before,
-em[data-emoji="men_holding_hands_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46c-1f3fd.svg");
-}
-
-em[data-emoji=":men_holding_hands_tone3_tone1:"]:before,
-em[data-emoji="men_holding_hands_tone3_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg");
-}
-
-em[data-emoji=":men_holding_hands_tone3_tone2:"]:before,
-em[data-emoji="men_holding_hands_tone3_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg");
-}
-
-em[data-emoji=":men_holding_hands_tone4:"]:before,
-em[data-emoji="men_holding_hands_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46c-1f3fe.svg");
-}
-
-em[data-emoji=":men_holding_hands_tone4_tone1:"]:before,
-em[data-emoji="men_holding_hands_tone4_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg");
-}
-
-em[data-emoji=":men_holding_hands_tone4_tone2:"]:before,
-em[data-emoji="men_holding_hands_tone4_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg");
-}
-
-em[data-emoji=":men_holding_hands_tone4_tone3:"]:before,
-em[data-emoji="men_holding_hands_tone4_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg");
-}
-
-em[data-emoji=":men_holding_hands_tone5:"]:before,
-em[data-emoji="men_holding_hands_tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46c-1f3ff.svg");
-}
-
-em[data-emoji=":men_holding_hands_tone5_tone1:"]:before,
-em[data-emoji="men_holding_hands_tone5_tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg");
-}
-
-em[data-emoji=":men_holding_hands_tone5_tone2:"]:before,
-em[data-emoji="men_holding_hands_tone5_tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg");
-}
-
-em[data-emoji=":men_holding_hands_tone5_tone3:"]:before,
-em[data-emoji="men_holding_hands_tone5_tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg");
-}
-
-em[data-emoji=":men_holding_hands_tone5_tone4:"]:before,
-em[data-emoji="men_holding_hands_tone5_tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg");
-}
-
-em[data-emoji=":couple_with_heart:"]:before,
-em[data-emoji="couple_with_heart"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f491.svg");
-}
-
-em[data-emoji=":couple_with_heart_woman_man:"]:before,
-em[data-emoji="couple_with_heart_woman_man"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-2764-fe0f-200d-1f468.svg");
-}
-
-em[data-emoji=":couple_ww:"]:before,
-em[data-emoji="couple_ww"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-2764-fe0f-200d-1f469.svg");
-}
-
-em[data-emoji=":couple_mm:"]:before,
-em[data-emoji="couple_mm"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-2764-fe0f-200d-1f468.svg");
-}
-
-em[data-emoji=":couplekiss:"]:before,
-em[data-emoji="couplekiss"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f48f.svg");
-}
-
-em[data-emoji=":kiss_woman_man:"]:before,
-em[data-emoji="kiss_woman_man"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.svg");
-}
-
-em[data-emoji=":kiss_ww:"]:before,
-em[data-emoji="kiss_ww"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.svg");
-}
-
-em[data-emoji=":kiss_mm:"]:before,
-em[data-emoji="kiss_mm"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.svg");
-}
-
-em[data-emoji=":family:"]:before,
-em[data-emoji="family"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f46a.svg");
-}
-
-em[data-emoji=":family_man_woman_boy:"]:before,
-em[data-emoji="family_man_woman_boy"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f469-200d-1f466.svg");
-}
-
-em[data-emoji=":family_mwg:"]:before,
-em[data-emoji="family_mwg"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f469-200d-1f467.svg");
-}
-
-em[data-emoji=":family_mwgb:"]:before,
-em[data-emoji="family_mwgb"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f469-200d-1f467-200d-1f466.svg");
-}
-
-em[data-emoji=":family_mwbb:"]:before,
-em[data-emoji="family_mwbb"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f469-200d-1f466-200d-1f466.svg");
-}
-
-em[data-emoji=":family_mwgg:"]:before,
-em[data-emoji="family_mwgg"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f469-200d-1f467-200d-1f467.svg");
-}
-
-em[data-emoji=":family_wwb:"]:before,
-em[data-emoji="family_wwb"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f469-200d-1f466.svg");
-}
-
-em[data-emoji=":family_wwg:"]:before,
-em[data-emoji="family_wwg"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f469-200d-1f467.svg");
-}
-
-em[data-emoji=":family_wwgb:"]:before,
-em[data-emoji="family_wwgb"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f469-200d-1f467-200d-1f466.svg");
-}
-
-em[data-emoji=":family_wwbb:"]:before,
-em[data-emoji="family_wwbb"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f469-200d-1f466-200d-1f466.svg");
-}
-
-em[data-emoji=":family_wwgg:"]:before,
-em[data-emoji="family_wwgg"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f469-200d-1f467-200d-1f467.svg");
-}
-
-em[data-emoji=":family_mmb:"]:before,
-em[data-emoji="family_mmb"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f468-200d-1f466.svg");
-}
-
-em[data-emoji=":family_mmg:"]:before,
-em[data-emoji="family_mmg"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f468-200d-1f467.svg");
-}
-
-em[data-emoji=":family_mmgb:"]:before,
-em[data-emoji="family_mmgb"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f468-200d-1f467-200d-1f466.svg");
-}
-
-em[data-emoji=":family_mmbb:"]:before,
-em[data-emoji="family_mmbb"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f468-200d-1f466-200d-1f466.svg");
-}
-
-em[data-emoji=":family_mmgg:"]:before,
-em[data-emoji="family_mmgg"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f468-200d-1f467-200d-1f467.svg");
-}
-
-em[data-emoji=":family_woman_boy:"]:before,
-em[data-emoji="family_woman_boy"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f466.svg");
-}
-
-em[data-emoji=":family_woman_girl:"]:before,
-em[data-emoji="family_woman_girl"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f467.svg");
-}
-
-em[data-emoji=":family_woman_girl_boy:"]:before,
-em[data-emoji="family_woman_girl_boy"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f467-200d-1f466.svg");
-}
-
-em[data-emoji=":family_woman_boy_boy:"]:before,
-em[data-emoji="family_woman_boy_boy"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f466-200d-1f466.svg");
-}
-
-em[data-emoji=":family_woman_girl_girl:"]:before,
-em[data-emoji="family_woman_girl_girl"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f469-200d-1f467-200d-1f467.svg");
-}
-
-em[data-emoji=":family_man_boy:"]:before,
-em[data-emoji="family_man_boy"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f466.svg");
-}
-
-em[data-emoji=":family_man_girl:"]:before,
-em[data-emoji="family_man_girl"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f467.svg");
-}
-
-em[data-emoji=":family_man_girl_boy:"]:before,
-em[data-emoji="family_man_girl_boy"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f467-200d-1f466.svg");
-}
-
-em[data-emoji=":family_man_boy_boy:"]:before,
-em[data-emoji="family_man_boy_boy"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f466-200d-1f466.svg");
-}
-
-em[data-emoji=":family_man_girl_girl:"]:before,
-em[data-emoji="family_man_girl_girl"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f468-200d-1f467-200d-1f467.svg");
-}
-
-em[data-emoji=":yarn:"]:before,
-em[data-emoji="yarn"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9f6.svg");
-}
-
-em[data-emoji=":thread:"]:before,
-em[data-emoji="thread"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9f5.svg");
-}
-
-em[data-emoji=":coat:"]:before,
-em[data-emoji="coat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9e5.svg");
-}
-
-em[data-emoji=":lab_coat:"]:before,
-em[data-emoji="lab_coat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f97c.svg");
-}
-
-em[data-emoji=":safety_vest:"]:before,
-em[data-emoji="safety_vest"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9ba.svg");
-}
-
-em[data-emoji=":womans_clothes:"]:before,
-em[data-emoji="womans_clothes"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f45a.svg");
-}
-
-em[data-emoji=":shirt:"]:before,
-em[data-emoji="shirt"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f455.svg");
-}
-
-em[data-emoji=":jeans:"]:before,
-em[data-emoji="jeans"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f456.svg");
-}
-
-em[data-emoji=":shorts:"]:before,
-em[data-emoji="shorts"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1fa73.svg");
-}
-
-em[data-emoji=":necktie:"]:before,
-em[data-emoji="necktie"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f454.svg");
-}
-
-em[data-emoji=":dress:"]:before,
-em[data-emoji="dress"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f457.svg");
-}
-
-em[data-emoji=":bikini:"]:before,
-em[data-emoji="bikini"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f459.svg");
-}
-
-em[data-emoji=":one_piece_swimsuit:"]:before,
-em[data-emoji="one_piece_swimsuit"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1fa71.svg");
-}
-
-em[data-emoji=":kimono:"]:before,
-em[data-emoji="kimono"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f458.svg");
-}
-
-em[data-emoji=":sari:"]:before,
-em[data-emoji="sari"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f97b.svg");
-}
-
-em[data-emoji=":womans_flat_shoe:"]:before,
-em[data-emoji="womans_flat_shoe"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f97f.svg");
-}
-
-em[data-emoji=":high_heel:"]:before,
-em[data-emoji="high_heel"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f460.svg");
-}
-
-em[data-emoji=":sandal:"]:before,
-em[data-emoji="sandal"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f461.svg");
-}
-
-em[data-emoji=":boot:"]:before,
-em[data-emoji="boot"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f462.svg");
-}
-
-em[data-emoji=":ballet_shoes:"]:before,
-em[data-emoji="ballet_shoes"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1fa70.svg");
-}
-
-em[data-emoji=":mans_shoe:"]:before,
-em[data-emoji="mans_shoe"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f45e.svg");
-}
-
-em[data-emoji=":athletic_shoe:"]:before,
-em[data-emoji="athletic_shoe"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f45f.svg");
-}
-
-em[data-emoji=":hiking_boot:"]:before,
-em[data-emoji="hiking_boot"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f97e.svg");
-}
-
-em[data-emoji=":briefs:"]:before,
-em[data-emoji="briefs"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1fa72.svg");
-}
-
-em[data-emoji=":socks:"]:before,
-em[data-emoji="socks"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9e6.svg");
-}
-
-em[data-emoji=":gloves:"]:before,
-em[data-emoji="gloves"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9e4.svg");
-}
-
-em[data-emoji=":scarf:"]:before,
-em[data-emoji="scarf"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9e3.svg");
-}
-
-em[data-emoji=":tophat:"]:before,
-em[data-emoji="tophat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3a9.svg");
-}
-
-em[data-emoji=":billed_cap:"]:before,
-em[data-emoji="billed_cap"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9e2.svg");
-}
-
-em[data-emoji=":womans_hat:"]:before,
-em[data-emoji="womans_hat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f452.svg");
-}
-
-em[data-emoji=":mortar_board:"]:before,
-em[data-emoji="mortar_board"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f393.svg");
-}
-
-em[data-emoji=":helmet_with_cross:"]:before,
-em[data-emoji="helmet_with_cross"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26d1.svg");
-}
-
-em[data-emoji=":crown:"]:before,
-em[data-emoji="crown"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f451.svg");
-}
-
-em[data-emoji=":ring:"]:before,
-em[data-emoji="ring"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f48d.svg");
-}
-
-em[data-emoji=":pouch:"]:before,
-em[data-emoji="pouch"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f45d.svg");
-}
-
-em[data-emoji=":purse:"]:before,
-em[data-emoji="purse"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f45b.svg");
-}
-
-em[data-emoji=":handbag:"]:before,
-em[data-emoji="handbag"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f45c.svg");
-}
-
-em[data-emoji=":briefcase:"]:before,
-em[data-emoji="briefcase"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4bc.svg");
-}
-
-em[data-emoji=":school_satchel:"]:before,
-em[data-emoji="school_satchel"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f392.svg");
-}
-
-em[data-emoji=":luggage:"]:before,
-em[data-emoji="luggage"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9f3.svg");
-}
-
-em[data-emoji=":eyeglasses:"]:before,
-em[data-emoji="eyeglasses"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f453.svg");
-}
-
-em[data-emoji=":dark_sunglasses:"]:before,
-em[data-emoji="dark_sunglasses"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f576.svg");
-}
-
-em[data-emoji=":goggles:"]:before,
-em[data-emoji="goggles"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f97d.svg");
-}
-
-em[data-emoji=":diving_mask:"]:before,
-em[data-emoji="diving_mask"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f93f.svg");
-}
-
-em[data-emoji=":closed_umbrella:"]:before,
-em[data-emoji="closed_umbrella"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f302.svg");
-}
-
-em[data-emoji=":curly_haired:"]:before,
-em[data-emoji="curly_haired"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b1.svg");
-}
-
-em[data-emoji=":red_haired:"]:before,
-em[data-emoji="red_haired"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b0.svg");
-}
-
-em[data-emoji=":white_haired:"]:before,
-em[data-emoji="white_haired"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b3.svg");
-}
-
-em[data-emoji=":bald:"]:before,
-em[data-emoji="bald"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9b2.svg");
-}
-
-em[data-emoji=":red_car:"]:before,
-em[data-emoji="red_car"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f697.svg");
-}
-
-em[data-emoji=":taxi:"]:before,
-em[data-emoji="taxi"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f695.svg");
-}
-
-em[data-emoji=":blue_car:"]:before,
-em[data-emoji="blue_car"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f699.svg");
-}
-
-em[data-emoji=":bus:"]:before,
-em[data-emoji="bus"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f68c.svg");
-}
-
-em[data-emoji=":trolleybus:"]:before,
-em[data-emoji="trolleybus"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f68e.svg");
-}
-
-em[data-emoji=":race_car:"]:before,
-em[data-emoji="race_car"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ce.svg");
-}
-
-em[data-emoji=":police_car:"]:before,
-em[data-emoji="police_car"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f693.svg");
-}
-
-em[data-emoji=":ambulance:"]:before,
-em[data-emoji="ambulance"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f691.svg");
-}
-
-em[data-emoji=":fire_engine:"]:before,
-em[data-emoji="fire_engine"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f692.svg");
-}
-
-em[data-emoji=":minibus:"]:before,
-em[data-emoji="minibus"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f690.svg");
-}
-
-em[data-emoji=":truck:"]:before,
-em[data-emoji="truck"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f69a.svg");
-}
-
-em[data-emoji=":articulated_lorry:"]:before,
-em[data-emoji="articulated_lorry"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f69b.svg");
-}
-
-em[data-emoji=":tractor:"]:before,
-em[data-emoji="tractor"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f69c.svg");
-}
-
-em[data-emoji=":auto_rickshaw:"]:before,
-em[data-emoji="auto_rickshaw"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6fa.svg");
-}
-
-em[data-emoji=":motor_scooter:"]:before,
-em[data-emoji="motor_scooter"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6f5.svg");
-}
-
-em[data-emoji=":motorcycle:"]:before,
-em[data-emoji="motorcycle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3cd.svg");
-}
-
-em[data-emoji=":scooter:"]:before,
-em[data-emoji="scooter"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6f4.svg");
-}
-
-em[data-emoji=":bike:"]:before,
-em[data-emoji="bike"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6b2.svg");
-}
-
-em[data-emoji=":motorized_wheelchair:"]:before,
-em[data-emoji="motorized_wheelchair"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9bc.svg");
-}
-
-em[data-emoji=":manual_wheelchair:"]:before,
-em[data-emoji="manual_wheelchair"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f9bd.svg");
-}
-
-em[data-emoji=":rotating_light:"]:before,
-em[data-emoji="rotating_light"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a8.svg");
-}
-
-em[data-emoji=":oncoming_police_car:"]:before,
-em[data-emoji="oncoming_police_car"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f694.svg");
-}
-
-em[data-emoji=":oncoming_bus:"]:before,
-em[data-emoji="oncoming_bus"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f68d.svg");
-}
-
-em[data-emoji=":oncoming_automobile:"]:before,
-em[data-emoji="oncoming_automobile"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f698.svg");
-}
-
-em[data-emoji=":oncoming_taxi:"]:before,
-em[data-emoji="oncoming_taxi"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f696.svg");
-}
-
-em[data-emoji=":aerial_tramway:"]:before,
-em[data-emoji="aerial_tramway"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a1.svg");
-}
-
-em[data-emoji=":mountain_cableway:"]:before,
-em[data-emoji="mountain_cableway"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a0.svg");
-}
-
-em[data-emoji=":suspension_railway:"]:before,
-em[data-emoji="suspension_railway"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f69f.svg");
-}
-
-em[data-emoji=":railway_car:"]:before,
-em[data-emoji="railway_car"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f683.svg");
-}
-
-em[data-emoji=":train:"]:before,
-em[data-emoji="train"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f68b.svg");
-}
-
-em[data-emoji=":mountain_railway:"]:before,
-em[data-emoji="mountain_railway"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f69e.svg");
-}
-
-em[data-emoji=":monorail:"]:before,
-em[data-emoji="monorail"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f69d.svg");
-}
-
-em[data-emoji=":bullettrain_side:"]:before,
-em[data-emoji="bullettrain_side"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f684.svg");
-}
-
-em[data-emoji=":bullettrain_front:"]:before,
-em[data-emoji="bullettrain_front"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f685.svg");
-}
-
-em[data-emoji=":light_rail:"]:before,
-em[data-emoji="light_rail"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f688.svg");
-}
-
-em[data-emoji=":steam_locomotive:"]:before,
-em[data-emoji="steam_locomotive"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f682.svg");
-}
-
-em[data-emoji=":train2:"]:before,
-em[data-emoji="train2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f686.svg");
-}
-
-em[data-emoji=":metro:"]:before,
-em[data-emoji="metro"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f687.svg");
-}
-
-em[data-emoji=":tram:"]:before,
-em[data-emoji="tram"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f68a.svg");
-}
-
-em[data-emoji=":station:"]:before,
-em[data-emoji="station"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f689.svg");
-}
-
-em[data-emoji=":airplane_departure:"]:before,
-em[data-emoji="airplane_departure"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6eb.svg");
-}
-
-em[data-emoji=":airplane_arriving:"]:before,
-em[data-emoji="airplane_arriving"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6ec.svg");
-}
-
-em[data-emoji=":airplane_small:"]:before,
-em[data-emoji="airplane_small"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6e9.svg");
-}
-
-em[data-emoji=":seat:"]:before,
-em[data-emoji="seat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f4ba.svg");
-}
-
-em[data-emoji=":satellite_orbital:"]:before,
-em[data-emoji="satellite_orbital"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6f0.svg");
-}
-
-em[data-emoji=":rocket:"]:before,
-em[data-emoji="rocket"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f680.svg");
-}
-
-em[data-emoji=":flying_saucer:"]:before,
-em[data-emoji="flying_saucer"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6f8.svg");
-}
-
-em[data-emoji=":helicopter:"]:before,
-em[data-emoji="helicopter"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f681.svg");
-}
-
-em[data-emoji=":canoe:"]:before,
-em[data-emoji="canoe"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6f6.svg");
-}
-
-em[data-emoji=":sailboat:"]:before,
-em[data-emoji="sailboat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f5.svg");
-}
-
-em[data-emoji=":speedboat:"]:before,
-em[data-emoji="speedboat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a4.svg");
-}
-
-em[data-emoji=":motorboat:"]:before,
-em[data-emoji="motorboat"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6e5.svg");
-}
-
-em[data-emoji=":cruise_ship:"]:before,
-em[data-emoji="cruise_ship"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6f3.svg");
-}
-
-em[data-emoji=":ferry:"]:before,
-em[data-emoji="ferry"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f4.svg");
-}
-
-em[data-emoji=":ship:"]:before,
-em[data-emoji="ship"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a2.svg");
-}
-
-em[data-emoji=":fuelpump:"]:before,
-em[data-emoji="fuelpump"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26fd.svg");
-}
-
-em[data-emoji=":construction:"]:before,
-em[data-emoji="construction"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a7.svg");
-}
-
-em[data-emoji=":vertical_traffic_light:"]:before,
-em[data-emoji="vertical_traffic_light"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a6.svg");
-}
-
-em[data-emoji=":traffic_light:"]:before,
-em[data-emoji="traffic_light"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a5.svg");
-}
-
-em[data-emoji=":busstop:"]:before,
-em[data-emoji="busstop"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f68f.svg");
-}
-
-em[data-emoji=":map:"]:before,
-em[data-emoji="map"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5fa.svg");
-}
-
-em[data-emoji=":moyai:"]:before,
-em[data-emoji="moyai"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5ff.svg");
-}
-
-em[data-emoji=":statue_of_liberty:"]:before,
-em[data-emoji="statue_of_liberty"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5fd.svg");
-}
-
-em[data-emoji=":tokyo_tower:"]:before,
-em[data-emoji="tokyo_tower"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5fc.svg");
-}
-
-em[data-emoji=":european_castle:"]:before,
-em[data-emoji="european_castle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3f0.svg");
-}
-
-em[data-emoji=":japanese_castle:"]:before,
-em[data-emoji="japanese_castle"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ef.svg");
-}
-
-em[data-emoji=":stadium:"]:before,
-em[data-emoji="stadium"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3df.svg");
-}
-
-em[data-emoji=":ferris_wheel:"]:before,
-em[data-emoji="ferris_wheel"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3a1.svg");
-}
-
-em[data-emoji=":roller_coaster:"]:before,
-em[data-emoji="roller_coaster"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3a2.svg");
-}
-
-em[data-emoji=":carousel_horse:"]:before,
-em[data-emoji="carousel_horse"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3a0.svg");
-}
-
-em[data-emoji=":fountain:"]:before,
-em[data-emoji="fountain"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f2.svg");
-}
-
-em[data-emoji=":beach_umbrella:"]:before,
-em[data-emoji="beach_umbrella"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f1.svg");
-}
-
-em[data-emoji=":beach:"]:before,
-em[data-emoji="beach"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3d6.svg");
-}
-
-em[data-emoji=":island:"]:before,
-em[data-emoji="island"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3dd.svg");
-}
-
-em[data-emoji=":desert:"]:before,
-em[data-emoji="desert"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3dc.svg");
-}
-
-em[data-emoji=":volcano:"]:before,
-em[data-emoji="volcano"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f30b.svg");
-}
-
-em[data-emoji=":mountain:"]:before,
-em[data-emoji="mountain"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26f0.svg");
-}
-
-em[data-emoji=":mountain_snow:"]:before,
-em[data-emoji="mountain_snow"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3d4.svg");
-}
-
-em[data-emoji=":mount_fuji:"]:before,
-em[data-emoji="mount_fuji"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5fb.svg");
-}
-
-em[data-emoji=":camping:"]:before,
-em[data-emoji="camping"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3d5.svg");
-}
-
-em[data-emoji=":tent:"]:before,
-em[data-emoji="tent"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26fa.svg");
-}
-
-em[data-emoji=":house:"]:before,
-em[data-emoji="house"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3e0.svg");
-}
-
-em[data-emoji=":house_with_garden:"]:before,
-em[data-emoji="house_with_garden"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3e1.svg");
-}
-
-em[data-emoji=":homes:"]:before,
-em[data-emoji="homes"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3d8.svg");
-}
-
-em[data-emoji=":house_abandoned:"]:before,
-em[data-emoji="house_abandoned"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3da.svg");
-}
-
-em[data-emoji=":construction_site:"]:before,
-em[data-emoji="construction_site"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3d7.svg");
-}
-
-em[data-emoji=":factory:"]:before,
-em[data-emoji="factory"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ed.svg");
-}
-
-em[data-emoji=":office:"]:before,
-em[data-emoji="office"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3e2.svg");
-}
-
-em[data-emoji=":department_store:"]:before,
-em[data-emoji="department_store"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ec.svg");
-}
-
-em[data-emoji=":post_office:"]:before,
-em[data-emoji="post_office"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3e3.svg");
-}
-
-em[data-emoji=":european_post_office:"]:before,
-em[data-emoji="european_post_office"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3e4.svg");
-}
-
-em[data-emoji=":hospital:"]:before,
-em[data-emoji="hospital"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3e5.svg");
-}
-
-em[data-emoji=":bank:"]:before,
-em[data-emoji="bank"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3e6.svg");
-}
-
-em[data-emoji=":hotel:"]:before,
-em[data-emoji="hotel"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3e8.svg");
-}
-
-em[data-emoji=":convenience_store:"]:before,
-em[data-emoji="convenience_store"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ea.svg");
-}
-
-em[data-emoji=":school:"]:before,
-em[data-emoji="school"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3eb.svg");
-}
-
-em[data-emoji=":love_hotel:"]:before,
-em[data-emoji="love_hotel"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3e9.svg");
-}
-
-em[data-emoji=":wedding:"]:before,
-em[data-emoji="wedding"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f492.svg");
-}
-
-em[data-emoji=":classical_building:"]:before,
-em[data-emoji="classical_building"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3db.svg");
-}
-
-em[data-emoji=":church:"]:before,
-em[data-emoji="church"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26ea.svg");
-}
-
-em[data-emoji=":mosque:"]:before,
-em[data-emoji="mosque"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f54c.svg");
-}
-
-em[data-emoji=":hindu_temple:"]:before,
-em[data-emoji="hindu_temple"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6d5.svg");
-}
-
-em[data-emoji=":synagogue:"]:before,
-em[data-emoji="synagogue"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f54d.svg");
-}
-
-em[data-emoji=":kaaba:"]:before,
-em[data-emoji="kaaba"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f54b.svg");
-}
-
-em[data-emoji=":shinto_shrine:"]:before,
-em[data-emoji="shinto_shrine"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/26e9.svg");
-}
-
-em[data-emoji=":railway_track:"]:before,
-em[data-emoji="railway_track"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6e4.svg");
-}
-
-em[data-emoji=":motorway:"]:before,
-em[data-emoji="motorway"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6e3.svg");
-}
-
-em[data-emoji=":japan:"]:before,
-em[data-emoji="japan"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f5fe.svg");
-}
-
-em[data-emoji=":rice_scene:"]:before,
-em[data-emoji="rice_scene"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f391.svg");
-}
-
-em[data-emoji=":park:"]:before,
-em[data-emoji="park"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3de.svg");
-}
-
-em[data-emoji=":sunrise:"]:before,
-em[data-emoji="sunrise"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f305.svg");
-}
-
-em[data-emoji=":sunrise_over_mountains:"]:before,
-em[data-emoji="sunrise_over_mountains"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f304.svg");
-}
-
-em[data-emoji=":stars:"]:before,
-em[data-emoji="stars"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f320.svg");
-}
-
-em[data-emoji=":sparkler:"]:before,
-em[data-emoji="sparkler"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f387.svg");
-}
-
-em[data-emoji=":fireworks:"]:before,
-em[data-emoji="fireworks"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f386.svg");
-}
-
-em[data-emoji=":city_sunset:"]:before,
-em[data-emoji="city_sunset"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f307.svg");
-}
-
-em[data-emoji=":city_dusk:"]:before,
-em[data-emoji="city_dusk"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f306.svg");
-}
-
-em[data-emoji=":cityscape:"]:before,
-em[data-emoji="cityscape"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3d9.svg");
-}
-
-em[data-emoji=":night_with_stars:"]:before,
-em[data-emoji="night_with_stars"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f303.svg");
-}
-
-em[data-emoji=":milky_way:"]:before,
-em[data-emoji="milky_way"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f30c.svg");
-}
-
-em[data-emoji=":bridge_at_night:"]:before,
-em[data-emoji="bridge_at_night"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f309.svg");
-}
-
-em[data-emoji=":foggy:"]:before,
-em[data-emoji="foggy"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f301.svg");
-}
-
-em[data-emoji=":regional_indicator_z:"]:before,
-em[data-emoji="regional_indicator_z"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ff.svg");
-}
-
-em[data-emoji=":regional_indicator_y:"]:before,
-em[data-emoji="regional_indicator_y"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1fe.svg");
-}
-
-em[data-emoji=":regional_indicator_x:"]:before,
-em[data-emoji="regional_indicator_x"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1fd.svg");
-}
-
-em[data-emoji=":regional_indicator_w:"]:before,
-em[data-emoji="regional_indicator_w"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1fc.svg");
-}
-
-em[data-emoji=":regional_indicator_v:"]:before,
-em[data-emoji="regional_indicator_v"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1fb.svg");
-}
-
-em[data-emoji=":regional_indicator_u:"]:before,
-em[data-emoji="regional_indicator_u"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1fa.svg");
-}
-
-em[data-emoji=":regional_indicator_t:"]:before,
-em[data-emoji="regional_indicator_t"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f9.svg");
-}
-
-em[data-emoji=":regional_indicator_s:"]:before,
-em[data-emoji="regional_indicator_s"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f8.svg");
-}
-
-em[data-emoji=":regional_indicator_r:"]:before,
-em[data-emoji="regional_indicator_r"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f7.svg");
-}
-
-em[data-emoji=":regional_indicator_q:"]:before,
-em[data-emoji="regional_indicator_q"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f6.svg");
-}
-
-em[data-emoji=":regional_indicator_p:"]:before,
-em[data-emoji="regional_indicator_p"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f5.svg");
-}
-
-em[data-emoji=":regional_indicator_o:"]:before,
-em[data-emoji="regional_indicator_o"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f4.svg");
-}
-
-em[data-emoji=":regional_indicator_n:"]:before,
-em[data-emoji="regional_indicator_n"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f3.svg");
-}
-
-em[data-emoji=":regional_indicator_m:"]:before,
-em[data-emoji="regional_indicator_m"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f2.svg");
-}
-
-em[data-emoji=":regional_indicator_l:"]:before,
-em[data-emoji="regional_indicator_l"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f1.svg");
-}
-
-em[data-emoji=":regional_indicator_k:"]:before,
-em[data-emoji="regional_indicator_k"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f0.svg");
-}
-
-em[data-emoji=":regional_indicator_j:"]:before,
-em[data-emoji="regional_indicator_j"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ef.svg");
-}
-
-em[data-emoji=":regional_indicator_i:"]:before,
-em[data-emoji="regional_indicator_i"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ee.svg");
-}
-
-em[data-emoji=":regional_indicator_h:"]:before,
-em[data-emoji="regional_indicator_h"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ed.svg");
-}
-
-em[data-emoji=":regional_indicator_g:"]:before,
-em[data-emoji="regional_indicator_g"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ec.svg");
-}
-
-em[data-emoji=":regional_indicator_f:"]:before,
-em[data-emoji="regional_indicator_f"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1eb.svg");
-}
-
-em[data-emoji=":regional_indicator_e:"]:before,
-em[data-emoji="regional_indicator_e"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ea.svg");
-}
-
-em[data-emoji=":regional_indicator_d:"]:before,
-em[data-emoji="regional_indicator_d"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e9.svg");
-}
-
-em[data-emoji=":regional_indicator_c:"]:before,
-em[data-emoji="regional_indicator_c"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e8.svg");
-}
-
-em[data-emoji=":regional_indicator_b:"]:before,
-em[data-emoji="regional_indicator_b"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e7.svg");
-}
-
-em[data-emoji=":regional_indicator_a:"]:before,
-em[data-emoji="regional_indicator_a"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e6.svg");
-}
-
-em[data-emoji=":flag_white:"]:before,
-em[data-emoji="flag_white"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3f3.svg");
-}
-
-em[data-emoji=":flag_black:"]:before,
-em[data-emoji="flag_black"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3f4.svg");
-}
-
-em[data-emoji=":checkered_flag:"]:before,
-em[data-emoji="checkered_flag"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3c1.svg");
-}
-
-em[data-emoji=":triangular_flag_on_post:"]:before,
-em[data-emoji="triangular_flag_on_post"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f6a9.svg");
-}
-
-em[data-emoji=":rainbow_flag:"]:before,
-em[data-emoji="rainbow_flag"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3f3-fe0f-200d-1f308.svg");
-}
-
-em[data-emoji=":pirate_flag:"]:before,
-em[data-emoji="pirate_flag"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3f4-200d-2620-fe0f.svg");
-}
-
-em[data-emoji=":flag_af:"]:before,
-em[data-emoji="flag_af"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e6-1f1eb.svg");
-}
-
-em[data-emoji=":flag_ax:"]:before,
-em[data-emoji="flag_ax"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e6-1f1fd.svg");
-}
-
-em[data-emoji=":flag_al:"]:before,
-em[data-emoji="flag_al"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e6-1f1f1.svg");
-}
-
-em[data-emoji=":flag_dz:"]:before,
-em[data-emoji="flag_dz"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e9-1f1ff.svg");
-}
-
-em[data-emoji=":flag_as:"]:before,
-em[data-emoji="flag_as"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e6-1f1f8.svg");
-}
-
-em[data-emoji=":flag_ad:"]:before,
-em[data-emoji="flag_ad"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e6-1f1e9.svg");
-}
-
-em[data-emoji=":flag_ao:"]:before,
-em[data-emoji="flag_ao"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e6-1f1f4.svg");
-}
-
-em[data-emoji=":flag_ai:"]:before,
-em[data-emoji="flag_ai"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e6-1f1ee.svg");
-}
-
-em[data-emoji=":flag_aq:"]:before,
-em[data-emoji="flag_aq"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e6-1f1f6.svg");
-}
-
-em[data-emoji=":flag_ag:"]:before,
-em[data-emoji="flag_ag"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e6-1f1ec.svg");
-}
-
-em[data-emoji=":flag_ar:"]:before,
-em[data-emoji="flag_ar"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e6-1f1f7.svg");
-}
-
-em[data-emoji=":flag_am:"]:before,
-em[data-emoji="flag_am"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e6-1f1f2.svg");
-}
-
-em[data-emoji=":flag_aw:"]:before,
-em[data-emoji="flag_aw"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e6-1f1fc.svg");
-}
-
-em[data-emoji=":flag_au:"]:before,
-em[data-emoji="flag_au"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e6-1f1fa.svg");
-}
-
-em[data-emoji=":flag_at:"]:before,
-em[data-emoji="flag_at"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e6-1f1f9.svg");
-}
-
-em[data-emoji=":flag_az:"]:before,
-em[data-emoji="flag_az"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e6-1f1ff.svg");
-}
-
-em[data-emoji=":flag_bs:"]:before,
-em[data-emoji="flag_bs"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e7-1f1f8.svg");
-}
-
-em[data-emoji=":flag_bh:"]:before,
-em[data-emoji="flag_bh"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e7-1f1ed.svg");
-}
-
-em[data-emoji=":flag_bd:"]:before,
-em[data-emoji="flag_bd"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e7-1f1e9.svg");
-}
-
-em[data-emoji=":flag_bb:"]:before,
-em[data-emoji="flag_bb"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e7-1f1e7.svg");
-}
-
-em[data-emoji=":flag_by:"]:before,
-em[data-emoji="flag_by"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e7-1f1fe.svg");
-}
-
-em[data-emoji=":flag_be:"]:before,
-em[data-emoji="flag_be"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e7-1f1ea.svg");
-}
-
-em[data-emoji=":flag_bz:"]:before,
-em[data-emoji="flag_bz"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e7-1f1ff.svg");
-}
-
-em[data-emoji=":flag_bj:"]:before,
-em[data-emoji="flag_bj"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e7-1f1ef.svg");
-}
-
-em[data-emoji=":flag_bm:"]:before,
-em[data-emoji="flag_bm"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e7-1f1f2.svg");
-}
-
-em[data-emoji=":flag_bt:"]:before,
-em[data-emoji="flag_bt"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e7-1f1f9.svg");
-}
-
-em[data-emoji=":flag_bo:"]:before,
-em[data-emoji="flag_bo"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e7-1f1f4.svg");
-}
-
-em[data-emoji=":flag_ba:"]:before,
-em[data-emoji="flag_ba"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e7-1f1e6.svg");
-}
-
-em[data-emoji=":flag_bw:"]:before,
-em[data-emoji="flag_bw"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e7-1f1fc.svg");
-}
-
-em[data-emoji=":flag_br:"]:before,
-em[data-emoji="flag_br"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e7-1f1f7.svg");
-}
-
-em[data-emoji=":flag_io:"]:before,
-em[data-emoji="flag_io"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ee-1f1f4.svg");
-}
-
-em[data-emoji=":flag_vg:"]:before,
-em[data-emoji="flag_vg"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1fb-1f1ec.svg");
-}
-
-em[data-emoji=":flag_bn:"]:before,
-em[data-emoji="flag_bn"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e7-1f1f3.svg");
-}
-
-em[data-emoji=":flag_bg:"]:before,
-em[data-emoji="flag_bg"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e7-1f1ec.svg");
-}
-
-em[data-emoji=":flag_bf:"]:before,
-em[data-emoji="flag_bf"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e7-1f1eb.svg");
-}
-
-em[data-emoji=":flag_bi:"]:before,
-em[data-emoji="flag_bi"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e7-1f1ee.svg");
-}
-
-em[data-emoji=":flag_kh:"]:before,
-em[data-emoji="flag_kh"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f0-1f1ed.svg");
-}
-
-em[data-emoji=":flag_cm:"]:before,
-em[data-emoji="flag_cm"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e8-1f1f2.svg");
-}
-
-em[data-emoji=":flag_ca:"]:before,
-em[data-emoji="flag_ca"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e8-1f1e6.svg");
-}
-
-em[data-emoji=":flag_ic:"]:before,
-em[data-emoji="flag_ic"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ee-1f1e8.svg");
-}
-
-em[data-emoji=":flag_cv:"]:before,
-em[data-emoji="flag_cv"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e8-1f1fb.svg");
-}
-
-em[data-emoji=":flag_bq:"]:before,
-em[data-emoji="flag_bq"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e7-1f1f6.svg");
-}
-
-em[data-emoji=":flag_ky:"]:before,
-em[data-emoji="flag_ky"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f0-1f1fe.svg");
-}
-
-em[data-emoji=":flag_cf:"]:before,
-em[data-emoji="flag_cf"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e8-1f1eb.svg");
-}
-
-em[data-emoji=":flag_td:"]:before,
-em[data-emoji="flag_td"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f9-1f1e9.svg");
-}
-
-em[data-emoji=":flag_cl:"]:before,
-em[data-emoji="flag_cl"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e8-1f1f1.svg");
-}
-
-em[data-emoji=":flag_cn:"]:before,
-em[data-emoji="flag_cn"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e8-1f1f3.svg");
-}
-
-em[data-emoji=":flag_cx:"]:before,
-em[data-emoji="flag_cx"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e8-1f1fd.svg");
-}
-
-em[data-emoji=":flag_cc:"]:before,
-em[data-emoji="flag_cc"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e8-1f1e8.svg");
-}
-
-em[data-emoji=":flag_co:"]:before,
-em[data-emoji="flag_co"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e8-1f1f4.svg");
-}
-
-em[data-emoji=":flag_km:"]:before,
-em[data-emoji="flag_km"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f0-1f1f2.svg");
-}
-
-em[data-emoji=":flag_cg:"]:before,
-em[data-emoji="flag_cg"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e8-1f1ec.svg");
-}
-
-em[data-emoji=":flag_cd:"]:before,
-em[data-emoji="flag_cd"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e8-1f1e9.svg");
-}
-
-em[data-emoji=":flag_ck:"]:before,
-em[data-emoji="flag_ck"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e8-1f1f0.svg");
-}
-
-em[data-emoji=":flag_cr:"]:before,
-em[data-emoji="flag_cr"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e8-1f1f7.svg");
-}
-
-em[data-emoji=":flag_ci:"]:before,
-em[data-emoji="flag_ci"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e8-1f1ee.svg");
-}
-
-em[data-emoji=":flag_hr:"]:before,
-em[data-emoji="flag_hr"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ed-1f1f7.svg");
-}
-
-em[data-emoji=":flag_cu:"]:before,
-em[data-emoji="flag_cu"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e8-1f1fa.svg");
-}
-
-em[data-emoji=":flag_cw:"]:before,
-em[data-emoji="flag_cw"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e8-1f1fc.svg");
-}
-
-em[data-emoji=":flag_cy:"]:before,
-em[data-emoji="flag_cy"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e8-1f1fe.svg");
-}
-
-em[data-emoji=":flag_cz:"]:before,
-em[data-emoji="flag_cz"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e8-1f1ff.svg");
-}
-
-em[data-emoji=":flag_dk:"]:before,
-em[data-emoji="flag_dk"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e9-1f1f0.svg");
-}
-
-em[data-emoji=":flag_dj:"]:before,
-em[data-emoji="flag_dj"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e9-1f1ef.svg");
-}
-
-em[data-emoji=":flag_dm:"]:before,
-em[data-emoji="flag_dm"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e9-1f1f2.svg");
-}
-
-em[data-emoji=":flag_do:"]:before,
-em[data-emoji="flag_do"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e9-1f1f4.svg");
-}
-
-em[data-emoji=":flag_ec:"]:before,
-em[data-emoji="flag_ec"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ea-1f1e8.svg");
-}
-
-em[data-emoji=":flag_eg:"]:before,
-em[data-emoji="flag_eg"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ea-1f1ec.svg");
-}
-
-em[data-emoji=":flag_sv:"]:before,
-em[data-emoji="flag_sv"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f8-1f1fb.svg");
-}
-
-em[data-emoji=":flag_gq:"]:before,
-em[data-emoji="flag_gq"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ec-1f1f6.svg");
-}
-
-em[data-emoji=":flag_er:"]:before,
-em[data-emoji="flag_er"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ea-1f1f7.svg");
-}
-
-em[data-emoji=":flag_ee:"]:before,
-em[data-emoji="flag_ee"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ea-1f1ea.svg");
-}
-
-em[data-emoji=":flag_et:"]:before,
-em[data-emoji="flag_et"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ea-1f1f9.svg");
-}
-
-em[data-emoji=":flag_eu:"]:before,
-em[data-emoji="flag_eu"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ea-1f1fa.svg");
-}
-
-em[data-emoji=":flag_fk:"]:before,
-em[data-emoji="flag_fk"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1eb-1f1f0.svg");
-}
-
-em[data-emoji=":flag_fo:"]:before,
-em[data-emoji="flag_fo"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1eb-1f1f4.svg");
-}
-
-em[data-emoji=":flag_fj:"]:before,
-em[data-emoji="flag_fj"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1eb-1f1ef.svg");
-}
-
-em[data-emoji=":flag_fi:"]:before,
-em[data-emoji="flag_fi"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1eb-1f1ee.svg");
-}
-
-em[data-emoji=":flag_fr:"]:before,
-em[data-emoji="flag_fr"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1eb-1f1f7.svg");
-}
-
-em[data-emoji=":flag_gf:"]:before,
-em[data-emoji="flag_gf"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ec-1f1eb.svg");
-}
-
-em[data-emoji=":flag_pf:"]:before,
-em[data-emoji="flag_pf"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f5-1f1eb.svg");
-}
-
-em[data-emoji=":flag_tf:"]:before,
-em[data-emoji="flag_tf"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f9-1f1eb.svg");
-}
-
-em[data-emoji=":flag_ga:"]:before,
-em[data-emoji="flag_ga"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ec-1f1e6.svg");
-}
-
-em[data-emoji=":flag_gm:"]:before,
-em[data-emoji="flag_gm"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ec-1f1f2.svg");
-}
-
-em[data-emoji=":flag_ge:"]:before,
-em[data-emoji="flag_ge"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ec-1f1ea.svg");
-}
-
-em[data-emoji=":flag_de:"]:before,
-em[data-emoji="flag_de"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e9-1f1ea.svg");
-}
-
-em[data-emoji=":flag_gh:"]:before,
-em[data-emoji="flag_gh"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ec-1f1ed.svg");
-}
-
-em[data-emoji=":flag_gi:"]:before,
-em[data-emoji="flag_gi"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ec-1f1ee.svg");
-}
-
-em[data-emoji=":flag_gr:"]:before,
-em[data-emoji="flag_gr"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ec-1f1f7.svg");
-}
-
-em[data-emoji=":flag_gl:"]:before,
-em[data-emoji="flag_gl"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ec-1f1f1.svg");
-}
-
-em[data-emoji=":flag_gd:"]:before,
-em[data-emoji="flag_gd"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ec-1f1e9.svg");
-}
-
-em[data-emoji=":flag_gp:"]:before,
-em[data-emoji="flag_gp"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ec-1f1f5.svg");
-}
-
-em[data-emoji=":flag_gu:"]:before,
-em[data-emoji="flag_gu"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ec-1f1fa.svg");
-}
-
-em[data-emoji=":flag_gt:"]:before,
-em[data-emoji="flag_gt"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ec-1f1f9.svg");
-}
-
-em[data-emoji=":flag_gg:"]:before,
-em[data-emoji="flag_gg"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ec-1f1ec.svg");
-}
-
-em[data-emoji=":flag_gn:"]:before,
-em[data-emoji="flag_gn"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ec-1f1f3.svg");
-}
-
-em[data-emoji=":flag_gw:"]:before,
-em[data-emoji="flag_gw"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ec-1f1fc.svg");
-}
-
-em[data-emoji=":flag_gy:"]:before,
-em[data-emoji="flag_gy"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ec-1f1fe.svg");
-}
-
-em[data-emoji=":flag_ht:"]:before,
-em[data-emoji="flag_ht"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ed-1f1f9.svg");
-}
-
-em[data-emoji=":flag_hn:"]:before,
-em[data-emoji="flag_hn"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ed-1f1f3.svg");
-}
-
-em[data-emoji=":flag_hk:"]:before,
-em[data-emoji="flag_hk"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ed-1f1f0.svg");
-}
-
-em[data-emoji=":flag_hu:"]:before,
-em[data-emoji="flag_hu"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ed-1f1fa.svg");
-}
-
-em[data-emoji=":flag_is:"]:before,
-em[data-emoji="flag_is"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ee-1f1f8.svg");
-}
-
-em[data-emoji=":flag_in:"]:before,
-em[data-emoji="flag_in"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ee-1f1f3.svg");
-}
-
-em[data-emoji=":flag_id:"]:before,
-em[data-emoji="flag_id"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ee-1f1e9.svg");
-}
-
-em[data-emoji=":flag_ir:"]:before,
-em[data-emoji="flag_ir"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ee-1f1f7.svg");
-}
-
-em[data-emoji=":flag_iq:"]:before,
-em[data-emoji="flag_iq"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ee-1f1f6.svg");
-}
-
-em[data-emoji=":flag_ie:"]:before,
-em[data-emoji="flag_ie"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ee-1f1ea.svg");
-}
-
-em[data-emoji=":flag_im:"]:before,
-em[data-emoji="flag_im"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ee-1f1f2.svg");
-}
-
-em[data-emoji=":flag_il:"]:before,
-em[data-emoji="flag_il"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ee-1f1f1.svg");
-}
-
-em[data-emoji=":flag_it:"]:before,
-em[data-emoji="flag_it"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ee-1f1f9.svg");
-}
-
-em[data-emoji=":flag_jm:"]:before,
-em[data-emoji="flag_jm"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ef-1f1f2.svg");
-}
-
-em[data-emoji=":flag_jp:"]:before,
-em[data-emoji="flag_jp"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ef-1f1f5.svg");
-}
-
-em[data-emoji=":crossed_flags:"]:before,
-em[data-emoji="crossed_flags"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f38c.svg");
-}
-
-em[data-emoji=":flag_je:"]:before,
-em[data-emoji="flag_je"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ef-1f1ea.svg");
-}
-
-em[data-emoji=":flag_jo:"]:before,
-em[data-emoji="flag_jo"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ef-1f1f4.svg");
-}
-
-em[data-emoji=":flag_kz:"]:before,
-em[data-emoji="flag_kz"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f0-1f1ff.svg");
-}
-
-em[data-emoji=":flag_ke:"]:before,
-em[data-emoji="flag_ke"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f0-1f1ea.svg");
-}
-
-em[data-emoji=":flag_ki:"]:before,
-em[data-emoji="flag_ki"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f0-1f1ee.svg");
-}
-
-em[data-emoji=":flag_xk:"]:before,
-em[data-emoji="flag_xk"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1fd-1f1f0.svg");
-}
-
-em[data-emoji=":flag_kw:"]:before,
-em[data-emoji="flag_kw"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f0-1f1fc.svg");
-}
-
-em[data-emoji=":flag_kg:"]:before,
-em[data-emoji="flag_kg"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f0-1f1ec.svg");
-}
-
-em[data-emoji=":flag_la:"]:before,
-em[data-emoji="flag_la"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f1-1f1e6.svg");
-}
-
-em[data-emoji=":flag_lv:"]:before,
-em[data-emoji="flag_lv"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f1-1f1fb.svg");
-}
-
-em[data-emoji=":flag_lb:"]:before,
-em[data-emoji="flag_lb"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f1-1f1e7.svg");
-}
-
-em[data-emoji=":flag_ls:"]:before,
-em[data-emoji="flag_ls"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f1-1f1f8.svg");
-}
-
-em[data-emoji=":flag_lr:"]:before,
-em[data-emoji="flag_lr"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f1-1f1f7.svg");
-}
-
-em[data-emoji=":flag_ly:"]:before,
-em[data-emoji="flag_ly"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f1-1f1fe.svg");
-}
-
-em[data-emoji=":flag_li:"]:before,
-em[data-emoji="flag_li"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f1-1f1ee.svg");
-}
-
-em[data-emoji=":flag_lt:"]:before,
-em[data-emoji="flag_lt"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f1-1f1f9.svg");
-}
-
-em[data-emoji=":flag_lu:"]:before,
-em[data-emoji="flag_lu"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f1-1f1fa.svg");
-}
-
-em[data-emoji=":flag_mo:"]:before,
-em[data-emoji="flag_mo"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f2-1f1f4.svg");
-}
-
-em[data-emoji=":flag_mk:"]:before,
-em[data-emoji="flag_mk"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f2-1f1f0.svg");
-}
-
-em[data-emoji=":flag_mg:"]:before,
-em[data-emoji="flag_mg"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f2-1f1ec.svg");
-}
-
-em[data-emoji=":flag_mw:"]:before,
-em[data-emoji="flag_mw"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f2-1f1fc.svg");
-}
-
-em[data-emoji=":flag_my:"]:before,
-em[data-emoji="flag_my"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f2-1f1fe.svg");
-}
-
-em[data-emoji=":flag_mv:"]:before,
-em[data-emoji="flag_mv"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f2-1f1fb.svg");
-}
-
-em[data-emoji=":flag_ml:"]:before,
-em[data-emoji="flag_ml"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f2-1f1f1.svg");
-}
-
-em[data-emoji=":flag_mt:"]:before,
-em[data-emoji="flag_mt"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f2-1f1f9.svg");
-}
-
-em[data-emoji=":flag_mh:"]:before,
-em[data-emoji="flag_mh"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f2-1f1ed.svg");
-}
-
-em[data-emoji=":flag_mq:"]:before,
-em[data-emoji="flag_mq"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f2-1f1f6.svg");
-}
-
-em[data-emoji=":flag_mr:"]:before,
-em[data-emoji="flag_mr"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f2-1f1f7.svg");
-}
-
-em[data-emoji=":flag_mu:"]:before,
-em[data-emoji="flag_mu"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f2-1f1fa.svg");
-}
-
-em[data-emoji=":flag_yt:"]:before,
-em[data-emoji="flag_yt"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1fe-1f1f9.svg");
-}
-
-em[data-emoji=":flag_mx:"]:before,
-em[data-emoji="flag_mx"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f2-1f1fd.svg");
-}
-
-em[data-emoji=":flag_fm:"]:before,
-em[data-emoji="flag_fm"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1eb-1f1f2.svg");
-}
-
-em[data-emoji=":flag_md:"]:before,
-em[data-emoji="flag_md"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f2-1f1e9.svg");
-}
-
-em[data-emoji=":flag_mc:"]:before,
-em[data-emoji="flag_mc"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f2-1f1e8.svg");
-}
-
-em[data-emoji=":flag_mn:"]:before,
-em[data-emoji="flag_mn"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f2-1f1f3.svg");
-}
-
-em[data-emoji=":flag_me:"]:before,
-em[data-emoji="flag_me"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f2-1f1ea.svg");
-}
-
-em[data-emoji=":flag_ms:"]:before,
-em[data-emoji="flag_ms"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f2-1f1f8.svg");
-}
-
-em[data-emoji=":flag_ma:"]:before,
-em[data-emoji="flag_ma"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f2-1f1e6.svg");
-}
-
-em[data-emoji=":flag_mz:"]:before,
-em[data-emoji="flag_mz"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f2-1f1ff.svg");
-}
-
-em[data-emoji=":flag_mm:"]:before,
-em[data-emoji="flag_mm"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f2-1f1f2.svg");
-}
-
-em[data-emoji=":flag_na:"]:before,
-em[data-emoji="flag_na"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f3-1f1e6.svg");
-}
-
-em[data-emoji=":flag_nr:"]:before,
-em[data-emoji="flag_nr"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f3-1f1f7.svg");
-}
-
-em[data-emoji=":flag_np:"]:before,
-em[data-emoji="flag_np"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f3-1f1f5.svg");
-}
-
-em[data-emoji=":flag_nl:"]:before,
-em[data-emoji="flag_nl"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f3-1f1f1.svg");
-}
-
-em[data-emoji=":flag_nc:"]:before,
-em[data-emoji="flag_nc"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f3-1f1e8.svg");
-}
-
-em[data-emoji=":flag_nz:"]:before,
-em[data-emoji="flag_nz"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f3-1f1ff.svg");
-}
-
-em[data-emoji=":flag_ni:"]:before,
-em[data-emoji="flag_ni"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f3-1f1ee.svg");
-}
-
-em[data-emoji=":flag_ne:"]:before,
-em[data-emoji="flag_ne"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f3-1f1ea.svg");
-}
-
-em[data-emoji=":flag_ng:"]:before,
-em[data-emoji="flag_ng"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f3-1f1ec.svg");
-}
-
-em[data-emoji=":flag_nu:"]:before,
-em[data-emoji="flag_nu"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f3-1f1fa.svg");
-}
-
-em[data-emoji=":flag_nf:"]:before,
-em[data-emoji="flag_nf"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f3-1f1eb.svg");
-}
-
-em[data-emoji=":flag_kp:"]:before,
-em[data-emoji="flag_kp"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f0-1f1f5.svg");
-}
-
-em[data-emoji=":flag_mp:"]:before,
-em[data-emoji="flag_mp"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f2-1f1f5.svg");
-}
-
-em[data-emoji=":flag_no:"]:before,
-em[data-emoji="flag_no"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f3-1f1f4.svg");
-}
-
-em[data-emoji=":flag_om:"]:before,
-em[data-emoji="flag_om"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f4-1f1f2.svg");
-}
-
-em[data-emoji=":flag_pk:"]:before,
-em[data-emoji="flag_pk"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f5-1f1f0.svg");
-}
-
-em[data-emoji=":flag_pw:"]:before,
-em[data-emoji="flag_pw"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f5-1f1fc.svg");
-}
-
-em[data-emoji=":flag_ps:"]:before,
-em[data-emoji="flag_ps"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f5-1f1f8.svg");
-}
-
-em[data-emoji=":flag_pa:"]:before,
-em[data-emoji="flag_pa"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f5-1f1e6.svg");
-}
-
-em[data-emoji=":flag_pg:"]:before,
-em[data-emoji="flag_pg"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f5-1f1ec.svg");
-}
-
-em[data-emoji=":flag_py:"]:before,
-em[data-emoji="flag_py"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f5-1f1fe.svg");
-}
-
-em[data-emoji=":flag_pe:"]:before,
-em[data-emoji="flag_pe"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f5-1f1ea.svg");
-}
-
-em[data-emoji=":flag_ph:"]:before,
-em[data-emoji="flag_ph"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f5-1f1ed.svg");
-}
-
-em[data-emoji=":flag_pn:"]:before,
-em[data-emoji="flag_pn"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f5-1f1f3.svg");
-}
-
-em[data-emoji=":flag_pl:"]:before,
-em[data-emoji="flag_pl"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f5-1f1f1.svg");
-}
-
-em[data-emoji=":flag_pt:"]:before,
-em[data-emoji="flag_pt"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f5-1f1f9.svg");
-}
-
-em[data-emoji=":flag_pr:"]:before,
-em[data-emoji="flag_pr"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f5-1f1f7.svg");
-}
-
-em[data-emoji=":flag_qa:"]:before,
-em[data-emoji="flag_qa"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f6-1f1e6.svg");
-}
-
-em[data-emoji=":flag_re:"]:before,
-em[data-emoji="flag_re"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f7-1f1ea.svg");
-}
-
-em[data-emoji=":flag_ro:"]:before,
-em[data-emoji="flag_ro"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f7-1f1f4.svg");
-}
-
-em[data-emoji=":flag_ru:"]:before,
-em[data-emoji="flag_ru"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f7-1f1fa.svg");
-}
-
-em[data-emoji=":flag_rw:"]:before,
-em[data-emoji="flag_rw"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f7-1f1fc.svg");
-}
-
-em[data-emoji=":flag_ws:"]:before,
-em[data-emoji="flag_ws"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1fc-1f1f8.svg");
-}
-
-em[data-emoji=":flag_sm:"]:before,
-em[data-emoji="flag_sm"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f8-1f1f2.svg");
-}
-
-em[data-emoji=":flag_st:"]:before,
-em[data-emoji="flag_st"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f8-1f1f9.svg");
-}
-
-em[data-emoji=":flag_sa:"]:before,
-em[data-emoji="flag_sa"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f8-1f1e6.svg");
-}
-
-em[data-emoji=":flag_sn:"]:before,
-em[data-emoji="flag_sn"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f8-1f1f3.svg");
-}
-
-em[data-emoji=":flag_rs:"]:before,
-em[data-emoji="flag_rs"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f7-1f1f8.svg");
-}
-
-em[data-emoji=":flag_sc:"]:before,
-em[data-emoji="flag_sc"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f8-1f1e8.svg");
-}
-
-em[data-emoji=":flag_sl:"]:before,
-em[data-emoji="flag_sl"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f8-1f1f1.svg");
-}
-
-em[data-emoji=":flag_sg:"]:before,
-em[data-emoji="flag_sg"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f8-1f1ec.svg");
-}
-
-em[data-emoji=":flag_sx:"]:before,
-em[data-emoji="flag_sx"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f8-1f1fd.svg");
-}
-
-em[data-emoji=":flag_sk:"]:before,
-em[data-emoji="flag_sk"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f8-1f1f0.svg");
-}
-
-em[data-emoji=":flag_si:"]:before,
-em[data-emoji="flag_si"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f8-1f1ee.svg");
-}
-
-em[data-emoji=":flag_gs:"]:before,
-em[data-emoji="flag_gs"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ec-1f1f8.svg");
-}
-
-em[data-emoji=":flag_sb:"]:before,
-em[data-emoji="flag_sb"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f8-1f1e7.svg");
-}
-
-em[data-emoji=":flag_so:"]:before,
-em[data-emoji="flag_so"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f8-1f1f4.svg");
-}
-
-em[data-emoji=":flag_za:"]:before,
-em[data-emoji="flag_za"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ff-1f1e6.svg");
-}
-
-em[data-emoji=":flag_kr:"]:before,
-em[data-emoji="flag_kr"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f0-1f1f7.svg");
-}
-
-em[data-emoji=":flag_ss:"]:before,
-em[data-emoji="flag_ss"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f8-1f1f8.svg");
-}
-
-em[data-emoji=":flag_es:"]:before,
-em[data-emoji="flag_es"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ea-1f1f8.svg");
-}
-
-em[data-emoji=":flag_lk:"]:before,
-em[data-emoji="flag_lk"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f1-1f1f0.svg");
-}
-
-em[data-emoji=":flag_bl:"]:before,
-em[data-emoji="flag_bl"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e7-1f1f1.svg");
-}
-
-em[data-emoji=":flag_sh:"]:before,
-em[data-emoji="flag_sh"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f8-1f1ed.svg");
-}
-
-em[data-emoji=":flag_kn:"]:before,
-em[data-emoji="flag_kn"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f0-1f1f3.svg");
-}
-
-em[data-emoji=":flag_lc:"]:before,
-em[data-emoji="flag_lc"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f1-1f1e8.svg");
-}
-
-em[data-emoji=":flag_pm:"]:before,
-em[data-emoji="flag_pm"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f5-1f1f2.svg");
-}
-
-em[data-emoji=":flag_vc:"]:before,
-em[data-emoji="flag_vc"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1fb-1f1e8.svg");
-}
-
-em[data-emoji=":flag_sd:"]:before,
-em[data-emoji="flag_sd"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f8-1f1e9.svg");
-}
-
-em[data-emoji=":flag_sr:"]:before,
-em[data-emoji="flag_sr"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f8-1f1f7.svg");
-}
-
-em[data-emoji=":flag_sz:"]:before,
-em[data-emoji="flag_sz"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f8-1f1ff.svg");
-}
-
-em[data-emoji=":flag_se:"]:before,
-em[data-emoji="flag_se"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f8-1f1ea.svg");
-}
-
-em[data-emoji=":flag_ch:"]:before,
-em[data-emoji="flag_ch"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e8-1f1ed.svg");
-}
-
-em[data-emoji=":flag_sy:"]:before,
-em[data-emoji="flag_sy"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f8-1f1fe.svg");
-}
-
-em[data-emoji=":flag_tw:"]:before,
-em[data-emoji="flag_tw"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f9-1f1fc.svg");
-}
-
-em[data-emoji=":flag_tj:"]:before,
-em[data-emoji="flag_tj"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f9-1f1ef.svg");
-}
-
-em[data-emoji=":flag_tz:"]:before,
-em[data-emoji="flag_tz"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f9-1f1ff.svg");
-}
-
-em[data-emoji=":flag_th:"]:before,
-em[data-emoji="flag_th"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f9-1f1ed.svg");
-}
-
-em[data-emoji=":flag_tl:"]:before,
-em[data-emoji="flag_tl"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f9-1f1f1.svg");
-}
-
-em[data-emoji=":flag_tg:"]:before,
-em[data-emoji="flag_tg"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f9-1f1ec.svg");
-}
-
-em[data-emoji=":flag_tk:"]:before,
-em[data-emoji="flag_tk"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f9-1f1f0.svg");
-}
-
-em[data-emoji=":flag_to:"]:before,
-em[data-emoji="flag_to"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f9-1f1f4.svg");
-}
-
-em[data-emoji=":flag_tt:"]:before,
-em[data-emoji="flag_tt"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f9-1f1f9.svg");
-}
-
-em[data-emoji=":flag_tn:"]:before,
-em[data-emoji="flag_tn"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f9-1f1f3.svg");
-}
-
-em[data-emoji=":flag_tr:"]:before,
-em[data-emoji="flag_tr"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f9-1f1f7.svg");
-}
-
-em[data-emoji=":flag_tm:"]:before,
-em[data-emoji="flag_tm"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f9-1f1f2.svg");
-}
-
-em[data-emoji=":flag_tc:"]:before,
-em[data-emoji="flag_tc"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f9-1f1e8.svg");
-}
-
-em[data-emoji=":flag_vi:"]:before,
-em[data-emoji="flag_vi"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1fb-1f1ee.svg");
-}
-
-em[data-emoji=":flag_tv:"]:before,
-em[data-emoji="flag_tv"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f9-1f1fb.svg");
-}
-
-em[data-emoji=":flag_ug:"]:before,
-em[data-emoji="flag_ug"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1fa-1f1ec.svg");
-}
-
-em[data-emoji=":flag_ua:"]:before,
-em[data-emoji="flag_ua"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1fa-1f1e6.svg");
-}
-
-em[data-emoji=":flag_ae:"]:before,
-em[data-emoji="flag_ae"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e6-1f1ea.svg");
-}
-
-em[data-emoji=":flag_gb:"]:before,
-em[data-emoji="flag_gb"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ec-1f1e7.svg");
-}
-
-em[data-emoji=":england:"]:before,
-em[data-emoji="england"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.svg");
-}
-
-em[data-emoji=":scotland:"]:before,
-em[data-emoji="scotland"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.svg");
-}
-
-em[data-emoji=":wales:"]:before,
-em[data-emoji="wales"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.svg");
-}
-
-em[data-emoji=":flag_us:"]:before,
-em[data-emoji="flag_us"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1fa-1f1f8.svg");
-}
-
-em[data-emoji=":flag_uy:"]:before,
-em[data-emoji="flag_uy"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1fa-1f1fe.svg");
-}
-
-em[data-emoji=":flag_uz:"]:before,
-em[data-emoji="flag_uz"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1fa-1f1ff.svg");
-}
-
-em[data-emoji=":flag_vu:"]:before,
-em[data-emoji="flag_vu"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1fb-1f1fa.svg");
-}
-
-em[data-emoji=":flag_va:"]:before,
-em[data-emoji="flag_va"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1fb-1f1e6.svg");
-}
-
-em[data-emoji=":flag_ve:"]:before,
-em[data-emoji="flag_ve"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1fb-1f1ea.svg");
-}
-
-em[data-emoji=":flag_vn:"]:before,
-em[data-emoji="flag_vn"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1fb-1f1f3.svg");
-}
-
-em[data-emoji=":flag_wf:"]:before,
-em[data-emoji="flag_wf"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1fc-1f1eb.svg");
-}
-
-em[data-emoji=":flag_eh:"]:before,
-em[data-emoji="flag_eh"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ea-1f1ed.svg");
-}
-
-em[data-emoji=":flag_ye:"]:before,
-em[data-emoji="flag_ye"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1fe-1f1ea.svg");
-}
-
-em[data-emoji=":flag_zm:"]:before,
-em[data-emoji="flag_zm"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ff-1f1f2.svg");
-}
-
-em[data-emoji=":flag_zw:"]:before,
-em[data-emoji="flag_zw"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ff-1f1fc.svg");
-}
-
-em[data-emoji=":flag_ac:"]:before,
-em[data-emoji="flag_ac"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e6-1f1e8.svg");
-}
-
-em[data-emoji=":flag_bv:"]:before,
-em[data-emoji="flag_bv"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e7-1f1fb.svg");
-}
-
-em[data-emoji=":flag_cp:"]:before,
-em[data-emoji="flag_cp"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e8-1f1f5.svg");
-}
-
-em[data-emoji=":flag_ea:"]:before,
-em[data-emoji="flag_ea"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ea-1f1e6.svg");
-}
-
-em[data-emoji=":flag_dg:"]:before,
-em[data-emoji="flag_dg"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1e9-1f1ec.svg");
-}
-
-em[data-emoji=":flag_hm:"]:before,
-em[data-emoji="flag_hm"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1ed-1f1f2.svg");
-}
-
-em[data-emoji=":flag_mf:"]:before,
-em[data-emoji="flag_mf"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f2-1f1eb.svg");
-}
-
-em[data-emoji=":flag_sj:"]:before,
-em[data-emoji="flag_sj"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f8-1f1ef.svg");
-}
-
-em[data-emoji=":flag_ta:"]:before,
-em[data-emoji="flag_ta"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1f9-1f1e6.svg");
-}
-
-em[data-emoji=":flag_um:"]:before,
-em[data-emoji="flag_um"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1fa-1f1f2.svg");
-}
-
-em[data-emoji=":united_nations:"]:before,
-em[data-emoji="united_nations"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f1fa-1f1f3.svg");
-}
-
-em[data-emoji=":tone1:"]:before,
-em[data-emoji="tone1"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3fb.svg");
-}
-
-em[data-emoji=":tone2:"]:before,
-em[data-emoji="tone2"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3fc.svg");
-}
-
-em[data-emoji=":tone3:"]:before,
-em[data-emoji="tone3"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3fd.svg");
-}
-
-em[data-emoji=":tone4:"]:before,
-em[data-emoji="tone4"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3fe.svg");
-}
-
-em[data-emoji=":tone5:"]:before,
-em[data-emoji="tone5"]:before {
- background-image: url("https://twemoji.maxcdn.com/v/latest/svg/1f3ff.svg");
-}
-/*!
- * # Fomantic-UI - Flag
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Flag
-*******************************/
-
-i.flag:not(.icon) {
- display: inline-block;
- width: 16px;
- height: 11px;
- line-height: 11px;
- vertical-align: baseline;
- margin: 0 0.5em 0 0;
- text-decoration: inherit;
- speak: none;
- -webkit-font-smoothing: antialiased;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
-}
-
-/* Sprite */
-
-i.flag:not(.icon):before {
- display: inline-block;
- content: '';
- background: url("./themes/default/assets/images/flags.png") no-repeat -108px -1976px;
- width: 16px;
- height: 11px;
-}
-
-/* Flag Sprite Based On http://www.famfamfam.com/lab/icons/flags/ */
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*rtl:begin:ignore*/
-
-i.flag.ad:before,
-i.flag.andorra:before {
- background-position: 0 0;
-}
-
-i.flag.ae:before,
-i.flag.united.arab.emirates:before,
-i.flag.uae:before {
- background-position: 0 -26px;
-}
-
-i.flag.af:before,
-i.flag.afghanistan:before {
- background-position: 0 -52px;
-}
-
-i.flag.ag:before,
-i.flag.antigua:before {
- background-position: 0 -78px;
-}
-
-i.flag.ai:before,
-i.flag.anguilla:before {
- background-position: 0 -104px;
-}
-
-i.flag.al:before,
-i.flag.albania:before {
- background-position: 0 -130px;
-}
-
-i.flag.am:before,
-i.flag.armenia:before {
- background-position: 0 -156px;
-}
-
-i.flag.an:before,
-i.flag.netherlands.antilles:before {
- background-position: 0 -182px;
-}
-
-i.flag.ao:before,
-i.flag.angola:before {
- background-position: 0 -208px;
-}
-
-i.flag.ar:before,
-i.flag.argentina:before {
- background-position: 0 -234px;
-}
-
-i.flag.as:before,
-i.flag.american.samoa:before {
- background-position: 0 -260px;
-}
-
-i.flag.at:before,
-i.flag.austria:before {
- background-position: 0 -286px;
-}
-
-i.flag.au:before,
-i.flag.australia:before {
- background-position: 0 -312px;
-}
-
-i.flag.aw:before,
-i.flag.aruba:before {
- background-position: 0 -338px;
-}
-
-i.flag.ax:before,
-i.flag.aland.islands:before {
- background-position: 0 -364px;
-}
-
-i.flag.az:before,
-i.flag.azerbaijan:before {
- background-position: 0 -390px;
-}
-
-i.flag.ba:before,
-i.flag.bosnia:before {
- background-position: 0 -416px;
-}
-
-i.flag.bb:before,
-i.flag.barbados:before {
- background-position: 0 -442px;
-}
-
-i.flag.bd:before,
-i.flag.bangladesh:before {
- background-position: 0 -468px;
-}
-
-i.flag.be:before,
-i.flag.belgium:before {
- background-position: 0 -494px;
-}
-
-i.flag.bf:before,
-i.flag.burkina.faso:before {
- background-position: 0 -520px;
-}
-
-i.flag.bg:before,
-i.flag.bulgaria:before {
- background-position: 0 -546px;
-}
-
-i.flag.bh:before,
-i.flag.bahrain:before {
- background-position: 0 -572px;
-}
-
-i.flag.bi:before,
-i.flag.burundi:before {
- background-position: 0 -598px;
-}
-
-i.flag.bj:before,
-i.flag.benin:before {
- background-position: 0 -624px;
-}
-
-i.flag.bm:before,
-i.flag.bermuda:before {
- background-position: 0 -650px;
-}
-
-i.flag.bn:before,
-i.flag.brunei:before {
- background-position: 0 -676px;
-}
-
-i.flag.bo:before,
-i.flag.bolivia:before {
- background-position: 0 -702px;
-}
-
-i.flag.br:before,
-i.flag.brazil:before {
- background-position: 0 -728px;
-}
-
-i.flag.bs:before,
-i.flag.bahamas:before {
- background-position: 0 -754px;
-}
-
-i.flag.bt:before,
-i.flag.bhutan:before {
- background-position: 0 -780px;
-}
-
-i.flag.bv:before,
-i.flag.bouvet.island:before {
- background-position: 0 -806px;
-}
-
-i.flag.bw:before,
-i.flag.botswana:before {
- background-position: 0 -832px;
-}
-
-i.flag.by:before,
-i.flag.belarus:before {
- background-position: 0 -858px;
-}
-
-i.flag.bz:before,
-i.flag.belize:before {
- background-position: 0 -884px;
-}
-
-i.flag.ca:before,
-i.flag.canada:before {
- background-position: 0 -910px;
-}
-
-i.flag.cc:before,
-i.flag.cocos.islands:before {
- background-position: 0 -962px;
-}
-
-i.flag.cd:before,
-i.flag.congo:before {
- background-position: 0 -988px;
-}
-
-i.flag.cf:before,
-i.flag.central.african.republic:before {
- background-position: 0 -1014px;
-}
-
-i.flag.cg:before,
-i.flag.congo.brazzaville:before {
- background-position: 0 -1040px;
-}
-
-i.flag.ch:before,
-i.flag.switzerland:before {
- background-position: 0 -1066px;
-}
-
-i.flag.ci:before,
-i.flag.cote.divoire:before {
- background-position: 0 -1092px;
-}
-
-i.flag.ck:before,
-i.flag.cook.islands:before {
- background-position: 0 -1118px;
-}
-
-i.flag.cl:before,
-i.flag.chile:before {
- background-position: 0 -1144px;
-}
-
-i.flag.cm:before,
-i.flag.cameroon:before {
- background-position: 0 -1170px;
-}
-
-i.flag.cn:before,
-i.flag.china:before {
- background-position: 0 -1196px;
-}
-
-i.flag.co:before,
-i.flag.colombia:before {
- background-position: 0 -1222px;
-}
-
-i.flag.cr:before,
-i.flag.costa.rica:before {
- background-position: 0 -1248px;
-}
-
-i.flag.cs:before,
-i.flag.serbia:before {
- background-position: 0 -1274px;
-}
-
-i.flag.cu:before,
-i.flag.cuba:before {
- background-position: 0 -1300px;
-}
-
-i.flag.cv:before,
-i.flag.cape.verde:before {
- background-position: 0 -1326px;
-}
-
-i.flag.cx:before,
-i.flag.christmas.island:before {
- background-position: 0 -1352px;
-}
-
-i.flag.cy:before,
-i.flag.cyprus:before {
- background-position: 0 -1378px;
-}
-
-i.flag.cz:before,
-i.flag.czech.republic:before {
- background-position: 0 -1404px;
-}
-
-i.flag.de:before,
-i.flag.germany:before {
- background-position: 0 -1430px;
-}
-
-i.flag.dj:before,
-i.flag.djibouti:before {
- background-position: 0 -1456px;
-}
-
-i.flag.dk:before,
-i.flag.denmark:before {
- background-position: 0 -1482px;
-}
-
-i.flag.dm:before,
-i.flag.dominica:before {
- background-position: 0 -1508px;
-}
-
-i.flag.do:before,
-i.flag.dominican.republic:before {
- background-position: 0 -1534px;
-}
-
-i.flag.dz:before,
-i.flag.algeria:before {
- background-position: 0 -1560px;
-}
-
-i.flag.ec:before,
-i.flag.ecuador:before {
- background-position: 0 -1586px;
-}
-
-i.flag.ee:before,
-i.flag.estonia:before {
- background-position: 0 -1612px;
-}
-
-i.flag.eg:before,
-i.flag.egypt:before {
- background-position: 0 -1638px;
-}
-
-i.flag.eh:before,
-i.flag.western.sahara:before {
- background-position: 0 -1664px;
-}
-
-i.flag.gb.eng:before,
-i.flag.england:before {
- background-position: 0 -1690px;
-}
-
-i.flag.er:before,
-i.flag.eritrea:before {
- background-position: 0 -1716px;
-}
-
-i.flag.es:before,
-i.flag.spain:before {
- background-position: 0 -1742px;
-}
-
-i.flag.et:before,
-i.flag.ethiopia:before {
- background-position: 0 -1768px;
-}
-
-i.flag.eu:before,
-i.flag.european.union:before {
- background-position: 0 -1794px;
-}
-
-i.flag.fi:before,
-i.flag.finland:before {
- background-position: 0 -1846px;
-}
-
-i.flag.fj:before,
-i.flag.fiji:before {
- background-position: 0 -1872px;
-}
-
-i.flag.fk:before,
-i.flag.falkland.islands:before {
- background-position: 0 -1898px;
-}
-
-i.flag.fm:before,
-i.flag.micronesia:before {
- background-position: 0 -1924px;
-}
-
-i.flag.fo:before,
-i.flag.faroe.islands:before {
- background-position: 0 -1950px;
-}
-
-i.flag.fr:before,
-i.flag.france:before {
- background-position: 0 -1976px;
-}
-
-i.flag.ga:before,
-i.flag.gabon:before {
- background-position: -36px 0;
-}
-
-i.flag.gb:before,
-i.flag.uk:before,
-i.flag.united.kingdom:before {
- background-position: -36px -26px;
-}
-
-i.flag.gd:before,
-i.flag.grenada:before {
- background-position: -36px -52px;
-}
-
-i.flag.ge:before,
-i.flag.georgia:before {
- background-position: -36px -78px;
-}
-
-i.flag.gf:before,
-i.flag.french.guiana:before {
- background-position: -36px -104px;
-}
-
-i.flag.gh:before,
-i.flag.ghana:before {
- background-position: -36px -130px;
-}
-
-i.flag.gi:before,
-i.flag.gibraltar:before {
- background-position: -36px -156px;
-}
-
-i.flag.gl:before,
-i.flag.greenland:before {
- background-position: -36px -182px;
-}
-
-i.flag.gm:before,
-i.flag.gambia:before {
- background-position: -36px -208px;
-}
-
-i.flag.gn:before,
-i.flag.guinea:before {
- background-position: -36px -234px;
-}
-
-i.flag.gp:before,
-i.flag.guadeloupe:before {
- background-position: -36px -260px;
-}
-
-i.flag.gq:before,
-i.flag.equatorial.guinea:before {
- background-position: -36px -286px;
-}
-
-i.flag.gr:before,
-i.flag.greece:before {
- background-position: -36px -312px;
-}
-
-i.flag.gs:before,
-i.flag.sandwich.islands:before {
- background-position: -36px -338px;
-}
-
-i.flag.gt:before,
-i.flag.guatemala:before {
- background-position: -36px -364px;
-}
-
-i.flag.gu:before,
-i.flag.guam:before {
- background-position: -36px -390px;
-}
-
-i.flag.gw:before,
-i.flag.guinea-bissau:before {
- background-position: -36px -416px;
-}
-
-i.flag.gy:before,
-i.flag.guyana:before {
- background-position: -36px -442px;
-}
-
-i.flag.hk:before,
-i.flag.hong.kong:before {
- background-position: -36px -468px;
-}
-
-i.flag.hm:before,
-i.flag.heard.island:before {
- background-position: -36px -494px;
-}
-
-i.flag.hn:before,
-i.flag.honduras:before {
- background-position: -36px -520px;
-}
-
-i.flag.hr:before,
-i.flag.croatia:before {
- background-position: -36px -546px;
-}
-
-i.flag.ht:before,
-i.flag.haiti:before {
- background-position: -36px -572px;
-}
-
-i.flag.hu:before,
-i.flag.hungary:before {
- background-position: -36px -598px;
-}
-
-i.flag.id:before,
-i.flag.indonesia:before {
- background-position: -36px -624px;
-}
-
-i.flag.ie:before,
-i.flag.ireland:before {
- background-position: -36px -650px;
-}
-
-i.flag.il:before,
-i.flag.israel:before {
- background-position: -36px -676px;
-}
-
-i.flag.in:before,
-i.flag.india:before {
- background-position: -36px -702px;
-}
-
-i.flag.io:before,
-i.flag.indian.ocean.territory:before {
- background-position: -36px -728px;
-}
-
-i.flag.iq:before,
-i.flag.iraq:before {
- background-position: -36px -754px;
-}
-
-i.flag.ir:before,
-i.flag.iran:before {
- background-position: -36px -780px;
-}
-
-i.flag.is:before,
-i.flag.iceland:before {
- background-position: -36px -806px;
-}
-
-i.flag.it:before,
-i.flag.italy:before {
- background-position: -36px -832px;
-}
-
-i.flag.jm:before,
-i.flag.jamaica:before {
- background-position: -36px -858px;
-}
-
-i.flag.jo:before,
-i.flag.jordan:before {
- background-position: -36px -884px;
-}
-
-i.flag.jp:before,
-i.flag.japan:before {
- background-position: -36px -910px;
-}
-
-i.flag.ke:before,
-i.flag.kenya:before {
- background-position: -36px -936px;
-}
-
-i.flag.kg:before,
-i.flag.kyrgyzstan:before {
- background-position: -36px -962px;
-}
-
-i.flag.kh:before,
-i.flag.cambodia:before {
- background-position: -36px -988px;
-}
-
-i.flag.ki:before,
-i.flag.kiribati:before {
- background-position: -36px -1014px;
-}
-
-i.flag.km:before,
-i.flag.comoros:before {
- background-position: -36px -1040px;
-}
-
-i.flag.kn:before,
-i.flag.saint.kitts.and.nevis:before {
- background-position: -36px -1066px;
-}
-
-i.flag.kp:before,
-i.flag.north.korea:before {
- background-position: -36px -1092px;
-}
-
-i.flag.kr:before,
-i.flag.south.korea:before {
- background-position: -36px -1118px;
-}
-
-i.flag.kw:before,
-i.flag.kuwait:before {
- background-position: -36px -1144px;
-}
-
-i.flag.ky:before,
-i.flag.cayman.islands:before {
- background-position: -36px -1170px;
-}
-
-i.flag.kz:before,
-i.flag.kazakhstan:before {
- background-position: -36px -1196px;
-}
-
-i.flag.la:before,
-i.flag.laos:before {
- background-position: -36px -1222px;
-}
-
-i.flag.lb:before,
-i.flag.lebanon:before {
- background-position: -36px -1248px;
-}
-
-i.flag.lc:before,
-i.flag.saint.lucia:before {
- background-position: -36px -1274px;
-}
-
-i.flag.li:before,
-i.flag.liechtenstein:before {
- background-position: -36px -1300px;
-}
-
-i.flag.lk:before,
-i.flag.sri.lanka:before {
- background-position: -36px -1326px;
-}
-
-i.flag.lr:before,
-i.flag.liberia:before {
- background-position: -36px -1352px;
-}
-
-i.flag.ls:before,
-i.flag.lesotho:before {
- background-position: -36px -1378px;
-}
-
-i.flag.lt:before,
-i.flag.lithuania:before {
- background-position: -36px -1404px;
-}
-
-i.flag.lu:before,
-i.flag.luxembourg:before {
- background-position: -36px -1430px;
-}
-
-i.flag.lv:before,
-i.flag.latvia:before {
- background-position: -36px -1456px;
-}
-
-i.flag.ly:before,
-i.flag.libya:before {
- background-position: -36px -1482px;
-}
-
-i.flag.ma:before,
-i.flag.morocco:before {
- background-position: -36px -1508px;
-}
-
-i.flag.mc:before,
-i.flag.monaco:before {
- background-position: -36px -1534px;
-}
-
-i.flag.md:before,
-i.flag.moldova:before {
- background-position: -36px -1560px;
-}
-
-i.flag.me:before,
-i.flag.montenegro:before {
- background-position: -36px -1586px;
-}
-
-i.flag.mg:before,
-i.flag.madagascar:before {
- background-position: -36px -1613px;
-}
-
-i.flag.mh:before,
-i.flag.marshall.islands:before {
- background-position: -36px -1639px;
-}
-
-i.flag.mk:before,
-i.flag.macedonia:before {
- background-position: -36px -1665px;
-}
-
-i.flag.ml:before,
-i.flag.mali:before {
- background-position: -36px -1691px;
-}
-
-i.flag.mm:before,
-i.flag.myanmar:before,
-i.flag.burma:before {
- background-position: -36px -1717px;
-}
-
-i.flag.mn:before,
-i.flag.mongolia:before {
- background-position: -36px -1743px;
-}
-
-i.flag.mo:before,
-i.flag.macau:before {
- background-position: -36px -1769px;
-}
-
-i.flag.mp:before,
-i.flag.northern.mariana.islands:before {
- background-position: -36px -1795px;
-}
-
-i.flag.mq:before,
-i.flag.martinique:before {
- background-position: -36px -1821px;
-}
-
-i.flag.mr:before,
-i.flag.mauritania:before {
- background-position: -36px -1847px;
-}
-
-i.flag.ms:before,
-i.flag.montserrat:before {
- background-position: -36px -1873px;
-}
-
-i.flag.mt:before,
-i.flag.malta:before {
- background-position: -36px -1899px;
-}
-
-i.flag.mu:before,
-i.flag.mauritius:before {
- background-position: -36px -1925px;
-}
-
-i.flag.mv:before,
-i.flag.maldives:before {
- background-position: -36px -1951px;
-}
-
-i.flag.mw:before,
-i.flag.malawi:before {
- background-position: -36px -1977px;
-}
-
-i.flag.mx:before,
-i.flag.mexico:before {
- background-position: -72px 0;
-}
-
-i.flag.my:before,
-i.flag.malaysia:before {
- background-position: -72px -26px;
-}
-
-i.flag.mz:before,
-i.flag.mozambique:before {
- background-position: -72px -52px;
-}
-
-i.flag.na:before,
-i.flag.namibia:before {
- background-position: -72px -78px;
-}
-
-i.flag.nc:before,
-i.flag.new.caledonia:before {
- background-position: -72px -104px;
-}
-
-i.flag.ne:before,
-i.flag.niger:before {
- background-position: -72px -130px;
-}
-
-i.flag.nf:before,
-i.flag.norfolk.island:before {
- background-position: -72px -156px;
-}
-
-i.flag.ng:before,
-i.flag.nigeria:before {
- background-position: -72px -182px;
-}
-
-i.flag.ni:before,
-i.flag.nicaragua:before {
- background-position: -72px -208px;
-}
-
-i.flag.nl:before,
-i.flag.netherlands:before {
- background-position: -72px -234px;
-}
-
-i.flag.no:before,
-i.flag.norway:before {
- background-position: -72px -260px;
-}
-
-i.flag.np:before,
-i.flag.nepal:before {
- background-position: -72px -286px;
-}
-
-i.flag.nr:before,
-i.flag.nauru:before {
- background-position: -72px -312px;
-}
-
-i.flag.nu:before,
-i.flag.niue:before {
- background-position: -72px -338px;
-}
-
-i.flag.nz:before,
-i.flag.new.zealand:before {
- background-position: -72px -364px;
-}
-
-i.flag.om:before,
-i.flag.oman:before {
- background-position: -72px -390px;
-}
-
-i.flag.pa:before,
-i.flag.panama:before {
- background-position: -72px -416px;
-}
-
-i.flag.pe:before,
-i.flag.peru:before {
- background-position: -72px -442px;
-}
-
-i.flag.pf:before,
-i.flag.french.polynesia:before {
- background-position: -72px -468px;
-}
-
-i.flag.pg:before,
-i.flag.new.guinea:before {
- background-position: -72px -494px;
-}
-
-i.flag.ph:before,
-i.flag.philippines:before {
- background-position: -72px -520px;
-}
-
-i.flag.pk:before,
-i.flag.pakistan:before {
- background-position: -72px -546px;
-}
-
-i.flag.pl:before,
-i.flag.poland:before {
- background-position: -72px -572px;
-}
-
-i.flag.pm:before,
-i.flag.saint.pierre:before {
- background-position: -72px -598px;
-}
-
-i.flag.pn:before,
-i.flag.pitcairn.islands:before {
- background-position: -72px -624px;
-}
-
-i.flag.pr:before,
-i.flag.puerto.rico:before {
- background-position: -72px -650px;
-}
-
-i.flag.ps:before,
-i.flag.palestine:before {
- background-position: -72px -676px;
-}
-
-i.flag.pt:before,
-i.flag.portugal:before {
- background-position: -72px -702px;
-}
-
-i.flag.pw:before,
-i.flag.palau:before {
- background-position: -72px -728px;
-}
-
-i.flag.py:before,
-i.flag.paraguay:before {
- background-position: -72px -754px;
-}
-
-i.flag.qa:before,
-i.flag.qatar:before {
- background-position: -72px -780px;
-}
-
-i.flag.re:before,
-i.flag.reunion:before {
- background-position: -72px -806px;
-}
-
-i.flag.ro:before,
-i.flag.romania:before {
- background-position: -72px -832px;
-}
-
-i.flag.rs:before,
-i.flag.serbia:before {
- background-position: -72px -858px;
-}
-
-i.flag.ru:before,
-i.flag.russia:before {
- background-position: -72px -884px;
-}
-
-i.flag.rw:before,
-i.flag.rwanda:before {
- background-position: -72px -910px;
-}
-
-i.flag.sa:before,
-i.flag.saudi.arabia:before {
- background-position: -72px -936px;
-}
-
-i.flag.sb:before,
-i.flag.solomon.islands:before {
- background-position: -72px -962px;
-}
-
-i.flag.sc:before,
-i.flag.seychelles:before {
- background-position: -72px -988px;
-}
-
-i.flag.gb.sct:before,
-i.flag.scotland:before {
- background-position: -72px -1014px;
-}
-
-i.flag.sd:before,
-i.flag.sudan:before {
- background-position: -72px -1040px;
-}
-
-i.flag.se:before,
-i.flag.sweden:before {
- background-position: -72px -1066px;
-}
-
-i.flag.sg:before,
-i.flag.singapore:before {
- background-position: -72px -1092px;
-}
-
-i.flag.sh:before,
-i.flag.saint.helena:before {
- background-position: -72px -1118px;
-}
-
-i.flag.si:before,
-i.flag.slovenia:before {
- background-position: -72px -1144px;
-}
-
-i.flag.sj:before,
-i.flag.svalbard:before,
-i.flag.jan.mayen:before {
- background-position: -72px -1170px;
-}
-
-i.flag.sk:before,
-i.flag.slovakia:before {
- background-position: -72px -1196px;
-}
-
-i.flag.sl:before,
-i.flag.sierra.leone:before {
- background-position: -72px -1222px;
-}
-
-i.flag.sm:before,
-i.flag.san.marino:before {
- background-position: -72px -1248px;
-}
-
-i.flag.sn:before,
-i.flag.senegal:before {
- background-position: -72px -1274px;
-}
-
-i.flag.so:before,
-i.flag.somalia:before {
- background-position: -72px -1300px;
-}
-
-i.flag.sr:before,
-i.flag.suriname:before {
- background-position: -72px -1326px;
-}
-
-i.flag.st:before,
-i.flag.sao.tome:before {
- background-position: -72px -1352px;
-}
-
-i.flag.sv:before,
-i.flag.el.salvador:before {
- background-position: -72px -1378px;
-}
-
-i.flag.sy:before,
-i.flag.syria:before {
- background-position: -72px -1404px;
-}
-
-i.flag.sz:before,
-i.flag.swaziland:before {
- background-position: -72px -1430px;
-}
-
-i.flag.tc:before,
-i.flag.caicos.islands:before {
- background-position: -72px -1456px;
-}
-
-i.flag.td:before,
-i.flag.chad:before {
- background-position: -72px -1482px;
-}
-
-i.flag.tf:before,
-i.flag.french.territories:before {
- background-position: -72px -1508px;
-}
-
-i.flag.tg:before,
-i.flag.togo:before {
- background-position: -72px -1534px;
-}
-
-i.flag.th:before,
-i.flag.thailand:before {
- background-position: -72px -1560px;
-}
-
-i.flag.tj:before,
-i.flag.tajikistan:before {
- background-position: -72px -1586px;
-}
-
-i.flag.tk:before,
-i.flag.tokelau:before {
- background-position: -72px -1612px;
-}
-
-i.flag.tl:before,
-i.flag.timorleste:before {
- background-position: -72px -1638px;
-}
-
-i.flag.tm:before,
-i.flag.turkmenistan:before {
- background-position: -72px -1664px;
-}
-
-i.flag.tn:before,
-i.flag.tunisia:before {
- background-position: -72px -1690px;
-}
-
-i.flag.to:before,
-i.flag.tonga:before {
- background-position: -72px -1716px;
-}
-
-i.flag.tr:before,
-i.flag.turkey:before {
- background-position: -72px -1742px;
-}
-
-i.flag.tt:before,
-i.flag.trinidad:before {
- background-position: -72px -1768px;
-}
-
-i.flag.tv:before,
-i.flag.tuvalu:before {
- background-position: -72px -1794px;
-}
-
-i.flag.tw:before,
-i.flag.taiwan:before {
- background-position: -72px -1820px;
-}
-
-i.flag.tz:before,
-i.flag.tanzania:before {
- background-position: -72px -1846px;
-}
-
-i.flag.ua:before,
-i.flag.ukraine:before {
- background-position: -72px -1872px;
-}
-
-i.flag.ug:before,
-i.flag.uganda:before {
- background-position: -72px -1898px;
-}
-
-i.flag.um:before,
-i.flag.us.minor.islands:before {
- background-position: -72px -1924px;
-}
-
-i.flag.us:before,
-i.flag.america:before,
-i.flag.united.states:before {
- background-position: -72px -1950px;
-}
-
-i.flag.uy:before,
-i.flag.uruguay:before {
- background-position: -72px -1976px;
-}
-
-i.flag.uz:before,
-i.flag.uzbekistan:before {
- background-position: -108px 0;
-}
-
-i.flag.va:before,
-i.flag.vatican.city:before {
- background-position: -108px -26px;
-}
-
-i.flag.vc:before,
-i.flag.saint.vincent:before {
- background-position: -108px -52px;
-}
-
-i.flag.ve:before,
-i.flag.venezuela:before {
- background-position: -108px -78px;
-}
-
-i.flag.vg:before,
-i.flag.british.virgin.islands:before {
- background-position: -108px -104px;
-}
-
-i.flag.vi:before,
-i.flag.us.virgin.islands:before {
- background-position: -108px -130px;
-}
-
-i.flag.vn:before,
-i.flag.vietnam:before {
- background-position: -108px -156px;
-}
-
-i.flag.vu:before,
-i.flag.vanuatu:before {
- background-position: -108px -182px;
-}
-
-i.flag.gb.wls:before,
-i.flag.wales:before {
- background-position: -108px -208px;
-}
-
-i.flag.wf:before,
-i.flag.wallis.and.futuna:before {
- background-position: -108px -234px;
-}
-
-i.flag.ws:before,
-i.flag.samoa:before {
- background-position: -108px -260px;
-}
-
-i.flag.ye:before,
-i.flag.yemen:before {
- background-position: -108px -286px;
-}
-
-i.flag.yt:before,
-i.flag.mayotte:before {
- background-position: -108px -312px;
-}
-
-i.flag.za:before,
-i.flag.south.africa:before {
- background-position: -108px -338px;
-}
-
-i.flag.zm:before,
-i.flag.zambia:before {
- background-position: -108px -364px;
-}
-
-i.flag.zw:before,
-i.flag.zimbabwe:before {
- background-position: -108px -390px;
-}
-
-/*rtl:end:ignore*/
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Header
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Header
-*******************************/
-
-/* Standard */
-
-.ui.header {
- border: none;
- margin: calc(2rem - 0.1428571428571429em) 0 1rem;
- padding: 0 0;
- font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
- font-weight: bold;
- line-height: 1.28571429em;
- text-transform: none;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.header:first-child {
- margin-top: -0.14285714em;
-}
-
-.ui.header:last-child {
- margin-bottom: 0;
-}
-
-/*--------------
- Sub Header
- ---------------*/
-
-.ui.header .sub.header {
- display: block;
- font-weight: normal;
- padding: 0;
- margin: 0;
- font-size: 1rem;
- line-height: 1.2em;
- color: rgba(0, 0, 0, 0.6);
-}
-
-/*--------------
- Icon
----------------*/
-
-.ui.header > .icon {
- display: table-cell;
- opacity: 1;
- font-size: 1.5em;
- padding-top: 0;
- vertical-align: middle;
-}
-
-/* With Text Node */
-
-.ui.header .icon:only-child {
- display: inline-block;
- padding: 0;
- margin-right: 0.75rem;
-}
-
-/*-------------------
- Image
---------------------*/
-
-.ui.header > .image:not(.icon),
-.ui.header > img {
- display: inline-block;
- margin-top: 0.14285714em;
- width: 2.5em;
- height: auto;
- vertical-align: middle;
-}
-
-.ui.header > .image:not(.icon):only-child,
-.ui.header > img:only-child {
- margin-right: 0.75rem;
-}
-
-/*--------------
- Content
----------------*/
-
-.ui.header .content {
- display: inline-block;
- vertical-align: top;
-}
-
-/* After Image */
-
-.ui.header > img + .content,
-.ui.header > .image + .content {
- padding-left: 0.75rem;
- vertical-align: middle;
-}
-
-/* After Icon */
-
-.ui.header > .icon + .content {
- padding-left: 0.75rem;
- display: table-cell;
- vertical-align: middle;
-}
-
-/*--------------
- Loose Coupling
----------------*/
-
-.ui.header .ui.label {
- font-size: '';
- margin-left: 0.5rem;
- vertical-align: middle;
-}
-
-/* Positioning */
-
-.ui.header + p {
- margin-top: 0;
-}
-
-/*******************************
- Types
-*******************************/
-
-/*--------------
- Page
----------------*/
-
-h1.ui.header {
- font-size: 2rem;
-}
-
-h1.ui.header .sub.header {
- font-size: 1.14285714rem;
-}
-
-h2.ui.header {
- font-size: 1.71428571rem;
-}
-
-h2.ui.header .sub.header {
- font-size: 1.14285714rem;
-}
-
-h3.ui.header {
- font-size: 1.28571429rem;
-}
-
-h3.ui.header .sub.header {
- font-size: 1rem;
-}
-
-h4.ui.header {
- font-size: 1.07142857rem;
-}
-
-h4.ui.header .sub.header {
- font-size: 1rem;
-}
-
-h5.ui.header {
- font-size: 1rem;
-}
-
-h5.ui.header .sub.header {
- font-size: 0.92857143rem;
-}
-
-h6.ui.header {
- font-size: 0.85714286rem;
-}
-
-h6.ui.header .sub.header {
- font-size: 0.92857143rem;
-}
-
-/*--------------
- Content Heading
----------------*/
-
-.ui.mini.header {
- font-size: 0.85714286em;
-}
-
-.ui.mini.header .sub.header {
- font-size: 0.92857143rem;
-}
-
-.ui.mini.sub.header {
- font-size: 0.78571429em;
-}
-
-.ui.tiny.header {
- font-size: 1em;
-}
-
-.ui.tiny.header .sub.header {
- font-size: 0.92857143rem;
-}
-
-.ui.tiny.sub.header {
- font-size: 0.78571429em;
-}
-
-.ui.small.header {
- font-size: 1.07142857em;
-}
-
-.ui.small.header .sub.header {
- font-size: 1rem;
-}
-
-.ui.small.sub.header {
- font-size: 0.78571429em;
-}
-
-.ui.large.header {
- font-size: 1.71428571em;
-}
-
-.ui.large.header .sub.header {
- font-size: 1.14285714rem;
-}
-
-.ui.large.sub.header {
- font-size: 0.92857143em;
-}
-
-.ui.big.header {
- font-size: 1.85714286em;
-}
-
-.ui.big.header .sub.header {
- font-size: 1.14285714rem;
-}
-
-.ui.big.sub.header {
- font-size: 1em;
-}
-
-.ui.huge.header {
- font-size: 2em;
- min-height: 1em;
-}
-
-.ui.huge.header .sub.header {
- font-size: 1.14285714rem;
-}
-
-.ui.huge.sub.header {
- font-size: 1em;
-}
-
-.ui.massive.header {
- font-size: 2.28571429em;
- min-height: 1em;
-}
-
-.ui.massive.header .sub.header {
- font-size: 1.42857143rem;
-}
-
-.ui.massive.sub.header {
- font-size: 1.14285714em;
-}
-
-/*--------------
- Sub Heading
- ---------------*/
-
-.ui.sub.header {
- padding: 0;
- margin-bottom: 0.14285714rem;
- font-weight: bold;
- font-size: 0.85714286em;
- text-transform: uppercase;
- color: '';
-}
-
-/*-------------------
- Icon
- --------------------*/
-
-.ui.icon.header {
- display: inline-block;
- text-align: center;
- margin: 2rem 0 1rem;
-}
-
-.ui.icon.header:after {
- content: '';
- display: block;
- height: 0;
- clear: both;
- visibility: hidden;
-}
-
-.ui.icon.header:first-child {
- margin-top: 0;
-}
-
-.ui.icon.header .icon {
- float: none;
- display: block;
- width: auto;
- height: auto;
- line-height: 1;
- padding: 0;
- font-size: 3em;
- margin: 0 auto 0.5rem;
- opacity: 1;
-}
-
-.ui.icon.header .corner.icon {
- font-size: calc(3em * 0.45);
-}
-
-.ui.icon.header .content {
- display: block;
- padding: 0;
-}
-
-.ui.icon.header .circular.icon {
- font-size: 2em;
-}
-
-.ui.icon.header .square.icon {
- font-size: 2em;
-}
-
-.ui.block.icon.header .icon {
- margin-bottom: 0;
-}
-
-.ui.icon.header.aligned {
- margin-left: auto;
- margin-right: auto;
- display: block;
-}
-
-/*******************************
- States
-*******************************/
-
-.ui.disabled.header {
- opacity: 0.45;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*-------------------
- Inverted
- --------------------*/
-
-.ui.inverted.header {
- color: #FFFFFF;
-}
-
-.ui.inverted.header .sub.header {
- color: rgba(255, 255, 255, 0.8);
-}
-
-.ui.inverted.attached.header {
- background: #1B1C1D;
- -webkit-box-shadow: none;
- box-shadow: none;
- border-color: transparent;
-}
-
-.ui.inverted.block.header {
- background: #545454 -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
- background: #545454 -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
- background: #545454 linear-gradient(transparent, rgba(0, 0, 0, 0.05));
- -webkit-box-shadow: none;
- box-shadow: none;
- border-bottom: none;
-}
-
-/*-------------------
- Colors
---------------------*/
-
-.ui.primary.header {
- color: #2185D0;
-}
-
-a.ui.primary.header:hover {
- color: #1678c2;
-}
-
-.ui.primary.dividing.header {
- border-bottom: 2px solid #2185D0;
-}
-
-.ui.inverted.primary.header.header.header {
- color: #54C8FF;
-}
-
-a.ui.inverted.primary.header.header.header:hover {
- color: #21b8ff;
-}
-
-.ui.inverted.primary.dividing.header {
- border-bottom: 2px solid #54C8FF;
-}
-
-.ui.secondary.header {
- color: #1B1C1D;
-}
-
-a.ui.secondary.header:hover {
- color: #27292a;
-}
-
-.ui.secondary.dividing.header {
- border-bottom: 2px solid #1B1C1D;
-}
-
-.ui.inverted.secondary.header.header.header {
- color: #545454;
-}
-
-a.ui.inverted.secondary.header.header.header:hover {
- color: #6e6e6e;
-}
-
-.ui.inverted.secondary.dividing.header {
- border-bottom: 2px solid #545454;
-}
-
-.ui.red.header {
- color: #DB2828;
-}
-
-a.ui.red.header:hover {
- color: #d01919;
-}
-
-.ui.red.dividing.header {
- border-bottom: 2px solid #DB2828;
-}
-
-.ui.inverted.red.header.header.header {
- color: #FF695E;
-}
-
-a.ui.inverted.red.header.header.header:hover {
- color: #ff392b;
-}
-
-.ui.inverted.red.dividing.header {
- border-bottom: 2px solid #FF695E;
-}
-
-.ui.orange.header {
- color: #F2711C;
-}
-
-a.ui.orange.header:hover {
- color: #f26202;
-}
-
-.ui.orange.dividing.header {
- border-bottom: 2px solid #F2711C;
-}
-
-.ui.inverted.orange.header.header.header {
- color: #FF851B;
-}
-
-a.ui.inverted.orange.header.header.header:hover {
- color: #e76b00;
-}
-
-.ui.inverted.orange.dividing.header {
- border-bottom: 2px solid #FF851B;
-}
-
-.ui.yellow.header {
- color: #FBBD08;
-}
-
-a.ui.yellow.header:hover {
- color: #eaae00;
-}
-
-.ui.yellow.dividing.header {
- border-bottom: 2px solid #FBBD08;
-}
-
-.ui.inverted.yellow.header.header.header {
- color: #FFE21F;
-}
-
-a.ui.inverted.yellow.header.header.header:hover {
- color: #ebcd00;
-}
-
-.ui.inverted.yellow.dividing.header {
- border-bottom: 2px solid #FFE21F;
-}
-
-.ui.olive.header {
- color: #B5CC18;
-}
-
-a.ui.olive.header:hover {
- color: #a7bd0d;
-}
-
-.ui.olive.dividing.header {
- border-bottom: 2px solid #B5CC18;
-}
-
-.ui.inverted.olive.header.header.header {
- color: #D9E778;
-}
-
-a.ui.inverted.olive.header.header.header:hover {
- color: #d2e745;
-}
-
-.ui.inverted.olive.dividing.header {
- border-bottom: 2px solid #D9E778;
-}
-
-.ui.green.header {
- color: #21BA45;
-}
-
-a.ui.green.header:hover {
- color: #16ab39;
-}
-
-.ui.green.dividing.header {
- border-bottom: 2px solid #21BA45;
-}
-
-.ui.inverted.green.header.header.header {
- color: #2ECC40;
-}
-
-a.ui.inverted.green.header.header.header:hover {
- color: #1ea92e;
-}
-
-.ui.inverted.green.dividing.header {
- border-bottom: 2px solid #2ECC40;
-}
-
-.ui.teal.header {
- color: #00B5AD;
-}
-
-a.ui.teal.header:hover {
- color: #009c95;
-}
-
-.ui.teal.dividing.header {
- border-bottom: 2px solid #00B5AD;
-}
-
-.ui.inverted.teal.header.header.header {
- color: #6DFFFF;
-}
-
-a.ui.inverted.teal.header.header.header:hover {
- color: #3affff;
-}
-
-.ui.inverted.teal.dividing.header {
- border-bottom: 2px solid #6DFFFF;
-}
-
-.ui.blue.header {
- color: #2185D0;
-}
-
-a.ui.blue.header:hover {
- color: #1678c2;
-}
-
-.ui.blue.dividing.header {
- border-bottom: 2px solid #2185D0;
-}
-
-.ui.inverted.blue.header.header.header {
- color: #54C8FF;
-}
-
-a.ui.inverted.blue.header.header.header:hover {
- color: #21b8ff;
-}
-
-.ui.inverted.blue.dividing.header {
- border-bottom: 2px solid #54C8FF;
-}
-
-.ui.violet.header {
- color: #6435C9;
-}
-
-a.ui.violet.header:hover {
- color: #5829bb;
-}
-
-.ui.violet.dividing.header {
- border-bottom: 2px solid #6435C9;
-}
-
-.ui.inverted.violet.header.header.header {
- color: #A291FB;
-}
-
-a.ui.inverted.violet.header.header.header:hover {
- color: #745aff;
-}
-
-.ui.inverted.violet.dividing.header {
- border-bottom: 2px solid #A291FB;
-}
-
-.ui.purple.header {
- color: #A333C8;
-}
-
-a.ui.purple.header:hover {
- color: #9627ba;
-}
-
-.ui.purple.dividing.header {
- border-bottom: 2px solid #A333C8;
-}
-
-.ui.inverted.purple.header.header.header {
- color: #DC73FF;
-}
-
-a.ui.inverted.purple.header.header.header:hover {
- color: #cf40ff;
-}
-
-.ui.inverted.purple.dividing.header {
- border-bottom: 2px solid #DC73FF;
-}
-
-.ui.pink.header {
- color: #E03997;
-}
-
-a.ui.pink.header:hover {
- color: #e61a8d;
-}
-
-.ui.pink.dividing.header {
- border-bottom: 2px solid #E03997;
-}
-
-.ui.inverted.pink.header.header.header {
- color: #FF8EDF;
-}
-
-a.ui.inverted.pink.header.header.header:hover {
- color: #ff5bd1;
-}
-
-.ui.inverted.pink.dividing.header {
- border-bottom: 2px solid #FF8EDF;
-}
-
-.ui.brown.header {
- color: #A5673F;
-}
-
-a.ui.brown.header:hover {
- color: #975b33;
-}
-
-.ui.brown.dividing.header {
- border-bottom: 2px solid #A5673F;
-}
-
-.ui.inverted.brown.header.header.header {
- color: #D67C1C;
-}
-
-a.ui.inverted.brown.header.header.header:hover {
- color: #b0620f;
-}
-
-.ui.inverted.brown.dividing.header {
- border-bottom: 2px solid #D67C1C;
-}
-
-.ui.grey.header {
- color: #767676;
-}
-
-a.ui.grey.header:hover {
- color: #838383;
-}
-
-.ui.grey.dividing.header {
- border-bottom: 2px solid #767676;
-}
-
-.ui.inverted.grey.header.header.header {
- color: #DCDDDE;
-}
-
-a.ui.inverted.grey.header.header.header:hover {
- color: #c2c4c5;
-}
-
-.ui.inverted.grey.dividing.header {
- border-bottom: 2px solid #DCDDDE;
-}
-
-.ui.black.header {
- color: #1B1C1D;
-}
-
-a.ui.black.header:hover {
- color: #27292a;
-}
-
-.ui.black.dividing.header {
- border-bottom: 2px solid #1B1C1D;
-}
-
-.ui.inverted.black.header.header.header {
- color: #545454;
-}
-
-a.ui.inverted.black.header.header.header:hover {
- color: #000000;
-}
-
-.ui.inverted.black.dividing.header {
- border-bottom: 2px solid #545454;
-}
-
-/*-------------------
- Aligned
- --------------------*/
-
-.ui.left.aligned.header {
- text-align: left;
-}
-
-.ui.right.aligned.header {
- text-align: right;
-}
-
-.ui.centered.header,
-.ui.center.aligned.header {
- text-align: center;
-}
-
-.ui.justified.header {
- text-align: justify;
-}
-
-.ui.justified.header:after {
- display: inline-block;
- content: '';
- width: 100%;
-}
-
-/*-------------------
- Floated
- --------------------*/
-
-.ui.floated.header,
-.ui[class*="left floated"].header {
- float: left;
- margin-top: 0;
- margin-right: 0.5em;
-}
-
-.ui[class*="right floated"].header {
- float: right;
- margin-top: 0;
- margin-left: 0.5em;
-}
-
-/*-------------------
- Fitted
- --------------------*/
-
-.ui.fitted.header {
- padding: 0;
-}
-
-/*-------------------
- Dividing
- --------------------*/
-
-.ui.dividing.header {
- padding-bottom: 0.21428571rem;
- border-bottom: 1px solid rgba(34, 36, 38, 0.15);
-}
-
-.ui.dividing.header .sub.header {
- padding-bottom: 0.21428571rem;
-}
-
-.ui.dividing.header .icon {
- margin-bottom: 0;
-}
-
-.ui.inverted.dividing.header {
- border-bottom-color: rgba(255, 255, 255, 0.1);
-}
-
-/*-------------------
- Block
- --------------------*/
-
-.ui.block.header {
- background: #F3F4F5;
- padding: 0.78571429rem 1rem;
- -webkit-box-shadow: none;
- box-shadow: none;
- border: 1px solid #D4D4D5;
- border-radius: 0.28571429rem;
-}
-
-.ui.block.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
- font-size: 1rem;
-}
-
-.ui.mini.block.header {
- font-size: 0.78571429rem;
-}
-
-.ui.tiny.block.header {
- font-size: 0.85714286rem;
-}
-
-.ui.small.block.header {
- font-size: 0.92857143rem;
-}
-
-.ui.large.block.header {
- font-size: 1.14285714rem;
-}
-
-.ui.big.block.header {
- font-size: 1.28571429rem;
-}
-
-.ui.huge.block.header {
- font-size: 1.42857143rem;
-}
-
-.ui.massive.block.header {
- font-size: 1.71428571rem;
-}
-
-/*-------------------
- Attached
- --------------------*/
-
-.ui.attached.header {
- background: #FFFFFF;
- padding: 0.78571429rem 1rem;
- margin: 0 -1px 0 -1px;
- -webkit-box-shadow: none;
- box-shadow: none;
- border: 1px solid #D4D4D5;
- border-radius: 0;
-}
-
-.ui.attached.block.header {
- background: #F3F4F5;
-}
-
-.ui.attached:not(.top).header {
- border-top: none;
-}
-
-.ui.top.attached.header {
- border-radius: 0.28571429rem 0.28571429rem 0 0;
-}
-
-.ui.bottom.attached.header {
- border-radius: 0 0 0.28571429rem 0.28571429rem;
-}
-
-/* Attached Sizes */
-
-.ui.attached.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
- font-size: 1em;
-}
-
-.ui.mini.attached.header {
- font-size: 0.78571429em;
-}
-
-.ui.tiny.attached.header {
- font-size: 0.85714286em;
-}
-
-.ui.small.attached.header {
- font-size: 0.92857143em;
-}
-
-.ui.large.attached.header {
- font-size: 1.14285714em;
-}
-
-.ui.big.attached.header {
- font-size: 1.28571429em;
-}
-
-.ui.huge.attached.header {
- font-size: 1.42857143em;
-}
-
-.ui.massive.attached.header {
- font-size: 1.71428571em;
-}
-
-/*-------------------
- Sizing
---------------------*/
-
-.ui.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
- font-size: 1.28571429em;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Icon
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Icon
-*******************************/
-
-@font-face {
- font-family: 'Icons';
- src: url("./themes/default/assets/fonts/icons.eot");
- src: url("./themes/default/assets/fonts/icons.eot?#iefix") format('embedded-opentype'), url("./themes/default/assets/fonts/icons.woff2") format('woff2'), url("./themes/default/assets/fonts/icons.woff") format('woff'), url("./themes/default/assets/fonts/icons.ttf") format('truetype'), url("./themes/default/assets/fonts/icons.svg#icons") format('svg');
- font-style: normal;
- font-weight: normal;
- font-variant: normal;
- text-decoration: inherit;
- text-transform: none;
-}
-
-i.icon {
- display: inline-block;
- opacity: 1;
- margin: 0 0.25rem 0 0;
- width: 1.18em;
- height: 1em;
- font-family: 'Icons';
- font-style: normal;
- font-weight: normal;
- text-decoration: inherit;
- text-align: center;
- speak: none;
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
-}
-
-i.icon:before {
- background: none !important;
-}
-
-/*******************************
- Types
-*******************************/
-
-/*--------------
- Loading
- ---------------*/
-
-i.icon.loading {
- height: 1em;
- line-height: 1;
- -webkit-animation: loader 2s linear infinite;
- animation: loader 2s linear infinite;
-}
-
-/*******************************
- States
-*******************************/
-
-i.icon:hover,
-i.icons:hover,
-i.icon:active,
-i.icons:active,
-i.emphasized.icon:not(.disabled),
-i.emphasized.icons:not(.disabled) {
- opacity: 1;
-}
-
-i.disabled.icon,
-i.disabled.icons {
- opacity: 0.45;
- cursor: default;
- pointer-events: none;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*-------------------
- Fitted
- --------------------*/
-
-i.fitted.icon {
- width: auto;
- margin: 0 !important;
-}
-
-/*-------------------
- Link
- --------------------*/
-
-i.link.icon:not(.disabled),
-i.link.icons:not(.disabled) {
- cursor: pointer;
- opacity: 0.8;
- -webkit-transition: opacity 0.1s ease;
- transition: opacity 0.1s ease;
-}
-
-i.link.icon:hover,
-i.link.icons:hover {
- opacity: 1;
-}
-
-/*-------------------
- Circular
- --------------------*/
-
-i.circular.icon {
- border-radius: 500em !important;
- line-height: 1 !important;
- padding: 0.5em 0 !important;
- -webkit-box-shadow: 0 0 0 0.1em rgba(0, 0, 0, 0.1) inset;
- box-shadow: 0 0 0 0.1em rgba(0, 0, 0, 0.1) inset;
- width: 2em !important;
- height: 2em !important;
-}
-
-i.circular.inverted.icon {
- border: none;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/*-------------------
- Flipped
- --------------------*/
-
-i.flipped.icon,
-i.horizontally.flipped.icon {
- -webkit-transform: scale(-1, 1);
- transform: scale(-1, 1);
-}
-
-i.vertically.flipped.icon {
- -webkit-transform: scale(1, -1);
- transform: scale(1, -1);
-}
-
-/*-------------------
- Rotated
- --------------------*/
-
-i.rotated.icon,
-i.right.rotated.icon,
-i.clockwise.rotated.icon {
- -webkit-transform: rotate(90deg);
- transform: rotate(90deg);
-}
-
-i.left.rotated.icon,
-i.counterclockwise.rotated.icon {
- -webkit-transform: rotate(-90deg);
- transform: rotate(-90deg);
-}
-
-i.halfway.rotated.icon {
- -webkit-transform: rotate(180deg);
- transform: rotate(180deg);
-}
-
-/*--------------------------
- Flipped & Rotated
- ---------------------------*/
-
-i.rotated.flipped.icon,
-i.right.rotated.flipped.icon,
-i.clockwise.rotated.flipped.icon {
- -webkit-transform: scale(-1, 1) rotate(90deg);
- transform: scale(-1, 1) rotate(90deg);
-}
-
-i.left.rotated.flipped.icon,
-i.counterclockwise.rotated.flipped.icon {
- -webkit-transform: scale(-1, 1) rotate(-90deg);
- transform: scale(-1, 1) rotate(-90deg);
-}
-
-i.halfway.rotated.flipped.icon {
- -webkit-transform: scale(-1, 1) rotate(180deg);
- transform: scale(-1, 1) rotate(180deg);
-}
-
-i.rotated.vertically.flipped.icon,
-i.right.rotated.vertically.flipped.icon,
-i.clockwise.rotated.vertically.flipped.icon {
- -webkit-transform: scale(1, -1) rotate(90deg);
- transform: scale(1, -1) rotate(90deg);
-}
-
-i.left.rotated.vertically.flipped.icon,
-i.counterclockwise.rotated.vertically.flipped.icon {
- -webkit-transform: scale(1, -1) rotate(-90deg);
- transform: scale(1, -1) rotate(-90deg);
-}
-
-i.halfway.rotated.vertically.flipped.icon {
- -webkit-transform: scale(1, -1) rotate(180deg);
- transform: scale(1, -1) rotate(180deg);
-}
-
-/*-------------------
- Bordered
- --------------------*/
-
-i.bordered.icon {
- line-height: 1;
- vertical-align: baseline;
- width: 2em;
- height: 2em;
- padding: 0.5em 0 !important;
- -webkit-box-shadow: 0 0 0 0.1em rgba(0, 0, 0, 0.1) inset;
- box-shadow: 0 0 0 0.1em rgba(0, 0, 0, 0.1) inset;
-}
-
-i.bordered.inverted.icon {
- border: none;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/*-------------------
- Inverted
- --------------------*/
-
-/* Inverted Shapes */
-
-i.inverted.bordered.icon,
-i.inverted.circular.icon {
- background-color: #1B1C1D;
- color: #FFFFFF;
-}
-
-i.inverted.icon {
- color: #FFFFFF;
-}
-
-/*-------------------
- Colors
---------------------*/
-
-i.primary.icon.icon.icon.icon {
- color: #2185D0;
-}
-
-i.inverted.primary.icon.icon.icon.icon {
- color: #54C8FF;
-}
-
-i.inverted.bordered.primary.icon.icon.icon.icon,
-i.inverted.circular.primary.icon.icon.icon.icon {
- background-color: #2185D0;
- color: #FFFFFF;
-}
-
-i.secondary.icon.icon.icon.icon {
- color: #1B1C1D;
-}
-
-i.inverted.secondary.icon.icon.icon.icon {
- color: #545454;
-}
-
-i.inverted.bordered.secondary.icon.icon.icon.icon,
-i.inverted.circular.secondary.icon.icon.icon.icon {
- background-color: #1B1C1D;
- color: #FFFFFF;
-}
-
-i.red.icon.icon.icon.icon {
- color: #DB2828;
-}
-
-i.inverted.red.icon.icon.icon.icon {
- color: #FF695E;
-}
-
-i.inverted.bordered.red.icon.icon.icon.icon,
-i.inverted.circular.red.icon.icon.icon.icon {
- background-color: #DB2828;
- color: #FFFFFF;
-}
-
-i.orange.icon.icon.icon.icon {
- color: #F2711C;
-}
-
-i.inverted.orange.icon.icon.icon.icon {
- color: #FF851B;
-}
-
-i.inverted.bordered.orange.icon.icon.icon.icon,
-i.inverted.circular.orange.icon.icon.icon.icon {
- background-color: #F2711C;
- color: #FFFFFF;
-}
-
-i.yellow.icon.icon.icon.icon {
- color: #FBBD08;
-}
-
-i.inverted.yellow.icon.icon.icon.icon {
- color: #FFE21F;
-}
-
-i.inverted.bordered.yellow.icon.icon.icon.icon,
-i.inverted.circular.yellow.icon.icon.icon.icon {
- background-color: #FBBD08;
- color: #FFFFFF;
-}
-
-i.olive.icon.icon.icon.icon {
- color: #B5CC18;
-}
-
-i.inverted.olive.icon.icon.icon.icon {
- color: #D9E778;
-}
-
-i.inverted.bordered.olive.icon.icon.icon.icon,
-i.inverted.circular.olive.icon.icon.icon.icon {
- background-color: #B5CC18;
- color: #FFFFFF;
-}
-
-i.green.icon.icon.icon.icon {
- color: #21BA45;
-}
-
-i.inverted.green.icon.icon.icon.icon {
- color: #2ECC40;
-}
-
-i.inverted.bordered.green.icon.icon.icon.icon,
-i.inverted.circular.green.icon.icon.icon.icon {
- background-color: #21BA45;
- color: #FFFFFF;
-}
-
-i.teal.icon.icon.icon.icon {
- color: #00B5AD;
-}
-
-i.inverted.teal.icon.icon.icon.icon {
- color: #6DFFFF;
-}
-
-i.inverted.bordered.teal.icon.icon.icon.icon,
-i.inverted.circular.teal.icon.icon.icon.icon {
- background-color: #00B5AD;
- color: #FFFFFF;
-}
-
-i.blue.icon.icon.icon.icon {
- color: #2185D0;
-}
-
-i.inverted.blue.icon.icon.icon.icon {
- color: #54C8FF;
-}
-
-i.inverted.bordered.blue.icon.icon.icon.icon,
-i.inverted.circular.blue.icon.icon.icon.icon {
- background-color: #2185D0;
- color: #FFFFFF;
-}
-
-i.violet.icon.icon.icon.icon {
- color: #6435C9;
-}
-
-i.inverted.violet.icon.icon.icon.icon {
- color: #A291FB;
-}
-
-i.inverted.bordered.violet.icon.icon.icon.icon,
-i.inverted.circular.violet.icon.icon.icon.icon {
- background-color: #6435C9;
- color: #FFFFFF;
-}
-
-i.purple.icon.icon.icon.icon {
- color: #A333C8;
-}
-
-i.inverted.purple.icon.icon.icon.icon {
- color: #DC73FF;
-}
-
-i.inverted.bordered.purple.icon.icon.icon.icon,
-i.inverted.circular.purple.icon.icon.icon.icon {
- background-color: #A333C8;
- color: #FFFFFF;
-}
-
-i.pink.icon.icon.icon.icon {
- color: #E03997;
-}
-
-i.inverted.pink.icon.icon.icon.icon {
- color: #FF8EDF;
-}
-
-i.inverted.bordered.pink.icon.icon.icon.icon,
-i.inverted.circular.pink.icon.icon.icon.icon {
- background-color: #E03997;
- color: #FFFFFF;
-}
-
-i.brown.icon.icon.icon.icon {
- color: #A5673F;
-}
-
-i.inverted.brown.icon.icon.icon.icon {
- color: #D67C1C;
-}
-
-i.inverted.bordered.brown.icon.icon.icon.icon,
-i.inverted.circular.brown.icon.icon.icon.icon {
- background-color: #A5673F;
- color: #FFFFFF;
-}
-
-i.grey.icon.icon.icon.icon {
- color: #767676;
-}
-
-i.inverted.grey.icon.icon.icon.icon {
- color: #DCDDDE;
-}
-
-i.inverted.bordered.grey.icon.icon.icon.icon,
-i.inverted.circular.grey.icon.icon.icon.icon {
- background-color: #767676;
- color: #FFFFFF;
-}
-
-i.black.icon.icon.icon.icon {
- color: #1B1C1D;
-}
-
-i.inverted.black.icon.icon.icon.icon {
- color: #545454;
-}
-
-i.inverted.bordered.black.icon.icon.icon.icon,
-i.inverted.circular.black.icon.icon.icon.icon {
- background-color: #1B1C1D;
- color: #FFFFFF;
-}
-
-/*-------------------
- Sizes
---------------------*/
-
-i.icon,
-i.icons {
- font-size: 1em;
-}
-
-i.mini.mini.mini.icon,
-i.mini.mini.mini.icons {
- line-height: 1;
- vertical-align: middle;
- font-size: 0.4em;
-}
-
-i.tiny.tiny.tiny.icon,
-i.tiny.tiny.tiny.icons {
- line-height: 1;
- vertical-align: middle;
- font-size: 0.5em;
-}
-
-i.small.small.small.icon,
-i.small.small.small.icons {
- line-height: 1;
- vertical-align: middle;
- font-size: 0.75em;
-}
-
-i.large.large.large.icon,
-i.large.large.large.icons {
- line-height: 1;
- vertical-align: middle;
- font-size: 1.5em;
-}
-
-i.big.big.big.icon,
-i.big.big.big.icons {
- line-height: 1;
- vertical-align: middle;
- font-size: 2em;
-}
-
-i.huge.huge.huge.icon,
-i.huge.huge.huge.icons {
- line-height: 1;
- vertical-align: middle;
- font-size: 4em;
-}
-
-i.massive.massive.massive.icon,
-i.massive.massive.massive.icons {
- line-height: 1;
- vertical-align: middle;
- font-size: 8em;
-}
-
-/*******************************
- Groups
- *******************************/
-
-i.icons {
- display: inline-block;
- position: relative;
- line-height: 1;
-}
-
-i.icons .icon {
- position: absolute;
- top: 50%;
- left: 50%;
- -webkit-transform: translateX(-50%) translateY(-50%);
- transform: translateX(-50%) translateY(-50%);
- margin: 0;
-}
-
-i.icons .icon:first-child {
- position: static;
- width: auto;
- height: auto;
- vertical-align: top;
- -webkit-transform: none;
- transform: none;
-}
-
-/* Corner Icon */
-
-i.icons .corner.icon {
- top: auto;
- left: auto;
- right: 0;
- bottom: 0;
- -webkit-transform: none;
- transform: none;
- font-size: 0.45em;
- text-shadow: -1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF;
-}
-
-i.icons .icon.corner[class*="top right"] {
- top: 0;
- left: auto;
- right: 0;
- bottom: auto;
-}
-
-i.icons .icon.corner[class*="top left"] {
- top: 0;
- left: 0;
- right: auto;
- bottom: auto;
-}
-
-i.icons .icon.corner[class*="bottom left"] {
- top: auto;
- left: 0;
- right: auto;
- bottom: 0;
-}
-
-i.icons .icon.corner[class*="bottom right"] {
- top: auto;
- left: auto;
- right: 0;
- bottom: 0;
-}
-
-i.icons .inverted.corner.icon {
- text-shadow: -1px -1px 0 #1B1C1D, 1px -1px 0 #1B1C1D, -1px 1px 0 #1B1C1D, 1px 1px 0 #1B1C1D;
-}
-
-/*
-* Font Awesome 5.12.0 by @fontawesome [https://fontawesome.com]
-* License - https://fontawesome.com/license (Icons: CC BY 4.0 License, Fonts: SIL OFL 1.1 License, CSS: MIT License)
-*/
-
-/*******************************
-
-Fomantic-UI integration of FontAwesome :
-
-// class names are separated
-i.icon.angle-left => i.icon.angle.left
-
-// variations are extracted
-i.icon.circle => i.icon.circle
-i.icon.circle-o => i.icon.circle.outline
-
-// abbreviation are replaced by full words
-i.icon.*-h => i.icon.*.horizontal
-i.icon.*-v => i.icon.*.vertical
-i.icon.alpha => i.icon.alphabet
-i.icon.asc => i.icon.ascending
-i.icon.desc => i.icon.descending
-i.icon.alt => i.icon.alternate
-
-
-Icons are order A-Z in their group, Solid, Outline, Thin (Pro only) and Brand
-
-*******************************/
-
-/*******************************
- Icons
-*******************************/
-
-/* Deprecated *In/Out Naming Conflict) */
-
-i.icon.linkedin.in:before {
- content: "\f0e1";
-}
-
-i.icon.zoom.in:before {
- content: "\f00e";
-}
-
-i.icon.zoom.out:before {
- content: "\f010";
-}
-
-i.icon.sign.in:before {
- content: "\f2f6";
-}
-
-i.icon.in.cart:before {
- content: "\f218";
-}
-
-i.icon.log.out:before {
- content: "\f2f5";
-}
-
-i.icon.sign.out:before {
- content: "\f2f5";
-}
-
-/*******************************
- Solid Icons
-*******************************/
-
-/* Icons */
-
-i.icon.ad:before {
- content: "\f641";
-}
-
-i.icon.address.book:before {
- content: "\f2b9";
-}
-
-i.icon.address.card:before {
- content: "\f2bb";
-}
-
-i.icon.adjust:before {
- content: "\f042";
-}
-
-i.icon.air.freshener:before {
- content: "\f5d0";
-}
-
-i.icon.align.center:before {
- content: "\f037";
-}
-
-i.icon.align.justify:before {
- content: "\f039";
-}
-
-i.icon.align.left:before {
- content: "\f036";
-}
-
-i.icon.align.right:before {
- content: "\f038";
-}
-
-i.icon.allergies:before {
- content: "\f461";
-}
-
-i.icon.ambulance:before {
- content: "\f0f9";
-}
-
-i.icon.american.sign.language.interpreting:before {
- content: "\f2a3";
-}
-
-i.icon.anchor:before {
- content: "\f13d";
-}
-
-i.icon.angle.double.down:before {
- content: "\f103";
-}
-
-i.icon.angle.double.left:before {
- content: "\f100";
-}
-
-i.icon.angle.double.right:before {
- content: "\f101";
-}
-
-i.icon.angle.double.up:before {
- content: "\f102";
-}
-
-i.icon.angle.down:before {
- content: "\f107";
-}
-
-i.icon.angle.left:before {
- content: "\f104";
-}
-
-i.icon.angle.right:before {
- content: "\f105";
-}
-
-i.icon.angle.up:before {
- content: "\f106";
-}
-
-i.icon.angry:before {
- content: "\f556";
-}
-
-i.icon.ankh:before {
- content: "\f644";
-}
-
-i.icon.archive:before {
- content: "\f187";
-}
-
-i.icon.archway:before {
- content: "\f557";
-}
-
-i.icon.arrow.alternate.circle.down:before {
- content: "\f358";
-}
-
-i.icon.arrow.alternate.circle.left:before {
- content: "\f359";
-}
-
-i.icon.arrow.alternate.circle.right:before {
- content: "\f35a";
-}
-
-i.icon.arrow.alternate.circle.up:before {
- content: "\f35b";
-}
-
-i.icon.arrow.circle.down:before {
- content: "\f0ab";
-}
-
-i.icon.arrow.circle.left:before {
- content: "\f0a8";
-}
-
-i.icon.arrow.circle.right:before {
- content: "\f0a9";
-}
-
-i.icon.arrow.circle.up:before {
- content: "\f0aa";
-}
-
-i.icon.arrow.left:before {
- content: "\f060";
-}
-
-i.icon.arrow.right:before {
- content: "\f061";
-}
-
-i.icon.arrow.up:before {
- content: "\f062";
-}
-
-i.icon.arrow.down:before {
- content: "\f063";
-}
-
-i.icon.arrows.alternate:before {
- content: "\f0b2";
-}
-
-i.icon.arrows.alternate.horizontal:before {
- content: "\f337";
-}
-
-i.icon.arrows.alternate.vertical:before {
- content: "\f338";
-}
-
-i.icon.assistive.listening.systems:before {
- content: "\f2a2";
-}
-
-i.icon.asterisk:before {
- content: "\f069";
-}
-
-i.icon.at:before {
- content: "\f1fa";
-}
-
-i.icon.atlas:before {
- content: "\f558";
-}
-
-i.icon.atom:before {
- content: "\f5d2";
-}
-
-i.icon.audio.description:before {
- content: "\f29e";
-}
-
-i.icon.award:before {
- content: "\f559";
-}
-
-i.icon.baby:before {
- content: "\f77c";
-}
-
-i.icon.baby.carriage:before {
- content: "\f77d";
-}
-
-i.icon.backspace:before {
- content: "\f55a";
-}
-
-i.icon.backward:before {
- content: "\f04a";
-}
-
-i.icon.bacon:before {
- content: "\f7e5";
-}
-
-i.icon.bahai:before {
- content: "\f666";
-}
-
-i.icon.balance.scale:before {
- content: "\f24e";
-}
-
-i.icon.balance.scale.left:before {
- content: "\f515";
-}
-
-i.icon.balance.scale.right:before {
- content: "\f516";
-}
-
-i.icon.ban:before {
- content: "\f05e";
-}
-
-i.icon.band.aid:before {
- content: "\f462";
-}
-
-i.icon.barcode:before {
- content: "\f02a";
-}
-
-i.icon.bars:before {
- content: "\f0c9";
-}
-
-i.icon.baseball.ball:before {
- content: "\f433";
-}
-
-i.icon.basketball.ball:before {
- content: "\f434";
-}
-
-i.icon.bath:before {
- content: "\f2cd";
-}
-
-i.icon.battery.empty:before {
- content: "\f244";
-}
-
-i.icon.battery.full:before {
- content: "\f240";
-}
-
-i.icon.battery.half:before {
- content: "\f242";
-}
-
-i.icon.battery.quarter:before {
- content: "\f243";
-}
-
-i.icon.battery.three.quarters:before {
- content: "\f241";
-}
-
-i.icon.bed:before {
- content: "\f236";
-}
-
-i.icon.beer:before {
- content: "\f0fc";
-}
-
-i.icon.bell:before {
- content: "\f0f3";
-}
-
-i.icon.bell.slash:before {
- content: "\f1f6";
-}
-
-i.icon.bezier.curve:before {
- content: "\f55b";
-}
-
-i.icon.bible:before {
- content: "\f647";
-}
-
-i.icon.bicycle:before {
- content: "\f206";
-}
-
-i.icon.biking:before {
- content: "\f84a";
-}
-
-i.icon.binoculars:before {
- content: "\f1e5";
-}
-
-i.icon.biohazard:before {
- content: "\f780";
-}
-
-i.icon.birthday.cake:before {
- content: "\f1fd";
-}
-
-i.icon.blender:before {
- content: "\f517";
-}
-
-i.icon.blender.phone:before {
- content: "\f6b6";
-}
-
-i.icon.blind:before {
- content: "\f29d";
-}
-
-i.icon.blog:before {
- content: "\f781";
-}
-
-i.icon.bold:before {
- content: "\f032";
-}
-
-i.icon.bolt:before {
- content: "\f0e7";
-}
-
-i.icon.bomb:before {
- content: "\f1e2";
-}
-
-i.icon.bone:before {
- content: "\f5d7";
-}
-
-i.icon.bong:before {
- content: "\f55c";
-}
-
-i.icon.book:before {
- content: "\f02d";
-}
-
-i.icon.book.dead:before {
- content: "\f6b7";
-}
-
-i.icon.book.medical:before {
- content: "\f7e6";
-}
-
-i.icon.book.open:before {
- content: "\f518";
-}
-
-i.icon.book.reader:before {
- content: "\f5da";
-}
-
-i.icon.bookmark:before {
- content: "\f02e";
-}
-
-i.icon.border.all:before {
- content: "\f84c";
-}
-
-i.icon.border.none:before {
- content: "\f850";
-}
-
-i.icon.border.style:before {
- content: "\f853";
-}
-
-i.icon.bowling.ball:before {
- content: "\f436";
-}
-
-i.icon.box:before {
- content: "\f466";
-}
-
-i.icon.box.open:before {
- content: "\f49e";
-}
-
-i.icon.boxes:before {
- content: "\f468";
-}
-
-i.icon.braille:before {
- content: "\f2a1";
-}
-
-i.icon.brain:before {
- content: "\f5dc";
-}
-
-i.icon.bread.slice:before {
- content: "\f7ec";
-}
-
-i.icon.briefcase:before {
- content: "\f0b1";
-}
-
-i.icon.briefcase.medical:before {
- content: "\f469";
-}
-
-i.icon.broadcast.tower:before {
- content: "\f519";
-}
-
-i.icon.broom:before {
- content: "\f51a";
-}
-
-i.icon.brush:before {
- content: "\f55d";
-}
-
-i.icon.bug:before {
- content: "\f188";
-}
-
-i.icon.building:before {
- content: "\f1ad";
-}
-
-i.icon.bullhorn:before {
- content: "\f0a1";
-}
-
-i.icon.bullseye:before {
- content: "\f140";
-}
-
-i.icon.burn:before {
- content: "\f46a";
-}
-
-i.icon.bus:before {
- content: "\f207";
-}
-
-i.icon.bus.alternate:before {
- content: "\f55e";
-}
-
-i.icon.business.time:before {
- content: "\f64a";
-}
-
-i.icon.calculator:before {
- content: "\f1ec";
-}
-
-i.icon.calendar:before {
- content: "\f133";
-}
-
-i.icon.calendar.alternate:before {
- content: "\f073";
-}
-
-i.icon.calendar.check:before {
- content: "\f274";
-}
-
-i.icon.calendar.day:before {
- content: "\f783";
-}
-
-i.icon.calendar.minus:before {
- content: "\f272";
-}
-
-i.icon.calendar.plus:before {
- content: "\f271";
-}
-
-i.icon.calendar.times:before {
- content: "\f273";
-}
-
-i.icon.calendar.week:before {
- content: "\f784";
-}
-
-i.icon.camera:before {
- content: "\f030";
-}
-
-i.icon.camera.retro:before {
- content: "\f083";
-}
-
-i.icon.campground:before {
- content: "\f6bb";
-}
-
-i.icon.candy.cane:before {
- content: "\f786";
-}
-
-i.icon.cannabis:before {
- content: "\f55f";
-}
-
-i.icon.capsules:before {
- content: "\f46b";
-}
-
-i.icon.car:before {
- content: "\f1b9";
-}
-
-i.icon.car.alternate:before {
- content: "\f5de";
-}
-
-i.icon.car.battery:before {
- content: "\f5df";
-}
-
-i.icon.car.crash:before {
- content: "\f5e1";
-}
-
-i.icon.car.side:before {
- content: "\f5e4";
-}
-
-i.icon.caravan:before {
- content: "\f8ff";
-}
-
-i.icon.caret.down:before {
- content: "\f0d7";
-}
-
-i.icon.caret.left:before {
- content: "\f0d9";
-}
-
-i.icon.caret.right:before {
- content: "\f0da";
-}
-
-i.icon.caret.square.down:before {
- content: "\f150";
-}
-
-i.icon.caret.square.left:before {
- content: "\f191";
-}
-
-i.icon.caret.square.right:before {
- content: "\f152";
-}
-
-i.icon.caret.square.up:before {
- content: "\f151";
-}
-
-i.icon.caret.up:before {
- content: "\f0d8";
-}
-
-i.icon.carrot:before {
- content: "\f787";
-}
-
-i.icon.cart.arrow.down:before {
- content: "\f218";
-}
-
-i.icon.cart.plus:before {
- content: "\f217";
-}
-
-i.icon.cash.register:before {
- content: "\f788";
-}
-
-i.icon.cat:before {
- content: "\f6be";
-}
-
-i.icon.certificate:before {
- content: "\f0a3";
-}
-
-i.icon.chair:before {
- content: "\f6c0";
-}
-
-i.icon.chalkboard:before {
- content: "\f51b";
-}
-
-i.icon.chalkboard.teacher:before {
- content: "\f51c";
-}
-
-i.icon.charging.station:before {
- content: "\f5e7";
-}
-
-i.icon.chart.area:before {
- content: "\f1fe";
-}
-
-i.icon.chart.bar:before {
- content: "\f080";
-}
-
-i.icon.chart.line:before {
- content: "\f201";
-}
-
-i.icon.chart.pie:before {
- content: "\f200";
-}
-
-i.icon.check:before {
- content: "\f00c";
-}
-
-i.icon.check.circle:before {
- content: "\f058";
-}
-
-i.icon.check.double:before {
- content: "\f560";
-}
-
-i.icon.check.square:before {
- content: "\f14a";
-}
-
-i.icon.cheese:before {
- content: "\f7ef";
-}
-
-i.icon.chess:before {
- content: "\f439";
-}
-
-i.icon.chess.bishop:before {
- content: "\f43a";
-}
-
-i.icon.chess.board:before {
- content: "\f43c";
-}
-
-i.icon.chess.king:before {
- content: "\f43f";
-}
-
-i.icon.chess.knight:before {
- content: "\f441";
-}
-
-i.icon.chess.pawn:before {
- content: "\f443";
-}
-
-i.icon.chess.queen:before {
- content: "\f445";
-}
-
-i.icon.chess.rook:before {
- content: "\f447";
-}
-
-i.icon.chevron.circle.down:before {
- content: "\f13a";
-}
-
-i.icon.chevron.circle.left:before {
- content: "\f137";
-}
-
-i.icon.chevron.circle.right:before {
- content: "\f138";
-}
-
-i.icon.chevron.circle.up:before {
- content: "\f139";
-}
-
-i.icon.chevron.down:before {
- content: "\f078";
-}
-
-i.icon.chevron.left:before {
- content: "\f053";
-}
-
-i.icon.chevron.right:before {
- content: "\f054";
-}
-
-i.icon.chevron.up:before {
- content: "\f077";
-}
-
-i.icon.child:before {
- content: "\f1ae";
-}
-
-i.icon.church:before {
- content: "\f51d";
-}
-
-i.icon.circle:before {
- content: "\f111";
-}
-
-i.icon.circle.notch:before {
- content: "\f1ce";
-}
-
-i.icon.city:before {
- content: "\f64f";
-}
-
-i.icon.clinic.medical:before {
- content: "\f7f2";
-}
-
-i.icon.clipboard:before {
- content: "\f328";
-}
-
-i.icon.clipboard.check:before {
- content: "\f46c";
-}
-
-i.icon.clipboard.list:before {
- content: "\f46d";
-}
-
-i.icon.clock:before {
- content: "\f017";
-}
-
-i.icon.clone:before {
- content: "\f24d";
-}
-
-i.icon.closed.captioning:before {
- content: "\f20a";
-}
-
-i.icon.cloud:before {
- content: "\f0c2";
-}
-
-i.icon.cloud.download.alternate:before {
- content: "\f381";
-}
-
-i.icon.cloud.meatball:before {
- content: "\f73b";
-}
-
-i.icon.cloud.moon:before {
- content: "\f6c3";
-}
-
-i.icon.cloud.moon.rain:before {
- content: "\f73c";
-}
-
-i.icon.cloud.rain:before {
- content: "\f73d";
-}
-
-i.icon.cloud.showers.heavy:before {
- content: "\f740";
-}
-
-i.icon.cloud.sun:before {
- content: "\f6c4";
-}
-
-i.icon.cloud.sun.rain:before {
- content: "\f743";
-}
-
-i.icon.cloud.upload.alternate:before {
- content: "\f382";
-}
-
-i.icon.cocktail:before {
- content: "\f561";
-}
-
-i.icon.code:before {
- content: "\f121";
-}
-
-i.icon.code.branch:before {
- content: "\f126";
-}
-
-i.icon.coffee:before {
- content: "\f0f4";
-}
-
-i.icon.cog:before {
- content: "\f013";
-}
-
-i.icon.cogs:before {
- content: "\f085";
-}
-
-i.icon.coins:before {
- content: "\f51e";
-}
-
-i.icon.columns:before {
- content: "\f0db";
-}
-
-i.icon.comment:before {
- content: "\f075";
-}
-
-i.icon.comment.alternate:before {
- content: "\f27a";
-}
-
-i.icon.comment.dollar:before {
- content: "\f651";
-}
-
-i.icon.comment.dots:before {
- content: "\f4ad";
-}
-
-i.icon.comment.medical:before {
- content: "\f7f5";
-}
-
-i.icon.comment.slash:before {
- content: "\f4b3";
-}
-
-i.icon.comments:before {
- content: "\f086";
-}
-
-i.icon.comments.dollar:before {
- content: "\f653";
-}
-
-i.icon.compact.disc:before {
- content: "\f51f";
-}
-
-i.icon.compass:before {
- content: "\f14e";
-}
-
-i.icon.compress:before {
- content: "\f066";
-}
-
-i.icon.compress.alternate:before {
- content: "\f422";
-}
-
-i.icon.compress.arrows.alternate:before {
- content: "\f78c";
-}
-
-i.icon.concierge.bell:before {
- content: "\f562";
-}
-
-i.icon.cookie:before {
- content: "\f563";
-}
-
-i.icon.cookie.bite:before {
- content: "\f564";
-}
-
-i.icon.copy:before {
- content: "\f0c5";
-}
-
-i.icon.copyright:before {
- content: "\f1f9";
-}
-
-i.icon.couch:before {
- content: "\f4b8";
-}
-
-i.icon.credit.card:before {
- content: "\f09d";
-}
-
-i.icon.crop:before {
- content: "\f125";
-}
-
-i.icon.crop.alternate:before {
- content: "\f565";
-}
-
-i.icon.cross:before {
- content: "\f654";
-}
-
-i.icon.crosshairs:before {
- content: "\f05b";
-}
-
-i.icon.crow:before {
- content: "\f520";
-}
-
-i.icon.crown:before {
- content: "\f521";
-}
-
-i.icon.crutch:before {
- content: "\f7f7";
-}
-
-i.icon.cube:before {
- content: "\f1b2";
-}
-
-i.icon.cubes:before {
- content: "\f1b3";
-}
-
-i.icon.cut:before {
- content: "\f0c4";
-}
-
-i.icon.database:before {
- content: "\f1c0";
-}
-
-i.icon.deaf:before {
- content: "\f2a4";
-}
-
-i.icon.democrat:before {
- content: "\f747";
-}
-
-i.icon.desktop:before {
- content: "\f108";
-}
-
-i.icon.dharmachakra:before {
- content: "\f655";
-}
-
-i.icon.diagnoses:before {
- content: "\f470";
-}
-
-i.icon.dice:before {
- content: "\f522";
-}
-
-i.icon.dice.d20:before {
- content: "\f6cf";
-}
-
-i.icon.dice.d6:before {
- content: "\f6d1";
-}
-
-i.icon.dice.five:before {
- content: "\f523";
-}
-
-i.icon.dice.four:before {
- content: "\f524";
-}
-
-i.icon.dice.one:before {
- content: "\f525";
-}
-
-i.icon.dice.six:before {
- content: "\f526";
-}
-
-i.icon.dice.three:before {
- content: "\f527";
-}
-
-i.icon.dice.two:before {
- content: "\f528";
-}
-
-i.icon.digital.tachograph:before {
- content: "\f566";
-}
-
-i.icon.directions:before {
- content: "\f5eb";
-}
-
-i.icon.divide:before {
- content: "\f529";
-}
-
-i.icon.dizzy:before {
- content: "\f567";
-}
-
-i.icon.dna:before {
- content: "\f471";
-}
-
-i.icon.dog:before {
- content: "\f6d3";
-}
-
-i.icon.dollar.sign:before {
- content: "\f155";
-}
-
-i.icon.dolly:before {
- content: "\f472";
-}
-
-i.icon.dolly.flatbed:before {
- content: "\f474";
-}
-
-i.icon.donate:before {
- content: "\f4b9";
-}
-
-i.icon.door.closed:before {
- content: "\f52a";
-}
-
-i.icon.door.open:before {
- content: "\f52b";
-}
-
-i.icon.dot.circle:before {
- content: "\f192";
-}
-
-i.icon.dove:before {
- content: "\f4ba";
-}
-
-i.icon.download:before {
- content: "\f019";
-}
-
-i.icon.drafting.compass:before {
- content: "\f568";
-}
-
-i.icon.dragon:before {
- content: "\f6d5";
-}
-
-i.icon.draw.polygon:before {
- content: "\f5ee";
-}
-
-i.icon.drum:before {
- content: "\f569";
-}
-
-i.icon.drum.steelpan:before {
- content: "\f56a";
-}
-
-i.icon.drumstick.bite:before {
- content: "\f6d7";
-}
-
-i.icon.dumbbell:before {
- content: "\f44b";
-}
-
-i.icon.dumpster:before {
- content: "\f793";
-}
-
-i.icon.dumpster.fire:before {
- content: "\f794";
-}
-
-i.icon.dungeon:before {
- content: "\f6d9";
-}
-
-i.icon.edit:before {
- content: "\f044";
-}
-
-i.icon.egg:before {
- content: "\f7fb";
-}
-
-i.icon.eject:before {
- content: "\f052";
-}
-
-i.icon.ellipsis.horizontal:before {
- content: "\f141";
-}
-
-i.icon.ellipsis.vertical:before {
- content: "\f142";
-}
-
-i.icon.envelope:before {
- content: "\f0e0";
-}
-
-i.icon.envelope.open:before {
- content: "\f2b6";
-}
-
-i.icon.envelope.open.text:before {
- content: "\f658";
-}
-
-i.icon.envelope.square:before {
- content: "\f199";
-}
-
-i.icon.equals:before {
- content: "\f52c";
-}
-
-i.icon.eraser:before {
- content: "\f12d";
-}
-
-i.icon.ethernet:before {
- content: "\f796";
-}
-
-i.icon.euro.sign:before {
- content: "\f153";
-}
-
-i.icon.exchange.alternate:before {
- content: "\f362";
-}
-
-i.icon.exclamation:before {
- content: "\f12a";
-}
-
-i.icon.exclamation.circle:before {
- content: "\f06a";
-}
-
-i.icon.exclamation.triangle:before {
- content: "\f071";
-}
-
-i.icon.expand:before {
- content: "\f065";
-}
-
-i.icon.expand.alternate:before {
- content: "\f424";
-}
-
-i.icon.expand.arrows.alternate:before {
- content: "\f31e";
-}
-
-i.icon.external.alternate:before {
- content: "\f35d";
-}
-
-i.icon.external.link.square.alternate:before {
- content: "\f360";
-}
-
-i.icon.eye:before {
- content: "\f06e";
-}
-
-i.icon.eye.dropper:before {
- content: "\f1fb";
-}
-
-i.icon.eye.slash:before {
- content: "\f070";
-}
-
-i.icon.fan:before {
- content: "\f863";
-}
-
-i.icon.fast.backward:before {
- content: "\f049";
-}
-
-i.icon.fast.forward:before {
- content: "\f050";
-}
-
-i.icon.fax:before {
- content: "\f1ac";
-}
-
-i.icon.feather:before {
- content: "\f52d";
-}
-
-i.icon.feather.alternate:before {
- content: "\f56b";
-}
-
-i.icon.female:before {
- content: "\f182";
-}
-
-i.icon.fighter.jet:before {
- content: "\f0fb";
-}
-
-i.icon.file:before {
- content: "\f15b";
-}
-
-i.icon.file.alternate:before {
- content: "\f15c";
-}
-
-i.icon.file.archive:before {
- content: "\f1c6";
-}
-
-i.icon.file.audio:before {
- content: "\f1c7";
-}
-
-i.icon.file.code:before {
- content: "\f1c9";
-}
-
-i.icon.file.contract:before {
- content: "\f56c";
-}
-
-i.icon.file.csv:before {
- content: "\f6dd";
-}
-
-i.icon.file.download:before {
- content: "\f56d";
-}
-
-i.icon.file.excel:before {
- content: "\f1c3";
-}
-
-i.icon.file.export:before {
- content: "\f56e";
-}
-
-i.icon.file.image:before {
- content: "\f1c5";
-}
-
-i.icon.file.import:before {
- content: "\f56f";
-}
-
-i.icon.file.invoice:before {
- content: "\f570";
-}
-
-i.icon.file.invoice.dollar:before {
- content: "\f571";
-}
-
-i.icon.file.medical:before {
- content: "\f477";
-}
-
-i.icon.file.medical.alternate:before {
- content: "\f478";
-}
-
-i.icon.file.pdf:before {
- content: "\f1c1";
-}
-
-i.icon.file.powerpoint:before {
- content: "\f1c4";
-}
-
-i.icon.file.prescription:before {
- content: "\f572";
-}
-
-i.icon.file.signature:before {
- content: "\f573";
-}
-
-i.icon.file.upload:before {
- content: "\f574";
-}
-
-i.icon.file.video:before {
- content: "\f1c8";
-}
-
-i.icon.file.word:before {
- content: "\f1c2";
-}
-
-i.icon.fill:before {
- content: "\f575";
-}
-
-i.icon.fill.drip:before {
- content: "\f576";
-}
-
-i.icon.film:before {
- content: "\f008";
-}
-
-i.icon.filter:before {
- content: "\f0b0";
-}
-
-i.icon.fingerprint:before {
- content: "\f577";
-}
-
-i.icon.fire:before {
- content: "\f06d";
-}
-
-i.icon.fire.alternate:before {
- content: "\f7e4";
-}
-
-i.icon.fire.extinguisher:before {
- content: "\f134";
-}
-
-i.icon.first.aid:before {
- content: "\f479";
-}
-
-i.icon.fish:before {
- content: "\f578";
-}
-
-i.icon.fist.raised:before {
- content: "\f6de";
-}
-
-i.icon.flag:before {
- content: "\f024";
-}
-
-i.icon.flag.checkered:before {
- content: "\f11e";
-}
-
-i.icon.flag.usa:before {
- content: "\f74d";
-}
-
-i.icon.flask:before {
- content: "\f0c3";
-}
-
-i.icon.flushed:before {
- content: "\f579";
-}
-
-i.icon.folder:before {
- content: "\f07b";
-}
-
-i.icon.folder.minus:before {
- content: "\f65d";
-}
-
-i.icon.folder.open:before {
- content: "\f07c";
-}
-
-i.icon.folder.plus:before {
- content: "\f65e";
-}
-
-i.icon.font:before {
- content: "\f031";
-}
-
-i.icon.football.ball:before {
- content: "\f44e";
-}
-
-i.icon.forward:before {
- content: "\f04e";
-}
-
-i.icon.frog:before {
- content: "\f52e";
-}
-
-i.icon.frown:before {
- content: "\f119";
-}
-
-i.icon.frown.open:before {
- content: "\f57a";
-}
-
-i.icon.fruit-apple:before {
- content: "\f5d1";
-}
-
-i.icon.funnel.dollar:before {
- content: "\f662";
-}
-
-i.icon.futbol:before {
- content: "\f1e3";
-}
-
-i.icon.gamepad:before {
- content: "\f11b";
-}
-
-i.icon.gas.pump:before {
- content: "\f52f";
-}
-
-i.icon.gavel:before {
- content: "\f0e3";
-}
-
-i.icon.gem:before {
- content: "\f3a5";
-}
-
-i.icon.genderless:before {
- content: "\f22d";
-}
-
-i.icon.ghost:before {
- content: "\f6e2";
-}
-
-i.icon.gift:before {
- content: "\f06b";
-}
-
-i.icon.gifts:before {
- content: "\f79c";
-}
-
-i.icon.glass.cheers:before {
- content: "\f79f";
-}
-
-i.icon.glass.martini:before {
- content: "\f000";
-}
-
-i.icon.glass.martini.alternate:before {
- content: "\f57b";
-}
-
-i.icon.glass.whiskey:before {
- content: "\f7a0";
-}
-
-i.icon.glasses:before {
- content: "\f530";
-}
-
-i.icon.globe:before {
- content: "\f0ac";
-}
-
-i.icon.globe.africa:before {
- content: "\f57c";
-}
-
-i.icon.globe.americas:before {
- content: "\f57d";
-}
-
-i.icon.globe.asia:before {
- content: "\f57e";
-}
-
-i.icon.globe.europe:before {
- content: "\f7a2";
-}
-
-i.icon.golf.ball:before {
- content: "\f450";
-}
-
-i.icon.gopuram:before {
- content: "\f664";
-}
-
-i.icon.graduation.cap:before {
- content: "\f19d";
-}
-
-i.icon.greater.than:before {
- content: "\f531";
-}
-
-i.icon.greater.than.equal:before {
- content: "\f532";
-}
-
-i.icon.grimace:before {
- content: "\f57f";
-}
-
-i.icon.grin:before {
- content: "\f580";
-}
-
-i.icon.grin.alternate:before {
- content: "\f581";
-}
-
-i.icon.grin.beam:before {
- content: "\f582";
-}
-
-i.icon.grin.beam.sweat:before {
- content: "\f583";
-}
-
-i.icon.grin.hearts:before {
- content: "\f584";
-}
-
-i.icon.grin.squint:before {
- content: "\f585";
-}
-
-i.icon.grin.squint.tears:before {
- content: "\f586";
-}
-
-i.icon.grin.stars:before {
- content: "\f587";
-}
-
-i.icon.grin.tears:before {
- content: "\f588";
-}
-
-i.icon.grin.tongue:before {
- content: "\f589";
-}
-
-i.icon.grin.tongue.squint:before {
- content: "\f58a";
-}
-
-i.icon.grin.tongue.wink:before {
- content: "\f58b";
-}
-
-i.icon.grin.wink:before {
- content: "\f58c";
-}
-
-i.icon.grip.horizontal:before {
- content: "\f58d";
-}
-
-i.icon.grip.lines:before {
- content: "\f7a4";
-}
-
-i.icon.grip.lines.vertical:before {
- content: "\f7a5";
-}
-
-i.icon.grip.vertical:before {
- content: "\f58e";
-}
-
-i.icon.guitar:before {
- content: "\f7a6";
-}
-
-i.icon.h.square:before {
- content: "\f0fd";
-}
-
-i.icon.hamburger:before {
- content: "\f805";
-}
-
-i.icon.hammer:before {
- content: "\f6e3";
-}
-
-i.icon.hamsa:before {
- content: "\f665";
-}
-
-i.icon.hand.holding:before {
- content: "\f4bd";
-}
-
-i.icon.hand.holding.heart:before {
- content: "\f4be";
-}
-
-i.icon.hand.holding.usd:before {
- content: "\f4c0";
-}
-
-i.icon.hand.lizard:before {
- content: "\f258";
-}
-
-i.icon.hand.middle.finger:before {
- content: "\f806";
-}
-
-i.icon.hand.paper:before {
- content: "\f256";
-}
-
-i.icon.hand.peace:before {
- content: "\f25b";
-}
-
-i.icon.hand.point.down:before {
- content: "\f0a7";
-}
-
-i.icon.hand.point.left:before {
- content: "\f0a5";
-}
-
-i.icon.hand.point.right:before {
- content: "\f0a4";
-}
-
-i.icon.hand.point.up:before {
- content: "\f0a6";
-}
-
-i.icon.hand.pointer:before {
- content: "\f25a";
-}
-
-i.icon.hand.rock:before {
- content: "\f255";
-}
-
-i.icon.hand.scissors:before {
- content: "\f257";
-}
-
-i.icon.hand.spock:before {
- content: "\f259";
-}
-
-i.icon.hands:before {
- content: "\f4c2";
-}
-
-i.icon.hands.helping:before {
- content: "\f4c4";
-}
-
-i.icon.handshake:before {
- content: "\f2b5";
-}
-
-i.icon.hanukiah:before {
- content: "\f6e6";
-}
-
-i.icon.hard.hat:before {
- content: "\f807";
-}
-
-i.icon.hashtag:before {
- content: "\f292";
-}
-
-i.icon.hat.cowboy:before {
- content: "\f8c0";
-}
-
-i.icon.hat.cowboy.side:before {
- content: "\f8c1";
-}
-
-i.icon.hat.wizard:before {
- content: "\f6e8";
-}
-
-i.icon.hdd:before {
- content: "\f0a0";
-}
-
-i.icon.heading:before {
- content: "\f1dc";
-}
-
-i.icon.headphones:before {
- content: "\f025";
-}
-
-i.icon.headphones.alternate:before {
- content: "\f58f";
-}
-
-i.icon.headset:before {
- content: "\f590";
-}
-
-i.icon.heart:before {
- content: "\f004";
-}
-
-i.icon.heart.broken:before {
- content: "\f7a9";
-}
-
-i.icon.heartbeat:before {
- content: "\f21e";
-}
-
-i.icon.helicopter:before {
- content: "\f533";
-}
-
-i.icon.highlighter:before {
- content: "\f591";
-}
-
-i.icon.hiking:before {
- content: "\f6ec";
-}
-
-i.icon.hippo:before {
- content: "\f6ed";
-}
-
-i.icon.history:before {
- content: "\f1da";
-}
-
-i.icon.hockey.puck:before {
- content: "\f453";
-}
-
-i.icon.holly.berry:before {
- content: "\f7aa";
-}
-
-i.icon.home:before {
- content: "\f015";
-}
-
-i.icon.horse:before {
- content: "\f6f0";
-}
-
-i.icon.horse.head:before {
- content: "\f7ab";
-}
-
-i.icon.hospital:before {
- content: "\f0f8";
-}
-
-i.icon.hospital.alternate:before {
- content: "\f47d";
-}
-
-i.icon.hospital.symbol:before {
- content: "\f47e";
-}
-
-i.icon.hot.tub:before {
- content: "\f593";
-}
-
-i.icon.hotdog:before {
- content: "\f80f";
-}
-
-i.icon.hotel:before {
- content: "\f594";
-}
-
-i.icon.hourglass:before {
- content: "\f254";
-}
-
-i.icon.hourglass.end:before {
- content: "\f253";
-}
-
-i.icon.hourglass.half:before {
- content: "\f252";
-}
-
-i.icon.hourglass.start:before {
- content: "\f251";
-}
-
-i.icon.house.damage:before {
- content: "\f6f1";
-}
-
-i.icon.hryvnia:before {
- content: "\f6f2";
-}
-
-i.icon.i.cursor:before {
- content: "\f246";
-}
-
-i.icon.ice.cream:before {
- content: "\f810";
-}
-
-i.icon.icicles:before {
- content: "\f7ad";
-}
-
-i.icon.icons:before {
- content: "\f86d";
-}
-
-i.icon.id.badge:before {
- content: "\f2c1";
-}
-
-i.icon.id.card:before {
- content: "\f2c2";
-}
-
-i.icon.id.card.alternate:before {
- content: "\f47f";
-}
-
-i.icon.igloo:before {
- content: "\f7ae";
-}
-
-i.icon.image:before {
- content: "\f03e";
-}
-
-i.icon.images:before {
- content: "\f302";
-}
-
-i.icon.inbox:before {
- content: "\f01c";
-}
-
-i.icon.indent:before {
- content: "\f03c";
-}
-
-i.icon.industry:before {
- content: "\f275";
-}
-
-i.icon.infinity:before {
- content: "\f534";
-}
-
-i.icon.info:before {
- content: "\f129";
-}
-
-i.icon.info.circle:before {
- content: "\f05a";
-}
-
-i.icon.italic:before {
- content: "\f033";
-}
-
-i.icon.jedi:before {
- content: "\f669";
-}
-
-i.icon.joint:before {
- content: "\f595";
-}
-
-i.icon.journal.whills:before {
- content: "\f66a";
-}
-
-i.icon.kaaba:before {
- content: "\f66b";
-}
-
-i.icon.key:before {
- content: "\f084";
-}
-
-i.icon.keyboard:before {
- content: "\f11c";
-}
-
-i.icon.khanda:before {
- content: "\f66d";
-}
-
-i.icon.kiss:before {
- content: "\f596";
-}
-
-i.icon.kiss.beam:before {
- content: "\f597";
-}
-
-i.icon.kiss.wink.heart:before {
- content: "\f598";
-}
-
-i.icon.kiwi.bird:before {
- content: "\f535";
-}
-
-i.icon.landmark:before {
- content: "\f66f";
-}
-
-i.icon.language:before {
- content: "\f1ab";
-}
-
-i.icon.laptop:before {
- content: "\f109";
-}
-
-i.icon.laptop.code:before {
- content: "\f5fc";
-}
-
-i.icon.laptop.medical:before {
- content: "\f812";
-}
-
-i.icon.laugh:before {
- content: "\f599";
-}
-
-i.icon.laugh.beam:before {
- content: "\f59a";
-}
-
-i.icon.laugh.squint:before {
- content: "\f59b";
-}
-
-i.icon.laugh.wink:before {
- content: "\f59c";
-}
-
-i.icon.layer.group:before {
- content: "\f5fd";
-}
-
-i.icon.leaf:before {
- content: "\f06c";
-}
-
-i.icon.lemon:before {
- content: "\f094";
-}
-
-i.icon.less.than:before {
- content: "\f536";
-}
-
-i.icon.less.than.equal:before {
- content: "\f537";
-}
-
-i.icon.level.down.alternate:before {
- content: "\f3be";
-}
-
-i.icon.level.up.alternate:before {
- content: "\f3bf";
-}
-
-i.icon.life.ring:before {
- content: "\f1cd";
-}
-
-i.icon.lightbulb:before {
- content: "\f0eb";
-}
-
-i.icon.linkify:before {
- content: "\f0c1";
-}
-
-i.icon.lira.sign:before {
- content: "\f195";
-}
-
-i.icon.list:before {
- content: "\f03a";
-}
-
-i.icon.list.alternate:before {
- content: "\f022";
-}
-
-i.icon.list.ol:before {
- content: "\f0cb";
-}
-
-i.icon.list.ul:before {
- content: "\f0ca";
-}
-
-i.icon.location.arrow:before {
- content: "\f124";
-}
-
-i.icon.lock:before {
- content: "\f023";
-}
-
-i.icon.lock.open:before {
- content: "\f3c1";
-}
-
-i.icon.long.arrow.alternate.down:before {
- content: "\f309";
-}
-
-i.icon.long.arrow.alternate.left:before {
- content: "\f30a";
-}
-
-i.icon.long.arrow.alternate.right:before {
- content: "\f30b";
-}
-
-i.icon.long.arrow.alternate.up:before {
- content: "\f30c";
-}
-
-i.icon.low.vision:before {
- content: "\f2a8";
-}
-
-i.icon.luggage.cart:before {
- content: "\f59d";
-}
-
-i.icon.magic:before {
- content: "\f0d0";
-}
-
-i.icon.magnet:before {
- content: "\f076";
-}
-
-i.icon.mail.bulk:before {
- content: "\f674";
-}
-
-i.icon.male:before {
- content: "\f183";
-}
-
-i.icon.map:before {
- content: "\f279";
-}
-
-i.icon.map.marked:before {
- content: "\f59f";
-}
-
-i.icon.map.marked.alternate:before {
- content: "\f5a0";
-}
-
-i.icon.map.marker:before {
- content: "\f041";
-}
-
-i.icon.map.marker.alternate:before {
- content: "\f3c5";
-}
-
-i.icon.map.pin:before {
- content: "\f276";
-}
-
-i.icon.map.signs:before {
- content: "\f277";
-}
-
-i.icon.marker:before {
- content: "\f5a1";
-}
-
-i.icon.mars:before {
- content: "\f222";
-}
-
-i.icon.mars.double:before {
- content: "\f227";
-}
-
-i.icon.mars.stroke:before {
- content: "\f229";
-}
-
-i.icon.mars.stroke.horizontal:before {
- content: "\f22b";
-}
-
-i.icon.mars.stroke.vertical:before {
- content: "\f22a";
-}
-
-i.icon.mask:before {
- content: "\f6fa";
-}
-
-i.icon.medal:before {
- content: "\f5a2";
-}
-
-i.icon.medkit:before {
- content: "\f0fa";
-}
-
-i.icon.meh:before {
- content: "\f11a";
-}
-
-i.icon.meh.blank:before {
- content: "\f5a4";
-}
-
-i.icon.meh.rolling.eyes:before {
- content: "\f5a5";
-}
-
-i.icon.memory:before {
- content: "\f538";
-}
-
-i.icon.menorah:before {
- content: "\f676";
-}
-
-i.icon.mercury:before {
- content: "\f223";
-}
-
-i.icon.meteor:before {
- content: "\f753";
-}
-
-i.icon.microchip:before {
- content: "\f2db";
-}
-
-i.icon.microphone:before {
- content: "\f130";
-}
-
-i.icon.microphone.alternate:before {
- content: "\f3c9";
-}
-
-i.icon.microphone.alternate.slash:before {
- content: "\f539";
-}
-
-i.icon.microphone.slash:before {
- content: "\f131";
-}
-
-i.icon.microscope:before {
- content: "\f610";
-}
-
-i.icon.minus:before {
- content: "\f068";
-}
-
-i.icon.minus.circle:before {
- content: "\f056";
-}
-
-i.icon.minus.square:before {
- content: "\f146";
-}
-
-i.icon.mitten:before {
- content: "\f7b5";
-}
-
-i.icon.mobile:before {
- content: "\f10b";
-}
-
-i.icon.mobile.alternate:before {
- content: "\f3cd";
-}
-
-i.icon.money.bill:before {
- content: "\f0d6";
-}
-
-i.icon.money.bill.alternate:before {
- content: "\f3d1";
-}
-
-i.icon.money.bill.wave:before {
- content: "\f53a";
-}
-
-i.icon.money.bill.wave.alternate:before {
- content: "\f53b";
-}
-
-i.icon.money.check:before {
- content: "\f53c";
-}
-
-i.icon.money.check.alternate:before {
- content: "\f53d";
-}
-
-i.icon.monument:before {
- content: "\f5a6";
-}
-
-i.icon.moon:before {
- content: "\f186";
-}
-
-i.icon.mortar.pestle:before {
- content: "\f5a7";
-}
-
-i.icon.mosque:before {
- content: "\f678";
-}
-
-i.icon.motorcycle:before {
- content: "\f21c";
-}
-
-i.icon.mountain:before {
- content: "\f6fc";
-}
-
-i.icon.mouse:before {
- content: "\f8cc";
-}
-
-i.icon.mouse.pointer:before {
- content: "\f245";
-}
-
-i.icon.mug.hot:before {
- content: "\f7b6";
-}
-
-i.icon.music:before {
- content: "\f001";
-}
-
-i.icon.network.wired:before {
- content: "\f6ff";
-}
-
-i.icon.neuter:before {
- content: "\f22c";
-}
-
-i.icon.newspaper:before {
- content: "\f1ea";
-}
-
-i.icon.not.equal:before {
- content: "\f53e";
-}
-
-i.icon.notes.medical:before {
- content: "\f481";
-}
-
-i.icon.object.group:before {
- content: "\f247";
-}
-
-i.icon.object.ungroup:before {
- content: "\f248";
-}
-
-i.icon.oil.can:before {
- content: "\f613";
-}
-
-i.icon.om:before {
- content: "\f679";
-}
-
-i.icon.otter:before {
- content: "\f700";
-}
-
-i.icon.outdent:before {
- content: "\f03b";
-}
-
-i.icon.pager:before {
- content: "\f815";
-}
-
-i.icon.paint.brush:before {
- content: "\f1fc";
-}
-
-i.icon.paint.roller:before {
- content: "\f5aa";
-}
-
-i.icon.palette:before {
- content: "\f53f";
-}
-
-i.icon.pallet:before {
- content: "\f482";
-}
-
-i.icon.paper.plane:before {
- content: "\f1d8";
-}
-
-i.icon.paperclip:before {
- content: "\f0c6";
-}
-
-i.icon.parachute.box:before {
- content: "\f4cd";
-}
-
-i.icon.paragraph:before {
- content: "\f1dd";
-}
-
-i.icon.parking:before {
- content: "\f540";
-}
-
-i.icon.passport:before {
- content: "\f5ab";
-}
-
-i.icon.pastafarianism:before {
- content: "\f67b";
-}
-
-i.icon.paste:before {
- content: "\f0ea";
-}
-
-i.icon.pause:before {
- content: "\f04c";
-}
-
-i.icon.pause.circle:before {
- content: "\f28b";
-}
-
-i.icon.paw:before {
- content: "\f1b0";
-}
-
-i.icon.peace:before {
- content: "\f67c";
-}
-
-i.icon.pen:before {
- content: "\f304";
-}
-
-i.icon.pen.alternate:before {
- content: "\f305";
-}
-
-i.icon.pen.fancy:before {
- content: "\f5ac";
-}
-
-i.icon.pen.nib:before {
- content: "\f5ad";
-}
-
-i.icon.pen.square:before {
- content: "\f14b";
-}
-
-i.icon.pencil.alternate:before {
- content: "\f303";
-}
-
-i.icon.pencil.ruler:before {
- content: "\f5ae";
-}
-
-i.icon.people.carry:before {
- content: "\f4ce";
-}
-
-i.icon.pepper.hot:before {
- content: "\f816";
-}
-
-i.icon.percent:before {
- content: "\f295";
-}
-
-i.icon.percentage:before {
- content: "\f541";
-}
-
-i.icon.person.booth:before {
- content: "\f756";
-}
-
-i.icon.phone:before {
- content: "\f095";
-}
-
-i.icon.phone.alternate:before {
- content: "\f879";
-}
-
-i.icon.phone.slash:before {
- content: "\f3dd";
-}
-
-i.icon.phone.square:before {
- content: "\f098";
-}
-
-i.icon.phone.square.alternate:before {
- content: "\f87b";
-}
-
-i.icon.phone.volume:before {
- content: "\f2a0";
-}
-
-i.icon.photo.video:before {
- content: "\f87c";
-}
-
-i.icon.piggy.bank:before {
- content: "\f4d3";
-}
-
-i.icon.pills:before {
- content: "\f484";
-}
-
-i.icon.pizza.slice:before {
- content: "\f818";
-}
-
-i.icon.place.of.worship:before {
- content: "\f67f";
-}
-
-i.icon.plane:before {
- content: "\f072";
-}
-
-i.icon.plane.arrival:before {
- content: "\f5af";
-}
-
-i.icon.plane.departure:before {
- content: "\f5b0";
-}
-
-i.icon.play:before {
- content: "\f04b";
-}
-
-i.icon.play.circle:before {
- content: "\f144";
-}
-
-i.icon.plug:before {
- content: "\f1e6";
-}
-
-i.icon.plus:before {
- content: "\f067";
-}
-
-i.icon.plus.circle:before {
- content: "\f055";
-}
-
-i.icon.plus.square:before {
- content: "\f0fe";
-}
-
-i.icon.podcast:before {
- content: "\f2ce";
-}
-
-i.icon.poll:before {
- content: "\f681";
-}
-
-i.icon.poll.horizontal:before {
- content: "\f682";
-}
-
-i.icon.poo:before {
- content: "\f2fe";
-}
-
-i.icon.poo.storm:before {
- content: "\f75a";
-}
-
-i.icon.poop:before {
- content: "\f619";
-}
-
-i.icon.portrait:before {
- content: "\f3e0";
-}
-
-i.icon.pound.sign:before {
- content: "\f154";
-}
-
-i.icon.power.off:before {
- content: "\f011";
-}
-
-i.icon.pray:before {
- content: "\f683";
-}
-
-i.icon.praying.hands:before {
- content: "\f684";
-}
-
-i.icon.prescription:before {
- content: "\f5b1";
-}
-
-i.icon.prescription.bottle:before {
- content: "\f485";
-}
-
-i.icon.prescription.bottle.alternate:before {
- content: "\f486";
-}
-
-i.icon.print:before {
- content: "\f02f";
-}
-
-i.icon.procedures:before {
- content: "\f487";
-}
-
-i.icon.project.diagram:before {
- content: "\f542";
-}
-
-i.icon.puzzle.piece:before {
- content: "\f12e";
-}
-
-i.icon.qrcode:before {
- content: "\f029";
-}
-
-i.icon.question:before {
- content: "\f128";
-}
-
-i.icon.question.circle:before {
- content: "\f059";
-}
-
-i.icon.quidditch:before {
- content: "\f458";
-}
-
-i.icon.quote.left:before {
- content: "\f10d";
-}
-
-i.icon.quote.right:before {
- content: "\f10e";
-}
-
-i.icon.quran:before {
- content: "\f687";
-}
-
-i.icon.radiation:before {
- content: "\f7b9";
-}
-
-i.icon.radiation.alternate:before {
- content: "\f7ba";
-}
-
-i.icon.rainbow:before {
- content: "\f75b";
-}
-
-i.icon.random:before {
- content: "\f074";
-}
-
-i.icon.receipt:before {
- content: "\f543";
-}
-
-i.icon.record.vinyl:before {
- content: "\f8d9";
-}
-
-i.icon.recycle:before {
- content: "\f1b8";
-}
-
-i.icon.redo:before {
- content: "\f01e";
-}
-
-i.icon.redo.alternate:before {
- content: "\f2f9";
-}
-
-i.icon.registered:before {
- content: "\f25d";
-}
-
-i.icon.remove.format:before {
- content: "\f87d";
-}
-
-i.icon.reply:before {
- content: "\f3e5";
-}
-
-i.icon.reply.all:before {
- content: "\f122";
-}
-
-i.icon.republican:before {
- content: "\f75e";
-}
-
-i.icon.restroom:before {
- content: "\f7bd";
-}
-
-i.icon.retweet:before {
- content: "\f079";
-}
-
-i.icon.ribbon:before {
- content: "\f4d6";
-}
-
-i.icon.ring:before {
- content: "\f70b";
-}
-
-i.icon.road:before {
- content: "\f018";
-}
-
-i.icon.robot:before {
- content: "\f544";
-}
-
-i.icon.rocket:before {
- content: "\f135";
-}
-
-i.icon.route:before {
- content: "\f4d7";
-}
-
-i.icon.rss:before {
- content: "\f09e";
-}
-
-i.icon.rss.square:before {
- content: "\f143";
-}
-
-i.icon.ruble.sign:before {
- content: "\f158";
-}
-
-i.icon.ruler:before {
- content: "\f545";
-}
-
-i.icon.ruler.combined:before {
- content: "\f546";
-}
-
-i.icon.ruler.horizontal:before {
- content: "\f547";
-}
-
-i.icon.ruler.vertical:before {
- content: "\f548";
-}
-
-i.icon.running:before {
- content: "\f70c";
-}
-
-i.icon.rupee.sign:before {
- content: "\f156";
-}
-
-i.icon.sad.cry:before {
- content: "\f5b3";
-}
-
-i.icon.sad.tear:before {
- content: "\f5b4";
-}
-
-i.icon.satellite:before {
- content: "\f7bf";
-}
-
-i.icon.satellite.dish:before {
- content: "\f7c0";
-}
-
-i.icon.save:before {
- content: "\f0c7";
-}
-
-i.icon.school:before {
- content: "\f549";
-}
-
-i.icon.screwdriver:before {
- content: "\f54a";
-}
-
-i.icon.scroll:before {
- content: "\f70e";
-}
-
-i.icon.sd.card:before {
- content: "\f7c2";
-}
-
-i.icon.search:before {
- content: "\f002";
-}
-
-i.icon.search.dollar:before {
- content: "\f688";
-}
-
-i.icon.search.location:before {
- content: "\f689";
-}
-
-i.icon.search.minus:before {
- content: "\f010";
-}
-
-i.icon.search.plus:before {
- content: "\f00e";
-}
-
-i.icon.seedling:before {
- content: "\f4d8";
-}
-
-i.icon.server:before {
- content: "\f233";
-}
-
-i.icon.shapes:before {
- content: "\f61f";
-}
-
-i.icon.share:before {
- content: "\f064";
-}
-
-i.icon.share.alternate:before {
- content: "\f1e0";
-}
-
-i.icon.share.alternate.square:before {
- content: "\f1e1";
-}
-
-i.icon.share.square:before {
- content: "\f14d";
-}
-
-i.icon.shekel.sign:before {
- content: "\f20b";
-}
-
-i.icon.shield.alternate:before {
- content: "\f3ed";
-}
-
-i.icon.ship:before {
- content: "\f21a";
-}
-
-i.icon.shipping.fast:before {
- content: "\f48b";
-}
-
-i.icon.shoe.prints:before {
- content: "\f54b";
-}
-
-i.icon.shopping.bag:before {
- content: "\f290";
-}
-
-i.icon.shopping.basket:before {
- content: "\f291";
-}
-
-i.icon.shopping.cart:before {
- content: "\f07a";
-}
-
-i.icon.shower:before {
- content: "\f2cc";
-}
-
-i.icon.shuttle.van:before {
- content: "\f5b6";
-}
-
-i.icon.sign:before {
- content: "\f4d9";
-}
-
-i.icon.sign.in.alternate:before {
- content: "\f2f6";
-}
-
-i.icon.sign.language:before {
- content: "\f2a7";
-}
-
-i.icon.sign.out.alternate:before {
- content: "\f2f5";
-}
-
-i.icon.signal:before {
- content: "\f012";
-}
-
-i.icon.signature:before {
- content: "\f5b7";
-}
-
-i.icon.sim.card:before {
- content: "\f7c4";
-}
-
-i.icon.sitemap:before {
- content: "\f0e8";
-}
-
-i.icon.skating:before {
- content: "\f7c5";
-}
-
-i.icon.skiing:before {
- content: "\f7c9";
-}
-
-i.icon.skiing.nordic:before {
- content: "\f7ca";
-}
-
-i.icon.skull:before {
- content: "\f54c";
-}
-
-i.icon.skull.crossbones:before {
- content: "\f714";
-}
-
-i.icon.slash:before {
- content: "\f715";
-}
-
-i.icon.sleigh:before {
- content: "\f7cc";
-}
-
-i.icon.sliders.horizontal:before {
- content: "\f1de";
-}
-
-i.icon.smile:before {
- content: "\f118";
-}
-
-i.icon.smile.beam:before {
- content: "\f5b8";
-}
-
-i.icon.smile.wink:before {
- content: "\f4da";
-}
-
-i.icon.smog:before {
- content: "\f75f";
-}
-
-i.icon.smoking:before {
- content: "\f48d";
-}
-
-i.icon.smoking.ban:before {
- content: "\f54d";
-}
-
-i.icon.sms:before {
- content: "\f7cd";
-}
-
-i.icon.snowboarding:before {
- content: "\f7ce";
-}
-
-i.icon.snowflake:before {
- content: "\f2dc";
-}
-
-i.icon.snowman:before {
- content: "\f7d0";
-}
-
-i.icon.snowplow:before {
- content: "\f7d2";
-}
-
-i.icon.socks:before {
- content: "\f696";
-}
-
-i.icon.solar.panel:before {
- content: "\f5ba";
-}
-
-i.icon.sort:before {
- content: "\f0dc";
-}
-
-i.icon.sort.alphabet.down:before {
- content: "\f15d";
-}
-
-i.icon.sort.alphabet.down.alternate:before {
- content: "\f881";
-}
-
-i.icon.sort.alphabet.up:before {
- content: "\f15e";
-}
-
-i.icon.sort.alphabet.up.alternate:before {
- content: "\f882";
-}
-
-i.icon.sort.amount.down:before {
- content: "\f160";
-}
-
-i.icon.sort.amount.down.alternate:before {
- content: "\f884";
-}
-
-i.icon.sort.amount.up:before {
- content: "\f161";
-}
-
-i.icon.sort.amount.up.alternate:before {
- content: "\f885";
-}
-
-i.icon.sort.down:before {
- content: "\f0dd";
-}
-
-i.icon.sort.numeric.down:before {
- content: "\f162";
-}
-
-i.icon.sort.numeric.down.alternate:before {
- content: "\f886";
-}
-
-i.icon.sort.numeric.up:before {
- content: "\f163";
-}
-
-i.icon.sort.numeric.up.alternate:before {
- content: "\f887";
-}
-
-i.icon.sort.up:before {
- content: "\f0de";
-}
-
-i.icon.spa:before {
- content: "\f5bb";
-}
-
-i.icon.space.shuttle:before {
- content: "\f197";
-}
-
-i.icon.spell.check:before {
- content: "\f891";
-}
-
-i.icon.spider:before {
- content: "\f717";
-}
-
-i.icon.spinner:before {
- content: "\f110";
-}
-
-i.icon.splotch:before {
- content: "\f5bc";
-}
-
-i.icon.spray.can:before {
- content: "\f5bd";
-}
-
-i.icon.square:before {
- content: "\f0c8";
-}
-
-i.icon.square.full:before {
- content: "\f45c";
-}
-
-i.icon.square.root.alternate:before {
- content: "\f698";
-}
-
-i.icon.stamp:before {
- content: "\f5bf";
-}
-
-i.icon.star:before {
- content: "\f005";
-}
-
-i.icon.star.and.crescent:before {
- content: "\f699";
-}
-
-i.icon.star.half:before {
- content: "\f089";
-}
-
-i.icon.star.half.alternate:before {
- content: "\f5c0";
-}
-
-i.icon.star.of.david:before {
- content: "\f69a";
-}
-
-i.icon.star.of.life:before {
- content: "\f621";
-}
-
-i.icon.step.backward:before {
- content: "\f048";
-}
-
-i.icon.step.forward:before {
- content: "\f051";
-}
-
-i.icon.stethoscope:before {
- content: "\f0f1";
-}
-
-i.icon.sticky.note:before {
- content: "\f249";
-}
-
-i.icon.stop:before {
- content: "\f04d";
-}
-
-i.icon.stop.circle:before {
- content: "\f28d";
-}
-
-i.icon.stopwatch:before {
- content: "\f2f2";
-}
-
-i.icon.store:before {
- content: "\f54e";
-}
-
-i.icon.store.alternate:before {
- content: "\f54f";
-}
-
-i.icon.stream:before {
- content: "\f550";
-}
-
-i.icon.street.view:before {
- content: "\f21d";
-}
-
-i.icon.strikethrough:before {
- content: "\f0cc";
-}
-
-i.icon.stroopwafel:before {
- content: "\f551";
-}
-
-i.icon.subscript:before {
- content: "\f12c";
-}
-
-i.icon.subway:before {
- content: "\f239";
-}
-
-i.icon.suitcase:before {
- content: "\f0f2";
-}
-
-i.icon.suitcase.rolling:before {
- content: "\f5c1";
-}
-
-i.icon.sun:before {
- content: "\f185";
-}
-
-i.icon.superscript:before {
- content: "\f12b";
-}
-
-i.icon.surprise:before {
- content: "\f5c2";
-}
-
-i.icon.swatchbook:before {
- content: "\f5c3";
-}
-
-i.icon.swimmer:before {
- content: "\f5c4";
-}
-
-i.icon.swimming.pool:before {
- content: "\f5c5";
-}
-
-i.icon.synagogue:before {
- content: "\f69b";
-}
-
-i.icon.sync:before {
- content: "\f021";
-}
-
-i.icon.sync.alternate:before {
- content: "\f2f1";
-}
-
-i.icon.syringe:before {
- content: "\f48e";
-}
-
-i.icon.table:before {
- content: "\f0ce";
-}
-
-i.icon.table.tennis:before {
- content: "\f45d";
-}
-
-i.icon.tablet:before {
- content: "\f10a";
-}
-
-i.icon.tablet.alternate:before {
- content: "\f3fa";
-}
-
-i.icon.tablets:before {
- content: "\f490";
-}
-
-i.icon.tachometer.alternate:before {
- content: "\f3fd";
-}
-
-i.icon.tag:before {
- content: "\f02b";
-}
-
-i.icon.tags:before {
- content: "\f02c";
-}
-
-i.icon.tape:before {
- content: "\f4db";
-}
-
-i.icon.tasks:before {
- content: "\f0ae";
-}
-
-i.icon.taxi:before {
- content: "\f1ba";
-}
-
-i.icon.teeth:before {
- content: "\f62e";
-}
-
-i.icon.teeth.open:before {
- content: "\f62f";
-}
-
-i.icon.temperature.high:before {
- content: "\f769";
-}
-
-i.icon.temperature.low:before {
- content: "\f76b";
-}
-
-i.icon.tenge:before {
- content: "\f7d7";
-}
-
-i.icon.terminal:before {
- content: "\f120";
-}
-
-i.icon.text.height:before {
- content: "\f034";
-}
-
-i.icon.text.width:before {
- content: "\f035";
-}
-
-i.icon.th:before {
- content: "\f00a";
-}
-
-i.icon.th.large:before {
- content: "\f009";
-}
-
-i.icon.th.list:before {
- content: "\f00b";
-}
-
-i.icon.theater.masks:before {
- content: "\f630";
-}
-
-i.icon.thermometer:before {
- content: "\f491";
-}
-
-i.icon.thermometer.empty:before {
- content: "\f2cb";
-}
-
-i.icon.thermometer.full:before {
- content: "\f2c7";
-}
-
-i.icon.thermometer.half:before {
- content: "\f2c9";
-}
-
-i.icon.thermometer.quarter:before {
- content: "\f2ca";
-}
-
-i.icon.thermometer.three.quarters:before {
- content: "\f2c8";
-}
-
-i.icon.thumbs.down:before {
- content: "\f165";
-}
-
-i.icon.thumbs.up:before {
- content: "\f164";
-}
-
-i.icon.thumbtack:before {
- content: "\f08d";
-}
-
-i.icon.ticket.alternate:before {
- content: "\f3ff";
-}
-
-i.icon.times:before {
- content: "\f00d";
-}
-
-i.icon.times.circle:before {
- content: "\f057";
-}
-
-i.icon.tint:before {
- content: "\f043";
-}
-
-i.icon.tint.slash:before {
- content: "\f5c7";
-}
-
-i.icon.tired:before {
- content: "\f5c8";
-}
-
-i.icon.toggle.off:before {
- content: "\f204";
-}
-
-i.icon.toggle.on:before {
- content: "\f205";
-}
-
-i.icon.toilet:before {
- content: "\f7d8";
-}
-
-i.icon.toilet.paper:before {
- content: "\f71e";
-}
-
-i.icon.toolbox:before {
- content: "\f552";
-}
-
-i.icon.tools:before {
- content: "\f7d9";
-}
-
-i.icon.tooth:before {
- content: "\f5c9";
-}
-
-i.icon.torah:before {
- content: "\f6a0";
-}
-
-i.icon.torii.gate:before {
- content: "\f6a1";
-}
-
-i.icon.tractor:before {
- content: "\f722";
-}
-
-i.icon.trademark:before {
- content: "\f25c";
-}
-
-i.icon.traffic.light:before {
- content: "\f637";
-}
-
-i.icon.trailer:before {
- content: "\f941";
-}
-
-i.icon.train:before {
- content: "\f238";
-}
-
-i.icon.tram:before {
- content: "\f7da";
-}
-
-i.icon.transgender:before {
- content: "\f224";
-}
-
-i.icon.transgender.alternate:before {
- content: "\f225";
-}
-
-i.icon.trash:before {
- content: "\f1f8";
-}
-
-i.icon.trash.alternate:before {
- content: "\f2ed";
-}
-
-i.icon.trash.restore:before {
- content: "\f829";
-}
-
-i.icon.trash.restore.alternate:before {
- content: "\f82a";
-}
-
-i.icon.tree:before {
- content: "\f1bb";
-}
-
-i.icon.trophy:before {
- content: "\f091";
-}
-
-i.icon.truck:before {
- content: "\f0d1";
-}
-
-i.icon.truck.monster:before {
- content: "\f63b";
-}
-
-i.icon.truck.moving:before {
- content: "\f4df";
-}
-
-i.icon.truck.packing:before {
- content: "\f4de";
-}
-
-i.icon.truck.pickup:before {
- content: "\f63c";
-}
-
-i.icon.tshirt:before {
- content: "\f553";
-}
-
-i.icon.tty:before {
- content: "\f1e4";
-}
-
-i.icon.tv:before {
- content: "\f26c";
-}
-
-i.icon.umbrella:before {
- content: "\f0e9";
-}
-
-i.icon.umbrella.beach:before {
- content: "\f5ca";
-}
-
-i.icon.underline:before {
- content: "\f0cd";
-}
-
-i.icon.undo:before {
- content: "\f0e2";
-}
-
-i.icon.undo.alternate:before {
- content: "\f2ea";
-}
-
-i.icon.universal.access:before {
- content: "\f29a";
-}
-
-i.icon.university:before {
- content: "\f19c";
-}
-
-i.icon.unlink:before {
- content: "\f127";
-}
-
-i.icon.unlock:before {
- content: "\f09c";
-}
-
-i.icon.unlock.alternate:before {
- content: "\f13e";
-}
-
-i.icon.upload:before {
- content: "\f093";
-}
-
-i.icon.user:before {
- content: "\f007";
-}
-
-i.icon.user.alternate:before {
- content: "\f406";
-}
-
-i.icon.user.alternate.slash:before {
- content: "\f4fa";
-}
-
-i.icon.user.astronaut:before {
- content: "\f4fb";
-}
-
-i.icon.user.check:before {
- content: "\f4fc";
-}
-
-i.icon.user.circle:before {
- content: "\f2bd";
-}
-
-i.icon.user.clock:before {
- content: "\f4fd";
-}
-
-i.icon.user.cog:before {
- content: "\f4fe";
-}
-
-i.icon.user.edit:before {
- content: "\f4ff";
-}
-
-i.icon.user.friends:before {
- content: "\f500";
-}
-
-i.icon.user.graduate:before {
- content: "\f501";
-}
-
-i.icon.user.injured:before {
- content: "\f728";
-}
-
-i.icon.user.lock:before {
- content: "\f502";
-}
-
-i.icon.user.md:before {
- content: "\f0f0";
-}
-
-i.icon.user.minus:before {
- content: "\f503";
-}
-
-i.icon.user.ninja:before {
- content: "\f504";
-}
-
-i.icon.user.nurse:before {
- content: "\f82f";
-}
-
-i.icon.user.plus:before {
- content: "\f234";
-}
-
-i.icon.user.secret:before {
- content: "\f21b";
-}
-
-i.icon.user.shield:before {
- content: "\f505";
-}
-
-i.icon.user.slash:before {
- content: "\f506";
-}
-
-i.icon.user.tag:before {
- content: "\f507";
-}
-
-i.icon.user.tie:before {
- content: "\f508";
-}
-
-i.icon.user.times:before {
- content: "\f235";
-}
-
-i.icon.users:before {
- content: "\f0c0";
-}
-
-i.icon.users.cog:before {
- content: "\f509";
-}
-
-i.icon.utensil.spoon:before {
- content: "\f2e5";
-}
-
-i.icon.utensils:before {
- content: "\f2e7";
-}
-
-i.icon.vector.square:before {
- content: "\f5cb";
-}
-
-i.icon.venus:before {
- content: "\f221";
-}
-
-i.icon.venus.double:before {
- content: "\f226";
-}
-
-i.icon.venus.mars:before {
- content: "\f228";
-}
-
-i.icon.vial:before {
- content: "\f492";
-}
-
-i.icon.vials:before {
- content: "\f493";
-}
-
-i.icon.video:before {
- content: "\f03d";
-}
-
-i.icon.video.slash:before {
- content: "\f4e2";
-}
-
-i.icon.vihara:before {
- content: "\f6a7";
-}
-
-i.icon.voicemail:before {
- content: "\f897";
-}
-
-i.icon.volleyball.ball:before {
- content: "\f45f";
-}
-
-i.icon.volume.down:before {
- content: "\f027";
-}
-
-i.icon.volume.mute:before {
- content: "\f6a9";
-}
-
-i.icon.volume.off:before {
- content: "\f026";
-}
-
-i.icon.volume.up:before {
- content: "\f028";
-}
-
-i.icon.vote.yea:before {
- content: "\f772";
-}
-
-i.icon.vr.cardboard:before {
- content: "\f729";
-}
-
-i.icon.walking:before {
- content: "\f554";
-}
-
-i.icon.wallet:before {
- content: "\f555";
-}
-
-i.icon.warehouse:before {
- content: "\f494";
-}
-
-i.icon.water:before {
- content: "\f773";
-}
-
-i.icon.wave.square:before {
- content: "\f83e";
-}
-
-i.icon.weight:before {
- content: "\f496";
-}
-
-i.icon.weight.hanging:before {
- content: "\f5cd";
-}
-
-i.icon.wheelchair:before {
- content: "\f193";
-}
-
-i.icon.wifi:before {
- content: "\f1eb";
-}
-
-i.icon.wind:before {
- content: "\f72e";
-}
-
-i.icon.window.close:before {
- content: "\f410";
-}
-
-i.icon.window.maximize:before {
- content: "\f2d0";
-}
-
-i.icon.window.minimize:before {
- content: "\f2d1";
-}
-
-i.icon.window.restore:before {
- content: "\f2d2";
-}
-
-i.icon.wine.bottle:before {
- content: "\f72f";
-}
-
-i.icon.wine.glass:before {
- content: "\f4e3";
-}
-
-i.icon.wine.glass.alternate:before {
- content: "\f5ce";
-}
-
-i.icon.won.sign:before {
- content: "\f159";
-}
-
-i.icon.wrench:before {
- content: "\f0ad";
-}
-
-i.icon.x.ray:before {
- content: "\f497";
-}
-
-i.icon.yen.sign:before {
- content: "\f157";
-}
-
-i.icon.yin.yang:before {
- content: "\f6ad";
-}
-
-/* Aliases */
-
-i.icon.add:before {
- content: "\f067";
-}
-
-i.icon.add.circle:before {
- content: "\f055";
-}
-
-i.icon.add.square:before {
- content: "\f0fe";
-}
-
-i.icon.add.to.calendar:before {
- content: "\f271";
-}
-
-i.icon.add.to.cart:before {
- content: "\f217";
-}
-
-i.icon.add.user:before {
- content: "\f234";
-}
-
-i.icon.alarm:before {
- content: "\f0f3";
-}
-
-i.icon.alarm.mute:before {
- content: "\f1f6";
-}
-
-i.icon.ald:before {
- content: "\f2a2";
-}
-
-i.icon.als:before {
- content: "\f2a2";
-}
-
-i.icon.announcement:before {
- content: "\f0a1";
-}
-
-i.icon.area.chart:before {
- content: "\f1fe";
-}
-
-i.icon.area.graph:before {
- content: "\f1fe";
-}
-
-i.icon.arrow.down.cart:before {
- content: "\f218";
-}
-
-i.icon.asexual:before {
- content: "\f22d";
-}
-
-i.icon.asl:before {
- content: "\f2a3";
-}
-
-i.icon.asl.interpreting:before {
- content: "\f2a3";
-}
-
-i.icon.assistive.listening.devices:before {
- content: "\f2a2";
-}
-
-i.icon.attach:before {
- content: "\f0c6";
-}
-
-i.icon.attention:before {
- content: "\f06a";
-}
-
-i.icon.balance:before {
- content: "\f24e";
-}
-
-i.icon.bar:before {
- content: "\f0fc";
-}
-
-i.icon.bathtub:before {
- content: "\f2cd";
-}
-
-i.icon.battery.four:before {
- content: "\f240";
-}
-
-i.icon.battery.high:before {
- content: "\f241";
-}
-
-i.icon.battery.low:before {
- content: "\f243";
-}
-
-i.icon.battery.medium:before {
- content: "\f242";
-}
-
-i.icon.battery.one:before {
- content: "\f243";
-}
-
-i.icon.battery.three:before {
- content: "\f241";
-}
-
-i.icon.battery.two:before {
- content: "\f242";
-}
-
-i.icon.battery.zero:before {
- content: "\f244";
-}
-
-i.icon.birthday:before {
- content: "\f1fd";
-}
-
-i.icon.block.layout:before {
- content: "\f009";
-}
-
-i.icon.broken.chain:before {
- content: "\f127";
-}
-
-i.icon.browser:before {
- content: "\f022";
-}
-
-i.icon.call:before {
- content: "\f095";
-}
-
-i.icon.call.square:before {
- content: "\f098";
-}
-
-i.icon.cancel:before {
- content: "\f00d";
-}
-
-i.icon.cart:before {
- content: "\f07a";
-}
-
-i.icon.cc:before {
- content: "\f20a";
-}
-
-i.icon.chain:before {
- content: "\f0c1";
-}
-
-i.icon.chat:before {
- content: "\f075";
-}
-
-i.icon.checked.calendar:before {
- content: "\f274";
-}
-
-i.icon.checkmark:before {
- content: "\f00c";
-}
-
-i.icon.checkmark.box:before {
- content: "\f14a";
-}
-
-i.icon.chess.rock:before {
- content: "\f447";
-}
-
-i.icon.circle.notched:before {
- content: "\f1ce";
-}
-
-i.icon.circle.thin:before {
- content: "\f111";
-}
-
-i.icon.close:before {
- content: "\f00d";
-}
-
-i.icon.cloud.download:before {
- content: "\f381";
-}
-
-i.icon.cloud.upload:before {
- content: "\f382";
-}
-
-i.icon.cny:before {
- content: "\f157";
-}
-
-i.icon.cocktail:before {
- content: "\f000";
-}
-
-i.icon.commenting:before {
- content: "\f27a";
-}
-
-i.icon.compose:before {
- content: "\f303";
-}
-
-i.icon.computer:before {
- content: "\f108";
-}
-
-i.icon.configure:before {
- content: "\f0ad";
-}
-
-i.icon.content:before {
- content: "\f0c9";
-}
-
-i.icon.conversation:before {
- content: "\f086";
-}
-
-i.icon.credit.card.alternative:before {
- content: "\f09d";
-}
-
-i.icon.currency:before {
- content: "\f3d1";
-}
-
-i.icon.dashboard:before {
- content: "\f3fd";
-}
-
-i.icon.deafness:before {
- content: "\f2a4";
-}
-
-i.icon.delete:before {
- content: "\f00d";
-}
-
-i.icon.delete.calendar:before {
- content: "\f273";
-}
-
-i.icon.detective:before {
- content: "\f21b";
-}
-
-i.icon.diamond:before {
- content: "\f3a5";
-}
-
-i.icon.discussions:before {
- content: "\f086";
-}
-
-i.icon.disk:before {
- content: "\f0a0";
-}
-
-i.icon.doctor:before {
- content: "\f0f0";
-}
-
-i.icon.dollar:before {
- content: "\f155";
-}
-
-i.icon.dont:before {
- content: "\f05e";
-}
-
-i.icon.drivers.license:before {
- content: "\f2c2";
-}
-
-i.icon.dropdown:before {
- content: "\f0d7";
-}
-
-i.icon.emergency:before {
- content: "\f0f9";
-}
-
-i.icon.erase:before {
- content: "\f12d";
-}
-
-i.icon.eur:before {
- content: "\f153";
-}
-
-i.icon.euro:before {
- content: "\f153";
-}
-
-i.icon.exchange:before {
- content: "\f362";
-}
-
-i.icon.external:before {
- content: "\f35d";
-}
-
-i.icon.external.share:before {
- content: "\f14d";
-}
-
-i.icon.external.square:before {
- content: "\f360";
-}
-
-i.icon.eyedropper:before {
- content: "\f1fb";
-}
-
-i.icon.factory:before {
- content: "\f275";
-}
-
-i.icon.favorite:before {
- content: "\f005";
-}
-
-i.icon.feed:before {
- content: "\f09e";
-}
-
-i.icon.female.homosexual:before {
- content: "\f226";
-}
-
-i.icon.file.text:before {
- content: "\f15c";
-}
-
-i.icon.find:before {
- content: "\f1e5";
-}
-
-i.icon.first.aid:before {
- content: "\f0fa";
-}
-
-i.icon.food:before {
- content: "\f2e7";
-}
-
-i.icon.fork:before {
- content: "\f126";
-}
-
-i.icon.game:before {
- content: "\f11b";
-}
-
-i.icon.gay:before {
- content: "\f227";
-}
-
-i.icon.gbp:before {
- content: "\f154";
-}
-
-i.icon.grab:before {
- content: "\f255";
-}
-
-i.icon.graduation:before {
- content: "\f19d";
-}
-
-i.icon.grid.layout:before {
- content: "\f00a";
-}
-
-i.icon.group:before {
- content: "\f0c0";
-}
-
-i.icon.h:before {
- content: "\f0fd";
-}
-
-i.icon.hamburger:before {
- content: "\f0c9";
-}
-
-i.icon.hand.victory:before {
- content: "\f25b";
-}
-
-i.icon.handicap:before {
- content: "\f193";
-}
-
-i.icon.hard.of.hearing:before {
- content: "\f2a4";
-}
-
-i.icon.header:before {
- content: "\f1dc";
-}
-
-i.icon.heart.empty:before {
- content: "\f004";
-}
-
-i.icon.help:before {
- content: "\f128";
-}
-
-i.icon.help.circle:before {
- content: "\f059";
-}
-
-i.icon.heterosexual:before {
- content: "\f228";
-}
-
-i.icon.hide:before {
- content: "\f070";
-}
-
-i.icon.hotel:before {
- content: "\f236";
-}
-
-i.icon.hourglass.four:before {
- content: "\f254";
-}
-
-i.icon.hourglass.full:before {
- content: "\f254";
-}
-
-i.icon.hourglass.one:before {
- content: "\f251";
-}
-
-i.icon.hourglass.three:before {
- content: "\f253";
-}
-
-i.icon.hourglass.two:before {
- content: "\f252";
-}
-
-i.icon.hourglass.zero:before {
- content: "\f253";
-}
-
-i.icon.idea:before {
- content: "\f0eb";
-}
-
-i.icon.ils:before {
- content: "\f20b";
-}
-
-i.icon.in.cart:before {
- content: "\f218";
-}
-
-i.icon.inr:before {
- content: "\f156";
-}
-
-i.icon.intergender:before {
- content: "\f224";
-}
-
-i.icon.intersex:before {
- content: "\f224";
-}
-
-i.icon.jpy:before {
- content: "\f157";
-}
-
-i.icon.krw:before {
- content: "\f159";
-}
-
-i.icon.lab:before {
- content: "\f0c3";
-}
-
-i.icon.law:before {
- content: "\f24e";
-}
-
-i.icon.legal:before {
- content: "\f0e3";
-}
-
-i.icon.lesbian:before {
- content: "\f226";
-}
-
-i.icon.level.down:before {
- content: "\f3be";
-}
-
-i.icon.level.up:before {
- content: "\f3bf";
-}
-
-i.icon.lightning:before {
- content: "\f0e7";
-}
-
-i.icon.like:before {
- content: "\f004";
-}
-
-i.icon.line.graph:before {
- content: "\f201";
-}
-
-i.icon.linkify:before {
- content: "\f0c1";
-}
-
-i.icon.lira:before {
- content: "\f195";
-}
-
-i.icon.list.layout:before {
- content: "\f00b";
-}
-
-i.icon.log.out:before {
- content: "\f2f5";
-}
-
-i.icon.magnify:before {
- content: "\f00e";
-}
-
-i.icon.mail:before {
- content: "\f0e0";
-}
-
-i.icon.mail.forward:before {
- content: "\f064";
-}
-
-i.icon.mail.square:before {
- content: "\f199";
-}
-
-i.icon.male.homosexual:before {
- content: "\f227";
-}
-
-i.icon.man:before {
- content: "\f222";
-}
-
-i.icon.marker:before {
- content: "\f041";
-}
-
-i.icon.mars.alternate:before {
- content: "\f229";
-}
-
-i.icon.mars.horizontal:before {
- content: "\f22b";
-}
-
-i.icon.mars.vertical:before {
- content: "\f22a";
-}
-
-i.icon.meanpath:before {
- content: "\f0c8";
-}
-
-i.icon.military:before {
- content: "\f0fb";
-}
-
-i.icon.money:before {
- content: "\f3d1";
-}
-
-i.icon.move:before {
- content: "\f0b2";
-}
-
-i.icon.mute:before {
- content: "\f131";
-}
-
-i.icon.non.binary.transgender:before {
- content: "\f223";
-}
-
-i.icon.numbered.list:before {
- content: "\f0cb";
-}
-
-i.icon.options:before {
- content: "\f1de";
-}
-
-i.icon.ordered.list:before {
- content: "\f0cb";
-}
-
-i.icon.other.gender:before {
- content: "\f229";
-}
-
-i.icon.other.gender.horizontal:before {
- content: "\f22b";
-}
-
-i.icon.other.gender.vertical:before {
- content: "\f22a";
-}
-
-i.icon.payment:before {
- content: "\f09d";
-}
-
-i.icon.pencil:before {
- content: "\f303";
-}
-
-i.icon.pencil.square:before {
- content: "\f14b";
-}
-
-i.icon.photo:before {
- content: "\f030";
-}
-
-i.icon.picture:before {
- content: "\f03e";
-}
-
-i.icon.pie.chart:before {
- content: "\f200";
-}
-
-i.icon.pie.graph:before {
- content: "\f200";
-}
-
-i.icon.pin:before {
- content: "\f08d";
-}
-
-i.icon.plus.cart:before {
- content: "\f217";
-}
-
-i.icon.point:before {
- content: "\f041";
-}
-
-i.icon.pointing.down:before {
- content: "\f0a7";
-}
-
-i.icon.pointing.left:before {
- content: "\f0a5";
-}
-
-i.icon.pointing.right:before {
- content: "\f0a4";
-}
-
-i.icon.pointing.up:before {
- content: "\f0a6";
-}
-
-i.icon.pound:before {
- content: "\f154";
-}
-
-i.icon.power:before {
- content: "\f011";
-}
-
-i.icon.power.cord:before {
- content: "\f1e6";
-}
-
-i.icon.privacy:before {
- content: "\f084";
-}
-
-i.icon.protect:before {
- content: "\f023";
-}
-
-i.icon.puzzle:before {
- content: "\f12e";
-}
-
-i.icon.r.circle:before {
- content: "\f25d";
-}
-
-i.icon.radio:before {
- content: "\f192";
-}
-
-i.icon.rain:before {
- content: "\f0e9";
-}
-
-i.icon.record:before {
- content: "\f03d";
-}
-
-i.icon.refresh:before {
- content: "\f021";
-}
-
-i.icon.remove:before {
- content: "\f00d";
-}
-
-i.icon.remove.bookmark:before {
- content: "\f02e";
-}
-
-i.icon.remove.circle:before {
- content: "\f057";
-}
-
-i.icon.remove.from.calendar:before {
- content: "\f272";
-}
-
-i.icon.remove.user:before {
- content: "\f235";
-}
-
-i.icon.repeat:before {
- content: "\f01e";
-}
-
-i.icon.resize.horizontal:before {
- content: "\f337";
-}
-
-i.icon.resize.vertical:before {
- content: "\f338";
-}
-
-i.icon.rmb:before {
- content: "\f157";
-}
-
-i.icon.rouble:before {
- content: "\f158";
-}
-
-i.icon.rub:before {
- content: "\f158";
-}
-
-i.icon.ruble:before {
- content: "\f158";
-}
-
-i.icon.rupee:before {
- content: "\f156";
-}
-
-i.icon.s15:before {
- content: "\f2cd";
-}
-
-i.icon.selected.radio:before {
- content: "\f192";
-}
-
-i.icon.send:before {
- content: "\f1d8";
-}
-
-i.icon.setting:before {
- content: "\f013";
-}
-
-i.icon.settings:before {
- content: "\f085";
-}
-
-i.icon.shekel:before {
- content: "\f20b";
-}
-
-i.icon.sheqel:before {
- content: "\f20b";
-}
-
-i.icon.shield:before {
- content: "\f3ed";
-}
-
-i.icon.shipping:before {
- content: "\f0d1";
-}
-
-i.icon.shop:before {
- content: "\f07a";
-}
-
-i.icon.shuffle:before {
- content: "\f074";
-}
-
-i.icon.shutdown:before {
- content: "\f011";
-}
-
-i.icon.sidebar:before {
- content: "\f0c9";
-}
-
-i.icon.sign.in:before {
- content: "\f2f6";
-}
-
-i.icon.sign.out:before {
- content: "\f2f5";
-}
-
-i.icon.signing:before {
- content: "\f2a7";
-}
-
-i.icon.signup:before {
- content: "\f044";
-}
-
-i.icon.sliders:before {
- content: "\f1de";
-}
-
-i.icon.soccer:before {
- content: "\f1e3";
-}
-
-i.icon.sort.alphabet.ascending:before {
- content: "\f15d";
-}
-
-i.icon.sort.alphabet.descending:before {
- content: "\f15e";
-}
-
-i.icon.sort.ascending:before {
- content: "\f0de";
-}
-
-i.icon.sort.content.ascending:before {
- content: "\f160";
-}
-
-i.icon.sort.content.descending:before {
- content: "\f161";
-}
-
-i.icon.sort.descending:before {
- content: "\f0dd";
-}
-
-i.icon.sort.numeric.ascending:before {
- content: "\f162";
-}
-
-i.icon.sort.numeric.descending:before {
- content: "\f163";
-}
-
-i.icon.sound:before {
- content: "\f025";
-}
-
-i.icon.spoon:before {
- content: "\f2e5";
-}
-
-i.icon.spy:before {
- content: "\f21b";
-}
-
-i.icon.star.empty:before {
- content: "\f005";
-}
-
-i.icon.star.half.empty:before {
- content: "\f089";
-}
-
-i.icon.star.half.full:before {
- content: "\f089";
-}
-
-i.icon.student:before {
- content: "\f19d";
-}
-
-i.icon.talk:before {
- content: "\f27a";
-}
-
-i.icon.target:before {
- content: "\f140";
-}
-
-i.icon.teletype:before {
- content: "\f1e4";
-}
-
-i.icon.television:before {
- content: "\f26c";
-}
-
-i.icon.text.cursor:before {
- content: "\f246";
-}
-
-i.icon.text.telephone:before {
- content: "\f1e4";
-}
-
-i.icon.theme:before {
- content: "\f043";
-}
-
-i.icon.thermometer:before {
- content: "\f2c7";
-}
-
-i.icon.thumb.tack:before {
- content: "\f08d";
-}
-
-i.icon.ticket:before {
- content: "\f3ff";
-}
-
-i.icon.time:before {
- content: "\f017";
-}
-
-i.icon.times.rectangle:before {
- content: "\f410";
-}
-
-i.icon.tm:before {
- content: "\f25c";
-}
-
-i.icon.toggle.down:before {
- content: "\f150";
-}
-
-i.icon.toggle.left:before {
- content: "\f191";
-}
-
-i.icon.toggle.right:before {
- content: "\f152";
-}
-
-i.icon.toggle.up:before {
- content: "\f151";
-}
-
-i.icon.translate:before {
- content: "\f1ab";
-}
-
-i.icon.travel:before {
- content: "\f0b1";
-}
-
-i.icon.treatment:before {
- content: "\f0f1";
-}
-
-i.icon.triangle.down:before {
- content: "\f0d7";
-}
-
-i.icon.triangle.left:before {
- content: "\f0d9";
-}
-
-i.icon.triangle.right:before {
- content: "\f0da";
-}
-
-i.icon.triangle.up:before {
- content: "\f0d8";
-}
-
-i.icon.try:before {
- content: "\f195";
-}
-
-i.icon.unhide:before {
- content: "\f06e";
-}
-
-i.icon.unlinkify:before {
- content: "\f127";
-}
-
-i.icon.unmute:before {
- content: "\f130";
-}
-
-i.icon.unordered.list:before {
- content: "\f0ca";
-}
-
-i.icon.usd:before {
- content: "\f155";
-}
-
-i.icon.user.cancel:before {
- content: "\f235";
-}
-
-i.icon.user.close:before {
- content: "\f235";
-}
-
-i.icon.user.delete:before {
- content: "\f235";
-}
-
-i.icon.user.doctor:before {
- content: "\f0f0";
-}
-
-i.icon.user.x:before {
- content: "\f235";
-}
-
-i.icon.vcard:before {
- content: "\f2bb";
-}
-
-i.icon.video.camera:before {
- content: "\f03d";
-}
-
-i.icon.video.play:before {
- content: "\f144";
-}
-
-i.icon.volume.control.phone:before {
- content: "\f2a0";
-}
-
-i.icon.wait:before {
- content: "\f017";
-}
-
-i.icon.warning:before {
- content: "\f12a";
-}
-
-i.icon.warning.circle:before {
- content: "\f06a";
-}
-
-i.icon.warning.sign:before {
- content: "\f071";
-}
-
-i.icon.wi.fi:before {
- content: "\f1eb";
-}
-
-i.icon.winner:before {
- content: "\f091";
-}
-
-i.icon.wizard:before {
- content: "\f0d0";
-}
-
-i.icon.woman:before {
- content: "\f221";
-}
-
-i.icon.won:before {
- content: "\f159";
-}
-
-i.icon.world:before {
- content: "\f0ac";
-}
-
-i.icon.write:before {
- content: "\f303";
-}
-
-i.icon.write.square:before {
- content: "\f14b";
-}
-
-i.icon.x:before {
- content: "\f00d";
-}
-
-i.icon.yen:before {
- content: "\f157";
-}
-
-i.icon.zip:before {
- content: "\f187";
-}
-
-i.icon.zoom:before {
- content: "\f00e";
-}
-
-i.icon.zoom.in:before {
- content: "\f00e";
-}
-
-i.icon.zoom.out:before {
- content: "\f010";
-}
-
-/*******************************
- Outline Icons
-*******************************/
-
-/* Outline Icon */
-
-/* Load & Define Icon Font */
-
-@font-face {
- font-family: 'outline-icons';
- src: url("./themes/default/assets/fonts/outline-icons.eot");
- src: url("./themes/default/assets/fonts/outline-icons.eot?#iefix") format('embedded-opentype'), url("./themes/default/assets/fonts/outline-icons.woff2") format('woff2'), url("./themes/default/assets/fonts/outline-icons.woff") format('woff'), url("./themes/default/assets/fonts/outline-icons.ttf") format('truetype'), url("./themes/default/assets/fonts/outline-icons.svg#icons") format('svg');
- font-style: normal;
- font-weight: normal;
- font-variant: normal;
- text-decoration: inherit;
- text-transform: none;
-}
-
-i.icon.outline {
- font-family: 'outline-icons';
-}
-
-/* Icons */
-
-i.icon.address.book.outline:before {
- content: "\f2b9";
-}
-
-i.icon.address.card.outline:before {
- content: "\f2bb";
-}
-
-i.icon.angry.outline:before {
- content: "\f556";
-}
-
-i.icon.arrow.alternate.circle.down.outline:before {
- content: "\f358";
-}
-
-i.icon.arrow.alternate.circle.left.outline:before {
- content: "\f359";
-}
-
-i.icon.arrow.alternate.circle.right.outline:before {
- content: "\f35a";
-}
-
-i.icon.arrow.alternate.circle.up.outline:before {
- content: "\f35b";
-}
-
-i.icon.bell.outline:before {
- content: "\f0f3";
-}
-
-i.icon.bell.slash.outline:before {
- content: "\f1f6";
-}
-
-i.icon.bookmark.outline:before {
- content: "\f02e";
-}
-
-i.icon.building.outline:before {
- content: "\f1ad";
-}
-
-i.icon.calendar.alternate.outline:before {
- content: "\f073";
-}
-
-i.icon.calendar.check.outline:before {
- content: "\f274";
-}
-
-i.icon.calendar.minus.outline:before {
- content: "\f272";
-}
-
-i.icon.calendar.outline:before {
- content: "\f133";
-}
-
-i.icon.calendar.plus.outline:before {
- content: "\f271";
-}
-
-i.icon.calendar.times.outline:before {
- content: "\f273";
-}
-
-i.icon.caret.square.down.outline:before {
- content: "\f150";
-}
-
-i.icon.caret.square.left.outline:before {
- content: "\f191";
-}
-
-i.icon.caret.square.right.outline:before {
- content: "\f152";
-}
-
-i.icon.caret.square.up.outline:before {
- content: "\f151";
-}
-
-i.icon.chart.bar.outline:before {
- content: "\f080";
-}
-
-i.icon.check.circle.outline:before {
- content: "\f058";
-}
-
-i.icon.check.square.outline:before {
- content: "\f14a";
-}
-
-i.icon.circle.outline:before {
- content: "\f111";
-}
-
-i.icon.clipboard.outline:before {
- content: "\f328";
-}
-
-i.icon.clock.outline:before {
- content: "\f017";
-}
-
-i.icon.clone.outline:before {
- content: "\f24d";
-}
-
-i.icon.closed.captioning.outline:before {
- content: "\f20a";
-}
-
-i.icon.comment.alternate.outline:before {
- content: "\f27a";
-}
-
-i.icon.comment.dots.outline:before {
- content: "\f4ad";
-}
-
-i.icon.comment.outline:before {
- content: "\f075";
-}
-
-i.icon.comments.outline:before {
- content: "\f086";
-}
-
-i.icon.compass.outline:before {
- content: "\f14e";
-}
-
-i.icon.copy.outline:before {
- content: "\f0c5";
-}
-
-i.icon.copyright.outline:before {
- content: "\f1f9";
-}
-
-i.icon.credit.card.outline:before {
- content: "\f09d";
-}
-
-i.icon.dizzy.outline:before {
- content: "\f567";
-}
-
-i.icon.dot.circle.outline:before {
- content: "\f192";
-}
-
-i.icon.edit.outline:before {
- content: "\f044";
-}
-
-i.icon.envelope.open.outline:before {
- content: "\f2b6";
-}
-
-i.icon.envelope.outline:before {
- content: "\f0e0";
-}
-
-i.icon.eye.outline:before {
- content: "\f06e";
-}
-
-i.icon.eye.slash.outline:before {
- content: "\f070";
-}
-
-i.icon.file.alternate.outline:before {
- content: "\f15c";
-}
-
-i.icon.file.archive.outline:before {
- content: "\f1c6";
-}
-
-i.icon.file.audio.outline:before {
- content: "\f1c7";
-}
-
-i.icon.file.code.outline:before {
- content: "\f1c9";
-}
-
-i.icon.file.excel.outline:before {
- content: "\f1c3";
-}
-
-i.icon.file.image.outline:before {
- content: "\f1c5";
-}
-
-i.icon.file.outline:before {
- content: "\f15b";
-}
-
-i.icon.file.pdf.outline:before {
- content: "\f1c1";
-}
-
-i.icon.file.powerpoint.outline:before {
- content: "\f1c4";
-}
-
-i.icon.file.video.outline:before {
- content: "\f1c8";
-}
-
-i.icon.file.word.outline:before {
- content: "\f1c2";
-}
-
-i.icon.flag.outline:before {
- content: "\f024";
-}
-
-i.icon.flushed.outline:before {
- content: "\f579";
-}
-
-i.icon.folder.open.outline:before {
- content: "\f07c";
-}
-
-i.icon.folder.outline:before {
- content: "\f07b";
-}
-
-i.icon.frown.open.outline:before {
- content: "\f57a";
-}
-
-i.icon.frown.outline:before {
- content: "\f119";
-}
-
-i.icon.futbol.outline:before {
- content: "\f1e3";
-}
-
-i.icon.gem.outline:before {
- content: "\f3a5";
-}
-
-i.icon.grimace.outline:before {
- content: "\f57f";
-}
-
-i.icon.grin.alternate.outline:before {
- content: "\f581";
-}
-
-i.icon.grin.beam.outline:before {
- content: "\f582";
-}
-
-i.icon.grin.beam.sweat.outline:before {
- content: "\f583";
-}
-
-i.icon.grin.hearts.outline:before {
- content: "\f584";
-}
-
-i.icon.grin.outline:before {
- content: "\f580";
-}
-
-i.icon.grin.squint.outline:before {
- content: "\f585";
-}
-
-i.icon.grin.squint.tears.outline:before {
- content: "\f586";
-}
-
-i.icon.grin.stars.outline:before {
- content: "\f587";
-}
-
-i.icon.grin.tears.outline:before {
- content: "\f588";
-}
-
-i.icon.grin.tongue.outline:before {
- content: "\f589";
-}
-
-i.icon.grin.tongue.squint.outline:before {
- content: "\f58a";
-}
-
-i.icon.grin.tongue.wink.outline:before {
- content: "\f58b";
-}
-
-i.icon.grin.wink.outline:before {
- content: "\f58c";
-}
-
-i.icon.hand.lizard.outline:before {
- content: "\f258";
-}
-
-i.icon.hand.paper.outline:before {
- content: "\f256";
-}
-
-i.icon.hand.peace.outline:before {
- content: "\f25b";
-}
-
-i.icon.hand.point.down.outline:before {
- content: "\f0a7";
-}
-
-i.icon.hand.point.left.outline:before {
- content: "\f0a5";
-}
-
-i.icon.hand.point.right.outline:before {
- content: "\f0a4";
-}
-
-i.icon.hand.point.up.outline:before {
- content: "\f0a6";
-}
-
-i.icon.hand.pointer.outline:before {
- content: "\f25a";
-}
-
-i.icon.hand.rock.outline:before {
- content: "\f255";
-}
-
-i.icon.hand.scissors.outline:before {
- content: "\f257";
-}
-
-i.icon.hand.spock.outline:before {
- content: "\f259";
-}
-
-i.icon.handshake.outline:before {
- content: "\f2b5";
-}
-
-i.icon.hdd.outline:before {
- content: "\f0a0";
-}
-
-i.icon.heart.outline:before {
- content: "\f004";
-}
-
-i.icon.hospital.outline:before {
- content: "\f0f8";
-}
-
-i.icon.hourglass.outline:before {
- content: "\f254";
-}
-
-i.icon.id.badge.outline:before {
- content: "\f2c1";
-}
-
-i.icon.id.card.outline:before {
- content: "\f2c2";
-}
-
-i.icon.image.outline:before {
- content: "\f03e";
-}
-
-i.icon.images.outline:before {
- content: "\f302";
-}
-
-i.icon.keyboard.outline:before {
- content: "\f11c";
-}
-
-i.icon.kiss.beam.outline:before {
- content: "\f597";
-}
-
-i.icon.kiss.outline:before {
- content: "\f596";
-}
-
-i.icon.kiss.wink.heart.outline:before {
- content: "\f598";
-}
-
-i.icon.laugh.beam.outline:before {
- content: "\f59a";
-}
-
-i.icon.laugh.outline:before {
- content: "\f599";
-}
-
-i.icon.laugh.squint.outline:before {
- content: "\f59b";
-}
-
-i.icon.laugh.wink.outline:before {
- content: "\f59c";
-}
-
-i.icon.lemon.outline:before {
- content: "\f094";
-}
-
-i.icon.life.ring.outline:before {
- content: "\f1cd";
-}
-
-i.icon.lightbulb.outline:before {
- content: "\f0eb";
-}
-
-i.icon.list.alternate.outline:before {
- content: "\f022";
-}
-
-i.icon.map.outline:before {
- content: "\f279";
-}
-
-i.icon.meh.blank.outline:before {
- content: "\f5a4";
-}
-
-i.icon.meh.outline:before {
- content: "\f11a";
-}
-
-i.icon.meh.rolling.eyes.outline:before {
- content: "\f5a5";
-}
-
-i.icon.minus.square.outline:before {
- content: "\f146";
-}
-
-i.icon.money.bill.alternate.outline:before {
- content: "\f3d1";
-}
-
-i.icon.moon.outline:before {
- content: "\f186";
-}
-
-i.icon.newspaper.outline:before {
- content: "\f1ea";
-}
-
-i.icon.object.group.outline:before {
- content: "\f247";
-}
-
-i.icon.object.ungroup.outline:before {
- content: "\f248";
-}
-
-i.icon.paper.plane.outline:before {
- content: "\f1d8";
-}
-
-i.icon.pause.circle.outline:before {
- content: "\f28b";
-}
-
-i.icon.play.circle.outline:before {
- content: "\f144";
-}
-
-i.icon.plus.square.outline:before {
- content: "\f0fe";
-}
-
-i.icon.question.circle.outline:before {
- content: "\f059";
-}
-
-i.icon.registered.outline:before {
- content: "\f25d";
-}
-
-i.icon.sad.cry.outline:before {
- content: "\f5b3";
-}
-
-i.icon.sad.tear.outline:before {
- content: "\f5b4";
-}
-
-i.icon.save.outline:before {
- content: "\f0c7";
-}
-
-i.icon.share.square.outline:before {
- content: "\f14d";
-}
-
-i.icon.smile.beam.outline:before {
- content: "\f5b8";
-}
-
-i.icon.smile.outline:before {
- content: "\f118";
-}
-
-i.icon.smile.wink.outline:before {
- content: "\f4da";
-}
-
-i.icon.snowflake.outline:before {
- content: "\f2dc";
-}
-
-i.icon.square.outline:before {
- content: "\f0c8";
-}
-
-i.icon.star.half.outline:before {
- content: "\f089";
-}
-
-i.icon.star.outline:before {
- content: "\f005";
-}
-
-i.icon.sticky.note.outline:before {
- content: "\f249";
-}
-
-i.icon.stop.circle.outline:before {
- content: "\f28d";
-}
-
-i.icon.sun.outline:before {
- content: "\f185";
-}
-
-i.icon.surprise.outline:before {
- content: "\f5c2";
-}
-
-i.icon.thumbs.down.outline:before {
- content: "\f165";
-}
-
-i.icon.thumbs.up.outline:before {
- content: "\f164";
-}
-
-i.icon.times.circle.outline:before {
- content: "\f057";
-}
-
-i.icon.tired.outline:before {
- content: "\f5c8";
-}
-
-i.icon.trash.alternate.outline:before {
- content: "\f2ed";
-}
-
-i.icon.user.circle.outline:before {
- content: "\f2bd";
-}
-
-i.icon.user.outline:before {
- content: "\f007";
-}
-
-i.icon.window.close.outline:before {
- content: "\f410";
-}
-
-i.icon.window.maximize.outline:before {
- content: "\f2d0";
-}
-
-i.icon.window.minimize.outline:before {
- content: "\f2d1";
-}
-
-i.icon.window.restore.outline:before {
- content: "\f2d2";
-}
-
-/*******************************
- Brand Icons
-*******************************/
-
-/* Load & Define Brand Font */
-
-@font-face {
- font-family: 'brand-icons';
- src: url("./themes/default/assets/fonts/brand-icons.eot");
- src: url("./themes/default/assets/fonts/brand-icons.eot?#iefix") format('embedded-opentype'), url("./themes/default/assets/fonts/brand-icons.woff2") format('woff2'), url("./themes/default/assets/fonts/brand-icons.woff") format('woff'), url("./themes/default/assets/fonts/brand-icons.ttf") format('truetype'), url("./themes/default/assets/fonts/brand-icons.svg#icons") format('svg');
- font-style: normal;
- font-weight: normal;
- font-variant: normal;
- text-decoration: inherit;
- text-transform: none;
-}
-
-/* Icons */
-
-i.icon.\35 00px:before {
- content: "\f26e";
- font-family: 'brand-icons';
-}
-
-i.icon.accessible:before {
- content: "\f368";
- font-family: 'brand-icons';
-}
-
-i.icon.accusoft:before {
- content: "\f369";
- font-family: 'brand-icons';
-}
-
-i.icon.acquisitions.incorporated:before {
- content: "\f6af";
- font-family: 'brand-icons';
-}
-
-i.icon.adn:before {
- content: "\f170";
- font-family: 'brand-icons';
-}
-
-i.icon.adobe:before {
- content: "\f778";
- font-family: 'brand-icons';
-}
-
-i.icon.adversal:before {
- content: "\f36a";
- font-family: 'brand-icons';
-}
-
-i.icon.affiliatetheme:before {
- content: "\f36b";
- font-family: 'brand-icons';
-}
-
-i.icon.airbnb:before {
- content: "\f834";
- font-family: 'brand-icons';
-}
-
-i.icon.algolia:before {
- content: "\f36c";
- font-family: 'brand-icons';
-}
-
-i.icon.alipay:before {
- content: "\f642";
- font-family: 'brand-icons';
-}
-
-i.icon.amazon:before {
- content: "\f270";
- font-family: 'brand-icons';
-}
-
-i.icon.amazon.pay:before {
- content: "\f42c";
- font-family: 'brand-icons';
-}
-
-i.icon.amilia:before {
- content: "\f36d";
- font-family: 'brand-icons';
-}
-
-i.icon.android:before {
- content: "\f17b";
- font-family: 'brand-icons';
-}
-
-i.icon.angellist:before {
- content: "\f209";
- font-family: 'brand-icons';
-}
-
-i.icon.angrycreative:before {
- content: "\f36e";
- font-family: 'brand-icons';
-}
-
-i.icon.angular:before {
- content: "\f420";
- font-family: 'brand-icons';
-}
-
-i.icon.app.store:before {
- content: "\f36f";
- font-family: 'brand-icons';
-}
-
-i.icon.app.store.ios:before {
- content: "\f370";
- font-family: 'brand-icons';
-}
-
-i.icon.apper:before {
- content: "\f371";
- font-family: 'brand-icons';
-}
-
-i.icon.apple:before {
- content: "\f179";
- font-family: 'brand-icons';
-}
-
-i.icon.apple.pay:before {
- content: "\f415";
- font-family: 'brand-icons';
-}
-
-i.icon.artstation:before {
- content: "\f77a";
- font-family: 'brand-icons';
-}
-
-i.icon.asymmetrik:before {
- content: "\f372";
- font-family: 'brand-icons';
-}
-
-i.icon.atlassian:before {
- content: "\f77b";
- font-family: 'brand-icons';
-}
-
-i.icon.audible:before {
- content: "\f373";
- font-family: 'brand-icons';
-}
-
-i.icon.autoprefixer:before {
- content: "\f41c";
- font-family: 'brand-icons';
-}
-
-i.icon.avianex:before {
- content: "\f374";
- font-family: 'brand-icons';
-}
-
-i.icon.aviato:before {
- content: "\f421";
- font-family: 'brand-icons';
-}
-
-i.icon.aws:before {
- content: "\f375";
- font-family: 'brand-icons';
-}
-
-i.icon.bandcamp:before {
- content: "\f2d5";
- font-family: 'brand-icons';
-}
-
-i.icon.battle.net:before {
- content: "\f835";
- font-family: 'brand-icons';
-}
-
-i.icon.behance:before {
- content: "\f1b4";
- font-family: 'brand-icons';
-}
-
-i.icon.behance.square:before {
- content: "\f1b5";
- font-family: 'brand-icons';
-}
-
-i.icon.bimobject:before {
- content: "\f378";
- font-family: 'brand-icons';
-}
-
-i.icon.bitbucket:before {
- content: "\f171";
- font-family: 'brand-icons';
-}
-
-i.icon.bitcoin:before {
- content: "\f379";
- font-family: 'brand-icons';
-}
-
-i.icon.bity:before {
- content: "\f37a";
- font-family: 'brand-icons';
-}
-
-i.icon.black.tie:before {
- content: "\f27e";
- font-family: 'brand-icons';
-}
-
-i.icon.blackberry:before {
- content: "\f37b";
- font-family: 'brand-icons';
-}
-
-i.icon.blogger:before {
- content: "\f37c";
- font-family: 'brand-icons';
-}
-
-i.icon.blogger.b:before {
- content: "\f37d";
- font-family: 'brand-icons';
-}
-
-i.icon.bluetooth:before {
- content: "\f293";
- font-family: 'brand-icons';
-}
-
-i.icon.bluetooth.b:before {
- content: "\f294";
- font-family: 'brand-icons';
-}
-
-i.icon.bootstrap:before {
- content: "\f836";
- font-family: 'brand-icons';
-}
-
-i.icon.btc:before {
- content: "\f15a";
- font-family: 'brand-icons';
-}
-
-i.icon.buffer:before {
- content: "\f837";
- font-family: 'brand-icons';
-}
-
-i.icon.buromobelexperte:before {
- content: "\f37f";
- font-family: 'brand-icons';
-}
-
-i.icon.buy.n.large:before {
- content: "\f8a6";
- font-family: 'brand-icons';
-}
-
-i.icon.buysellads:before {
- content: "\f20d";
- font-family: 'brand-icons';
-}
-
-i.icon.canadian.maple.leaf:before {
- content: "\f785";
- font-family: 'brand-icons';
-}
-
-i.icon.cc.amazon.pay:before {
- content: "\f42d";
- font-family: 'brand-icons';
-}
-
-i.icon.cc.amex:before {
- content: "\f1f3";
- font-family: 'brand-icons';
-}
-
-i.icon.cc.apple.pay:before {
- content: "\f416";
- font-family: 'brand-icons';
-}
-
-i.icon.cc.diners.club:before {
- content: "\f24c";
- font-family: 'brand-icons';
-}
-
-i.icon.cc.discover:before {
- content: "\f1f2";
- font-family: 'brand-icons';
-}
-
-i.icon.cc.jcb:before {
- content: "\f24b";
- font-family: 'brand-icons';
-}
-
-i.icon.cc.mastercard:before {
- content: "\f1f1";
- font-family: 'brand-icons';
-}
-
-i.icon.cc.paypal:before {
- content: "\f1f4";
- font-family: 'brand-icons';
-}
-
-i.icon.cc.stripe:before {
- content: "\f1f5";
- font-family: 'brand-icons';
-}
-
-i.icon.cc.visa:before {
- content: "\f1f0";
- font-family: 'brand-icons';
-}
-
-i.icon.centercode:before {
- content: "\f380";
- font-family: 'brand-icons';
-}
-
-i.icon.centos:before {
- content: "\f789";
- font-family: 'brand-icons';
-}
-
-i.icon.chrome:before {
- content: "\f268";
- font-family: 'brand-icons';
-}
-
-i.icon.chromecast:before {
- content: "\f838";
- font-family: 'brand-icons';
-}
-
-i.icon.cloudscale:before {
- content: "\f383";
- font-family: 'brand-icons';
-}
-
-i.icon.cloudsmith:before {
- content: "\f384";
- font-family: 'brand-icons';
-}
-
-i.icon.cloudversify:before {
- content: "\f385";
- font-family: 'brand-icons';
-}
-
-i.icon.codepen:before {
- content: "\f1cb";
- font-family: 'brand-icons';
-}
-
-i.icon.codiepie:before {
- content: "\f284";
- font-family: 'brand-icons';
-}
-
-i.icon.confluence:before {
- content: "\f78d";
- font-family: 'brand-icons';
-}
-
-i.icon.connectdevelop:before {
- content: "\f20e";
- font-family: 'brand-icons';
-}
-
-i.icon.contao:before {
- content: "\f26d";
- font-family: 'brand-icons';
-}
-
-i.icon.cotton.bureau:before {
- content: "\f89e";
- font-family: 'brand-icons';
-}
-
-i.icon.cpanel:before {
- content: "\f388";
- font-family: 'brand-icons';
-}
-
-i.icon.creative.commons:before {
- content: "\f25e";
- font-family: 'brand-icons';
-}
-
-i.icon.creative.commons.by:before {
- content: "\f4e7";
- font-family: 'brand-icons';
-}
-
-i.icon.creative.commons.nc:before {
- content: "\f4e8";
- font-family: 'brand-icons';
-}
-
-i.icon.creative.commons.nc.eu:before {
- content: "\f4e9";
- font-family: 'brand-icons';
-}
-
-i.icon.creative.commons.nc.jp:before {
- content: "\f4ea";
- font-family: 'brand-icons';
-}
-
-i.icon.creative.commons.nd:before {
- content: "\f4eb";
- font-family: 'brand-icons';
-}
-
-i.icon.creative.commons.pd:before {
- content: "\f4ec";
- font-family: 'brand-icons';
-}
-
-i.icon.creative.commons.pd.alternate:before {
- content: "\f4ed";
- font-family: 'brand-icons';
-}
-
-i.icon.creative.commons.remix:before {
- content: "\f4ee";
- font-family: 'brand-icons';
-}
-
-i.icon.creative.commons.sa:before {
- content: "\f4ef";
- font-family: 'brand-icons';
-}
-
-i.icon.creative.commons.sampling:before {
- content: "\f4f0";
- font-family: 'brand-icons';
-}
-
-i.icon.creative.commons.sampling.plus:before {
- content: "\f4f1";
- font-family: 'brand-icons';
-}
-
-i.icon.creative.commons.share:before {
- content: "\f4f2";
- font-family: 'brand-icons';
-}
-
-i.icon.creative.commons.zero:before {
- content: "\f4f3";
- font-family: 'brand-icons';
-}
-
-i.icon.critical.role:before {
- content: "\f6c9";
- font-family: 'brand-icons';
-}
-
-i.icon.css3:before {
- content: "\f13c";
- font-family: 'brand-icons';
-}
-
-i.icon.css3.alternate:before {
- content: "\f38b";
- font-family: 'brand-icons';
-}
-
-i.icon.cuttlefish:before {
- content: "\f38c";
- font-family: 'brand-icons';
-}
-
-i.icon.d.and.d:before {
- content: "\f38d";
- font-family: 'brand-icons';
-}
-
-i.icon.d.and.d.beyond:before {
- content: "\f6ca";
- font-family: 'brand-icons';
-}
-
-i.icon.dashcube:before {
- content: "\f210";
- font-family: 'brand-icons';
-}
-
-i.icon.delicious:before {
- content: "\f1a5";
- font-family: 'brand-icons';
-}
-
-i.icon.deploydog:before {
- content: "\f38e";
- font-family: 'brand-icons';
-}
-
-i.icon.deskpro:before {
- content: "\f38f";
- font-family: 'brand-icons';
-}
-
-i.icon.dev:before {
- content: "\f6cc";
- font-family: 'brand-icons';
-}
-
-i.icon.deviantart:before {
- content: "\f1bd";
- font-family: 'brand-icons';
-}
-
-i.icon.dhl:before {
- content: "\f790";
- font-family: 'brand-icons';
-}
-
-i.icon.diaspora:before {
- content: "\f791";
- font-family: 'brand-icons';
-}
-
-i.icon.digg:before {
- content: "\f1a6";
- font-family: 'brand-icons';
-}
-
-i.icon.digital.ocean:before {
- content: "\f391";
- font-family: 'brand-icons';
-}
-
-i.icon.discord:before {
- content: "\f392";
- font-family: 'brand-icons';
-}
-
-i.icon.discourse:before {
- content: "\f393";
- font-family: 'brand-icons';
-}
-
-i.icon.dochub:before {
- content: "\f394";
- font-family: 'brand-icons';
-}
-
-i.icon.docker:before {
- content: "\f395";
- font-family: 'brand-icons';
-}
-
-i.icon.draft2digital:before {
- content: "\f396";
- font-family: 'brand-icons';
-}
-
-i.icon.dribbble:before {
- content: "\f17d";
- font-family: 'brand-icons';
-}
-
-i.icon.dribbble.square:before {
- content: "\f397";
- font-family: 'brand-icons';
-}
-
-i.icon.dropbox:before {
- content: "\f16b";
- font-family: 'brand-icons';
-}
-
-i.icon.drupal:before {
- content: "\f1a9";
- font-family: 'brand-icons';
-}
-
-i.icon.dyalog:before {
- content: "\f399";
- font-family: 'brand-icons';
-}
-
-i.icon.earlybirds:before {
- content: "\f39a";
- font-family: 'brand-icons';
-}
-
-i.icon.ebay:before {
- content: "\f4f4";
- font-family: 'brand-icons';
-}
-
-i.icon.edge:before {
- content: "\f282";
- font-family: 'brand-icons';
-}
-
-i.icon.elementor:before {
- content: "\f430";
- font-family: 'brand-icons';
-}
-
-i.icon.ello:before {
- content: "\f5f1";
- font-family: 'brand-icons';
-}
-
-i.icon.ember:before {
- content: "\f423";
- font-family: 'brand-icons';
-}
-
-i.icon.empire:before {
- content: "\f1d1";
- font-family: 'brand-icons';
-}
-
-i.icon.envira:before {
- content: "\f299";
- font-family: 'brand-icons';
-}
-
-i.icon.erlang:before {
- content: "\f39d";
- font-family: 'brand-icons';
-}
-
-i.icon.ethereum:before {
- content: "\f42e";
- font-family: 'brand-icons';
-}
-
-i.icon.etsy:before {
- content: "\f2d7";
- font-family: 'brand-icons';
-}
-
-i.icon.evernote:before {
- content: "\f839";
- font-family: 'brand-icons';
-}
-
-i.icon.expeditedssl:before {
- content: "\f23e";
- font-family: 'brand-icons';
-}
-
-i.icon.facebook:before {
- content: "\f09a";
- font-family: 'brand-icons';
-}
-
-i.icon.facebook.f:before {
- content: "\f39e";
- font-family: 'brand-icons';
-}
-
-i.icon.facebook.messenger:before {
- content: "\f39f";
- font-family: 'brand-icons';
-}
-
-i.icon.facebook.square:before {
- content: "\f082";
- font-family: 'brand-icons';
-}
-
-i.icon.fantasy.flight.games:before {
- content: "\f6dc";
- font-family: 'brand-icons';
-}
-
-i.icon.fedex:before {
- content: "\f797";
- font-family: 'brand-icons';
-}
-
-i.icon.fedora:before {
- content: "\f798";
- font-family: 'brand-icons';
-}
-
-i.icon.figma:before {
- content: "\f799";
- font-family: 'brand-icons';
-}
-
-i.icon.firefox:before {
- content: "\f269";
- font-family: 'brand-icons';
-}
-
-i.icon.firefox.browser:before {
- content: "\f907";
- font-family: 'brand-icons';
-}
-
-i.icon.first.order:before {
- content: "\f2b0";
- font-family: 'brand-icons';
-}
-
-i.icon.first.order.alternate:before {
- content: "\f50a";
- font-family: 'brand-icons';
-}
-
-i.icon.firstdraft:before {
- content: "\f3a1";
- font-family: 'brand-icons';
-}
-
-i.icon.flickr:before {
- content: "\f16e";
- font-family: 'brand-icons';
-}
-
-i.icon.flipboard:before {
- content: "\f44d";
- font-family: 'brand-icons';
-}
-
-i.icon.fly:before {
- content: "\f417";
- font-family: 'brand-icons';
-}
-
-i.icon.font.awesome:before {
- content: "\f2b4";
- font-family: 'brand-icons';
-}
-
-i.icon.font.awesome.alternate:before {
- content: "\f35c";
- font-family: 'brand-icons';
-}
-
-i.icon.font.awesome.flag:before {
- content: "\f425";
- font-family: 'brand-icons';
-}
-
-i.icon.fonticons:before {
- content: "\f280";
- font-family: 'brand-icons';
-}
-
-i.icon.fonticons.fi:before {
- content: "\f3a2";
- font-family: 'brand-icons';
-}
-
-i.icon.fort.awesome:before {
- content: "\f286";
- font-family: 'brand-icons';
-}
-
-i.icon.fort.awesome.alternate:before {
- content: "\f3a3";
- font-family: 'brand-icons';
-}
-
-i.icon.forumbee:before {
- content: "\f211";
- font-family: 'brand-icons';
-}
-
-i.icon.foursquare:before {
- content: "\f180";
- font-family: 'brand-icons';
-}
-
-i.icon.free.code.camp:before {
- content: "\f2c5";
- font-family: 'brand-icons';
-}
-
-i.icon.freebsd:before {
- content: "\f3a4";
- font-family: 'brand-icons';
-}
-
-i.icon.fulcrum:before {
- content: "\f50b";
- font-family: 'brand-icons';
-}
-
-i.icon.galactic.republic:before {
- content: "\f50c";
- font-family: 'brand-icons';
-}
-
-i.icon.galactic.senate:before {
- content: "\f50d";
- font-family: 'brand-icons';
-}
-
-i.icon.get.pocket:before {
- content: "\f265";
- font-family: 'brand-icons';
-}
-
-i.icon.gg:before {
- content: "\f260";
- font-family: 'brand-icons';
-}
-
-i.icon.gg.circle:before {
- content: "\f261";
- font-family: 'brand-icons';
-}
-
-i.icon.git:before {
- content: "\f1d3";
- font-family: 'brand-icons';
-}
-
-i.icon.git.alternate:before {
- content: "\f841";
- font-family: 'brand-icons';
-}
-
-i.icon.git.square:before {
- content: "\f1d2";
- font-family: 'brand-icons';
-}
-
-i.icon.github:before {
- content: "\f09b";
- font-family: 'brand-icons';
-}
-
-i.icon.github.alternate:before {
- content: "\f113";
- font-family: 'brand-icons';
-}
-
-i.icon.github.square:before {
- content: "\f092";
- font-family: 'brand-icons';
-}
-
-i.icon.gitkraken:before {
- content: "\f3a6";
- font-family: 'brand-icons';
-}
-
-i.icon.gitlab:before {
- content: "\f296";
- font-family: 'brand-icons';
-}
-
-i.icon.gitter:before {
- content: "\f426";
- font-family: 'brand-icons';
-}
-
-i.icon.glide:before {
- content: "\f2a5";
- font-family: 'brand-icons';
-}
-
-i.icon.glide.g:before {
- content: "\f2a6";
- font-family: 'brand-icons';
-}
-
-i.icon.gofore:before {
- content: "\f3a7";
- font-family: 'brand-icons';
-}
-
-i.icon.goodreads:before {
- content: "\f3a8";
- font-family: 'brand-icons';
-}
-
-i.icon.goodreads.g:before {
- content: "\f3a9";
- font-family: 'brand-icons';
-}
-
-i.icon.google:before {
- content: "\f1a0";
- font-family: 'brand-icons';
-}
-
-i.icon.google.drive:before {
- content: "\f3aa";
- font-family: 'brand-icons';
-}
-
-i.icon.google.play:before {
- content: "\f3ab";
- font-family: 'brand-icons';
-}
-
-i.icon.google.plus:before {
- content: "\f2b3";
- font-family: 'brand-icons';
-}
-
-i.icon.google.plus.g:before {
- content: "\f0d5";
- font-family: 'brand-icons';
-}
-
-i.icon.google.plus.square:before {
- content: "\f0d4";
- font-family: 'brand-icons';
-}
-
-i.icon.google.wallet:before {
- content: "\f1ee";
- font-family: 'brand-icons';
-}
-
-i.icon.gratipay:before {
- content: "\f184";
- font-family: 'brand-icons';
-}
-
-i.icon.grav:before {
- content: "\f2d6";
- font-family: 'brand-icons';
-}
-
-i.icon.gripfire:before {
- content: "\f3ac";
- font-family: 'brand-icons';
-}
-
-i.icon.grunt:before {
- content: "\f3ad";
- font-family: 'brand-icons';
-}
-
-i.icon.gulp:before {
- content: "\f3ae";
- font-family: 'brand-icons';
-}
-
-i.icon.hacker.news:before {
- content: "\f1d4";
- font-family: 'brand-icons';
-}
-
-i.icon.hacker.news.square:before {
- content: "\f3af";
- font-family: 'brand-icons';
-}
-
-i.icon.hackerrank:before {
- content: "\f5f7";
- font-family: 'brand-icons';
-}
-
-i.icon.hips:before {
- content: "\f452";
- font-family: 'brand-icons';
-}
-
-i.icon.hire.a.helper:before {
- content: "\f3b0";
- font-family: 'brand-icons';
-}
-
-i.icon.hooli:before {
- content: "\f427";
- font-family: 'brand-icons';
-}
-
-i.icon.hornbill:before {
- content: "\f592";
- font-family: 'brand-icons';
-}
-
-i.icon.hotjar:before {
- content: "\f3b1";
- font-family: 'brand-icons';
-}
-
-i.icon.houzz:before {
- content: "\f27c";
- font-family: 'brand-icons';
-}
-
-i.icon.html5:before {
- content: "\f13b";
- font-family: 'brand-icons';
-}
-
-i.icon.hubspot:before {
- content: "\f3b2";
- font-family: 'brand-icons';
-}
-
-i.icon.ideal:before {
- content: "\f913";
- font-family: 'brand-icons';
-}
-
-i.icon.imdb:before {
- content: "\f2d8";
- font-family: 'brand-icons';
-}
-
-i.icon.instagram:before {
- content: "\f16d";
- font-family: 'brand-icons';
-}
-
-i.icon.intercom:before {
- content: "\f7af";
- font-family: 'brand-icons';
-}
-
-i.icon.internet.explorer:before {
- content: "\f26b";
- font-family: 'brand-icons';
-}
-
-i.icon.invision:before {
- content: "\f7b0";
- font-family: 'brand-icons';
-}
-
-i.icon.ioxhost:before {
- content: "\f208";
- font-family: 'brand-icons';
-}
-
-i.icon.itch.io:before {
- content: "\f83a";
- font-family: 'brand-icons';
-}
-
-i.icon.itunes:before {
- content: "\f3b4";
- font-family: 'brand-icons';
-}
-
-i.icon.itunes.note:before {
- content: "\f3b5";
- font-family: 'brand-icons';
-}
-
-i.icon.java:before {
- content: "\f4e4";
- font-family: 'brand-icons';
-}
-
-i.icon.jedi.order:before {
- content: "\f50e";
- font-family: 'brand-icons';
-}
-
-i.icon.jenkins:before {
- content: "\f3b6";
- font-family: 'brand-icons';
-}
-
-i.icon.jira:before {
- content: "\f7b1";
- font-family: 'brand-icons';
-}
-
-i.icon.joget:before {
- content: "\f3b7";
- font-family: 'brand-icons';
-}
-
-i.icon.joomla:before {
- content: "\f1aa";
- font-family: 'brand-icons';
-}
-
-i.icon.js:before {
- content: "\f3b8";
- font-family: 'brand-icons';
-}
-
-i.icon.js.square:before {
- content: "\f3b9";
- font-family: 'brand-icons';
-}
-
-i.icon.jsfiddle:before {
- content: "\f1cc";
- font-family: 'brand-icons';
-}
-
-i.icon.kaggle:before {
- content: "\f5fa";
- font-family: 'brand-icons';
-}
-
-i.icon.keybase:before {
- content: "\f4f5";
- font-family: 'brand-icons';
-}
-
-i.icon.keycdn:before {
- content: "\f3ba";
- font-family: 'brand-icons';
-}
-
-i.icon.kickstarter:before {
- content: "\f3bb";
- font-family: 'brand-icons';
-}
-
-i.icon.kickstarter.k:before {
- content: "\f3bc";
- font-family: 'brand-icons';
-}
-
-i.icon.korvue:before {
- content: "\f42f";
- font-family: 'brand-icons';
-}
-
-i.icon.laravel:before {
- content: "\f3bd";
- font-family: 'brand-icons';
-}
-
-i.icon.lastfm:before {
- content: "\f202";
- font-family: 'brand-icons';
-}
-
-i.icon.lastfm.square:before {
- content: "\f203";
- font-family: 'brand-icons';
-}
-
-i.icon.leanpub:before {
- content: "\f212";
- font-family: 'brand-icons';
-}
-
-i.icon.lesscss:before {
- content: "\f41d";
- font-family: 'brand-icons';
-}
-
-i.icon.linechat:before {
- content: "\f3c0";
- font-family: 'brand-icons';
-}
-
-i.icon.linkedin:before {
- content: "\f08c";
- font-family: 'brand-icons';
-}
-
-i.icon.linkedin.in:before {
- content: "\f0e1";
- font-family: 'brand-icons';
-}
-
-i.icon.linode:before {
- content: "\f2b8";
- font-family: 'brand-icons';
-}
-
-i.icon.linux:before {
- content: "\f17c";
- font-family: 'brand-icons';
-}
-
-i.icon.lyft:before {
- content: "\f3c3";
- font-family: 'brand-icons';
-}
-
-i.icon.magento:before {
- content: "\f3c4";
- font-family: 'brand-icons';
-}
-
-i.icon.mailchimp:before {
- content: "\f59e";
- font-family: 'brand-icons';
-}
-
-i.icon.mandalorian:before {
- content: "\f50f";
- font-family: 'brand-icons';
-}
-
-i.icon.markdown:before {
- content: "\f60f";
- font-family: 'brand-icons';
-}
-
-i.icon.mastodon:before {
- content: "\f4f6";
- font-family: 'brand-icons';
-}
-
-i.icon.maxcdn:before {
- content: "\f136";
- font-family: 'brand-icons';
-}
-
-i.icon.mdb:before {
- content: "\f8ca";
- font-family: 'brand-icons';
-}
-
-i.icon.medapps:before {
- content: "\f3c6";
- font-family: 'brand-icons';
-}
-
-i.icon.medium:before {
- content: "\f23a";
- font-family: 'brand-icons';
-}
-
-i.icon.medium.m:before {
- content: "\f3c7";
- font-family: 'brand-icons';
-}
-
-i.icon.medrt:before {
- content: "\f3c8";
- font-family: 'brand-icons';
-}
-
-i.icon.meetup:before {
- content: "\f2e0";
- font-family: 'brand-icons';
-}
-
-i.icon.megaport:before {
- content: "\f5a3";
- font-family: 'brand-icons';
-}
-
-i.icon.mendeley:before {
- content: "\f7b3";
- font-family: 'brand-icons';
-}
-
-i.icon.microblog:before {
- content: "\f91a";
- font-family: 'brand-icons';
-}
-
-i.icon.microsoft:before {
- content: "\f3ca";
- font-family: 'brand-icons';
-}
-
-i.icon.mix:before {
- content: "\f3cb";
- font-family: 'brand-icons';
-}
-
-i.icon.mixcloud:before {
- content: "\f289";
- font-family: 'brand-icons';
-}
-
-i.icon.mizuni:before {
- content: "\f3cc";
- font-family: 'brand-icons';
-}
-
-i.icon.modx:before {
- content: "\f285";
- font-family: 'brand-icons';
-}
-
-i.icon.monero:before {
- content: "\f3d0";
- font-family: 'brand-icons';
-}
-
-i.icon.napster:before {
- content: "\f3d2";
- font-family: 'brand-icons';
-}
-
-i.icon.neos:before {
- content: "\f612";
- font-family: 'brand-icons';
-}
-
-i.icon.nimblr:before {
- content: "\f5a8";
- font-family: 'brand-icons';
-}
-
-i.icon.node:before {
- content: "\f419";
- font-family: 'brand-icons';
-}
-
-i.icon.node.js:before {
- content: "\f3d3";
- font-family: 'brand-icons';
-}
-
-i.icon.npm:before {
- content: "\f3d4";
- font-family: 'brand-icons';
-}
-
-i.icon.ns8:before {
- content: "\f3d5";
- font-family: 'brand-icons';
-}
-
-i.icon.nutritionix:before {
- content: "\f3d6";
- font-family: 'brand-icons';
-}
-
-i.icon.odnoklassniki:before {
- content: "\f263";
- font-family: 'brand-icons';
-}
-
-i.icon.odnoklassniki.square:before {
- content: "\f264";
- font-family: 'brand-icons';
-}
-
-i.icon.old.republic:before {
- content: "\f510";
- font-family: 'brand-icons';
-}
-
-i.icon.opencart:before {
- content: "\f23d";
- font-family: 'brand-icons';
-}
-
-i.icon.openid:before {
- content: "\f19b";
- font-family: 'brand-icons';
-}
-
-i.icon.opera:before {
- content: "\f26a";
- font-family: 'brand-icons';
-}
-
-i.icon.optin.monster:before {
- content: "\f23c";
- font-family: 'brand-icons';
-}
-
-i.icon.orcid:before {
- content: "\f8d2";
- font-family: 'brand-icons';
-}
-
-i.icon.osi:before {
- content: "\f41a";
- font-family: 'brand-icons';
-}
-
-i.icon.page4:before {
- content: "\f3d7";
- font-family: 'brand-icons';
-}
-
-i.icon.pagelines:before {
- content: "\f18c";
- font-family: 'brand-icons';
-}
-
-i.icon.palfed:before {
- content: "\f3d8";
- font-family: 'brand-icons';
-}
-
-i.icon.patreon:before {
- content: "\f3d9";
- font-family: 'brand-icons';
-}
-
-i.icon.paypal:before {
- content: "\f1ed";
- font-family: 'brand-icons';
-}
-
-i.icon.penny.arcade:before {
- content: "\f704";
- font-family: 'brand-icons';
-}
-
-i.icon.periscope:before {
- content: "\f3da";
- font-family: 'brand-icons';
-}
-
-i.icon.phabricator:before {
- content: "\f3db";
- font-family: 'brand-icons';
-}
-
-i.icon.phoenix.framework:before {
- content: "\f3dc";
- font-family: 'brand-icons';
-}
-
-i.icon.phoenix.squadron:before {
- content: "\f511";
- font-family: 'brand-icons';
-}
-
-i.icon.php:before {
- content: "\f457";
- font-family: 'brand-icons';
-}
-
-i.icon.pied.piper:before {
- content: "\f2ae";
- font-family: 'brand-icons';
-}
-
-i.icon.pied.piper.alternate:before {
- content: "\f1a8";
- font-family: 'brand-icons';
-}
-
-i.icon.pied.piper.hat:before {
- content: "\f4e5";
- font-family: 'brand-icons';
-}
-
-i.icon.pied.piper.pp:before {
- content: "\f1a7";
- font-family: 'brand-icons';
-}
-
-i.icon.pied.piper.square:before {
- content: "\f91e";
- font-family: 'brand-icons';
-}
-
-i.icon.pinterest:before {
- content: "\f0d2";
- font-family: 'brand-icons';
-}
-
-i.icon.pinterest.p:before {
- content: "\f231";
- font-family: 'brand-icons';
-}
-
-i.icon.pinterest.square:before {
- content: "\f0d3";
- font-family: 'brand-icons';
-}
-
-i.icon.playstation:before {
- content: "\f3df";
- font-family: 'brand-icons';
-}
-
-i.icon.product.hunt:before {
- content: "\f288";
- font-family: 'brand-icons';
-}
-
-i.icon.pushed:before {
- content: "\f3e1";
- font-family: 'brand-icons';
-}
-
-i.icon.python:before {
- content: "\f3e2";
- font-family: 'brand-icons';
-}
-
-i.icon.qq:before {
- content: "\f1d6";
- font-family: 'brand-icons';
-}
-
-i.icon.quinscape:before {
- content: "\f459";
- font-family: 'brand-icons';
-}
-
-i.icon.quora:before {
- content: "\f2c4";
- font-family: 'brand-icons';
-}
-
-i.icon.r.project:before {
- content: "\f4f7";
- font-family: 'brand-icons';
-}
-
-i.icon.raspberry.pi:before {
- content: "\f7bb";
- font-family: 'brand-icons';
-}
-
-i.icon.ravelry:before {
- content: "\f2d9";
- font-family: 'brand-icons';
-}
-
-i.icon.react:before {
- content: "\f41b";
- font-family: 'brand-icons';
-}
-
-i.icon.reacteurope:before {
- content: "\f75d";
- font-family: 'brand-icons';
-}
-
-i.icon.readme:before {
- content: "\f4d5";
- font-family: 'brand-icons';
-}
-
-i.icon.rebel:before {
- content: "\f1d0";
- font-family: 'brand-icons';
-}
-
-i.icon.reddit:before {
- content: "\f1a1";
- font-family: 'brand-icons';
-}
-
-i.icon.reddit.alien:before {
- content: "\f281";
- font-family: 'brand-icons';
-}
-
-i.icon.reddit.square:before {
- content: "\f1a2";
- font-family: 'brand-icons';
-}
-
-i.icon.redhat:before {
- content: "\f7bc";
- font-family: 'brand-icons';
-}
-
-i.icon.redriver:before {
- content: "\f3e3";
- font-family: 'brand-icons';
-}
-
-i.icon.redyeti:before {
- content: "\f69d";
- font-family: 'brand-icons';
-}
-
-i.icon.renren:before {
- content: "\f18b";
- font-family: 'brand-icons';
-}
-
-i.icon.replyd:before {
- content: "\f3e6";
- font-family: 'brand-icons';
-}
-
-i.icon.researchgate:before {
- content: "\f4f8";
- font-family: 'brand-icons';
-}
-
-i.icon.resolving:before {
- content: "\f3e7";
- font-family: 'brand-icons';
-}
-
-i.icon.rev:before {
- content: "\f5b2";
- font-family: 'brand-icons';
-}
-
-i.icon.rocketchat:before {
- content: "\f3e8";
- font-family: 'brand-icons';
-}
-
-i.icon.rockrms:before {
- content: "\f3e9";
- font-family: 'brand-icons';
-}
-
-i.icon.safari:before {
- content: "\f267";
- font-family: 'brand-icons';
-}
-
-i.icon.salesforce:before {
- content: "\f83b";
- font-family: 'brand-icons';
-}
-
-i.icon.sass:before {
- content: "\f41e";
- font-family: 'brand-icons';
-}
-
-i.icon.schlix:before {
- content: "\f3ea";
- font-family: 'brand-icons';
-}
-
-i.icon.scribd:before {
- content: "\f28a";
- font-family: 'brand-icons';
-}
-
-i.icon.searchengin:before {
- content: "\f3eb";
- font-family: 'brand-icons';
-}
-
-i.icon.sellcast:before {
- content: "\f2da";
- font-family: 'brand-icons';
-}
-
-i.icon.sellsy:before {
- content: "\f213";
- font-family: 'brand-icons';
-}
-
-i.icon.servicestack:before {
- content: "\f3ec";
- font-family: 'brand-icons';
-}
-
-i.icon.shirtsinbulk:before {
- content: "\f214";
- font-family: 'brand-icons';
-}
-
-i.icon.shopware:before {
- content: "\f5b5";
- font-family: 'brand-icons';
-}
-
-i.icon.simplybuilt:before {
- content: "\f215";
- font-family: 'brand-icons';
-}
-
-i.icon.sistrix:before {
- content: "\f3ee";
- font-family: 'brand-icons';
-}
-
-i.icon.sith:before {
- content: "\f512";
- font-family: 'brand-icons';
-}
-
-i.icon.sketch:before {
- content: "\f7c6";
- font-family: 'brand-icons';
-}
-
-i.icon.skyatlas:before {
- content: "\f216";
- font-family: 'brand-icons';
-}
-
-i.icon.skype:before {
- content: "\f17e";
- font-family: 'brand-icons';
-}
-
-i.icon.slack:before {
- content: "\f198";
- font-family: 'brand-icons';
-}
-
-i.icon.slack.hash:before {
- content: "\f3ef";
- font-family: 'brand-icons';
-}
-
-i.icon.slideshare:before {
- content: "\f1e7";
- font-family: 'brand-icons';
-}
-
-i.icon.snapchat:before {
- content: "\f2ab";
- font-family: 'brand-icons';
-}
-
-i.icon.snapchat.ghost:before {
- content: "\f2ac";
- font-family: 'brand-icons';
-}
-
-i.icon.snapchat.square:before {
- content: "\f2ad";
- font-family: 'brand-icons';
-}
-
-i.icon.soundcloud:before {
- content: "\f1be";
- font-family: 'brand-icons';
-}
-
-i.icon.sourcetree:before {
- content: "\f7d3";
- font-family: 'brand-icons';
-}
-
-i.icon.speakap:before {
- content: "\f3f3";
- font-family: 'brand-icons';
-}
-
-i.icon.speaker.deck:before {
- content: "\f83c";
- font-family: 'brand-icons';
-}
-
-i.icon.spotify:before {
- content: "\f1bc";
- font-family: 'brand-icons';
-}
-
-i.icon.squarespace:before {
- content: "\f5be";
- font-family: 'brand-icons';
-}
-
-i.icon.stack.exchange:before {
- content: "\f18d";
- font-family: 'brand-icons';
-}
-
-i.icon.stack.overflow:before {
- content: "\f16c";
- font-family: 'brand-icons';
-}
-
-i.icon.stackpath:before {
- content: "\f842";
- font-family: 'brand-icons';
-}
-
-i.icon.staylinked:before {
- content: "\f3f5";
- font-family: 'brand-icons';
-}
-
-i.icon.steam:before {
- content: "\f1b6";
- font-family: 'brand-icons';
-}
-
-i.icon.steam.square:before {
- content: "\f1b7";
- font-family: 'brand-icons';
-}
-
-i.icon.steam.symbol:before {
- content: "\f3f6";
- font-family: 'brand-icons';
-}
-
-i.icon.sticker.mule:before {
- content: "\f3f7";
- font-family: 'brand-icons';
-}
-
-i.icon.strava:before {
- content: "\f428";
- font-family: 'brand-icons';
-}
-
-i.icon.stripe:before {
- content: "\f429";
- font-family: 'brand-icons';
-}
-
-i.icon.stripe.s:before {
- content: "\f42a";
- font-family: 'brand-icons';
-}
-
-i.icon.studiovinari:before {
- content: "\f3f8";
- font-family: 'brand-icons';
-}
-
-i.icon.stumbleupon:before {
- content: "\f1a4";
- font-family: 'brand-icons';
-}
-
-i.icon.stumbleupon.circle:before {
- content: "\f1a3";
- font-family: 'brand-icons';
-}
-
-i.icon.superpowers:before {
- content: "\f2dd";
- font-family: 'brand-icons';
-}
-
-i.icon.supple:before {
- content: "\f3f9";
- font-family: 'brand-icons';
-}
-
-i.icon.suse:before {
- content: "\f7d6";
- font-family: 'brand-icons';
-}
-
-i.icon.swift:before {
- content: "\f8e1";
- font-family: 'brand-icons';
-}
-
-i.icon.symfony:before {
- content: "\f83d";
- font-family: 'brand-icons';
-}
-
-i.icon.teamspeak:before {
- content: "\f4f9";
- font-family: 'brand-icons';
-}
-
-i.icon.telegram:before {
- content: "\f2c6";
- font-family: 'brand-icons';
-}
-
-i.icon.telegram.plane:before {
- content: "\f3fe";
- font-family: 'brand-icons';
-}
-
-i.icon.tencent.weibo:before {
- content: "\f1d5";
- font-family: 'brand-icons';
-}
-
-i.icon.themeco:before {
- content: "\f5c6";
- font-family: 'brand-icons';
-}
-
-i.icon.themeisle:before {
- content: "\f2b2";
- font-family: 'brand-icons';
-}
-
-i.icon.think.peaks:before {
- content: "\f731";
- font-family: 'brand-icons';
-}
-
-i.icon.trade.federation:before {
- content: "\f513";
- font-family: 'brand-icons';
-}
-
-i.icon.trello:before {
- content: "\f181";
- font-family: 'brand-icons';
-}
-
-i.icon.tripadvisor:before {
- content: "\f262";
- font-family: 'brand-icons';
-}
-
-i.icon.tumblr:before {
- content: "\f173";
- font-family: 'brand-icons';
-}
-
-i.icon.tumblr.square:before {
- content: "\f174";
- font-family: 'brand-icons';
-}
-
-i.icon.twitch:before {
- content: "\f1e8";
- font-family: 'brand-icons';
-}
-
-i.icon.twitter:before {
- content: "\f099";
- font-family: 'brand-icons';
-}
-
-i.icon.twitter.square:before {
- content: "\f081";
- font-family: 'brand-icons';
-}
-
-i.icon.typo3:before {
- content: "\f42b";
- font-family: 'brand-icons';
-}
-
-i.icon.uber:before {
- content: "\f402";
- font-family: 'brand-icons';
-}
-
-i.icon.ubuntu:before {
- content: "\f7df";
- font-family: 'brand-icons';
-}
-
-i.icon.uikit:before {
- content: "\f403";
- font-family: 'brand-icons';
-}
-
-i.icon.umbraco:before {
- content: "\f8e8";
- font-family: 'brand-icons';
-}
-
-i.icon.uniregistry:before {
- content: "\f404";
- font-family: 'brand-icons';
-}
-
-i.icon.unity:before {
- content: "\f949";
- font-family: 'brand-icons';
-}
-
-i.icon.untappd:before {
- content: "\f405";
- font-family: 'brand-icons';
-}
-
-i.icon.ups:before {
- content: "\f7e0";
- font-family: 'brand-icons';
-}
-
-i.icon.usb:before {
- content: "\f287";
- font-family: 'brand-icons';
-}
-
-i.icon.usps:before {
- content: "\f7e1";
- font-family: 'brand-icons';
-}
-
-i.icon.ussunnah:before {
- content: "\f407";
- font-family: 'brand-icons';
-}
-
-i.icon.vaadin:before {
- content: "\f408";
- font-family: 'brand-icons';
-}
-
-i.icon.viacoin:before {
- content: "\f237";
- font-family: 'brand-icons';
-}
-
-i.icon.viadeo:before {
- content: "\f2a9";
- font-family: 'brand-icons';
-}
-
-i.icon.viadeo.square:before {
- content: "\f2aa";
- font-family: 'brand-icons';
-}
-
-i.icon.viber:before {
- content: "\f409";
- font-family: 'brand-icons';
-}
-
-i.icon.vimeo:before {
- content: "\f40a";
- font-family: 'brand-icons';
-}
-
-i.icon.vimeo.square:before {
- content: "\f194";
- font-family: 'brand-icons';
-}
-
-i.icon.vimeo.v:before {
- content: "\f27d";
- font-family: 'brand-icons';
-}
-
-i.icon.vine:before {
- content: "\f1ca";
- font-family: 'brand-icons';
-}
-
-i.icon.vk:before {
- content: "\f189";
- font-family: 'brand-icons';
-}
-
-i.icon.vnv:before {
- content: "\f40b";
- font-family: 'brand-icons';
-}
-
-i.icon.vuejs:before {
- content: "\f41f";
- font-family: 'brand-icons';
-}
-
-i.icon.waze:before {
- content: "\f83f";
- font-family: 'brand-icons';
-}
-
-i.icon.weebly:before {
- content: "\f5cc";
- font-family: 'brand-icons';
-}
-
-i.icon.weibo:before {
- content: "\f18a";
- font-family: 'brand-icons';
-}
-
-i.icon.weixin:before {
- content: "\f1d7";
- font-family: 'brand-icons';
-}
-
-i.icon.whatsapp:before {
- content: "\f232";
- font-family: 'brand-icons';
-}
-
-i.icon.whatsapp.square:before {
- content: "\f40c";
- font-family: 'brand-icons';
-}
-
-i.icon.whmcs:before {
- content: "\f40d";
- font-family: 'brand-icons';
-}
-
-i.icon.wikipedia.w:before {
- content: "\f266";
- font-family: 'brand-icons';
-}
-
-i.icon.windows:before {
- content: "\f17a";
- font-family: 'brand-icons';
-}
-
-i.icon.wix:before {
- content: "\f5cf";
- font-family: 'brand-icons';
-}
-
-i.icon.wizards.of.the.coast:before {
- content: "\f730";
- font-family: 'brand-icons';
-}
-
-i.icon.wolf.pack.battalion:before {
- content: "\f514";
- font-family: 'brand-icons';
-}
-
-i.icon.wordpress:before {
- content: "\f19a";
- font-family: 'brand-icons';
-}
-
-i.icon.wordpress.simple:before {
- content: "\f411";
- font-family: 'brand-icons';
-}
-
-i.icon.wpbeginner:before {
- content: "\f297";
- font-family: 'brand-icons';
-}
-
-i.icon.wpexplorer:before {
- content: "\f2de";
- font-family: 'brand-icons';
-}
-
-i.icon.wpforms:before {
- content: "\f298";
- font-family: 'brand-icons';
-}
-
-i.icon.wpressr:before {
- content: "\f3e4";
- font-family: 'brand-icons';
-}
-
-i.icon.xbox:before {
- content: "\f412";
- font-family: 'brand-icons';
-}
-
-i.icon.xing:before {
- content: "\f168";
- font-family: 'brand-icons';
-}
-
-i.icon.xing.square:before {
- content: "\f169";
- font-family: 'brand-icons';
-}
-
-i.icon.y.combinator:before {
- content: "\f23b";
- font-family: 'brand-icons';
-}
-
-i.icon.yahoo:before {
- content: "\f19e";
- font-family: 'brand-icons';
-}
-
-i.icon.yammer:before {
- content: "\f840";
- font-family: 'brand-icons';
-}
-
-i.icon.yandex:before {
- content: "\f413";
- font-family: 'brand-icons';
-}
-
-i.icon.yandex.international:before {
- content: "\f414";
- font-family: 'brand-icons';
-}
-
-i.icon.yarn:before {
- content: "\f7e3";
- font-family: 'brand-icons';
-}
-
-i.icon.yelp:before {
- content: "\f1e9";
- font-family: 'brand-icons';
-}
-
-i.icon.yoast:before {
- content: "\f2b1";
- font-family: 'brand-icons';
-}
-
-i.icon.youtube:before {
- content: "\f167";
- font-family: 'brand-icons';
-}
-
-i.icon.youtube.square:before {
- content: "\f431";
- font-family: 'brand-icons';
-}
-
-i.icon.zhihu:before {
- content: "\f63f";
- font-family: 'brand-icons';
-}
-
-/* Aliases */
-
-i.icon.american.express:before {
- content: "\f1f3";
- font-family: 'brand-icons';
-}
-
-i.icon.american.express.card:before {
- content: "\f1f3";
- font-family: 'brand-icons';
-}
-
-i.icon.amex:before {
- content: "\f1f3";
- font-family: 'brand-icons';
-}
-
-i.icon.bitbucket.square:before {
- content: "\f171";
- font-family: 'brand-icons';
-}
-
-i.icon.bluetooth.alternative:before {
- content: "\f294";
- font-family: 'brand-icons';
-}
-
-i.icon.credit.card.amazon.pay:before {
- content: "\f42d";
- font-family: 'brand-icons';
-}
-
-i.icon.credit.card.american.express:before {
- content: "\f1f3";
- font-family: 'brand-icons';
-}
-
-i.icon.credit.card.diners.club:before {
- content: "\f24c";
- font-family: 'brand-icons';
-}
-
-i.icon.credit.card.discover:before {
- content: "\f1f2";
- font-family: 'brand-icons';
-}
-
-i.icon.credit.card.jcb:before {
- content: "\f24b";
- font-family: 'brand-icons';
-}
-
-i.icon.credit.card.mastercard:before {
- content: "\f1f1";
- font-family: 'brand-icons';
-}
-
-i.icon.credit.card.paypal:before {
- content: "\f1f4";
- font-family: 'brand-icons';
-}
-
-i.icon.credit.card.stripe:before {
- content: "\f1f5";
- font-family: 'brand-icons';
-}
-
-i.icon.credit.card.visa:before {
- content: "\f1f0";
- font-family: 'brand-icons';
-}
-
-i.icon.diners.club:before {
- content: "\f24c";
- font-family: 'brand-icons';
-}
-
-i.icon.diners.club.card:before {
- content: "\f24c";
- font-family: 'brand-icons';
-}
-
-i.icon.discover:before {
- content: "\f1f2";
- font-family: 'brand-icons';
-}
-
-i.icon.discover.card:before {
- content: "\f1f2";
- font-family: 'brand-icons';
-}
-
-i.icon.disk.outline:before {
- content: "\f369";
- font-family: 'brand-icons';
-}
-
-i.icon.dribble:before {
- content: "\f17d";
- font-family: 'brand-icons';
-}
-
-i.icon.eercast:before {
- content: "\f2da";
- font-family: 'brand-icons';
-}
-
-i.icon.envira.gallery:before {
- content: "\f299";
- font-family: 'brand-icons';
-}
-
-i.icon.fa:before {
- content: "\f2b4";
- font-family: 'brand-icons';
-}
-
-i.icon.facebook.official:before {
- content: "\f082";
- font-family: 'brand-icons';
-}
-
-i.icon.five.hundred.pixels:before {
- content: "\f26e";
- font-family: 'brand-icons';
-}
-
-i.icon.gittip:before {
- content: "\f184";
- font-family: 'brand-icons';
-}
-
-i.icon.google.plus.circle:before {
- content: "\f2b3";
- font-family: 'brand-icons';
-}
-
-i.icon.google.plus.official:before {
- content: "\f2b3";
- font-family: 'brand-icons';
-}
-
-i.icon.japan.credit.bureau:before {
- content: "\f24b";
- font-family: 'brand-icons';
-}
-
-i.icon.japan.credit.bureau.card:before {
- content: "\f24b";
- font-family: 'brand-icons';
-}
-
-i.icon.jcb:before {
- content: "\f24b";
- font-family: 'brand-icons';
-}
-
-i.icon.linkedin.square:before {
- content: "\f08c";
- font-family: 'brand-icons';
-}
-
-i.icon.mastercard:before {
- content: "\f1f1";
- font-family: 'brand-icons';
-}
-
-i.icon.mastercard.card:before {
- content: "\f1f1";
- font-family: 'brand-icons';
-}
-
-i.icon.microsoft.edge:before {
- content: "\f282";
- font-family: 'brand-icons';
-}
-
-i.icon.ms.edge:before {
- content: "\f282";
- font-family: 'brand-icons';
-}
-
-i.icon.new.pied.piper:before {
- content: "\f2ae";
- font-family: 'brand-icons';
-}
-
-i.icon.optinmonster:before {
- content: "\f23c";
- font-family: 'brand-icons';
-}
-
-i.icon.paypal.card:before {
- content: "\f1f4";
- font-family: 'brand-icons';
-}
-
-i.icon.pied.piper.hat:before {
- content: "\f2ae";
- font-family: 'brand-icons';
-}
-
-i.icon.pocket:before {
- content: "\f265";
- font-family: 'brand-icons';
-}
-
-i.icon.stripe.card:before {
- content: "\f1f5";
- font-family: 'brand-icons';
-}
-
-i.icon.theme.isle:before {
- content: "\f2b2";
- font-family: 'brand-icons';
-}
-
-i.icon.visa:before {
- content: "\f1f0";
- font-family: 'brand-icons';
-}
-
-i.icon.visa.card:before {
- content: "\f1f0";
- font-family: 'brand-icons';
-}
-
-i.icon.wechat:before {
- content: "\f1d7";
- font-family: 'brand-icons';
-}
-
-i.icon.wikipedia:before {
- content: "\f266";
- font-family: 'brand-icons';
-}
-
-i.icon.wordpress.beginner:before {
- content: "\f297";
- font-family: 'brand-icons';
-}
-
-i.icon.wordpress.forms:before {
- content: "\f298";
- font-family: 'brand-icons';
-}
-
-i.icon.yc:before {
- content: "\f23b";
- font-family: 'brand-icons';
-}
-
-i.icon.ycombinator:before {
- content: "\f23b";
- font-family: 'brand-icons';
-}
-
-i.icon.youtube.play:before {
- content: "\f167";
- font-family: 'brand-icons';
-}
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Image
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Image
-*******************************/
-
-.ui.image {
- position: relative;
- display: inline-block;
- vertical-align: middle;
- max-width: 100%;
- background-color: transparent;
-}
-
-img.ui.image {
- display: block;
-}
-
-.ui.image svg,
-.ui.image img {
- display: block;
- max-width: 100%;
- height: auto;
-}
-
-/*******************************
- States
-*******************************/
-
-.ui.hidden.images,
-.ui.ui.hidden.image {
- display: none;
-}
-
-.ui.hidden.transition.images,
-.ui.hidden.transition.image {
- display: block;
- visibility: hidden;
-}
-
-.ui.images > .hidden.transition {
- display: inline-block;
- visibility: hidden;
-}
-
-.ui.disabled.images,
-.ui.disabled.image {
- cursor: default;
- opacity: 0.45;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*--------------
- Inline
- ---------------*/
-
-.ui.inline.image,
-.ui.inline.image svg,
-.ui.inline.image img {
- display: inline-block;
-}
-
-/*------------------
- Vertical Aligned
- -------------------*/
-
-.ui.top.aligned.images .image,
-.ui.top.aligned.image,
-.ui.top.aligned.image svg,
-.ui.top.aligned.image img {
- display: inline-block;
- vertical-align: top;
-}
-
-.ui.middle.aligned.images .image,
-.ui.middle.aligned.image,
-.ui.middle.aligned.image svg,
-.ui.middle.aligned.image img {
- display: inline-block;
- vertical-align: middle;
-}
-
-.ui.bottom.aligned.images .image,
-.ui.bottom.aligned.image,
-.ui.bottom.aligned.image svg,
-.ui.bottom.aligned.image img {
- display: inline-block;
- vertical-align: bottom;
-}
-
-/*--------------
- Rounded
- ---------------*/
-
-.ui.rounded.images .image,
-.ui.rounded.image,
-.ui.rounded.images .image > *,
-.ui.rounded.image > * {
- border-radius: 0.3125em;
-}
-
-/*--------------
- Bordered
- ---------------*/
-
-.ui.bordered.images .image,
-.ui.bordered.images img,
-.ui.bordered.images svg,
-.ui.bordered.image img,
-.ui.bordered.image svg,
-img.ui.bordered.image {
- border: 1px solid rgba(0, 0, 0, 0.1);
-}
-
-/*--------------
- Circular
- ---------------*/
-
-.ui.circular.images,
-.ui.circular.image {
- overflow: hidden;
-}
-
-.ui.circular.images .image,
-.ui.circular.image,
-.ui.circular.images .image > *,
-.ui.circular.image > * {
- border-radius: 500rem;
-}
-
-/*--------------
- Fluid
- ---------------*/
-
-.ui.fluid.images,
-.ui.fluid.image,
-.ui.fluid.images img,
-.ui.fluid.images svg,
-.ui.fluid.image svg,
-.ui.fluid.image img {
- display: block;
- width: 100%;
- height: auto;
-}
-
-/*--------------
- Avatar
- ---------------*/
-
-.ui.avatar.images .image,
-.ui.avatar.images img,
-.ui.avatar.images svg,
-.ui.avatar.image img,
-.ui.avatar.image svg,
-.ui.avatar.image {
- margin-right: 0.25em;
- display: inline-block;
- width: 2em;
- height: 2em;
- border-radius: 500rem;
-}
-
-/*-------------------
- Spaced
- --------------------*/
-
-.ui.spaced.image {
- display: inline-block !important;
- margin-left: 0.5em;
- margin-right: 0.5em;
-}
-
-.ui[class*="left spaced"].image {
- margin-left: 0.5em;
- margin-right: 0;
-}
-
-.ui[class*="right spaced"].image {
- margin-left: 0;
- margin-right: 0.5em;
-}
-
-/*-------------------
- Floated
- --------------------*/
-
-.ui.floated.image,
-.ui.floated.images {
- float: left;
- margin-right: 1em;
- margin-bottom: 1em;
-}
-
-.ui.right.floated.images,
-.ui.right.floated.image {
- float: right;
- margin-right: 0;
- margin-bottom: 1em;
- margin-left: 1em;
-}
-
-.ui.floated.images:last-child,
-.ui.floated.image:last-child {
- margin-bottom: 0;
-}
-
-.ui.centered.images,
-.ui.centered.image {
- margin-left: auto;
- margin-right: auto;
-}
-
-/*--------------
- Sizes
----------------*/
-
-.ui.medium.images .image,
-.ui.medium.images img,
-.ui.medium.images svg,
-.ui.medium.image {
- width: 300px;
- height: auto;
- font-size: 1rem;
-}
-
-.ui.mini.images .image,
-.ui.mini.images img,
-.ui.mini.images svg,
-.ui.mini.image {
- width: 35px;
- height: auto;
- font-size: 0.78571429rem;
-}
-
-.ui.tiny.images .image,
-.ui.tiny.images img,
-.ui.tiny.images svg,
-.ui.tiny.image {
- width: 80px;
- height: auto;
- font-size: 0.85714286rem;
-}
-
-.ui.small.images .image,
-.ui.small.images img,
-.ui.small.images svg,
-.ui.small.image {
- width: 150px;
- height: auto;
- font-size: 0.92857143rem;
-}
-
-.ui.large.images .image,
-.ui.large.images img,
-.ui.large.images svg,
-.ui.large.image {
- width: 450px;
- height: auto;
- font-size: 1.14285714rem;
-}
-
-.ui.big.images .image,
-.ui.big.images img,
-.ui.big.images svg,
-.ui.big.image {
- width: 600px;
- height: auto;
- font-size: 1.28571429rem;
-}
-
-.ui.huge.images .image,
-.ui.huge.images img,
-.ui.huge.images svg,
-.ui.huge.image {
- width: 800px;
- height: auto;
- font-size: 1.42857143rem;
-}
-
-.ui.massive.images .image,
-.ui.massive.images img,
-.ui.massive.images svg,
-.ui.massive.image {
- width: 960px;
- height: auto;
- font-size: 1.71428571rem;
-}
-
-/*******************************
- Groups
- *******************************/
-
-.ui.images {
- font-size: 0;
- margin: 0 -0.25rem 0;
-}
-
-.ui.images .image,
-.ui.images > img,
-.ui.images > svg {
- display: inline-block;
- margin: 0 0.25rem 0.5rem;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Input
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Standard
-*******************************/
-
-/*--------------------
- Inputs
----------------------*/
-
-.ui.input {
- position: relative;
- font-weight: normal;
- font-style: normal;
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.input > input {
- margin: 0;
- max-width: 100%;
- -webkit-box-flex: 1;
- -ms-flex: 1 0 auto;
- flex: 1 0 auto;
- outline: none;
- -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
- text-align: left;
- line-height: 1.21428571em;
- font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
- padding: 0.67857143em 1em;
- background: #FFFFFF;
- border: 1px solid rgba(34, 36, 38, 0.15);
- color: rgba(0, 0, 0, 0.87);
- border-radius: 0.28571429rem;
- -webkit-transition: border-color 0.1s ease, -webkit-box-shadow 0.1s ease;
- transition: border-color 0.1s ease, -webkit-box-shadow 0.1s ease;
- transition: box-shadow 0.1s ease, border-color 0.1s ease;
- transition: box-shadow 0.1s ease, border-color 0.1s ease, -webkit-box-shadow 0.1s ease;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/*--------------------
- Placeholder
----------------------*/
-
-/* browsers require these rules separate */
-
-.ui.input > input::-webkit-input-placeholder {
- color: rgba(191, 191, 191, 0.87);
-}
-
-.ui.input > input::-moz-placeholder {
- color: rgba(191, 191, 191, 0.87);
-}
-
-.ui.input > input:-ms-input-placeholder {
- color: rgba(191, 191, 191, 0.87);
-}
-
-/*******************************
- States
-*******************************/
-
-/*--------------------
- Disabled
- ---------------------*/
-
-.ui.disabled.input,
-.ui.input:not(.disabled) input[disabled] {
- opacity: 0.45;
-}
-
-.ui.disabled.input > input,
-.ui.input:not(.disabled) input[disabled] {
- pointer-events: none;
-}
-
-/*--------------------
- Active
----------------------*/
-
-.ui.input > input:active,
-.ui.input.down input {
- border-color: rgba(0, 0, 0, 0.3);
- background: #FAFAFA;
- color: rgba(0, 0, 0, 0.87);
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/*--------------------
- Loading
- ---------------------*/
-
-.ui.loading.loading.input > i.icon:before {
- position: absolute;
- content: '';
- top: 50%;
- left: 50%;
- margin: -0.64285714em 0 0 -0.64285714em;
- width: 1.28571429em;
- height: 1.28571429em;
- border-radius: 500rem;
- border: 0.2em solid rgba(0, 0, 0, 0.1);
-}
-
-.ui.loading.loading.input > i.icon:after {
- position: absolute;
- content: '';
- top: 50%;
- left: 50%;
- margin: -0.64285714em 0 0 -0.64285714em;
- width: 1.28571429em;
- height: 1.28571429em;
- -webkit-animation: loader 0.6s infinite linear;
- animation: loader 0.6s infinite linear;
- border: 0.2em solid #767676;
- border-radius: 500rem;
- -webkit-box-shadow: 0 0 0 1px transparent;
- box-shadow: 0 0 0 1px transparent;
-}
-
-/*--------------------
- Focus
----------------------*/
-
-.ui.input.focus > input,
-.ui.input > input:focus {
- border-color: #85B7D9;
- background: #FFFFFF;
- color: rgba(0, 0, 0, 0.8);
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.input.focus > input::-webkit-input-placeholder,
-.ui.input > input:focus::-webkit-input-placeholder {
- color: rgba(115, 115, 115, 0.87);
-}
-
-.ui.input.focus > input::-moz-placeholder,
-.ui.input > input:focus::-moz-placeholder {
- color: rgba(115, 115, 115, 0.87);
-}
-
-.ui.input.focus > input:-ms-input-placeholder,
-.ui.input > input:focus:-ms-input-placeholder {
- color: rgba(115, 115, 115, 0.87);
-}
-
-/*--------------------
- States
- ---------------------*/
-
-.ui.input.error > input {
- background-color: #FFF6F6;
- border-color: #E0B4B4;
- color: #9F3A38;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/* Placeholder */
-
-.ui.input.error > input::-webkit-input-placeholder {
- color: #e7bdbc;
-}
-
-.ui.input.error > input::-moz-placeholder {
- color: #e7bdbc;
-}
-
-.ui.input.error > input:-ms-input-placeholder {
- color: #e7bdbc;
-}
-
-/* Focused Placeholder */
-
-.ui.input.error > input:focus::-webkit-input-placeholder {
- color: #da9796;
-}
-
-.ui.input.error > input:focus::-moz-placeholder {
- color: #da9796;
-}
-
-.ui.input.error > input:focus:-ms-input-placeholder {
- color: #da9796;
-}
-
-.ui.input.info > input {
- background-color: #F8FFFF;
- border-color: #A9D5DE;
- color: #276F86;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/* Placeholder */
-
-.ui.input.info > input::-webkit-input-placeholder {
- color: #98cfe1;
-}
-
-.ui.input.info > input::-moz-placeholder {
- color: #98cfe1;
-}
-
-.ui.input.info > input:-ms-input-placeholder {
- color: #98cfe1;
-}
-
-/* Focused Placeholder */
-
-.ui.input.info > input:focus::-webkit-input-placeholder {
- color: #70bdd6;
-}
-
-.ui.input.info > input:focus::-moz-placeholder {
- color: #70bdd6;
-}
-
-.ui.input.info > input:focus:-ms-input-placeholder {
- color: #70bdd6;
-}
-
-.ui.input.success > input {
- background-color: #FCFFF5;
- border-color: #A3C293;
- color: #2C662D;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/* Placeholder */
-
-.ui.input.success > input::-webkit-input-placeholder {
- color: #8fcf90;
-}
-
-.ui.input.success > input::-moz-placeholder {
- color: #8fcf90;
-}
-
-.ui.input.success > input:-ms-input-placeholder {
- color: #8fcf90;
-}
-
-/* Focused Placeholder */
-
-.ui.input.success > input:focus::-webkit-input-placeholder {
- color: #6cbf6d;
-}
-
-.ui.input.success > input:focus::-moz-placeholder {
- color: #6cbf6d;
-}
-
-.ui.input.success > input:focus:-ms-input-placeholder {
- color: #6cbf6d;
-}
-
-.ui.input.warning > input {
- background-color: #FFFAF3;
- border-color: #C9BA9B;
- color: #573A08;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/* Placeholder */
-
-.ui.input.warning > input::-webkit-input-placeholder {
- color: #edad3e;
-}
-
-.ui.input.warning > input::-moz-placeholder {
- color: #edad3e;
-}
-
-.ui.input.warning > input:-ms-input-placeholder {
- color: #edad3e;
-}
-
-/* Focused Placeholder */
-
-.ui.input.warning > input:focus::-webkit-input-placeholder {
- color: #e39715;
-}
-
-.ui.input.warning > input:focus::-moz-placeholder {
- color: #e39715;
-}
-
-.ui.input.warning > input:focus:-ms-input-placeholder {
- color: #e39715;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*--------------------
- Transparent
- ---------------------*/
-
-.ui.transparent.input > textarea,
-.ui.transparent.input > input {
- border-color: transparent !important;
- background-color: transparent !important;
- padding: 0;
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
- border-radius: 0 !important;
-}
-
-.field .ui.transparent.input > textarea {
- padding: 0.67857143em 1em;
-}
-
-/* Transparent Icon */
-
-:not(.field) > .ui.transparent.icon.input > i.icon {
- width: 1.1em;
-}
-
-:not(.field) > .ui.ui.ui.transparent.icon.input > input {
- padding-left: 0;
- padding-right: 2em;
-}
-
-:not(.field) > .ui.ui.ui.transparent[class*="left icon"].input > input {
- padding-left: 2em;
- padding-right: 0;
-}
-
-/* Transparent Inverted */
-
-.ui.transparent.inverted.input {
- color: #FFFFFF;
-}
-
-.ui.ui.transparent.inverted.input > textarea,
-.ui.ui.transparent.inverted.input > input {
- color: inherit;
-}
-
-.ui.transparent.inverted.input > input::-webkit-input-placeholder {
- color: rgba(255, 255, 255, 0.5);
-}
-
-.ui.transparent.inverted.input > input::-moz-placeholder {
- color: rgba(255, 255, 255, 0.5);
-}
-
-.ui.transparent.inverted.input > input:-ms-input-placeholder {
- color: rgba(255, 255, 255, 0.5);
-}
-
-/*--------------------
- Icon
- ---------------------*/
-
-.ui.icon.input > i.icon {
- cursor: default;
- position: absolute;
- line-height: 1;
- text-align: center;
- top: 0;
- right: 0;
- margin: 0;
- height: 100%;
- width: 2.67142857em;
- opacity: 0.5;
- border-radius: 0 0.28571429rem 0.28571429rem 0;
- -webkit-transition: opacity 0.3s ease;
- transition: opacity 0.3s ease;
-}
-
-.ui.icon.input > i.icon:not(.link) {
- pointer-events: none;
-}
-
-.ui.ui.ui.ui.icon.input > textarea,
-.ui.ui.ui.ui.icon.input > input {
- padding-right: 2.67142857em;
-}
-
-.ui.icon.input > i.icon:before,
-.ui.icon.input > i.icon:after {
- left: 0;
- position: absolute;
- text-align: center;
- top: 50%;
- width: 100%;
- margin-top: -0.5em;
-}
-
-.ui.icon.input > i.link.icon {
- cursor: pointer;
-}
-
-.ui.icon.input > i.circular.icon {
- top: 0.35em;
- right: 0.5em;
-}
-
-/* Left Icon Input */
-
-.ui[class*="left icon"].input > i.icon {
- right: auto;
- left: 1px;
- border-radius: 0.28571429rem 0 0 0.28571429rem;
-}
-
-.ui[class*="left icon"].input > i.circular.icon {
- right: auto;
- left: 0.5em;
-}
-
-.ui.ui.ui.ui[class*="left icon"].input > textarea,
-.ui.ui.ui.ui[class*="left icon"].input > input {
- padding-left: 2.67142857em;
- padding-right: 1em;
-}
-
-/* Focus */
-
-.ui.icon.input > textarea:focus ~ i.icon,
-.ui.icon.input > input:focus ~ i.icon {
- opacity: 1;
-}
-
-/*--------------------
- Labeled
- ---------------------*/
-
-/* Adjacent Label */
-
-.ui.labeled.input > .label {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- margin: 0;
- font-size: 1em;
-}
-
-.ui.labeled.input > .label:not(.corner) {
- padding-top: 0.78571429em;
- padding-bottom: 0.78571429em;
-}
-
-/* Regular Label on Left */
-
-.ui.labeled.input:not([class*="corner labeled"]) .label:first-child {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
-}
-
-.ui.labeled.input:not([class*="corner labeled"]) .label:first-child + input {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- border-left-color: transparent;
-}
-
-.ui.labeled.input:not([class*="corner labeled"]) .label:first-child + input:focus {
- border-left-color: #85B7D9;
-}
-
-/* Regular Label on Right */
-
-.ui[class*="right labeled"].input > input {
- border-top-right-radius: 0 !important;
- border-bottom-right-radius: 0 !important;
- border-right-color: transparent !important;
-}
-
-.ui[class*="right labeled"].input > input + .label {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
-}
-
-.ui[class*="right labeled"].input > input:focus {
- border-right-color: #85B7D9 !important;
-}
-
-/* Corner Label */
-
-.ui.labeled.input .corner.label {
- top: 1px;
- right: 1px;
- font-size: 0.64285714em;
- border-radius: 0 0.28571429rem 0 0;
-}
-
-/* Spacing with corner label */
-
-.ui[class*="corner labeled"]:not([class*="left corner labeled"]).labeled.input > textarea,
-.ui[class*="corner labeled"]:not([class*="left corner labeled"]).labeled.input > input {
- padding-right: 2.5em !important;
-}
-
-.ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"]) > textarea,
-.ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"]) > input {
- padding-right: 3.25em !important;
-}
-
-.ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"]) > .icon {
- margin-right: 1.25em;
-}
-
-/* Left Labeled */
-
-.ui[class*="left corner labeled"].labeled.input > textarea,
-.ui[class*="left corner labeled"].labeled.input > input {
- padding-left: 2.5em !important;
-}
-
-.ui[class*="left corner labeled"].icon.input > textarea,
-.ui[class*="left corner labeled"].icon.input > input {
- padding-left: 3.25em !important;
-}
-
-.ui[class*="left corner labeled"].icon.input > .icon {
- margin-left: 1.25em;
-}
-
-.ui.icon.input > textarea ~ .icon {
- height: 3em;
-}
-
-:not(.field) > .ui.transparent.icon.input > textarea ~ .icon {
- height: 1.3em;
-}
-
-/* Corner Label Position */
-
-.ui.input > .ui.corner.label {
- top: 1px;
- right: 1px;
-}
-
-.ui.input > .ui.left.corner.label {
- right: auto;
- left: 1px;
-}
-
-/* Labeled and action input states */
-
-.ui.form > .field.error > .ui.action.input > .ui.button,
-.ui.form > .field.error > .ui.labeled.input:not([class*="corner labeled"]) > .ui.label,
-.ui.action.input.error > .ui.button,
-.ui.labeled.input.error:not([class*="corner labeled"]) > .ui.label {
- border-top: 1px solid #E0B4B4;
- border-bottom: 1px solid #E0B4B4;
-}
-
-.ui.form > .field.error > .ui.left.action.input > .ui.button,
-.ui.form > .field.error > .ui.labeled.input:not(.right):not([class*="corner labeled"]) > .ui.label,
-.ui.left.action.input.error > .ui.button,
-.ui.labeled.input.error:not(.right):not([class*="corner labeled"]) > .ui.label {
- border-left: 1px solid #E0B4B4;
-}
-
-.ui.form > .field.error > .ui.action.input:not(.left) > input + .ui.button,
-.ui.form > .field.error > .ui.right.labeled.input:not([class*="corner labeled"]) > input + .ui.label,
-.ui.action.input.error:not(.left) > input + .ui.button,
-.ui.right.labeled.input.error:not([class*="corner labeled"]) > input + .ui.label {
- border-right: 1px solid #E0B4B4;
-}
-
-.ui.form > .field.error > .ui.right.labeled.input:not([class*="corner labeled"]) > .ui.label:first-child,
-.ui.right.labeled.input.error:not([class*="corner labeled"]) > .ui.label:first-child {
- border-left: 1px solid #E0B4B4;
-}
-
-.ui.form > .field.info > .ui.action.input > .ui.button,
-.ui.form > .field.info > .ui.labeled.input:not([class*="corner labeled"]) > .ui.label,
-.ui.action.input.info > .ui.button,
-.ui.labeled.input.info:not([class*="corner labeled"]) > .ui.label {
- border-top: 1px solid #A9D5DE;
- border-bottom: 1px solid #A9D5DE;
-}
-
-.ui.form > .field.info > .ui.left.action.input > .ui.button,
-.ui.form > .field.info > .ui.labeled.input:not(.right):not([class*="corner labeled"]) > .ui.label,
-.ui.left.action.input.info > .ui.button,
-.ui.labeled.input.info:not(.right):not([class*="corner labeled"]) > .ui.label {
- border-left: 1px solid #A9D5DE;
-}
-
-.ui.form > .field.info > .ui.action.input:not(.left) > input + .ui.button,
-.ui.form > .field.info > .ui.right.labeled.input:not([class*="corner labeled"]) > input + .ui.label,
-.ui.action.input.info:not(.left) > input + .ui.button,
-.ui.right.labeled.input.info:not([class*="corner labeled"]) > input + .ui.label {
- border-right: 1px solid #A9D5DE;
-}
-
-.ui.form > .field.info > .ui.right.labeled.input:not([class*="corner labeled"]) > .ui.label:first-child,
-.ui.right.labeled.input.info:not([class*="corner labeled"]) > .ui.label:first-child {
- border-left: 1px solid #A9D5DE;
-}
-
-.ui.form > .field.success > .ui.action.input > .ui.button,
-.ui.form > .field.success > .ui.labeled.input:not([class*="corner labeled"]) > .ui.label,
-.ui.action.input.success > .ui.button,
-.ui.labeled.input.success:not([class*="corner labeled"]) > .ui.label {
- border-top: 1px solid #A3C293;
- border-bottom: 1px solid #A3C293;
-}
-
-.ui.form > .field.success > .ui.left.action.input > .ui.button,
-.ui.form > .field.success > .ui.labeled.input:not(.right):not([class*="corner labeled"]) > .ui.label,
-.ui.left.action.input.success > .ui.button,
-.ui.labeled.input.success:not(.right):not([class*="corner labeled"]) > .ui.label {
- border-left: 1px solid #A3C293;
-}
-
-.ui.form > .field.success > .ui.action.input:not(.left) > input + .ui.button,
-.ui.form > .field.success > .ui.right.labeled.input:not([class*="corner labeled"]) > input + .ui.label,
-.ui.action.input.success:not(.left) > input + .ui.button,
-.ui.right.labeled.input.success:not([class*="corner labeled"]) > input + .ui.label {
- border-right: 1px solid #A3C293;
-}
-
-.ui.form > .field.success > .ui.right.labeled.input:not([class*="corner labeled"]) > .ui.label:first-child,
-.ui.right.labeled.input.success:not([class*="corner labeled"]) > .ui.label:first-child {
- border-left: 1px solid #A3C293;
-}
-
-.ui.form > .field.warning > .ui.action.input > .ui.button,
-.ui.form > .field.warning > .ui.labeled.input:not([class*="corner labeled"]) > .ui.label,
-.ui.action.input.warning > .ui.button,
-.ui.labeled.input.warning:not([class*="corner labeled"]) > .ui.label {
- border-top: 1px solid #C9BA9B;
- border-bottom: 1px solid #C9BA9B;
-}
-
-.ui.form > .field.warning > .ui.left.action.input > .ui.button,
-.ui.form > .field.warning > .ui.labeled.input:not(.right):not([class*="corner labeled"]) > .ui.label,
-.ui.left.action.input.warning > .ui.button,
-.ui.labeled.input.warning:not(.right):not([class*="corner labeled"]) > .ui.label {
- border-left: 1px solid #C9BA9B;
-}
-
-.ui.form > .field.warning > .ui.action.input:not(.left) > input + .ui.button,
-.ui.form > .field.warning > .ui.right.labeled.input:not([class*="corner labeled"]) > input + .ui.label,
-.ui.action.input.warning:not(.left) > input + .ui.button,
-.ui.right.labeled.input.warning:not([class*="corner labeled"]) > input + .ui.label {
- border-right: 1px solid #C9BA9B;
-}
-
-.ui.form > .field.warning > .ui.right.labeled.input:not([class*="corner labeled"]) > .ui.label:first-child,
-.ui.right.labeled.input.warning:not([class*="corner labeled"]) > .ui.label:first-child {
- border-left: 1px solid #C9BA9B;
-}
-
-/*--------------------
- Action
- ---------------------*/
-
-.ui.action.input > .button,
-.ui.action.input > .buttons {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
-}
-
-.ui.action.input > .button,
-.ui.action.input > .buttons > .button {
- padding-top: 0.78571429em;
- padding-bottom: 0.78571429em;
- margin: 0;
-}
-
-/* Input when ui Left*/
-
-.ui[class*="left action"].input > input {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- border-left-color: transparent;
-}
-
-/* Input when ui Right*/
-
-.ui.action.input:not([class*="left action"]) > input {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- border-right-color: transparent;
-}
-
-/* Button and Dropdown */
-
-.ui.action.input > .dropdown:first-child,
-.ui.action.input > .button:first-child,
-.ui.action.input > .buttons:first-child > .button {
- border-radius: 0.28571429rem 0 0 0.28571429rem;
-}
-
-.ui.action.input > .dropdown:not(:first-child),
-.ui.action.input > .button:not(:first-child),
-.ui.action.input > .buttons:not(:first-child) > .button {
- border-radius: 0;
-}
-
-.ui.action.input > .dropdown:last-child,
-.ui.action.input > .button:last-child,
-.ui.action.input > .buttons:last-child > .button {
- border-radius: 0 0.28571429rem 0.28571429rem 0;
-}
-
-/* Input Focus */
-
-.ui.action.input:not([class*="left action"]) > input:focus {
- border-right-color: #85B7D9;
-}
-
-.ui.ui[class*="left action"].input > input:focus {
- border-left-color: #85B7D9;
-}
-
-/*--------------------
- Inverted
- ---------------------*/
-
-/* Standard */
-
-.ui.inverted.input > input {
- border: none;
-}
-
-/*--------------------
- Fluid
- ---------------------*/
-
-.ui.fluid.input {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
-}
-
-.ui.fluid.input > input {
- width: 0 !important;
-}
-
-/*--------------------
- Size
----------------------*/
-
-.ui.input {
- font-size: 1em;
-}
-
-.ui.mini.input {
- font-size: 0.78571429em;
-}
-
-.ui.tiny.input {
- font-size: 0.85714286em;
-}
-
-.ui.small.input {
- font-size: 0.92857143em;
-}
-
-.ui.large.input {
- font-size: 1.14285714em;
-}
-
-.ui.big.input {
- font-size: 1.28571429em;
-}
-
-.ui.huge.input {
- font-size: 1.42857143em;
-}
-
-.ui.massive.input {
- font-size: 1.71428571em;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Label
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Label
-*******************************/
-
-.ui.label {
- display: inline-block;
- line-height: 1;
- vertical-align: baseline;
- margin: 0 0.14285714em;
- background-color: #E8E8E8;
- background-image: none;
- padding: 0.5833em 0.833em;
- color: rgba(0, 0, 0, 0.6);
- text-transform: none;
- font-weight: bold;
- border: 0 solid transparent;
- border-radius: 0.28571429rem;
- -webkit-transition: background 0.1s ease;
- transition: background 0.1s ease;
-}
-
-.ui.label:first-child {
- margin-left: 0;
-}
-
-.ui.label:last-child {
- margin-right: 0;
-}
-
-/* Link */
-
-a.ui.label {
- cursor: pointer;
-}
-
-/* Inside Link */
-
-.ui.label > a {
- cursor: pointer;
- color: inherit;
- opacity: 0.5;
- -webkit-transition: 0.1s opacity ease;
- transition: 0.1s opacity ease;
-}
-
-.ui.label > a:hover {
- opacity: 1;
-}
-
-/* Image */
-
-.ui.label > img {
- width: auto !important;
- vertical-align: middle;
- height: 2.1666em;
-}
-
-/* Icon */
-
-.ui.left.icon.label > .icon,
-.ui.label > .icon {
- width: auto;
- margin: 0 0.75em 0 0;
-}
-
-/* Detail */
-
-.ui.label > .detail {
- display: inline-block;
- vertical-align: top;
- font-weight: bold;
- margin-left: 1em;
- opacity: 0.8;
-}
-
-.ui.label > .detail .icon {
- margin: 0 0.25em 0 0;
-}
-
-/* Removable label */
-
-.ui.label > .close.icon,
-.ui.label > .delete.icon {
- cursor: pointer;
- font-size: 0.92857143em;
- opacity: 0.5;
- -webkit-transition: background 0.1s ease;
- transition: background 0.1s ease;
-}
-
-.ui.label > .close.icon:hover,
-.ui.label > .delete.icon:hover {
- opacity: 1;
-}
-
-/* Backward compatible positioning */
-
-.ui.label.left.icon > .close.icon,
-.ui.label.left.icon > .delete.icon {
- margin: 0 0.5em 0 0;
-}
-
-.ui.label:not(.icon) > .close.icon,
-.ui.label:not(.icon) > .delete.icon {
- margin: 0 0 0 0.5em;
-}
-
-/* Label for only an icon */
-
-.ui.icon.label > .icon {
- margin: 0 auto;
-}
-
-/* Right Side Icon */
-
-.ui.right.icon.label > .icon {
- margin: 0 0 0 0.75em;
-}
-
-/*-------------------
- Group
---------------------*/
-
-.ui.labels > .label {
- margin: 0 0.5em 0.5em 0;
-}
-
-/*-------------------
- Coupling
---------------------*/
-
-.ui.header > .ui.label {
- margin-top: -0.29165em;
-}
-
-/* Remove border radius on attached segment */
-
-.ui.attached.segment > .ui.top.left.attached.label,
-.ui.bottom.attached.segment > .ui.top.left.attached.label {
- border-top-left-radius: 0;
-}
-
-.ui.attached.segment > .ui.top.right.attached.label,
-.ui.bottom.attached.segment > .ui.top.right.attached.label {
- border-top-right-radius: 0;
-}
-
-.ui.top.attached.segment > .ui.bottom.left.attached.label {
- border-bottom-left-radius: 0;
-}
-
-.ui.top.attached.segment > .ui.bottom.right.attached.label {
- border-bottom-right-radius: 0;
-}
-
-/* Padding on next content after a label */
-
-.ui.top.attached.label ~ .ui.bottom.attached.label + :not(.attached),
-.ui.top.attached.label + :not(.attached) {
- margin-top: 2rem !important;
-}
-
-.ui.bottom.attached.label ~ :last-child:not(.attached) {
- margin-top: 0;
- margin-bottom: 2rem !important;
-}
-
-/*******************************
- Types
-*******************************/
-
-.ui.image.label {
- width: auto !important;
- margin-top: 0;
- margin-bottom: 0;
- max-width: 9999px;
- vertical-align: baseline;
- text-transform: none;
- background: #E8E8E8;
- padding: 0.5833em 0.833em 0.5833em 0.5em;
- border-radius: 0.28571429rem;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.image.label img {
- display: inline-block;
- vertical-align: top;
- height: 2.1666em;
- margin: -0.5833em 0.5em -0.5833em -0.5em;
- border-radius: 0.28571429rem 0 0 0.28571429rem;
-}
-
-.ui.image.label .detail {
- background: rgba(0, 0, 0, 0.1);
- margin: -0.5833em -0.833em -0.5833em 0.5em;
- padding: 0.5833em 0.833em;
- border-radius: 0 0.28571429rem 0.28571429rem 0;
-}
-
-/*-------------------
- Tag
---------------------*/
-
-.ui.tag.labels .label,
-.ui.tag.label {
- margin-left: 1em;
- position: relative;
- padding-left: 1.5em;
- padding-right: 1.5em;
- border-radius: 0 0.28571429rem 0.28571429rem 0;
- -webkit-transition: none;
- transition: none;
-}
-
-.ui.tag.labels .label:before,
-.ui.tag.label:before {
- position: absolute;
- -webkit-transform: translateY(-50%) translateX(50%) rotate(-45deg);
- transform: translateY(-50%) translateX(50%) rotate(-45deg);
- top: 50%;
- right: 100%;
- content: '';
- background-color: inherit;
- background-image: none;
- width: 1.56em;
- height: 1.56em;
- -webkit-transition: none;
- transition: none;
-}
-
-.ui.tag.labels .label:after,
-.ui.tag.label:after {
- position: absolute;
- content: '';
- top: 50%;
- left: -0.25em;
- margin-top: -0.25em;
- background-color: #FFFFFF;
- width: 0.5em;
- height: 0.5em;
- -webkit-box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3);
- box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3);
- border-radius: 500rem;
-}
-
-.ui.basic.tag.labels .label:before,
-.ui.basic.tag.label:before {
- border-color: inherit;
- border-width: 1px 0 0 1px;
- border-style: inherit;
- right: calc(100% + 1px);
-}
-
-.ui.basic.tag.labels .label:after,
-.ui.basic.tag.label:after {
- -webkit-box-shadow: 0 -1px 3px 0 rgba(0, 0, 0, 0.8);
- box-shadow: 0 -1px 3px 0 rgba(0, 0, 0, 0.8);
-}
-
-/*-------------------
- Corner Label
---------------------*/
-
-.ui.corner.label {
- position: absolute;
- top: 0;
- right: 0;
- margin: 0;
- padding: 0;
- text-align: center;
- border-color: #E8E8E8;
- width: 4em;
- height: 4em;
- z-index: 1;
- -webkit-transition: border-color 0.1s ease;
- transition: border-color 0.1s ease;
-}
-
-/* Icon Label */
-
-.ui.corner.label {
- background-color: transparent !important;
-}
-
-.ui.corner.label:after {
- position: absolute;
- content: "";
- right: 0;
- top: 0;
- z-index: -1;
- width: 0;
- height: 0;
- background-color: transparent;
- border-top: 0 solid transparent;
- border-right: 4em solid transparent;
- border-bottom: 4em solid transparent;
- border-left: 0 solid transparent;
- border-right-color: inherit;
- -webkit-transition: border-color 0.1s ease;
- transition: border-color 0.1s ease;
-}
-
-.ui.corner.label .icon {
- cursor: inherit;
- position: absolute;
- top: 0.64285714em;
- left: auto;
- right: 0.57142857em;
- font-size: 1.14285714em;
- margin: 0;
-}
-
-/* Left Corner */
-
-.ui.left.corner.label,
-.ui.left.corner.label:after {
- right: auto;
- left: 0;
-}
-
-.ui.left.corner.label:after {
- border-top: 4em solid transparent;
- border-right: 4em solid transparent;
- border-bottom: 0 solid transparent;
- border-left: 0 solid transparent;
- border-top-color: inherit;
-}
-
-.ui.left.corner.label .icon {
- left: 0.57142857em;
- right: auto;
-}
-
-/* Segment */
-
-.ui.segment > .ui.corner.label {
- top: -1px;
- right: -1px;
-}
-
-.ui.segment > .ui.left.corner.label {
- right: auto;
- left: -1px;
-}
-
-/*-------------------
- Ribbon
- --------------------*/
-
-.ui.ribbon.label {
- position: relative;
- margin: 0;
- min-width: -webkit-max-content;
- min-width: -moz-max-content;
- min-width: max-content;
- border-radius: 0 0.28571429rem 0.28571429rem 0;
- border-color: rgba(0, 0, 0, 0.15);
-}
-
-.ui.ribbon.label:after {
- position: absolute;
- content: '';
- top: 100%;
- left: 0;
- background-color: transparent;
- border-style: solid;
- border-width: 0 1.2em 1.2em 0;
- border-color: transparent;
- border-right-color: inherit;
- width: 0;
- height: 0;
-}
-
-/* Positioning */
-
-.ui.ribbon.label {
- left: calc(-1rem - 1.2em);
- margin-right: -1.2em;
- padding-left: calc(1rem + 1.2em);
- padding-right: 1.2em;
-}
-
-.ui[class*="right ribbon"].label {
- left: calc(100% + 1rem + 1.2em);
- padding-left: 1.2em;
- padding-right: calc(1rem + 1.2em);
-}
-
-.ui.basic.ribbon.label {
- padding-top: calc(0.5833em - 1px);
- padding-bottom: calc(0.5833em - 1px);
-}
-
-.ui.basic.ribbon.label:not([class*="right ribbon"]) {
- padding-left: calc(1rem + 1.2em - 1px);
- padding-right: calc(1.2em - 1px);
-}
-
-.ui.basic[class*="right ribbon"].label {
- padding-left: calc(1.2em - 1px);
- padding-right: calc(1rem + 1.2em - 1px);
-}
-
-.ui.basic.ribbon.label::after {
- top: calc(100% + 1px);
-}
-
-.ui.basic.ribbon.label:not([class*="right ribbon"])::after {
- left: -1px;
-}
-
-.ui.basic[class*="right ribbon"].label::after {
- right: -1px;
-}
-
-/* Right Ribbon */
-
-.ui[class*="right ribbon"].label {
- text-align: left;
- -webkit-transform: translateX(-100%);
- transform: translateX(-100%);
- border-radius: 0.28571429rem 0 0 0.28571429rem;
-}
-
-.ui[class*="right ribbon"].label:after {
- left: auto;
- right: 0;
- border-style: solid;
- border-width: 1.2em 1.2em 0 0;
- border-color: transparent;
- border-top-color: inherit;
-}
-
-/* Inside Table */
-
-.ui.image > .ribbon.label,
-.ui.card .image > .ribbon.label {
- position: absolute;
- top: 1rem;
-}
-
-.ui.card .image > .ui.ribbon.label,
-.ui.image > .ui.ribbon.label {
- left: calc(0.05rem - 1.2em);
-}
-
-.ui.card .image > .ui[class*="right ribbon"].label,
-.ui.image > .ui[class*="right ribbon"].label {
- left: calc(100% + -0.05rem + 1.2em);
- padding-left: 0.833em;
-}
-
-/* Inside Table */
-
-.ui.table td > .ui.ribbon.label {
- left: calc(-1em - 1.2em);
-}
-
-.ui.table td > .ui[class*="right ribbon"].label {
- left: calc(100% + 1em + 1.2em);
- padding-left: 0.833em;
-}
-
-/*-------------------
- Attached
- --------------------*/
-
-.ui[class*="top attached"].label,
-.ui.attached.label {
- width: 100%;
- position: absolute;
- margin: 0;
- top: 0;
- left: 0;
- padding: 0.75em 1em;
- border-radius: 0.21428571rem 0.21428571rem 0 0;
-}
-
-.ui[class*="bottom attached"].label {
- top: auto;
- bottom: 0;
- border-radius: 0 0 0.21428571rem 0.21428571rem;
-}
-
-.ui[class*="top left attached"].label {
- width: auto;
- margin-top: 0 !important;
- border-radius: 0.21428571rem 0 0.28571429rem 0;
-}
-
-.ui[class*="top right attached"].label {
- width: auto;
- left: auto;
- right: 0;
- border-radius: 0 0.21428571rem 0 0.28571429rem;
-}
-
-.ui[class*="bottom left attached"].label {
- width: auto;
- top: auto;
- bottom: 0;
- border-radius: 0 0.28571429rem 0 0.21428571rem;
-}
-
-.ui[class*="bottom right attached"].label {
- top: auto;
- bottom: 0;
- left: auto;
- right: 0;
- width: auto;
- border-radius: 0.28571429rem 0 0.21428571rem 0;
-}
-
-/*******************************
- States
-*******************************/
-
-/*-------------------
- Disabled
---------------------*/
-
-.ui.label.disabled {
- opacity: 0.5;
-}
-
-/*-------------------
- Hover
---------------------*/
-
-.ui.labels a.label:hover,
-a.ui.label:hover {
- background-color: #E0E0E0;
- border-color: #E0E0E0;
- background-image: none;
- color: rgba(0, 0, 0, 0.8);
-}
-
-.ui.labels a.label:hover:before,
-a.ui.label:hover:before {
- color: rgba(0, 0, 0, 0.8);
-}
-
-/*-------------------
- Active
---------------------*/
-
-.ui.active.label {
- background-color: #D0D0D0;
- border-color: #D0D0D0;
- background-image: none;
- color: rgba(0, 0, 0, 0.95);
-}
-
-.ui.active.label:before {
- background-color: #D0D0D0;
- background-image: none;
- color: rgba(0, 0, 0, 0.95);
-}
-
-/*-------------------
- Active Hover
---------------------*/
-
-.ui.labels a.active.label:hover,
-a.ui.active.label:hover {
- background-color: #C8C8C8;
- border-color: #C8C8C8;
- background-image: none;
- color: rgba(0, 0, 0, 0.95);
-}
-
-.ui.labels a.active.label:hover:before,
-a.ui.active.label:hover:before {
- background-color: #C8C8C8;
- background-image: none;
- color: rgba(0, 0, 0, 0.95);
-}
-
-/*-------------------
- Visible
---------------------*/
-
-.ui.labels.visible .label,
-.ui.label.visible:not(.dropdown) {
- display: inline-block !important;
-}
-
-/*-------------------
- Hidden
---------------------*/
-
-.ui.labels.hidden .label,
-.ui.label.hidden {
- display: none !important;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*-------------------
- Basic
- --------------------*/
-
-.ui.basic.labels .label,
-.ui.basic.label {
- background: none #FFFFFF;
- border: 1px solid rgba(34, 36, 38, 0.15);
- color: rgba(0, 0, 0, 0.87);
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/* Link */
-
-.ui.basic.labels a.label:hover,
-a.ui.basic.label:hover {
- text-decoration: none;
- background: none #FFFFFF;
- color: #1e70bf;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/* Pointing */
-
-.ui.basic.pointing.label:before {
- border-color: inherit;
-}
-
-/*-------------------
- Fluid
- --------------------*/
-
-.ui.label.fluid,
-.ui.fluid.labels > .label {
- width: 100%;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
-}
-
-/*-------------------
- Inverted
- --------------------*/
-
-.ui.inverted.labels .label,
-.ui.inverted.label {
- color: rgba(255, 255, 255, 0.9);
- background-color: #b5b5b5;
-}
-
-.ui.inverted.corner.label {
- border-color: #b5b5b5;
-}
-
-.ui.inverted.corner.label:hover {
- border-color: #E8E8E8;
- -webkit-transition: none;
- transition: none;
-}
-
-.ui.inverted.basic.labels .label,
-.ui.inverted.basic.label,
-.ui.inverted.basic.label:hover {
- border-color: rgba(255, 255, 255, 0.5);
- background: #1B1C1D;
-}
-
-.ui.inverted.basic.label:hover {
- color: #4183C4;
-}
-
-/*-------------------
- Colors
---------------------*/
-
-.ui.primary.labels .label,
-.ui.ui.ui.primary.label {
- background-color: #2185D0;
- border-color: #2185D0;
- color: rgba(255, 255, 255, 0.9);
-}
-
-/* Link */
-
-.ui.primary.labels a.label:hover,
-a.ui.ui.ui.primary.label:hover {
- background-color: #1678c2;
- border-color: #1678c2;
- color: #FFFFFF;
-}
-
-/* Ribbon */
-
-.ui.ui.ui.primary.ribbon.label {
- border-color: #1a69a4;
-}
-
-/* Basic */
-
-.ui.basic.labels .primary.label,
-.ui.ui.ui.basic.primary.label {
- background: none #FFFFFF;
- border-color: #2185D0;
- color: #2185D0;
-}
-
-.ui.basic.labels a.primary.label:hover,
-a.ui.ui.ui.basic.primary.label:hover {
- background: none #FFFFFF;
- border-color: #1678c2;
- color: #1678c2;
-}
-
-/* Inverted */
-
-.ui.inverted.labels .primary.label,
-.ui.ui.ui.inverted.primary.label {
- background-color: #54C8FF;
- border-color: #54C8FF;
- color: #1B1C1D;
-}
-
-/* Inverted Link */
-
-.ui.inverted.labels a.primary.label:hover,
-a.ui.ui.ui.inverted.primary.label:hover {
- background-color: #21b8ff;
- border-color: #21b8ff;
- color: #1B1C1D;
-}
-
-/* Inverted Ribbon */
-
-.ui.ui.ui.inverted.primary.ribbon.label {
- border-color: #21b8ff;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.basic.labels .primary.label,
-.ui.ui.ui.inverted.basic.primary.label {
- background-color: #1B1C1D;
- border-color: #54C8FF;
- color: #54C8FF;
-}
-
-.ui.inverted.basic.labels a.primary.label:hover,
-a.ui.ui.ui.inverted.basic.primary.label:hover {
- border-color: #21b8ff;
- background-color: #1B1C1D;
- color: #21b8ff;
-}
-
-/* Inverted Basic Tags */
-
-.ui.inverted.basic.tag.labels .primary.label,
-.ui.ui.ui.inverted.primary.basic.tag.label {
- border: 1px solid #54C8FF;
-}
-
-.ui.inverted.basic.tag.labels .primary.label:before,
-.ui.ui.ui.inverted.primary.basic.tag.label:before {
- border-color: inherit;
- border-width: 1px 0 0 1px;
- border-style: inherit;
- background-color: #1B1C1D;
- right: calc(100% + 1px);
-}
-
-.ui.secondary.labels .label,
-.ui.ui.ui.secondary.label {
- background-color: #1B1C1D;
- border-color: #1B1C1D;
- color: rgba(255, 255, 255, 0.9);
-}
-
-/* Link */
-
-.ui.secondary.labels a.label:hover,
-a.ui.ui.ui.secondary.label:hover {
- background-color: #27292a;
- border-color: #27292a;
- color: #FFFFFF;
-}
-
-/* Ribbon */
-
-.ui.ui.ui.secondary.ribbon.label {
- border-color: #020203;
-}
-
-/* Basic */
-
-.ui.basic.labels .secondary.label,
-.ui.ui.ui.basic.secondary.label {
- background: none #FFFFFF;
- border-color: #1B1C1D;
- color: #1B1C1D;
-}
-
-.ui.basic.labels a.secondary.label:hover,
-a.ui.ui.ui.basic.secondary.label:hover {
- background: none #FFFFFF;
- border-color: #27292a;
- color: #27292a;
-}
-
-/* Inverted */
-
-.ui.inverted.labels .secondary.label,
-.ui.ui.ui.inverted.secondary.label {
- background-color: #545454;
- border-color: #545454;
- color: #1B1C1D;
-}
-
-/* Inverted Link */
-
-.ui.inverted.labels a.secondary.label:hover,
-a.ui.ui.ui.inverted.secondary.label:hover {
- background-color: #6e6e6e;
- border-color: #6e6e6e;
- color: #1B1C1D;
-}
-
-/* Inverted Ribbon */
-
-.ui.ui.ui.inverted.secondary.ribbon.label {
- border-color: #3b3b3b;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.basic.labels .secondary.label,
-.ui.ui.ui.inverted.basic.secondary.label {
- background-color: #1B1C1D;
- border-color: #545454;
- color: #545454;
-}
-
-.ui.inverted.basic.labels a.secondary.label:hover,
-a.ui.ui.ui.inverted.basic.secondary.label:hover {
- border-color: #6e6e6e;
- background-color: #1B1C1D;
- color: #6e6e6e;
-}
-
-/* Inverted Basic Tags */
-
-.ui.inverted.basic.tag.labels .secondary.label,
-.ui.ui.ui.inverted.secondary.basic.tag.label {
- border: 1px solid #545454;
-}
-
-.ui.inverted.basic.tag.labels .secondary.label:before,
-.ui.ui.ui.inverted.secondary.basic.tag.label:before {
- border-color: inherit;
- border-width: 1px 0 0 1px;
- border-style: inherit;
- background-color: #1B1C1D;
- right: calc(100% + 1px);
-}
-
-.ui.red.labels .label,
-.ui.ui.ui.red.label {
- background-color: #DB2828;
- border-color: #DB2828;
- color: #FFFFFF;
-}
-
-/* Link */
-
-.ui.red.labels a.label:hover,
-a.ui.ui.ui.red.label:hover {
- background-color: #d01919;
- border-color: #d01919;
- color: #FFFFFF;
-}
-
-/* Ribbon */
-
-.ui.ui.ui.red.ribbon.label {
- border-color: #b21e1e;
-}
-
-/* Basic */
-
-.ui.basic.labels .red.label,
-.ui.ui.ui.basic.red.label {
- background: none #FFFFFF;
- border-color: #DB2828;
- color: #DB2828;
-}
-
-.ui.basic.labels a.red.label:hover,
-a.ui.ui.ui.basic.red.label:hover {
- background: none #FFFFFF;
- border-color: #d01919;
- color: #d01919;
-}
-
-/* Inverted */
-
-.ui.inverted.labels .red.label,
-.ui.ui.ui.inverted.red.label {
- background-color: #FF695E;
- border-color: #FF695E;
- color: #1B1C1D;
-}
-
-/* Inverted Link */
-
-.ui.inverted.labels a.red.label:hover,
-a.ui.ui.ui.inverted.red.label:hover {
- background-color: #ff392b;
- border-color: #ff392b;
- color: #1B1C1D;
-}
-
-/* Inverted Ribbon */
-
-.ui.ui.ui.inverted.red.ribbon.label {
- border-color: #ff392b;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.basic.labels .red.label,
-.ui.ui.ui.inverted.basic.red.label {
- background-color: #1B1C1D;
- border-color: #FF695E;
- color: #FF695E;
-}
-
-.ui.inverted.basic.labels a.red.label:hover,
-a.ui.ui.ui.inverted.basic.red.label:hover {
- border-color: #ff392b;
- background-color: #1B1C1D;
- color: #ff392b;
-}
-
-/* Inverted Basic Tags */
-
-.ui.inverted.basic.tag.labels .red.label,
-.ui.ui.ui.inverted.red.basic.tag.label {
- border: 1px solid #FF695E;
-}
-
-.ui.inverted.basic.tag.labels .red.label:before,
-.ui.ui.ui.inverted.red.basic.tag.label:before {
- border-color: inherit;
- border-width: 1px 0 0 1px;
- border-style: inherit;
- background-color: #1B1C1D;
- right: calc(100% + 1px);
-}
-
-.ui.orange.labels .label,
-.ui.ui.ui.orange.label {
- background-color: #F2711C;
- border-color: #F2711C;
- color: #FFFFFF;
-}
-
-/* Link */
-
-.ui.orange.labels a.label:hover,
-a.ui.ui.ui.orange.label:hover {
- background-color: #f26202;
- border-color: #f26202;
- color: #FFFFFF;
-}
-
-/* Ribbon */
-
-.ui.ui.ui.orange.ribbon.label {
- border-color: #cf590c;
-}
-
-/* Basic */
-
-.ui.basic.labels .orange.label,
-.ui.ui.ui.basic.orange.label {
- background: none #FFFFFF;
- border-color: #F2711C;
- color: #F2711C;
-}
-
-.ui.basic.labels a.orange.label:hover,
-a.ui.ui.ui.basic.orange.label:hover {
- background: none #FFFFFF;
- border-color: #f26202;
- color: #f26202;
-}
-
-/* Inverted */
-
-.ui.inverted.labels .orange.label,
-.ui.ui.ui.inverted.orange.label {
- background-color: #FF851B;
- border-color: #FF851B;
- color: #1B1C1D;
-}
-
-/* Inverted Link */
-
-.ui.inverted.labels a.orange.label:hover,
-a.ui.ui.ui.inverted.orange.label:hover {
- background-color: #e76b00;
- border-color: #e76b00;
- color: #1B1C1D;
-}
-
-/* Inverted Ribbon */
-
-.ui.ui.ui.inverted.orange.ribbon.label {
- border-color: #e76b00;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.basic.labels .orange.label,
-.ui.ui.ui.inverted.basic.orange.label {
- background-color: #1B1C1D;
- border-color: #FF851B;
- color: #FF851B;
-}
-
-.ui.inverted.basic.labels a.orange.label:hover,
-a.ui.ui.ui.inverted.basic.orange.label:hover {
- border-color: #e76b00;
- background-color: #1B1C1D;
- color: #e76b00;
-}
-
-/* Inverted Basic Tags */
-
-.ui.inverted.basic.tag.labels .orange.label,
-.ui.ui.ui.inverted.orange.basic.tag.label {
- border: 1px solid #FF851B;
-}
-
-.ui.inverted.basic.tag.labels .orange.label:before,
-.ui.ui.ui.inverted.orange.basic.tag.label:before {
- border-color: inherit;
- border-width: 1px 0 0 1px;
- border-style: inherit;
- background-color: #1B1C1D;
- right: calc(100% + 1px);
-}
-
-.ui.yellow.labels .label,
-.ui.ui.ui.yellow.label {
- background-color: #FBBD08;
- border-color: #FBBD08;
- color: #FFFFFF;
-}
-
-/* Link */
-
-.ui.yellow.labels a.label:hover,
-a.ui.ui.ui.yellow.label:hover {
- background-color: #eaae00;
- border-color: #eaae00;
- color: #FFFFFF;
-}
-
-/* Ribbon */
-
-.ui.ui.ui.yellow.ribbon.label {
- border-color: #cd9903;
-}
-
-/* Basic */
-
-.ui.basic.labels .yellow.label,
-.ui.ui.ui.basic.yellow.label {
- background: none #FFFFFF;
- border-color: #FBBD08;
- color: #FBBD08;
-}
-
-.ui.basic.labels a.yellow.label:hover,
-a.ui.ui.ui.basic.yellow.label:hover {
- background: none #FFFFFF;
- border-color: #eaae00;
- color: #eaae00;
-}
-
-/* Inverted */
-
-.ui.inverted.labels .yellow.label,
-.ui.ui.ui.inverted.yellow.label {
- background-color: #FFE21F;
- border-color: #FFE21F;
- color: #1B1C1D;
-}
-
-/* Inverted Link */
-
-.ui.inverted.labels a.yellow.label:hover,
-a.ui.ui.ui.inverted.yellow.label:hover {
- background-color: #ebcd00;
- border-color: #ebcd00;
- color: #1B1C1D;
-}
-
-/* Inverted Ribbon */
-
-.ui.ui.ui.inverted.yellow.ribbon.label {
- border-color: #ebcd00;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.basic.labels .yellow.label,
-.ui.ui.ui.inverted.basic.yellow.label {
- background-color: #1B1C1D;
- border-color: #FFE21F;
- color: #FFE21F;
-}
-
-.ui.inverted.basic.labels a.yellow.label:hover,
-a.ui.ui.ui.inverted.basic.yellow.label:hover {
- border-color: #ebcd00;
- background-color: #1B1C1D;
- color: #ebcd00;
-}
-
-/* Inverted Basic Tags */
-
-.ui.inverted.basic.tag.labels .yellow.label,
-.ui.ui.ui.inverted.yellow.basic.tag.label {
- border: 1px solid #FFE21F;
-}
-
-.ui.inverted.basic.tag.labels .yellow.label:before,
-.ui.ui.ui.inverted.yellow.basic.tag.label:before {
- border-color: inherit;
- border-width: 1px 0 0 1px;
- border-style: inherit;
- background-color: #1B1C1D;
- right: calc(100% + 1px);
-}
-
-.ui.olive.labels .label,
-.ui.ui.ui.olive.label {
- background-color: #B5CC18;
- border-color: #B5CC18;
- color: #FFFFFF;
-}
-
-/* Link */
-
-.ui.olive.labels a.label:hover,
-a.ui.ui.ui.olive.label:hover {
- background-color: #a7bd0d;
- border-color: #a7bd0d;
- color: #FFFFFF;
-}
-
-/* Ribbon */
-
-.ui.ui.ui.olive.ribbon.label {
- border-color: #8d9e13;
-}
-
-/* Basic */
-
-.ui.basic.labels .olive.label,
-.ui.ui.ui.basic.olive.label {
- background: none #FFFFFF;
- border-color: #B5CC18;
- color: #B5CC18;
-}
-
-.ui.basic.labels a.olive.label:hover,
-a.ui.ui.ui.basic.olive.label:hover {
- background: none #FFFFFF;
- border-color: #a7bd0d;
- color: #a7bd0d;
-}
-
-/* Inverted */
-
-.ui.inverted.labels .olive.label,
-.ui.ui.ui.inverted.olive.label {
- background-color: #D9E778;
- border-color: #D9E778;
- color: #1B1C1D;
-}
-
-/* Inverted Link */
-
-.ui.inverted.labels a.olive.label:hover,
-a.ui.ui.ui.inverted.olive.label:hover {
- background-color: #d2e745;
- border-color: #d2e745;
- color: #1B1C1D;
-}
-
-/* Inverted Ribbon */
-
-.ui.ui.ui.inverted.olive.ribbon.label {
- border-color: #cddf4d;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.basic.labels .olive.label,
-.ui.ui.ui.inverted.basic.olive.label {
- background-color: #1B1C1D;
- border-color: #D9E778;
- color: #D9E778;
-}
-
-.ui.inverted.basic.labels a.olive.label:hover,
-a.ui.ui.ui.inverted.basic.olive.label:hover {
- border-color: #d2e745;
- background-color: #1B1C1D;
- color: #d2e745;
-}
-
-/* Inverted Basic Tags */
-
-.ui.inverted.basic.tag.labels .olive.label,
-.ui.ui.ui.inverted.olive.basic.tag.label {
- border: 1px solid #D9E778;
-}
-
-.ui.inverted.basic.tag.labels .olive.label:before,
-.ui.ui.ui.inverted.olive.basic.tag.label:before {
- border-color: inherit;
- border-width: 1px 0 0 1px;
- border-style: inherit;
- background-color: #1B1C1D;
- right: calc(100% + 1px);
-}
-
-.ui.green.labels .label,
-.ui.ui.ui.green.label {
- background-color: #21BA45;
- border-color: #21BA45;
- color: #FFFFFF;
-}
-
-/* Link */
-
-.ui.green.labels a.label:hover,
-a.ui.ui.ui.green.label:hover {
- background-color: #16ab39;
- border-color: #16ab39;
- color: #FFFFFF;
-}
-
-/* Ribbon */
-
-.ui.ui.ui.green.ribbon.label {
- border-color: #198f35;
-}
-
-/* Basic */
-
-.ui.basic.labels .green.label,
-.ui.ui.ui.basic.green.label {
- background: none #FFFFFF;
- border-color: #21BA45;
- color: #21BA45;
-}
-
-.ui.basic.labels a.green.label:hover,
-a.ui.ui.ui.basic.green.label:hover {
- background: none #FFFFFF;
- border-color: #16ab39;
- color: #16ab39;
-}
-
-/* Inverted */
-
-.ui.inverted.labels .green.label,
-.ui.ui.ui.inverted.green.label {
- background-color: #2ECC40;
- border-color: #2ECC40;
- color: #1B1C1D;
-}
-
-/* Inverted Link */
-
-.ui.inverted.labels a.green.label:hover,
-a.ui.ui.ui.inverted.green.label:hover {
- background-color: #1ea92e;
- border-color: #1ea92e;
- color: #1B1C1D;
-}
-
-/* Inverted Ribbon */
-
-.ui.ui.ui.inverted.green.ribbon.label {
- border-color: #25a233;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.basic.labels .green.label,
-.ui.ui.ui.inverted.basic.green.label {
- background-color: #1B1C1D;
- border-color: #2ECC40;
- color: #2ECC40;
-}
-
-.ui.inverted.basic.labels a.green.label:hover,
-a.ui.ui.ui.inverted.basic.green.label:hover {
- border-color: #1ea92e;
- background-color: #1B1C1D;
- color: #1ea92e;
-}
-
-/* Inverted Basic Tags */
-
-.ui.inverted.basic.tag.labels .green.label,
-.ui.ui.ui.inverted.green.basic.tag.label {
- border: 1px solid #2ECC40;
-}
-
-.ui.inverted.basic.tag.labels .green.label:before,
-.ui.ui.ui.inverted.green.basic.tag.label:before {
- border-color: inherit;
- border-width: 1px 0 0 1px;
- border-style: inherit;
- background-color: #1B1C1D;
- right: calc(100% + 1px);
-}
-
-.ui.teal.labels .label,
-.ui.ui.ui.teal.label {
- background-color: #00B5AD;
- border-color: #00B5AD;
- color: #FFFFFF;
-}
-
-/* Link */
-
-.ui.teal.labels a.label:hover,
-a.ui.ui.ui.teal.label:hover {
- background-color: #009c95;
- border-color: #009c95;
- color: #FFFFFF;
-}
-
-/* Ribbon */
-
-.ui.ui.ui.teal.ribbon.label {
- border-color: #00827c;
-}
-
-/* Basic */
-
-.ui.basic.labels .teal.label,
-.ui.ui.ui.basic.teal.label {
- background: none #FFFFFF;
- border-color: #00B5AD;
- color: #00B5AD;
-}
-
-.ui.basic.labels a.teal.label:hover,
-a.ui.ui.ui.basic.teal.label:hover {
- background: none #FFFFFF;
- border-color: #009c95;
- color: #009c95;
-}
-
-/* Inverted */
-
-.ui.inverted.labels .teal.label,
-.ui.ui.ui.inverted.teal.label {
- background-color: #6DFFFF;
- border-color: #6DFFFF;
- color: #1B1C1D;
-}
-
-/* Inverted Link */
-
-.ui.inverted.labels a.teal.label:hover,
-a.ui.ui.ui.inverted.teal.label:hover {
- background-color: #3affff;
- border-color: #3affff;
- color: #1B1C1D;
-}
-
-/* Inverted Ribbon */
-
-.ui.ui.ui.inverted.teal.ribbon.label {
- border-color: #3affff;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.basic.labels .teal.label,
-.ui.ui.ui.inverted.basic.teal.label {
- background-color: #1B1C1D;
- border-color: #6DFFFF;
- color: #6DFFFF;
-}
-
-.ui.inverted.basic.labels a.teal.label:hover,
-a.ui.ui.ui.inverted.basic.teal.label:hover {
- border-color: #3affff;
- background-color: #1B1C1D;
- color: #3affff;
-}
-
-/* Inverted Basic Tags */
-
-.ui.inverted.basic.tag.labels .teal.label,
-.ui.ui.ui.inverted.teal.basic.tag.label {
- border: 1px solid #6DFFFF;
-}
-
-.ui.inverted.basic.tag.labels .teal.label:before,
-.ui.ui.ui.inverted.teal.basic.tag.label:before {
- border-color: inherit;
- border-width: 1px 0 0 1px;
- border-style: inherit;
- background-color: #1B1C1D;
- right: calc(100% + 1px);
-}
-
-.ui.blue.labels .label,
-.ui.ui.ui.blue.label {
- background-color: #2185D0;
- border-color: #2185D0;
- color: #FFFFFF;
-}
-
-/* Link */
-
-.ui.blue.labels a.label:hover,
-a.ui.ui.ui.blue.label:hover {
- background-color: #1678c2;
- border-color: #1678c2;
- color: #FFFFFF;
-}
-
-/* Ribbon */
-
-.ui.ui.ui.blue.ribbon.label {
- border-color: #1a69a4;
-}
-
-/* Basic */
-
-.ui.basic.labels .blue.label,
-.ui.ui.ui.basic.blue.label {
- background: none #FFFFFF;
- border-color: #2185D0;
- color: #2185D0;
-}
-
-.ui.basic.labels a.blue.label:hover,
-a.ui.ui.ui.basic.blue.label:hover {
- background: none #FFFFFF;
- border-color: #1678c2;
- color: #1678c2;
-}
-
-/* Inverted */
-
-.ui.inverted.labels .blue.label,
-.ui.ui.ui.inverted.blue.label {
- background-color: #54C8FF;
- border-color: #54C8FF;
- color: #1B1C1D;
-}
-
-/* Inverted Link */
-
-.ui.inverted.labels a.blue.label:hover,
-a.ui.ui.ui.inverted.blue.label:hover {
- background-color: #21b8ff;
- border-color: #21b8ff;
- color: #1B1C1D;
-}
-
-/* Inverted Ribbon */
-
-.ui.ui.ui.inverted.blue.ribbon.label {
- border-color: #21b8ff;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.basic.labels .blue.label,
-.ui.ui.ui.inverted.basic.blue.label {
- background-color: #1B1C1D;
- border-color: #54C8FF;
- color: #54C8FF;
-}
-
-.ui.inverted.basic.labels a.blue.label:hover,
-a.ui.ui.ui.inverted.basic.blue.label:hover {
- border-color: #21b8ff;
- background-color: #1B1C1D;
- color: #21b8ff;
-}
-
-/* Inverted Basic Tags */
-
-.ui.inverted.basic.tag.labels .blue.label,
-.ui.ui.ui.inverted.blue.basic.tag.label {
- border: 1px solid #54C8FF;
-}
-
-.ui.inverted.basic.tag.labels .blue.label:before,
-.ui.ui.ui.inverted.blue.basic.tag.label:before {
- border-color: inherit;
- border-width: 1px 0 0 1px;
- border-style: inherit;
- background-color: #1B1C1D;
- right: calc(100% + 1px);
-}
-
-.ui.violet.labels .label,
-.ui.ui.ui.violet.label {
- background-color: #6435C9;
- border-color: #6435C9;
- color: #FFFFFF;
-}
-
-/* Link */
-
-.ui.violet.labels a.label:hover,
-a.ui.ui.ui.violet.label:hover {
- background-color: #5829bb;
- border-color: #5829bb;
- color: #FFFFFF;
-}
-
-/* Ribbon */
-
-.ui.ui.ui.violet.ribbon.label {
- border-color: #502aa1;
-}
-
-/* Basic */
-
-.ui.basic.labels .violet.label,
-.ui.ui.ui.basic.violet.label {
- background: none #FFFFFF;
- border-color: #6435C9;
- color: #6435C9;
-}
-
-.ui.basic.labels a.violet.label:hover,
-a.ui.ui.ui.basic.violet.label:hover {
- background: none #FFFFFF;
- border-color: #5829bb;
- color: #5829bb;
-}
-
-/* Inverted */
-
-.ui.inverted.labels .violet.label,
-.ui.ui.ui.inverted.violet.label {
- background-color: #A291FB;
- border-color: #A291FB;
- color: #1B1C1D;
-}
-
-/* Inverted Link */
-
-.ui.inverted.labels a.violet.label:hover,
-a.ui.ui.ui.inverted.violet.label:hover {
- background-color: #745aff;
- border-color: #745aff;
- color: #1B1C1D;
-}
-
-/* Inverted Ribbon */
-
-.ui.ui.ui.inverted.violet.ribbon.label {
- border-color: #7860f9;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.basic.labels .violet.label,
-.ui.ui.ui.inverted.basic.violet.label {
- background-color: #1B1C1D;
- border-color: #A291FB;
- color: #A291FB;
-}
-
-.ui.inverted.basic.labels a.violet.label:hover,
-a.ui.ui.ui.inverted.basic.violet.label:hover {
- border-color: #745aff;
- background-color: #1B1C1D;
- color: #745aff;
-}
-
-/* Inverted Basic Tags */
-
-.ui.inverted.basic.tag.labels .violet.label,
-.ui.ui.ui.inverted.violet.basic.tag.label {
- border: 1px solid #A291FB;
-}
-
-.ui.inverted.basic.tag.labels .violet.label:before,
-.ui.ui.ui.inverted.violet.basic.tag.label:before {
- border-color: inherit;
- border-width: 1px 0 0 1px;
- border-style: inherit;
- background-color: #1B1C1D;
- right: calc(100% + 1px);
-}
-
-.ui.purple.labels .label,
-.ui.ui.ui.purple.label {
- background-color: #A333C8;
- border-color: #A333C8;
- color: #FFFFFF;
-}
-
-/* Link */
-
-.ui.purple.labels a.label:hover,
-a.ui.ui.ui.purple.label:hover {
- background-color: #9627ba;
- border-color: #9627ba;
- color: #FFFFFF;
-}
-
-/* Ribbon */
-
-.ui.ui.ui.purple.ribbon.label {
- border-color: #82299f;
-}
-
-/* Basic */
-
-.ui.basic.labels .purple.label,
-.ui.ui.ui.basic.purple.label {
- background: none #FFFFFF;
- border-color: #A333C8;
- color: #A333C8;
-}
-
-.ui.basic.labels a.purple.label:hover,
-a.ui.ui.ui.basic.purple.label:hover {
- background: none #FFFFFF;
- border-color: #9627ba;
- color: #9627ba;
-}
-
-/* Inverted */
-
-.ui.inverted.labels .purple.label,
-.ui.ui.ui.inverted.purple.label {
- background-color: #DC73FF;
- border-color: #DC73FF;
- color: #1B1C1D;
-}
-
-/* Inverted Link */
-
-.ui.inverted.labels a.purple.label:hover,
-a.ui.ui.ui.inverted.purple.label:hover {
- background-color: #cf40ff;
- border-color: #cf40ff;
- color: #1B1C1D;
-}
-
-/* Inverted Ribbon */
-
-.ui.ui.ui.inverted.purple.ribbon.label {
- border-color: #cf40ff;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.basic.labels .purple.label,
-.ui.ui.ui.inverted.basic.purple.label {
- background-color: #1B1C1D;
- border-color: #DC73FF;
- color: #DC73FF;
-}
-
-.ui.inverted.basic.labels a.purple.label:hover,
-a.ui.ui.ui.inverted.basic.purple.label:hover {
- border-color: #cf40ff;
- background-color: #1B1C1D;
- color: #cf40ff;
-}
-
-/* Inverted Basic Tags */
-
-.ui.inverted.basic.tag.labels .purple.label,
-.ui.ui.ui.inverted.purple.basic.tag.label {
- border: 1px solid #DC73FF;
-}
-
-.ui.inverted.basic.tag.labels .purple.label:before,
-.ui.ui.ui.inverted.purple.basic.tag.label:before {
- border-color: inherit;
- border-width: 1px 0 0 1px;
- border-style: inherit;
- background-color: #1B1C1D;
- right: calc(100% + 1px);
-}
-
-.ui.pink.labels .label,
-.ui.ui.ui.pink.label {
- background-color: #E03997;
- border-color: #E03997;
- color: #FFFFFF;
-}
-
-/* Link */
-
-.ui.pink.labels a.label:hover,
-a.ui.ui.ui.pink.label:hover {
- background-color: #e61a8d;
- border-color: #e61a8d;
- color: #FFFFFF;
-}
-
-/* Ribbon */
-
-.ui.ui.ui.pink.ribbon.label {
- border-color: #c71f7e;
-}
-
-/* Basic */
-
-.ui.basic.labels .pink.label,
-.ui.ui.ui.basic.pink.label {
- background: none #FFFFFF;
- border-color: #E03997;
- color: #E03997;
-}
-
-.ui.basic.labels a.pink.label:hover,
-a.ui.ui.ui.basic.pink.label:hover {
- background: none #FFFFFF;
- border-color: #e61a8d;
- color: #e61a8d;
-}
-
-/* Inverted */
-
-.ui.inverted.labels .pink.label,
-.ui.ui.ui.inverted.pink.label {
- background-color: #FF8EDF;
- border-color: #FF8EDF;
- color: #1B1C1D;
-}
-
-/* Inverted Link */
-
-.ui.inverted.labels a.pink.label:hover,
-a.ui.ui.ui.inverted.pink.label:hover {
- background-color: #ff5bd1;
- border-color: #ff5bd1;
- color: #1B1C1D;
-}
-
-/* Inverted Ribbon */
-
-.ui.ui.ui.inverted.pink.ribbon.label {
- border-color: #ff5bd1;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.basic.labels .pink.label,
-.ui.ui.ui.inverted.basic.pink.label {
- background-color: #1B1C1D;
- border-color: #FF8EDF;
- color: #FF8EDF;
-}
-
-.ui.inverted.basic.labels a.pink.label:hover,
-a.ui.ui.ui.inverted.basic.pink.label:hover {
- border-color: #ff5bd1;
- background-color: #1B1C1D;
- color: #ff5bd1;
-}
-
-/* Inverted Basic Tags */
-
-.ui.inverted.basic.tag.labels .pink.label,
-.ui.ui.ui.inverted.pink.basic.tag.label {
- border: 1px solid #FF8EDF;
-}
-
-.ui.inverted.basic.tag.labels .pink.label:before,
-.ui.ui.ui.inverted.pink.basic.tag.label:before {
- border-color: inherit;
- border-width: 1px 0 0 1px;
- border-style: inherit;
- background-color: #1B1C1D;
- right: calc(100% + 1px);
-}
-
-.ui.brown.labels .label,
-.ui.ui.ui.brown.label {
- background-color: #A5673F;
- border-color: #A5673F;
- color: #FFFFFF;
-}
-
-/* Link */
-
-.ui.brown.labels a.label:hover,
-a.ui.ui.ui.brown.label:hover {
- background-color: #975b33;
- border-color: #975b33;
- color: #FFFFFF;
-}
-
-/* Ribbon */
-
-.ui.ui.ui.brown.ribbon.label {
- border-color: #805031;
-}
-
-/* Basic */
-
-.ui.basic.labels .brown.label,
-.ui.ui.ui.basic.brown.label {
- background: none #FFFFFF;
- border-color: #A5673F;
- color: #A5673F;
-}
-
-.ui.basic.labels a.brown.label:hover,
-a.ui.ui.ui.basic.brown.label:hover {
- background: none #FFFFFF;
- border-color: #975b33;
- color: #975b33;
-}
-
-/* Inverted */
-
-.ui.inverted.labels .brown.label,
-.ui.ui.ui.inverted.brown.label {
- background-color: #D67C1C;
- border-color: #D67C1C;
- color: #1B1C1D;
-}
-
-/* Inverted Link */
-
-.ui.inverted.labels a.brown.label:hover,
-a.ui.ui.ui.inverted.brown.label:hover {
- background-color: #b0620f;
- border-color: #b0620f;
- color: #1B1C1D;
-}
-
-/* Inverted Ribbon */
-
-.ui.ui.ui.inverted.brown.ribbon.label {
- border-color: #a96216;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.basic.labels .brown.label,
-.ui.ui.ui.inverted.basic.brown.label {
- background-color: #1B1C1D;
- border-color: #D67C1C;
- color: #D67C1C;
-}
-
-.ui.inverted.basic.labels a.brown.label:hover,
-a.ui.ui.ui.inverted.basic.brown.label:hover {
- border-color: #b0620f;
- background-color: #1B1C1D;
- color: #b0620f;
-}
-
-/* Inverted Basic Tags */
-
-.ui.inverted.basic.tag.labels .brown.label,
-.ui.ui.ui.inverted.brown.basic.tag.label {
- border: 1px solid #D67C1C;
-}
-
-.ui.inverted.basic.tag.labels .brown.label:before,
-.ui.ui.ui.inverted.brown.basic.tag.label:before {
- border-color: inherit;
- border-width: 1px 0 0 1px;
- border-style: inherit;
- background-color: #1B1C1D;
- right: calc(100% + 1px);
-}
-
-.ui.grey.labels .label,
-.ui.ui.ui.grey.label {
- background-color: #767676;
- border-color: #767676;
- color: #FFFFFF;
-}
-
-/* Link */
-
-.ui.grey.labels a.label:hover,
-a.ui.ui.ui.grey.label:hover {
- background-color: #838383;
- border-color: #838383;
- color: #FFFFFF;
-}
-
-/* Ribbon */
-
-.ui.ui.ui.grey.ribbon.label {
- border-color: #5d5d5d;
-}
-
-/* Basic */
-
-.ui.basic.labels .grey.label,
-.ui.ui.ui.basic.grey.label {
- background: none #FFFFFF;
- border-color: #767676;
- color: #767676;
-}
-
-.ui.basic.labels a.grey.label:hover,
-a.ui.ui.ui.basic.grey.label:hover {
- background: none #FFFFFF;
- border-color: #838383;
- color: #838383;
-}
-
-/* Inverted */
-
-.ui.inverted.labels .grey.label,
-.ui.ui.ui.inverted.grey.label {
- background-color: #DCDDDE;
- border-color: #DCDDDE;
- color: #1B1C1D;
-}
-
-/* Inverted Link */
-
-.ui.inverted.labels a.grey.label:hover,
-a.ui.ui.ui.inverted.grey.label:hover {
- background-color: #c2c4c5;
- border-color: #c2c4c5;
- color: #FFFFFF;
-}
-
-/* Inverted Ribbon */
-
-.ui.ui.ui.inverted.grey.ribbon.label {
- border-color: #e9eaea;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.basic.labels .grey.label,
-.ui.ui.ui.inverted.basic.grey.label {
- background-color: #1B1C1D;
- border-color: #DCDDDE;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.basic.labels a.grey.label:hover,
-a.ui.ui.ui.inverted.basic.grey.label:hover {
- border-color: #c2c4c5;
- background-color: #1B1C1D;
-}
-
-/* Inverted Basic Tags */
-
-.ui.inverted.basic.tag.labels .grey.label,
-.ui.ui.ui.inverted.grey.basic.tag.label {
- border: 1px solid #DCDDDE;
-}
-
-.ui.inverted.basic.tag.labels .grey.label:before,
-.ui.ui.ui.inverted.grey.basic.tag.label:before {
- border-color: inherit;
- border-width: 1px 0 0 1px;
- border-style: inherit;
- background-color: #1B1C1D;
- right: calc(100% + 1px);
-}
-
-.ui.black.labels .label,
-.ui.ui.ui.black.label {
- background-color: #1B1C1D;
- border-color: #1B1C1D;
- color: #FFFFFF;
-}
-
-/* Link */
-
-.ui.black.labels a.label:hover,
-a.ui.ui.ui.black.label:hover {
- background-color: #27292a;
- border-color: #27292a;
- color: #FFFFFF;
-}
-
-/* Ribbon */
-
-.ui.ui.ui.black.ribbon.label {
- border-color: #020203;
-}
-
-/* Basic */
-
-.ui.basic.labels .black.label,
-.ui.ui.ui.basic.black.label {
- background: none #FFFFFF;
- border-color: #1B1C1D;
- color: #1B1C1D;
-}
-
-.ui.basic.labels a.black.label:hover,
-a.ui.ui.ui.basic.black.label:hover {
- background: none #FFFFFF;
- border-color: #27292a;
- color: #27292a;
-}
-
-/* Inverted */
-
-.ui.inverted.labels .black.label,
-.ui.ui.ui.inverted.black.label {
- background-color: #545454;
- border-color: #545454;
- color: #1B1C1D;
-}
-
-/* Inverted Link */
-
-.ui.inverted.labels a.black.label:hover,
-a.ui.ui.ui.inverted.black.label:hover {
- background-color: #000000;
- border-color: #000000;
- color: #FFFFFF;
-}
-
-/* Inverted Ribbon */
-
-.ui.ui.ui.inverted.black.ribbon.label {
- border-color: #616161;
-}
-
-/* Inverted Basic */
-
-.ui.inverted.basic.labels .black.label,
-.ui.ui.ui.inverted.basic.black.label {
- background-color: #1B1C1D;
- border-color: #545454;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.basic.labels a.black.label:hover,
-a.ui.ui.ui.inverted.basic.black.label:hover {
- border-color: #000000;
- background-color: #1B1C1D;
-}
-
-/* Inverted Basic Tags */
-
-.ui.inverted.basic.tag.labels .black.label,
-.ui.ui.ui.inverted.black.basic.tag.label {
- border: 1px solid #545454;
-}
-
-.ui.inverted.basic.tag.labels .black.label:before,
-.ui.ui.ui.inverted.black.basic.tag.label:before {
- border-color: inherit;
- border-width: 1px 0 0 1px;
- border-style: inherit;
- background-color: #1B1C1D;
- right: calc(100% + 1px);
-}
-
-/*-------------------
- Horizontal
---------------------*/
-
-.ui.horizontal.labels .label,
-.ui.horizontal.label {
- margin: 0 0.5em 0 0;
- padding: 0.4em 0.833em;
- min-width: 3em;
- text-align: center;
-}
-
-/*-------------------
- Circular
- --------------------*/
-
-.ui.circular.labels .label,
-.ui.circular.label {
- min-width: 2em;
- min-height: 2em;
- padding: 0.5em !important;
- line-height: 1em;
- text-align: center;
- border-radius: 500rem;
-}
-
-.ui.empty.circular.labels .label,
-.ui.empty.circular.label {
- min-width: 0;
- min-height: 0;
- overflow: hidden;
- width: 0.5em;
- height: 0.5em;
- vertical-align: baseline;
-}
-
-/*-------------------
- Pointing
- --------------------*/
-
-.ui.pointing.label {
- position: relative;
-}
-
-.ui.attached.pointing.label {
- position: absolute;
-}
-
-.ui.pointing.label:before {
- background-color: inherit;
- background-image: inherit;
- border-width: 0;
- border-style: solid;
- border-color: inherit;
-}
-
-/* Arrow */
-
-.ui.pointing.label:before {
- position: absolute;
- content: '';
- -webkit-transform: rotate(45deg);
- transform: rotate(45deg);
- background-image: none;
- z-index: 2;
- width: 0.6666em;
- height: 0.6666em;
- -webkit-transition: none;
- transition: none;
-}
-
-/*--- Above ---*/
-
-.ui.pointing.label,
-.ui[class*="pointing above"].label {
- margin-top: 1em;
-}
-
-.ui.pointing.label:before,
-.ui[class*="pointing above"].label:before {
- border-width: 1px 0 0 1px;
- -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
- transform: translateX(-50%) translateY(-50%) rotate(45deg);
- top: 0;
- left: 50%;
-}
-
-/*--- Below ---*/
-
-.ui[class*="bottom pointing"].label,
-.ui[class*="pointing below"].label {
- margin-top: 0;
- margin-bottom: 1em;
-}
-
-.ui[class*="bottom pointing"].label:before,
-.ui[class*="pointing below"].label:before {
- border-width: 0 1px 1px 0;
- top: auto;
- right: auto;
- -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
- transform: translateX(-50%) translateY(-50%) rotate(45deg);
- top: 100%;
- left: 50%;
-}
-
-/*--- Left ---*/
-
-.ui[class*="left pointing"].label {
- margin-top: 0;
- margin-left: 0.6666em;
-}
-
-.ui[class*="left pointing"].label:before {
- border-width: 0 0 1px 1px;
- -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
- transform: translateX(-50%) translateY(-50%) rotate(45deg);
- bottom: auto;
- right: auto;
- top: 50%;
- left: 0;
-}
-
-/*--- Right ---*/
-
-.ui[class*="right pointing"].label {
- margin-top: 0;
- margin-right: 0.6666em;
-}
-
-.ui[class*="right pointing"].label:before {
- border-width: 1px 1px 0 0;
- -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
- transform: translateX(50%) translateY(-50%) rotate(45deg);
- top: 50%;
- right: 0;
- bottom: auto;
- left: auto;
-}
-
-/* Basic Pointing */
-
-/*--- Above ---*/
-
-.ui.basic.pointing.label:before,
-.ui.basic[class*="pointing above"].label:before {
- margin-top: -1px;
-}
-
-/*--- Below ---*/
-
-.ui.basic[class*="bottom pointing"].label:before,
-.ui.basic[class*="pointing below"].label:before {
- bottom: auto;
- top: 100%;
- margin-top: 1px;
-}
-
-/*--- Left ---*/
-
-.ui.basic[class*="left pointing"].label:before {
- top: 50%;
- left: -1px;
-}
-
-/*--- Right ---*/
-
-.ui.basic[class*="right pointing"].label:before {
- top: 50%;
- right: -1px;
-}
-
-/*------------------
- Floating Label
- -------------------*/
-
-.ui.floating.label {
- position: absolute;
- z-index: 100;
- top: -1em;
- right: 0;
- white-space: nowrap;
- -webkit-transform: translateX(50%);
- transform: translateX(50%);
-}
-
-.ui.right.aligned.floating.label {
- -webkit-transform: translateX(1.2em);
- transform: translateX(1.2em);
-}
-
-.ui.left.floating.label {
- left: 0;
- right: auto;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
-}
-
-.ui.left.aligned.floating.label {
- -webkit-transform: translateX(-1.2em);
- transform: translateX(-1.2em);
-}
-
-.ui.bottom.floating.label {
- top: auto;
- bottom: -1em;
-}
-
-/*-------------------
- Sizes
---------------------*/
-
-.ui.labels .label,
-.ui.label {
- font-size: 0.85714286rem;
-}
-
-.ui.mini.labels .label,
-.ui.mini.label {
- font-size: 0.64285714rem;
-}
-
-.ui.tiny.labels .label,
-.ui.tiny.label {
- font-size: 0.71428571rem;
-}
-
-.ui.small.labels .label,
-.ui.small.label {
- font-size: 0.78571429rem;
-}
-
-.ui.large.labels .label,
-.ui.large.label {
- font-size: 1rem;
-}
-
-.ui.big.labels .label,
-.ui.big.label {
- font-size: 1.28571429rem;
-}
-
-.ui.huge.labels .label,
-.ui.huge.label {
- font-size: 1.42857143rem;
-}
-
-.ui.massive.labels .label,
-.ui.massive.label {
- font-size: 1.71428571rem;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - List
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- List
-*******************************/
-
-ul.ui.list,
-ol.ui.list,
-.ui.list {
- list-style-type: none;
- margin: 1em 0;
- padding: 0 0;
-}
-
-ul.ui.list:first-child,
-ol.ui.list:first-child,
-.ui.list:first-child {
- margin-top: 0;
- padding-top: 0;
-}
-
-ul.ui.list:last-child,
-ol.ui.list:last-child,
-.ui.list:last-child {
- margin-bottom: 0;
- padding-bottom: 0;
-}
-
-/*******************************
- Content
-*******************************/
-
-/* List Item */
-
-ul.ui.list li,
-ol.ui.list li,
-.ui.list > .item,
-.ui.list .list > .item {
- display: list-item;
- table-layout: fixed;
- list-style-type: none;
- list-style-position: outside;
- padding: 0.21428571em 0;
- line-height: 1.14285714em;
-}
-
-ul.ui.list > li:first-child:after,
-ol.ui.list > li:first-child:after,
-.ui.list > .list > .item:after,
-.ui.list > .item:after {
- content: '';
- display: block;
- height: 0;
- clear: both;
- visibility: hidden;
-}
-
-ul.ui.list li:first-child,
-ol.ui.list li:first-child,
-.ui.list .list > .item:first-child,
-.ui.list > .item:first-child {
- padding-top: 0;
-}
-
-ul.ui.list li:last-child,
-ol.ui.list li:last-child,
-.ui.list .list > .item:last-child,
-.ui.list > .item:last-child {
- padding-bottom: 0;
-}
-
-/* Child List */
-
-ul.ui.list ul,
-ol.ui.list ol,
-.ui.list .list:not(.icon) {
- clear: both;
- margin: 0;
- padding: 0.75em 0 0.25em 0.5em;
-}
-
-/* Child Item */
-
-ul.ui.list ul li,
-ol.ui.list ol li,
-.ui.list .list > .item {
- padding: 0.14285714em 0;
- line-height: inherit;
-}
-
-/* Icon */
-
-.ui.list .list > .item > i.icon,
-.ui.list > .item > i.icon {
- display: table-cell;
- min-width: 1.55em;
- margin: 0;
- padding-top: 0;
- -webkit-transition: color 0.1s ease;
- transition: color 0.1s ease;
-}
-
-.ui.list .list > .item > i.icon:not(.loading),
-.ui.list > .item > i.icon:not(.loading) {
- padding-right: 0.28571429em;
- vertical-align: top;
-}
-
-.ui.list .list > .item > i.icon:only-child,
-.ui.list > .item > i.icon:only-child {
- display: inline-block;
- min-width: auto;
- vertical-align: top;
-}
-
-/* Image */
-
-.ui.list .list > .item > .image,
-.ui.list > .item > .image {
- display: table-cell;
- background-color: transparent;
- margin: 0;
- vertical-align: top;
-}
-
-.ui.list .list > .item > .image:not(:only-child):not(img),
-.ui.list > .item > .image:not(:only-child):not(img) {
- padding-right: 0.5em;
-}
-
-.ui.list .list > .item > .image img,
-.ui.list > .item > .image img {
- vertical-align: top;
-}
-
-.ui.list .list > .item > img.image,
-.ui.list .list > .item > .image:only-child,
-.ui.list > .item > img.image,
-.ui.list > .item > .image:only-child {
- display: inline-block;
-}
-
-/* Content */
-
-.ui.list .list > .item > .content,
-.ui.list > .item > .content {
- line-height: 1.14285714em;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.list .list > .item > .image + .content,
-.ui.list .list > .item > .icon + .content,
-.ui.list > .item > .image + .content,
-.ui.list > .item > .icon + .content {
- display: table-cell;
- width: 100%;
- padding: 0 0 0 0.5em;
- vertical-align: top;
-}
-
-.ui.list .list > .item > .loading.icon + .content,
-.ui.list > .item > .loading.icon + .content {
- padding-left: calc(0.2857142857142857em + 0.5em);
-}
-
-.ui.list .list > .item > img.image + .content,
-.ui.list > .item > img.image + .content {
- display: inline-block;
- width: auto;
-}
-
-.ui.list .list > .item > .content > .list,
-.ui.list > .item > .content > .list {
- margin-left: 0;
- padding-left: 0;
-}
-
-/* Header */
-
-.ui.list .list > .item .header,
-.ui.list > .item .header {
- display: block;
- margin: 0;
- font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
- font-weight: bold;
- color: rgba(0, 0, 0, 0.87);
-}
-
-/* Description */
-
-.ui.list .list > .item .description,
-.ui.list > .item .description {
- display: block;
- color: rgba(0, 0, 0, 0.7);
-}
-
-/* Child Link */
-
-.ui.list > .item a,
-.ui.list .list > .item a {
- cursor: pointer;
-}
-
-/* Linking Item */
-
-.ui.list .list > a.item,
-.ui.list > a.item {
- cursor: pointer;
- color: #4183C4;
-}
-
-.ui.list .list > a.item:hover,
-.ui.list > a.item:hover {
- color: #1e70bf;
-}
-
-/* Linked Item Icons */
-
-.ui.list .list > a.item > i.icons,
-.ui.list > a.item > i.icons,
-.ui.list .list > a.item > i.icon,
-.ui.list > a.item > i.icon {
- color: rgba(0, 0, 0, 0.4);
-}
-
-/* Header Link */
-
-.ui.list .list > .item a.header,
-.ui.list > .item a.header {
- cursor: pointer;
- color: #4183C4 !important;
-}
-
-.ui.list .list > .item > a.header:hover,
-.ui.list > .item > a.header:hover {
- color: #1e70bf !important;
-}
-
-/* Floated Content */
-
-.ui[class*="left floated"].list {
- float: left;
-}
-
-.ui[class*="right floated"].list {
- float: right;
-}
-
-.ui.list .list > .item [class*="left floated"],
-.ui.list > .item [class*="left floated"] {
- float: left;
- margin: 0 1em 0 0;
-}
-
-.ui.list .list > .item [class*="right floated"],
-.ui.list > .item [class*="right floated"] {
- float: right;
- margin: 0 0 0 1em;
-}
-
-/*******************************
- Coupling
-*******************************/
-
-.ui.menu .ui.list > .item,
-.ui.menu .ui.list .list > .item {
- display: list-item;
- table-layout: fixed;
- background-color: transparent;
- list-style-type: none;
- list-style-position: outside;
- padding: 0.21428571em 0;
- line-height: 1.14285714em;
-}
-
-.ui.menu .ui.list .list > .item:before,
-.ui.menu .ui.list > .item:before {
- border: none;
- background: none;
-}
-
-.ui.menu .ui.list .list > .item:first-child,
-.ui.menu .ui.list > .item:first-child {
- padding-top: 0;
-}
-
-.ui.menu .ui.list .list > .item:last-child,
-.ui.menu .ui.list > .item:last-child {
- padding-bottom: 0;
-}
-
-/*******************************
- Types
-*******************************/
-
-/*-------------------
- Horizontal
- --------------------*/
-
-.ui.horizontal.list {
- display: inline-block;
- font-size: 0;
-}
-
-.ui.horizontal.list > .item {
- display: inline-block;
- margin-right: 1em;
- font-size: 1rem;
-}
-
-.ui.horizontal.list:not(.celled) > .item:last-child {
- margin-right: 0;
- padding-right: 0;
-}
-
-.ui.horizontal.list .list:not(.icon) {
- padding-left: 0;
- padding-bottom: 0;
-}
-
-.ui.horizontal.list > .item > .image,
-.ui.horizontal.list .list > .item > .image,
-.ui.horizontal.list > .item > .icon,
-.ui.horizontal.list .list > .item > .icon,
-.ui.horizontal.list > .item > .content,
-.ui.horizontal.list .list > .item > .content {
- vertical-align: middle;
-}
-
-/* Padding on all elements */
-
-.ui.horizontal.list > .item:first-child,
-.ui.horizontal.list > .item:last-child {
- padding-top: 0.21428571em;
- padding-bottom: 0.21428571em;
-}
-
-/* Horizontal List */
-
-.ui.horizontal.list > .item > i.icon,
-.ui.horizontal.list .item > i.icons > i.icon {
- margin: 0;
- padding: 0 0.25em 0 0;
-}
-
-.ui.horizontal.list > .item > .image + .content,
-.ui.horizontal.list > .item > .icon,
-.ui.horizontal.list > .item > .icon + .content {
- float: none;
- display: inline-block;
- width: auto;
-}
-
-.ui.horizontal.list > .item > .image {
- display: inline-block;
-}
-
-/*******************************
- States
-*******************************/
-
-/*-------------------
- Disabled
- --------------------*/
-
-.ui.list .list > .disabled.item,
-.ui.list > .disabled.item {
- pointer-events: none;
- color: rgba(40, 40, 40, 0.3) !important;
-}
-
-.ui.inverted.list .list > .disabled.item,
-.ui.inverted.list > .disabled.item {
- color: rgba(225, 225, 225, 0.3) !important;
-}
-
-/*-------------------
- Hover
---------------------*/
-
-.ui.list .list > a.item:hover > .icons,
-.ui.list > a.item:hover > .icons,
-.ui.list .list > a.item:hover > .icon,
-.ui.list > a.item:hover > .icon {
- color: rgba(0, 0, 0, 0.87);
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*-------------------
- Inverted
- --------------------*/
-
-.ui.inverted.list .list > a.item > .icon,
-.ui.inverted.list > a.item > .icon {
- color: rgba(255, 255, 255, 0.7);
-}
-
-.ui.inverted.list .list > .item .header,
-.ui.inverted.list > .item .header {
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.list .list > .item .description,
-.ui.inverted.list > .item .description {
- color: rgba(255, 255, 255, 0.7);
-}
-
-.ui.inverted.list .list > .item > .content,
-.ui.inverted.list > .item > .content {
- color: rgba(255, 255, 255, 0.7);
-}
-
-/* Item Link */
-
-.ui.inverted.list .list > a.item,
-.ui.inverted.list > a.item {
- cursor: pointer;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.list .list > a.item:hover,
-.ui.inverted.list > a.item:hover {
- color: #1e70bf;
-}
-
-/* Linking Content */
-
-.ui.inverted.list .item a:not(.ui) {
- color: rgba(255, 255, 255, 0.9) !important;
-}
-
-.ui.inverted.list .item a:not(.ui):hover {
- color: #1e70bf !important;
-}
-
-/*-------------------
- Aligned
- --------------------*/
-
-.ui.list[class*="top aligned"] .image,
-.ui.list[class*="top aligned"] .content,
-.ui.list [class*="top aligned"] {
- vertical-align: top !important;
-}
-
-.ui.list[class*="middle aligned"] .image,
-.ui.list[class*="middle aligned"] .content,
-.ui.list [class*="middle aligned"] {
- vertical-align: middle !important;
-}
-
-.ui.list[class*="bottom aligned"] .image,
-.ui.list[class*="bottom aligned"] .content,
-.ui.list [class*="bottom aligned"] {
- vertical-align: bottom !important;
-}
-
-/*-------------------
- Link
- --------------------*/
-
-.ui.link.list .item,
-.ui.link.list a.item,
-.ui.link.list .item a:not(.ui) {
- color: rgba(0, 0, 0, 0.4);
- -webkit-transition: 0.1s color ease;
- transition: 0.1s color ease;
-}
-
-.ui.link.list.list a.item:hover,
-.ui.link.list.list .item a:not(.ui):hover {
- color: rgba(0, 0, 0, 0.8);
-}
-
-.ui.link.list.list a.item:active,
-.ui.link.list.list .item a:not(.ui):active {
- color: rgba(0, 0, 0, 0.9);
-}
-
-.ui.link.list.list .active.item,
-.ui.link.list.list .active.item a:not(.ui) {
- color: rgba(0, 0, 0, 0.95);
-}
-
-/* Inverted */
-
-.ui.inverted.link.list .item,
-.ui.inverted.link.list a.item,
-.ui.inverted.link.list .item a:not(.ui) {
- color: rgba(255, 255, 255, 0.5);
-}
-
-.ui.inverted.link.list.list a.item:hover,
-.ui.inverted.link.list.list .item a:not(.ui):hover {
- color: #ffffff;
-}
-
-.ui.inverted.link.list.list a.item:active,
-.ui.inverted.link.list.list .item a:not(.ui):active {
- color: #ffffff;
-}
-
-.ui.inverted.link.list.list a.active.item,
-.ui.inverted.link.list.list .active.item a:not(.ui) {
- color: #ffffff;
-}
-
-/*-------------------
- Selection
- --------------------*/
-
-.ui.selection.list .list > .item,
-.ui.selection.list > .item {
- cursor: pointer;
- background: transparent;
- padding: 0.5em 0.5em;
- margin: 0;
- color: rgba(0, 0, 0, 0.4);
- border-radius: 0.5em;
- -webkit-transition: 0.1s color ease, 0.1s padding-left ease, 0.1s background-color ease;
- transition: 0.1s color ease, 0.1s padding-left ease, 0.1s background-color ease;
-}
-
-.ui.selection.list .list > .item:last-child,
-.ui.selection.list > .item:last-child {
- margin-bottom: 0;
-}
-
-.ui.selection.list .list > .item:hover,
-.ui.selection.list > .item:hover {
- background: rgba(0, 0, 0, 0.03);
- color: rgba(0, 0, 0, 0.8);
-}
-
-.ui.selection.list .list > .item:active,
-.ui.selection.list > .item:active {
- background: rgba(0, 0, 0, 0.05);
- color: rgba(0, 0, 0, 0.9);
-}
-
-.ui.selection.list .list > .item.active,
-.ui.selection.list > .item.active {
- background: rgba(0, 0, 0, 0.05);
- color: rgba(0, 0, 0, 0.95);
-}
-
-/* Inverted */
-
-.ui.inverted.selection.list > .item {
- background: transparent;
- color: rgba(255, 255, 255, 0.5);
-}
-
-.ui.inverted.selection.list > .item:hover {
- background: rgba(255, 255, 255, 0.02);
- color: #ffffff;
-}
-
-.ui.inverted.selection.list > .item:active {
- background: rgba(255, 255, 255, 0.08);
- color: #ffffff;
-}
-
-.ui.inverted.selection.list > .item.active {
- background: rgba(255, 255, 255, 0.08);
- color: #ffffff;
-}
-
-/* Celled / Divided Selection List */
-
-.ui.celled.selection.list .list > .item,
-.ui.divided.selection.list .list > .item,
-.ui.celled.selection.list > .item,
-.ui.divided.selection.list > .item {
- border-radius: 0;
-}
-
-/*-------------------
- Animated
- --------------------*/
-
-.ui.animated.list > .item {
- -webkit-transition: 0.25s color ease 0.1s, 0.25s padding-left ease 0.1s, 0.25s background-color ease 0.1s;
- transition: 0.25s color ease 0.1s, 0.25s padding-left ease 0.1s, 0.25s background-color ease 0.1s;
-}
-
-.ui.animated.list:not(.horizontal) > .item:hover {
- padding-left: 1em;
-}
-
-/*-------------------
- Fitted
- --------------------*/
-
-.ui.fitted.list:not(.selection) .list > .item,
-.ui.fitted.list:not(.selection) > .item {
- padding-left: 0;
- padding-right: 0;
-}
-
-.ui.fitted.selection.list .list > .item,
-.ui.fitted.selection.list > .item {
- margin-left: -0.5em;
- margin-right: -0.5em;
-}
-
-/*-------------------
- Bulleted
- --------------------*/
-
-ul.ui.list,
-.ui.bulleted.list {
- margin-left: 1.25rem;
-}
-
-ul.ui.list li,
-.ui.bulleted.list .list > .item,
-.ui.bulleted.list > .item {
- position: relative;
-}
-
-ul.ui.list li:before,
-.ui.bulleted.list .list > .item:before,
-.ui.bulleted.list > .item:before {
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- pointer-events: none;
- position: absolute;
- top: auto;
- left: auto;
- font-weight: normal;
- margin-left: -1.25rem;
- content: '\2022';
- opacity: 1;
- color: inherit;
- vertical-align: top;
-}
-
-ul.ui.list li:before,
-.ui.bulleted.list .list > a.item:before,
-.ui.bulleted.list > a.item:before {
- color: rgba(0, 0, 0, 0.87);
-}
-
-ul.ui.list ul,
-.ui.bulleted.list .list:not(.icon) {
- padding-left: 1.25rem;
-}
-
-/* Horizontal Bulleted */
-
-ul.ui.horizontal.bulleted.list,
-.ui.horizontal.bulleted.list {
- margin-left: 0;
-}
-
-ul.ui.horizontal.bulleted.list li,
-.ui.horizontal.bulleted.list > .item {
- margin-left: 1.75rem;
-}
-
-ul.ui.horizontal.bulleted.list li:first-child,
-.ui.horizontal.bulleted.list > .item:first-child {
- margin-left: 0;
-}
-
-ul.ui.horizontal.bulleted.list li::before,
-.ui.horizontal.bulleted.list > .item::before {
- color: rgba(0, 0, 0, 0.87);
-}
-
-ul.ui.horizontal.bulleted.list li:first-child::before,
-.ui.horizontal.bulleted.list > .item:first-child::before {
- display: none;
-}
-
-/*-------------------
- Ordered
- --------------------*/
-
-ol.ui.list,
-.ui.ordered.list,
-.ui.ordered.list .list:not(.icon),
-ol.ui.list ol {
- counter-reset: ordered;
- margin-left: 1.25rem;
- list-style-type: none;
-}
-
-ol.ui.list li,
-.ui.ordered.list .list > .item,
-.ui.ordered.list > .item {
- list-style-type: none;
- position: relative;
-}
-
-ol.ui.list li:before,
-.ui.ordered.list .list > .item:before,
-.ui.ordered.list > .item:before {
- position: absolute;
- top: auto;
- left: auto;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- pointer-events: none;
- margin-left: -1.25rem;
- counter-increment: ordered;
- content: counters(ordered, ".") " ";
- text-align: right;
- color: rgba(0, 0, 0, 0.87);
- vertical-align: middle;
- opacity: 0.8;
-}
-
-ol.ui.inverted.list li:before,
-.ui.ordered.inverted.list .list > .item:before,
-.ui.ordered.inverted.list > .item:before {
- color: rgba(255, 255, 255, 0.7);
-}
-
-/* Value */
-
-.ui.ordered.list .list > .item[data-value]:before,
-.ui.ordered.list > .item[data-value]:before {
- content: attr(data-value);
-}
-
-ol.ui.list li[value]:before {
- content: attr(value);
-}
-
-/* Child Lists */
-
-ol.ui.list ol,
-.ui.ordered.list .list:not(.icon) {
- margin-left: 1em;
-}
-
-ol.ui.list ol li:before,
-.ui.ordered.list .list > .item:before {
- margin-left: -2em;
-}
-
-/* Horizontal Ordered */
-
-ol.ui.horizontal.list,
-.ui.ordered.horizontal.list {
- margin-left: 0;
-}
-
-ol.ui.horizontal.list li:before,
-.ui.ordered.horizontal.list .list > .item:before,
-.ui.ordered.horizontal.list > .item:before {
- position: static;
- margin: 0 0.5em 0 0;
-}
-
-/* Suffixed Ordered */
-
-ol.ui.suffixed.list li:before,
-.ui.suffixed.ordered.list .list > .item:before,
-.ui.suffixed.ordered.list > .item:before {
- content: counters(ordered, ".") ".";
-}
-
-/*-------------------
- Divided
- --------------------*/
-
-.ui.divided.list > .item {
- border-top: 1px solid rgba(34, 36, 38, 0.15);
-}
-
-.ui.divided.list .list > .item {
- border-top: none;
-}
-
-.ui.divided.list .item .list > .item {
- border-top: none;
-}
-
-.ui.divided.list .list > .item:first-child,
-.ui.divided.list > .item:first-child {
- border-top: none;
-}
-
-/* Sub Menu */
-
-.ui.divided.list:not(.horizontal) .list > .item:first-child {
- border-top-width: 1px;
-}
-
-/* Divided bulleted */
-
-.ui.divided.bulleted.list:not(.horizontal),
-.ui.divided.bulleted.list .list:not(.icon) {
- margin-left: 0;
- padding-left: 0;
-}
-
-.ui.divided.bulleted.list > .item:not(.horizontal) {
- padding-left: 1.25rem;
-}
-
-/* Divided Ordered */
-
-.ui.divided.ordered.list {
- margin-left: 0;
-}
-
-.ui.divided.ordered.list .list > .item,
-.ui.divided.ordered.list > .item {
- padding-left: 1.25rem;
-}
-
-.ui.divided.ordered.list .item .list:not(.icon) {
- margin-left: 0;
- margin-right: 0;
- padding-bottom: 0.21428571em;
-}
-
-.ui.divided.ordered.list .item .list > .item {
- padding-left: 1em;
-}
-
-/* Divided Selection */
-
-.ui.divided.selection.list .list > .item,
-.ui.divided.selection.list > .item {
- margin: 0;
- border-radius: 0;
-}
-
-/* Divided horizontal */
-
-.ui.divided.horizontal.list {
- margin-left: 0;
-}
-
-.ui.divided.horizontal.list > .item {
- padding-left: 0.5em;
-}
-
-.ui.divided.horizontal.list > .item:not(:last-child) {
- padding-right: 0.5em;
-}
-
-.ui.divided.horizontal.list > .item {
- border-top: none;
- border-right: 1px solid rgba(34, 36, 38, 0.15);
- margin: 0;
- line-height: 0.6;
-}
-
-.ui.horizontal.divided.list > .item:last-child {
- border-right: none;
-}
-
-/* Inverted */
-
-.ui.divided.inverted.list > .item,
-.ui.divided.inverted.list > .list,
-.ui.divided.inverted.horizontal.list > .item {
- border-color: rgba(255, 255, 255, 0.1);
-}
-
-/*-------------------
- Celled
- --------------------*/
-
-.ui.celled.list > .item,
-.ui.celled.list > .list {
- border-top: 1px solid rgba(34, 36, 38, 0.15);
- padding-left: 0.5em;
- padding-right: 0.5em;
-}
-
-.ui.celled.list > .item:last-child {
- border-bottom: 1px solid rgba(34, 36, 38, 0.15);
-}
-
-/* Padding on all elements */
-
-.ui.celled.list > .item:first-child,
-.ui.celled.list > .item:last-child {
- padding-top: 0.21428571em;
- padding-bottom: 0.21428571em;
-}
-
-/* Sub Menu */
-
-.ui.celled.list .item .list > .item {
- border-width: 0;
-}
-
-.ui.celled.list .list > .item:first-child {
- border-top-width: 0;
-}
-
-/* Celled Bulleted */
-
-.ui.celled.bulleted.list {
- margin-left: 0;
-}
-
-.ui.celled.bulleted.list .list > .item,
-.ui.celled.bulleted.list > .item {
- padding-left: 1.25rem;
-}
-
-.ui.celled.bulleted.list .item .list:not(.icon) {
- margin-left: -1.25rem;
- margin-right: -1.25rem;
- padding-bottom: 0.21428571em;
-}
-
-/* Celled Ordered */
-
-.ui.celled.ordered.list {
- margin-left: 0;
-}
-
-.ui.celled.ordered.list .list > .item,
-.ui.celled.ordered.list > .item {
- padding-left: 1.25rem;
-}
-
-.ui.celled.ordered.list .item .list:not(.icon) {
- margin-left: 0;
- margin-right: 0;
- padding-bottom: 0.21428571em;
-}
-
-.ui.celled.ordered.list .list > .item {
- padding-left: 1em;
-}
-
-/* Celled Horizontal */
-
-.ui.horizontal.celled.list {
- margin-left: 0;
-}
-
-.ui.horizontal.celled.list .list > .item,
-.ui.horizontal.celled.list > .item {
- border-top: none;
- border-left: 1px solid rgba(34, 36, 38, 0.15);
- margin: 0;
- padding-left: 0.5em;
- padding-right: 0.5em;
- line-height: 0.6;
-}
-
-.ui.horizontal.celled.list .list > .item:last-child,
-.ui.horizontal.celled.list > .item:last-child {
- border-bottom: none;
- border-right: 1px solid rgba(34, 36, 38, 0.15);
-}
-
-/* Inverted */
-
-.ui.celled.inverted.list > .item,
-.ui.celled.inverted.list > .list {
- border-color: rgba(255, 255, 255, 0.1);
-}
-
-.ui.celled.inverted.horizontal.list .list > .item,
-.ui.celled.inverted.horizontal.list > .item {
- border-color: rgba(255, 255, 255, 0.1);
-}
-
-/*-------------------
- Relaxed
- --------------------*/
-
-.ui.relaxed.list:not(.horizontal) > .item:not(:first-child) {
- padding-top: 0.42857143em;
-}
-
-.ui.relaxed.list:not(.horizontal) > .item:not(:last-child) {
- padding-bottom: 0.42857143em;
-}
-
-.ui.horizontal.relaxed.list .list > .item:not(:first-child),
-.ui.horizontal.relaxed.list > .item:not(:first-child) {
- padding-left: 1rem;
-}
-
-.ui.horizontal.relaxed.list .list > .item:not(:last-child),
-.ui.horizontal.relaxed.list > .item:not(:last-child) {
- padding-right: 1rem;
-}
-
-/* Very Relaxed */
-
-.ui[class*="very relaxed"].list:not(.horizontal) > .item:not(:first-child) {
- padding-top: 0.85714286em;
-}
-
-.ui[class*="very relaxed"].list:not(.horizontal) > .item:not(:last-child) {
- padding-bottom: 0.85714286em;
-}
-
-.ui.horizontal[class*="very relaxed"].list .list > .item:not(:first-child),
-.ui.horizontal[class*="very relaxed"].list > .item:not(:first-child) {
- padding-left: 1.5rem;
-}
-
-.ui.horizontal[class*="very relaxed"].list .list > .item:not(:last-child),
-.ui.horizontal[class*="very relaxed"].list > .item:not(:last-child) {
- padding-right: 1.5rem;
-}
-
-/*-------------------
- Sizes
---------------------*/
-
-.ui.list {
- font-size: 1em;
-}
-
-.ui.mini.list {
- font-size: 0.78571429em;
-}
-
-.ui.mini.horizontal.list .list > .item,
-.ui.mini.horizontal.list > .item {
- font-size: 0.78571429rem;
-}
-
-.ui.tiny.list {
- font-size: 0.85714286em;
-}
-
-.ui.tiny.horizontal.list .list > .item,
-.ui.tiny.horizontal.list > .item {
- font-size: 0.85714286rem;
-}
-
-.ui.small.list {
- font-size: 0.92857143em;
-}
-
-.ui.small.horizontal.list .list > .item,
-.ui.small.horizontal.list > .item {
- font-size: 0.92857143rem;
-}
-
-.ui.large.list {
- font-size: 1.14285714em;
-}
-
-.ui.large.horizontal.list .list > .item,
-.ui.large.horizontal.list > .item {
- font-size: 1.14285714rem;
-}
-
-.ui.big.list {
- font-size: 1.28571429em;
-}
-
-.ui.big.horizontal.list .list > .item,
-.ui.big.horizontal.list > .item {
- font-size: 1.28571429rem;
-}
-
-.ui.huge.list {
- font-size: 1.42857143em;
-}
-
-.ui.huge.horizontal.list .list > .item,
-.ui.huge.horizontal.list > .item {
- font-size: 1.42857143rem;
-}
-
-.ui.massive.list {
- font-size: 1.71428571em;
-}
-
-.ui.massive.horizontal.list .list > .item,
-.ui.massive.horizontal.list > .item {
- font-size: 1.71428571rem;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- User Variable Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Loader
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Loader
-*******************************/
-
-/* Standard Size */
-
-.ui.loader {
- display: none;
- position: absolute;
- top: 50%;
- left: 50%;
- margin: 0;
- text-align: center;
- z-index: 1000;
- -webkit-transform: translateX(-50%) translateY(-50%);
- transform: translateX(-50%) translateY(-50%);
-}
-
-/* Static Shape */
-
-.ui.loader:before {
- position: absolute;
- content: '';
- top: 0;
- left: 50%;
- width: 100%;
- height: 100%;
- border-radius: 500rem;
- border: 0.2em solid rgba(0, 0, 0, 0.1);
-}
-
-/* Active Shape */
-
-.ui.loader:after {
- position: absolute;
- content: '';
- top: 0;
- left: 50%;
- width: 100%;
- height: 100%;
- -webkit-animation: loader 0.6s infinite linear;
- animation: loader 0.6s infinite linear;
- border: 0.2em solid #767676;
- border-radius: 500rem;
- -webkit-box-shadow: 0 0 0 1px transparent;
- box-shadow: 0 0 0 1px transparent;
-}
-
-/* Speeds */
-
-.ui.fast.loading.loading:after,
-.ui.fast.loading.loading .input > i.icon:after,
-.ui.fast.loading.loading > i.icon:after,
-.ui.fast.loader:after {
- -webkit-animation-duration: 0.3s;
- animation-duration: 0.3s;
-}
-
-.ui.slow.loading.loading:after,
-.ui.slow.loading.loading .input > i.icon:after,
-.ui.slow.loading.loading > i.icon:after,
-.ui.slow.loader:after {
- -webkit-animation-duration: 0.9s;
- animation-duration: 0.9s;
-}
-
-/* Active Animation */
-
-@-webkit-keyframes loader {
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
-}
-
-@keyframes loader {
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
-}
-
-/*-------------------
- Coupling
---------------------*/
-
-/* Show inside active dimmer */
-
-.ui.dimmer > .loader {
- display: block;
-}
-
-/* Black Dimmer */
-
-.ui.dimmer > .ui.loader {
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.dimmer > .ui.loader:not(.elastic):before {
- border-color: rgba(255, 255, 255, 0.15);
-}
-
-/* White Dimmer (Inverted) */
-
-.ui.inverted.dimmer > .ui.loader {
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.inverted.dimmer > .ui.loader:not(.elastic):before {
- border-color: rgba(0, 0, 0, 0.1);
-}
-
-/*******************************
- Types
-*******************************/
-
-/*-------------------
- Text
- --------------------*/
-
-.ui.ui.ui.ui.text.loader {
- width: auto;
- height: auto;
- text-align: center;
- font-style: normal;
-}
-
-/*******************************
- States
-*******************************/
-
-.ui.indeterminate.loader:after {
- animation-direction: reverse;
- -webkit-animation-duration: 1.2s;
- animation-duration: 1.2s;
-}
-
-.ui.loader.active,
-.ui.loader.visible {
- display: block;
-}
-
-.ui.loader.disabled,
-.ui.loader.hidden {
- display: none;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*-------------------
- Sizes
---------------------*/
-
-.ui.loader {
- width: 2.28571429rem;
- height: 2.28571429rem;
- font-size: 1em;
-}
-
-.ui.loader:before,
-.ui.loader:after {
- width: 2.28571429rem;
- height: 2.28571429rem;
- margin: 0 0 0 -1.14285714rem;
-}
-
-.ui.text.loader {
- min-width: 2.28571429rem;
- padding-top: 3.07142857rem;
-}
-
-.ui.mini.loader {
- width: 1rem;
- height: 1rem;
- font-size: 0.78571429em;
-}
-
-.ui.mini.loader:before,
-.ui.mini.loader:after {
- width: 1rem;
- height: 1rem;
- margin: 0 0 0 -0.5rem;
-}
-
-.ui.mini.text.loader {
- min-width: 1rem;
- padding-top: 1.78571429rem;
-}
-
-.ui.tiny.loader {
- width: 1.14285714rem;
- height: 1.14285714rem;
- font-size: 0.85714286em;
-}
-
-.ui.tiny.loader:before,
-.ui.tiny.loader:after {
- width: 1.14285714rem;
- height: 1.14285714rem;
- margin: 0 0 0 -0.57142857rem;
-}
-
-.ui.tiny.text.loader {
- min-width: 1.14285714rem;
- padding-top: 1.92857143rem;
-}
-
-.ui.small.loader {
- width: 1.71428571rem;
- height: 1.71428571rem;
- font-size: 0.92857143em;
-}
-
-.ui.small.loader:before,
-.ui.small.loader:after {
- width: 1.71428571rem;
- height: 1.71428571rem;
- margin: 0 0 0 -0.85714286rem;
-}
-
-.ui.small.text.loader {
- min-width: 1.71428571rem;
- padding-top: 2.5rem;
-}
-
-.ui.large.loader {
- width: 3.42857143rem;
- height: 3.42857143rem;
- font-size: 1.14285714em;
-}
-
-.ui.large.loader:before,
-.ui.large.loader:after {
- width: 3.42857143rem;
- height: 3.42857143rem;
- margin: 0 0 0 -1.71428571rem;
-}
-
-.ui.large.text.loader {
- min-width: 3.42857143rem;
- padding-top: 4.21428571rem;
-}
-
-.ui.big.loader {
- width: 3.71428571rem;
- height: 3.71428571rem;
- font-size: 1.28571429em;
-}
-
-.ui.big.loader:before,
-.ui.big.loader:after {
- width: 3.71428571rem;
- height: 3.71428571rem;
- margin: 0 0 0 -1.85714286rem;
-}
-
-.ui.big.text.loader {
- min-width: 3.71428571rem;
- padding-top: 4.5rem;
-}
-
-.ui.huge.loader {
- width: 4.14285714rem;
- height: 4.14285714rem;
- font-size: 1.42857143em;
-}
-
-.ui.huge.loader:before,
-.ui.huge.loader:after {
- width: 4.14285714rem;
- height: 4.14285714rem;
- margin: 0 0 0 -2.07142857rem;
-}
-
-.ui.huge.text.loader {
- min-width: 4.14285714rem;
- padding-top: 4.92857143rem;
-}
-
-.ui.massive.loader {
- width: 4.57142857rem;
- height: 4.57142857rem;
- font-size: 1.71428571em;
-}
-
-.ui.massive.loader:before,
-.ui.massive.loader:after {
- width: 4.57142857rem;
- height: 4.57142857rem;
- margin: 0 0 0 -2.28571429rem;
-}
-
-.ui.massive.text.loader {
- min-width: 4.57142857rem;
- padding-top: 5.35714286rem;
-}
-
-/*-------------------
- Colors
---------------------*/
-
-.ui.primary.elastic.loader.loader:before,
-.ui.primary.basic.elastic.loading.button:before,
-.ui.primary.basic.elastic.loading.button:after,
-.ui.primary.elastic.loading.loading.loading:not(.segment):before,
-.ui.primary.elastic.loading.loading.loading .input > i.icon:before,
-.ui.primary.elastic.loading.loading.loading.loading > i.icon:before,
-.ui.primary.loading.loading.loading.loading:not(.usual):not(.button):after,
-.ui.primary.loading.loading.loading.loading .input > i.icon:after,
-.ui.primary.loading.loading.loading.loading > i.icon:after,
-.ui.primary.loader.loader.loader:after {
- color: #2185D0;
-}
-
-.ui.inverted.primary.elastic.loader:before,
-.ui.inverted.primary.elastic.loading.loading.loading:not(.segment):before,
-.ui.inverted.primary.elastic.loading.loading.loading .input > i.icon:before,
-.ui.inverted.primary.elastic.loading.loading.loading > i.icon:before,
-.ui.inverted.primary.loading.loading.loading.loading:not(.usual):after,
-.ui.inverted.primary.loading.loading.loading.loading .input > i.icon:after,
-.ui.inverted.primary.loading.loading.loading.loading > i.icon:after,
-.ui.inverted.primary.loader.loader.loader:after {
- color: #54C8FF;
-}
-
-.ui.secondary.elastic.loader.loader:before,
-.ui.secondary.basic.elastic.loading.button:before,
-.ui.secondary.basic.elastic.loading.button:after,
-.ui.secondary.elastic.loading.loading.loading:not(.segment):before,
-.ui.secondary.elastic.loading.loading.loading .input > i.icon:before,
-.ui.secondary.elastic.loading.loading.loading.loading > i.icon:before,
-.ui.secondary.loading.loading.loading.loading:not(.usual):not(.button):after,
-.ui.secondary.loading.loading.loading.loading .input > i.icon:after,
-.ui.secondary.loading.loading.loading.loading > i.icon:after,
-.ui.secondary.loader.loader.loader:after {
- color: #1B1C1D;
-}
-
-.ui.inverted.secondary.elastic.loader:before,
-.ui.inverted.secondary.elastic.loading.loading.loading:not(.segment):before,
-.ui.inverted.secondary.elastic.loading.loading.loading .input > i.icon:before,
-.ui.inverted.secondary.elastic.loading.loading.loading > i.icon:before,
-.ui.inverted.secondary.loading.loading.loading.loading:not(.usual):after,
-.ui.inverted.secondary.loading.loading.loading.loading .input > i.icon:after,
-.ui.inverted.secondary.loading.loading.loading.loading > i.icon:after,
-.ui.inverted.secondary.loader.loader.loader:after {
- color: #545454;
-}
-
-.ui.red.elastic.loader.loader:before,
-.ui.red.basic.elastic.loading.button:before,
-.ui.red.basic.elastic.loading.button:after,
-.ui.red.elastic.loading.loading.loading:not(.segment):before,
-.ui.red.elastic.loading.loading.loading .input > i.icon:before,
-.ui.red.elastic.loading.loading.loading.loading > i.icon:before,
-.ui.red.loading.loading.loading.loading:not(.usual):not(.button):after,
-.ui.red.loading.loading.loading.loading .input > i.icon:after,
-.ui.red.loading.loading.loading.loading > i.icon:after,
-.ui.red.loader.loader.loader:after {
- color: #DB2828;
-}
-
-.ui.inverted.red.elastic.loader:before,
-.ui.inverted.red.elastic.loading.loading.loading:not(.segment):before,
-.ui.inverted.red.elastic.loading.loading.loading .input > i.icon:before,
-.ui.inverted.red.elastic.loading.loading.loading > i.icon:before,
-.ui.inverted.red.loading.loading.loading.loading:not(.usual):after,
-.ui.inverted.red.loading.loading.loading.loading .input > i.icon:after,
-.ui.inverted.red.loading.loading.loading.loading > i.icon:after,
-.ui.inverted.red.loader.loader.loader:after {
- color: #FF695E;
-}
-
-.ui.orange.elastic.loader.loader:before,
-.ui.orange.basic.elastic.loading.button:before,
-.ui.orange.basic.elastic.loading.button:after,
-.ui.orange.elastic.loading.loading.loading:not(.segment):before,
-.ui.orange.elastic.loading.loading.loading .input > i.icon:before,
-.ui.orange.elastic.loading.loading.loading.loading > i.icon:before,
-.ui.orange.loading.loading.loading.loading:not(.usual):not(.button):after,
-.ui.orange.loading.loading.loading.loading .input > i.icon:after,
-.ui.orange.loading.loading.loading.loading > i.icon:after,
-.ui.orange.loader.loader.loader:after {
- color: #F2711C;
-}
-
-.ui.inverted.orange.elastic.loader:before,
-.ui.inverted.orange.elastic.loading.loading.loading:not(.segment):before,
-.ui.inverted.orange.elastic.loading.loading.loading .input > i.icon:before,
-.ui.inverted.orange.elastic.loading.loading.loading > i.icon:before,
-.ui.inverted.orange.loading.loading.loading.loading:not(.usual):after,
-.ui.inverted.orange.loading.loading.loading.loading .input > i.icon:after,
-.ui.inverted.orange.loading.loading.loading.loading > i.icon:after,
-.ui.inverted.orange.loader.loader.loader:after {
- color: #FF851B;
-}
-
-.ui.yellow.elastic.loader.loader:before,
-.ui.yellow.basic.elastic.loading.button:before,
-.ui.yellow.basic.elastic.loading.button:after,
-.ui.yellow.elastic.loading.loading.loading:not(.segment):before,
-.ui.yellow.elastic.loading.loading.loading .input > i.icon:before,
-.ui.yellow.elastic.loading.loading.loading.loading > i.icon:before,
-.ui.yellow.loading.loading.loading.loading:not(.usual):not(.button):after,
-.ui.yellow.loading.loading.loading.loading .input > i.icon:after,
-.ui.yellow.loading.loading.loading.loading > i.icon:after,
-.ui.yellow.loader.loader.loader:after {
- color: #FBBD08;
-}
-
-.ui.inverted.yellow.elastic.loader:before,
-.ui.inverted.yellow.elastic.loading.loading.loading:not(.segment):before,
-.ui.inverted.yellow.elastic.loading.loading.loading .input > i.icon:before,
-.ui.inverted.yellow.elastic.loading.loading.loading > i.icon:before,
-.ui.inverted.yellow.loading.loading.loading.loading:not(.usual):after,
-.ui.inverted.yellow.loading.loading.loading.loading .input > i.icon:after,
-.ui.inverted.yellow.loading.loading.loading.loading > i.icon:after,
-.ui.inverted.yellow.loader.loader.loader:after {
- color: #FFE21F;
-}
-
-.ui.olive.elastic.loader.loader:before,
-.ui.olive.basic.elastic.loading.button:before,
-.ui.olive.basic.elastic.loading.button:after,
-.ui.olive.elastic.loading.loading.loading:not(.segment):before,
-.ui.olive.elastic.loading.loading.loading .input > i.icon:before,
-.ui.olive.elastic.loading.loading.loading.loading > i.icon:before,
-.ui.olive.loading.loading.loading.loading:not(.usual):not(.button):after,
-.ui.olive.loading.loading.loading.loading .input > i.icon:after,
-.ui.olive.loading.loading.loading.loading > i.icon:after,
-.ui.olive.loader.loader.loader:after {
- color: #B5CC18;
-}
-
-.ui.inverted.olive.elastic.loader:before,
-.ui.inverted.olive.elastic.loading.loading.loading:not(.segment):before,
-.ui.inverted.olive.elastic.loading.loading.loading .input > i.icon:before,
-.ui.inverted.olive.elastic.loading.loading.loading > i.icon:before,
-.ui.inverted.olive.loading.loading.loading.loading:not(.usual):after,
-.ui.inverted.olive.loading.loading.loading.loading .input > i.icon:after,
-.ui.inverted.olive.loading.loading.loading.loading > i.icon:after,
-.ui.inverted.olive.loader.loader.loader:after {
- color: #D9E778;
-}
-
-.ui.green.elastic.loader.loader:before,
-.ui.green.basic.elastic.loading.button:before,
-.ui.green.basic.elastic.loading.button:after,
-.ui.green.elastic.loading.loading.loading:not(.segment):before,
-.ui.green.elastic.loading.loading.loading .input > i.icon:before,
-.ui.green.elastic.loading.loading.loading.loading > i.icon:before,
-.ui.green.loading.loading.loading.loading:not(.usual):not(.button):after,
-.ui.green.loading.loading.loading.loading .input > i.icon:after,
-.ui.green.loading.loading.loading.loading > i.icon:after,
-.ui.green.loader.loader.loader:after {
- color: #21BA45;
-}
-
-.ui.inverted.green.elastic.loader:before,
-.ui.inverted.green.elastic.loading.loading.loading:not(.segment):before,
-.ui.inverted.green.elastic.loading.loading.loading .input > i.icon:before,
-.ui.inverted.green.elastic.loading.loading.loading > i.icon:before,
-.ui.inverted.green.loading.loading.loading.loading:not(.usual):after,
-.ui.inverted.green.loading.loading.loading.loading .input > i.icon:after,
-.ui.inverted.green.loading.loading.loading.loading > i.icon:after,
-.ui.inverted.green.loader.loader.loader:after {
- color: #2ECC40;
-}
-
-.ui.teal.elastic.loader.loader:before,
-.ui.teal.basic.elastic.loading.button:before,
-.ui.teal.basic.elastic.loading.button:after,
-.ui.teal.elastic.loading.loading.loading:not(.segment):before,
-.ui.teal.elastic.loading.loading.loading .input > i.icon:before,
-.ui.teal.elastic.loading.loading.loading.loading > i.icon:before,
-.ui.teal.loading.loading.loading.loading:not(.usual):not(.button):after,
-.ui.teal.loading.loading.loading.loading .input > i.icon:after,
-.ui.teal.loading.loading.loading.loading > i.icon:after,
-.ui.teal.loader.loader.loader:after {
- color: #00B5AD;
-}
-
-.ui.inverted.teal.elastic.loader:before,
-.ui.inverted.teal.elastic.loading.loading.loading:not(.segment):before,
-.ui.inverted.teal.elastic.loading.loading.loading .input > i.icon:before,
-.ui.inverted.teal.elastic.loading.loading.loading > i.icon:before,
-.ui.inverted.teal.loading.loading.loading.loading:not(.usual):after,
-.ui.inverted.teal.loading.loading.loading.loading .input > i.icon:after,
-.ui.inverted.teal.loading.loading.loading.loading > i.icon:after,
-.ui.inverted.teal.loader.loader.loader:after {
- color: #6DFFFF;
-}
-
-.ui.blue.elastic.loader.loader:before,
-.ui.blue.basic.elastic.loading.button:before,
-.ui.blue.basic.elastic.loading.button:after,
-.ui.blue.elastic.loading.loading.loading:not(.segment):before,
-.ui.blue.elastic.loading.loading.loading .input > i.icon:before,
-.ui.blue.elastic.loading.loading.loading.loading > i.icon:before,
-.ui.blue.loading.loading.loading.loading:not(.usual):not(.button):after,
-.ui.blue.loading.loading.loading.loading .input > i.icon:after,
-.ui.blue.loading.loading.loading.loading > i.icon:after,
-.ui.blue.loader.loader.loader:after {
- color: #2185D0;
-}
-
-.ui.inverted.blue.elastic.loader:before,
-.ui.inverted.blue.elastic.loading.loading.loading:not(.segment):before,
-.ui.inverted.blue.elastic.loading.loading.loading .input > i.icon:before,
-.ui.inverted.blue.elastic.loading.loading.loading > i.icon:before,
-.ui.inverted.blue.loading.loading.loading.loading:not(.usual):after,
-.ui.inverted.blue.loading.loading.loading.loading .input > i.icon:after,
-.ui.inverted.blue.loading.loading.loading.loading > i.icon:after,
-.ui.inverted.blue.loader.loader.loader:after {
- color: #54C8FF;
-}
-
-.ui.violet.elastic.loader.loader:before,
-.ui.violet.basic.elastic.loading.button:before,
-.ui.violet.basic.elastic.loading.button:after,
-.ui.violet.elastic.loading.loading.loading:not(.segment):before,
-.ui.violet.elastic.loading.loading.loading .input > i.icon:before,
-.ui.violet.elastic.loading.loading.loading.loading > i.icon:before,
-.ui.violet.loading.loading.loading.loading:not(.usual):not(.button):after,
-.ui.violet.loading.loading.loading.loading .input > i.icon:after,
-.ui.violet.loading.loading.loading.loading > i.icon:after,
-.ui.violet.loader.loader.loader:after {
- color: #6435C9;
-}
-
-.ui.inverted.violet.elastic.loader:before,
-.ui.inverted.violet.elastic.loading.loading.loading:not(.segment):before,
-.ui.inverted.violet.elastic.loading.loading.loading .input > i.icon:before,
-.ui.inverted.violet.elastic.loading.loading.loading > i.icon:before,
-.ui.inverted.violet.loading.loading.loading.loading:not(.usual):after,
-.ui.inverted.violet.loading.loading.loading.loading .input > i.icon:after,
-.ui.inverted.violet.loading.loading.loading.loading > i.icon:after,
-.ui.inverted.violet.loader.loader.loader:after {
- color: #A291FB;
-}
-
-.ui.purple.elastic.loader.loader:before,
-.ui.purple.basic.elastic.loading.button:before,
-.ui.purple.basic.elastic.loading.button:after,
-.ui.purple.elastic.loading.loading.loading:not(.segment):before,
-.ui.purple.elastic.loading.loading.loading .input > i.icon:before,
-.ui.purple.elastic.loading.loading.loading.loading > i.icon:before,
-.ui.purple.loading.loading.loading.loading:not(.usual):not(.button):after,
-.ui.purple.loading.loading.loading.loading .input > i.icon:after,
-.ui.purple.loading.loading.loading.loading > i.icon:after,
-.ui.purple.loader.loader.loader:after {
- color: #A333C8;
-}
-
-.ui.inverted.purple.elastic.loader:before,
-.ui.inverted.purple.elastic.loading.loading.loading:not(.segment):before,
-.ui.inverted.purple.elastic.loading.loading.loading .input > i.icon:before,
-.ui.inverted.purple.elastic.loading.loading.loading > i.icon:before,
-.ui.inverted.purple.loading.loading.loading.loading:not(.usual):after,
-.ui.inverted.purple.loading.loading.loading.loading .input > i.icon:after,
-.ui.inverted.purple.loading.loading.loading.loading > i.icon:after,
-.ui.inverted.purple.loader.loader.loader:after {
- color: #DC73FF;
-}
-
-.ui.pink.elastic.loader.loader:before,
-.ui.pink.basic.elastic.loading.button:before,
-.ui.pink.basic.elastic.loading.button:after,
-.ui.pink.elastic.loading.loading.loading:not(.segment):before,
-.ui.pink.elastic.loading.loading.loading .input > i.icon:before,
-.ui.pink.elastic.loading.loading.loading.loading > i.icon:before,
-.ui.pink.loading.loading.loading.loading:not(.usual):not(.button):after,
-.ui.pink.loading.loading.loading.loading .input > i.icon:after,
-.ui.pink.loading.loading.loading.loading > i.icon:after,
-.ui.pink.loader.loader.loader:after {
- color: #E03997;
-}
-
-.ui.inverted.pink.elastic.loader:before,
-.ui.inverted.pink.elastic.loading.loading.loading:not(.segment):before,
-.ui.inverted.pink.elastic.loading.loading.loading .input > i.icon:before,
-.ui.inverted.pink.elastic.loading.loading.loading > i.icon:before,
-.ui.inverted.pink.loading.loading.loading.loading:not(.usual):after,
-.ui.inverted.pink.loading.loading.loading.loading .input > i.icon:after,
-.ui.inverted.pink.loading.loading.loading.loading > i.icon:after,
-.ui.inverted.pink.loader.loader.loader:after {
- color: #FF8EDF;
-}
-
-.ui.brown.elastic.loader.loader:before,
-.ui.brown.basic.elastic.loading.button:before,
-.ui.brown.basic.elastic.loading.button:after,
-.ui.brown.elastic.loading.loading.loading:not(.segment):before,
-.ui.brown.elastic.loading.loading.loading .input > i.icon:before,
-.ui.brown.elastic.loading.loading.loading.loading > i.icon:before,
-.ui.brown.loading.loading.loading.loading:not(.usual):not(.button):after,
-.ui.brown.loading.loading.loading.loading .input > i.icon:after,
-.ui.brown.loading.loading.loading.loading > i.icon:after,
-.ui.brown.loader.loader.loader:after {
- color: #A5673F;
-}
-
-.ui.inverted.brown.elastic.loader:before,
-.ui.inverted.brown.elastic.loading.loading.loading:not(.segment):before,
-.ui.inverted.brown.elastic.loading.loading.loading .input > i.icon:before,
-.ui.inverted.brown.elastic.loading.loading.loading > i.icon:before,
-.ui.inverted.brown.loading.loading.loading.loading:not(.usual):after,
-.ui.inverted.brown.loading.loading.loading.loading .input > i.icon:after,
-.ui.inverted.brown.loading.loading.loading.loading > i.icon:after,
-.ui.inverted.brown.loader.loader.loader:after {
- color: #D67C1C;
-}
-
-.ui.grey.elastic.loader.loader:before,
-.ui.grey.basic.elastic.loading.button:before,
-.ui.grey.basic.elastic.loading.button:after,
-.ui.grey.elastic.loading.loading.loading:not(.segment):before,
-.ui.grey.elastic.loading.loading.loading .input > i.icon:before,
-.ui.grey.elastic.loading.loading.loading.loading > i.icon:before,
-.ui.grey.loading.loading.loading.loading:not(.usual):not(.button):after,
-.ui.grey.loading.loading.loading.loading .input > i.icon:after,
-.ui.grey.loading.loading.loading.loading > i.icon:after,
-.ui.grey.loader.loader.loader:after {
- color: #767676;
-}
-
-.ui.inverted.grey.elastic.loader:before,
-.ui.inverted.grey.elastic.loading.loading.loading:not(.segment):before,
-.ui.inverted.grey.elastic.loading.loading.loading .input > i.icon:before,
-.ui.inverted.grey.elastic.loading.loading.loading > i.icon:before,
-.ui.inverted.grey.loading.loading.loading.loading:not(.usual):after,
-.ui.inverted.grey.loading.loading.loading.loading .input > i.icon:after,
-.ui.inverted.grey.loading.loading.loading.loading > i.icon:after,
-.ui.inverted.grey.loader.loader.loader:after {
- color: #DCDDDE;
-}
-
-.ui.black.elastic.loader.loader:before,
-.ui.black.basic.elastic.loading.button:before,
-.ui.black.basic.elastic.loading.button:after,
-.ui.black.elastic.loading.loading.loading:not(.segment):before,
-.ui.black.elastic.loading.loading.loading .input > i.icon:before,
-.ui.black.elastic.loading.loading.loading.loading > i.icon:before,
-.ui.black.loading.loading.loading.loading:not(.usual):not(.button):after,
-.ui.black.loading.loading.loading.loading .input > i.icon:after,
-.ui.black.loading.loading.loading.loading > i.icon:after,
-.ui.black.loader.loader.loader:after {
- color: #1B1C1D;
-}
-
-.ui.inverted.black.elastic.loader:before,
-.ui.inverted.black.elastic.loading.loading.loading:not(.segment):before,
-.ui.inverted.black.elastic.loading.loading.loading .input > i.icon:before,
-.ui.inverted.black.elastic.loading.loading.loading > i.icon:before,
-.ui.inverted.black.loading.loading.loading.loading:not(.usual):after,
-.ui.inverted.black.loading.loading.loading.loading .input > i.icon:after,
-.ui.inverted.black.loading.loading.loading.loading > i.icon:after,
-.ui.inverted.black.loader.loader.loader:after {
- color: #545454;
-}
-
-.ui.elastic.loader.loader:before,
-.ui.elastic.loading.loading.loading:before,
-.ui.elastic.loading.loading.loading .input > i.icon:before,
-.ui.elastic.loading.loading.loading > i.icon:before,
-.ui.loading.loading.loading.loading:not(.usual):after,
-.ui.loading.loading.loading.loading .input > i.icon:after,
-.ui.loading.loading.loading.loading > i.icon:after,
-.ui.loader.loader.loader:after {
- border-color: currentColor;
-}
-
-.ui.elastic.loading.loading.loading.loading.button:not(.inverted):not(.basic):before {
- color: #FFFFFF;
-}
-
-.ui.elastic.basic.loading.button:before,
-.ui.elastic.basic.loading.button:after {
- color: #767676;
-}
-
-.ui.double.loading.loading.loading.loading.button:after {
- border-bottom-color: currentColor;
-}
-
-/*-------------------
- Inline
- --------------------*/
-
-.ui.inline.loader {
- position: relative;
- vertical-align: middle;
- margin: 0;
- left: 0;
- top: 0;
- -webkit-transform: none;
- transform: none;
-}
-
-.ui.inline.loader.active,
-.ui.inline.loader.visible {
- display: inline-block;
-}
-
-/* Centered Inline */
-
-.ui.centered.inline.loader.active,
-.ui.centered.inline.loader.visible {
- display: block;
- margin-left: auto;
- margin-right: auto;
-}
-
-.ui.loading.loading.loading.loading.loading.loading:after,
-.ui.loading.loading.loading.loading.loading.loading .input > i.icon:after,
-.ui.loading.loading.loading.loading.loading.loading > i.icon:after,
-.ui.loader.loader.loader.loader.loader:after {
- border-left-color: transparent;
- border-right-color: transparent;
-}
-
-.ui.loading.loading.loading.loading.loading.loading.loading:not(.double):after,
-.ui.loading.loading.loading.loading.loading.loading.loading:not(.double) .input > i.icon:after,
-.ui.loading.loading.loading.loading.loading.loading.loading:not(.double) > i.icon:after,
-.ui.loader.loader.loader.loader.loader.loader:not(.double):after {
- border-bottom-color: transparent;
-}
-
-.ui.loading.loading.loading.loading.loading.loading.segment:after,
-.ui.loading.loading.loading.loading.loading.loading.form:after {
- border-left-color: rgba(0, 0, 0, 0.1);
- border-right-color: rgba(0, 0, 0, 0.1);
-}
-
-.ui.loading.loading.loading.loading.loading.loading.segment:not(.double):after,
-.ui.loading.loading.loading.loading.loading.loading.form:not(.double):after {
- border-bottom-color: rgba(0, 0, 0, 0.1);
-}
-
-/*-------------------
- Elastic
- --------------------*/
-
-.ui.dimmer > .ui.elastic.loader {
- color: #FFFFFF;
-}
-
-.ui.inverted.dimmer > .ui.elastic.loader {
- color: #767676;
-}
-
-.ui.elastic.loading.loading:not(.form):not(.segment):after,
-.ui.elastic.loading.loading .input > i.icon:after,
-.ui.elastic.loading.loading > i.icon:after,
-.ui.elastic.loader.loader:after {
- -webkit-animation: loader 1s infinite cubic-bezier(0.27, 1.05, 0.92, 0.61);
- animation: loader 1s infinite cubic-bezier(0.27, 1.05, 0.92, 0.61);
- -webkit-animation-delay: 0.3s;
- animation-delay: 0.3s;
-}
-
-.ui.elastic.loading.loading.loading:not(.form):not(.segment):before,
-.ui.elastic.loading.loading.loading .input > i.icon:before,
-.ui.elastic.loading.loading.loading > i.icon:before,
-.ui.elastic.loader.loader:before {
- -webkit-animation: elastic-loader 1s infinite cubic-bezier(0.27, 1.05, 0.92, 0.61);
- animation: elastic-loader 1s infinite cubic-bezier(0.27, 1.05, 0.92, 0.61);
- -moz-animation: currentcolor-elastic-loader 1s infinite cubic-bezier(0.27, 1.05, 0.92, 0.61);
- border-right-color: transparent;
-}
-
-.ui.elastic.inline.loader:empty {
- -webkit-animation: loader 8s infinite linear;
- animation: loader 8s infinite linear;
-}
-
-.ui.slow.elastic.loading.loading:not(.form):not(.segment):after,
-.ui.slow.elastic.loading.loading .input > i.icon:after,
-.ui.slow.elastic.loading.loading > i.icon:after,
-.ui.slow.elastic.loader.loader:after {
- -webkit-animation-duration: 1.5s;
- animation-duration: 1.5s;
- -webkit-animation-delay: 0.45s;
- animation-delay: 0.45s;
-}
-
-.ui.slow.elastic.loading.loading.loading:not(.form):not(.segment):before,
-.ui.slow.elastic.loading.loading.loading .input > i.icon:before,
-.ui.slow.elastic.loading.loading.loading > i.icon:before,
-.ui.slow.elastic.loader.loader:before {
- -webkit-animation-duration: 1.5s;
- animation-duration: 1.5s;
-}
-
-.ui.fast.elastic.loading.loading:not(.form):not(.segment):after,
-.ui.fast.elastic.loading.loading .input > i.icon:after,
-.ui.fast.elastic.loading.loading > i.icon:after,
-.ui.fast.elastic.loader.loader:after {
- -webkit-animation-duration: 0.66s;
- animation-duration: 0.66s;
- -webkit-animation-delay: 0.2s;
- animation-delay: 0.2s;
-}
-
-.ui.fast.elastic.loading.loading.loading:not(.form):not(.segment):before,
-.ui.fast.elastic.loading.loading.loading .input > i.icon:before,
-.ui.fast.elastic.loading.loading.loading > i.icon:before,
-.ui.fast.elastic.loader.loader:before {
- -webkit-animation-duration: 0.66s;
- animation-duration: 0.66s;
-}
-
-@-webkit-keyframes elastic-loader {
- 0%, 1% {
- border-left-color: transparent;
- border-bottom-color: transparent;
- }
-
- 1.1%, 50% {
- border-left-color: inherit;
- }
-
- 10%, 35.1% {
- border-bottom-color: transparent;
- }
-
- 10.1%, 35% {
- border-bottom-color: inherit;
- }
-
- 50.1% {
- border-left-color: transparent;
- }
-
- 100% {
- border-left-color: transparent;
- border-bottom-color: transparent;
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
-}
-
-@keyframes elastic-loader {
- 0%, 1% {
- border-left-color: transparent;
- border-bottom-color: transparent;
- }
-
- 1.1%, 50% {
- border-left-color: inherit;
- }
-
- 10%, 35.1% {
- border-bottom-color: transparent;
- }
-
- 10.1%, 35% {
- border-bottom-color: inherit;
- }
-
- 50.1% {
- border-left-color: transparent;
- }
-
- 100% {
- border-left-color: transparent;
- border-bottom-color: transparent;
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
-}
-
-@-webkit-keyframes currentcolor-elastic-loader {
- 0%, 1% {
- border-left-color: transparent;
- border-bottom-color: transparent;
- }
-
- 1.1%, 50% {
- border-left-color: currentColor;
- }
-
- 10%, 35.1% {
- border-bottom-color: transparent;
- }
-
- 10.1%, 35% {
- border-bottom-color: currentColor;
- }
-
- 50.1% {
- border-left-color: transparent;
- }
-
- 100% {
- border-left-color: transparent;
- border-bottom-color: transparent;
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
-}
-
-@keyframes currentcolor-elastic-loader {
- 0%, 1% {
- border-left-color: transparent;
- border-bottom-color: transparent;
- }
-
- 1.1%, 50% {
- border-left-color: currentColor;
- }
-
- 10%, 35.1% {
- border-bottom-color: transparent;
- }
-
- 10.1%, 35% {
- border-bottom-color: currentColor;
- }
-
- 50.1% {
- border-left-color: transparent;
- }
-
- 100% {
- border-left-color: transparent;
- border-bottom-color: transparent;
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Rail
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Rails
-*******************************/
-
-.ui.rail {
- position: absolute;
- top: 0;
- width: 300px;
- height: 100%;
-}
-
-.ui.left.rail {
- left: auto;
- right: 100%;
- padding: 0 2rem 0 0;
- margin: 0 2rem 0 0;
-}
-
-.ui.right.rail {
- left: 100%;
- right: auto;
- padding: 0 0 0 2rem;
- margin: 0 0 0 2rem;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*--------------
- Internal
- ---------------*/
-
-.ui.left.internal.rail {
- left: 0;
- right: auto;
- padding: 0 0 0 2rem;
- margin: 0 0 0 2rem;
-}
-
-.ui.right.internal.rail {
- left: auto;
- right: 0;
- padding: 0 2rem 0 0;
- margin: 0 2rem 0 0;
-}
-
-/*--------------
- Dividing
- ---------------*/
-
-.ui.dividing.rail {
- width: 302.5px;
-}
-
-.ui.left.dividing.rail {
- padding: 0 2.5rem 0 0;
- margin: 0 2.5rem 0 0;
- border-right: 1px solid rgba(34, 36, 38, 0.15);
-}
-
-.ui.right.dividing.rail {
- border-left: 1px solid rgba(34, 36, 38, 0.15);
- padding: 0 0 0 2.5rem;
- margin: 0 0 0 2.5rem;
-}
-
-/*--------------
- Distance
- ---------------*/
-
-.ui.close.rail {
- width: calc(300px + 1em);
-}
-
-.ui.close.left.rail {
- padding: 0 1em 0 0;
- margin: 0 1em 0 0;
-}
-
-.ui.close.right.rail {
- padding: 0 0 0 1em;
- margin: 0 0 0 1em;
-}
-
-.ui.very.close.rail {
- width: calc(300px + 0.5em);
-}
-
-.ui.very.close.left.rail {
- padding: 0 0.5em 0 0;
- margin: 0 0.5em 0 0;
-}
-
-.ui.very.close.right.rail {
- padding: 0 0 0 0.5em;
- margin: 0 0 0 0.5em;
-}
-
-/*--------------
- Attached
- ---------------*/
-
-.ui.attached.left.rail,
-.ui.attached.right.rail {
- padding: 0;
- margin: 0;
-}
-
-/*--------------
- Sizing
----------------*/
-
-.ui.rail {
- font-size: 1rem;
-}
-
-.ui.mini.rail {
- font-size: 0.78571429rem;
-}
-
-.ui.tiny.rail {
- font-size: 0.85714286rem;
-}
-
-.ui.small.rail {
- font-size: 0.92857143rem;
-}
-
-.ui.large.rail {
- font-size: 1.14285714rem;
-}
-
-.ui.big.rail {
- font-size: 1.28571429rem;
-}
-
-.ui.huge.rail {
- font-size: 1.42857143rem;
-}
-
-.ui.massive.rail {
- font-size: 1.71428571rem;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Reveal
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Reveal
-*******************************/
-
-.ui.reveal {
- display: inherit;
- position: relative !important;
- font-size: 0;
-}
-
-.ui.reveal > .visible.content {
- position: absolute !important;
- top: 0 !important;
- left: 0 !important;
- z-index: 3 !important;
- -webkit-transition: all 0.5s ease 0.1s;
- transition: all 0.5s ease 0.1s;
-}
-
-.ui.reveal > .hidden.content {
- position: relative !important;
- z-index: 2 !important;
-}
-
-/* Make sure hovered element is on top of other reveal */
-
-.ui.active.reveal .visible.content,
-.ui.reveal:hover .visible.content {
- z-index: 4 !important;
-}
-
-/*******************************
- Types
-*******************************/
-
-/*--------------
- Slide
- ---------------*/
-
-.ui.slide.reveal {
- position: relative !important;
- overflow: hidden !important;
- white-space: nowrap;
-}
-
-.ui.slide.reveal > .content {
- display: block;
- width: 100%;
- white-space: normal;
- float: left;
- margin: 0;
- -webkit-transition: -webkit-transform 0.5s ease 0.1s;
- transition: -webkit-transform 0.5s ease 0.1s;
- transition: transform 0.5s ease 0.1s;
- transition: transform 0.5s ease 0.1s, -webkit-transform 0.5s ease 0.1s;
-}
-
-.ui.slide.reveal > .visible.content {
- position: relative !important;
-}
-
-.ui.slide.reveal > .hidden.content {
- position: absolute !important;
- left: 0 !important;
- width: 100% !important;
- -webkit-transform: translateX(100%) !important;
- transform: translateX(100%) !important;
-}
-
-.ui.slide.active.reveal > .visible.content,
-.ui.slide.reveal:hover > .visible.content {
- -webkit-transform: translateX(-100%) !important;
- transform: translateX(-100%) !important;
-}
-
-.ui.slide.active.reveal > .hidden.content,
-.ui.slide.reveal:hover > .hidden.content {
- -webkit-transform: translateX(0%) !important;
- transform: translateX(0%) !important;
-}
-
-.ui.slide.right.reveal > .visible.content {
- -webkit-transform: translateX(0%) !important;
- transform: translateX(0%) !important;
-}
-
-.ui.slide.right.reveal > .hidden.content {
- -webkit-transform: translateX(-100%) !important;
- transform: translateX(-100%) !important;
-}
-
-.ui.slide.right.active.reveal > .visible.content,
-.ui.slide.right.reveal:hover > .visible.content {
- -webkit-transform: translateX(100%) !important;
- transform: translateX(100%) !important;
-}
-
-.ui.slide.right.active.reveal > .hidden.content,
-.ui.slide.right.reveal:hover > .hidden.content {
- -webkit-transform: translateX(0%) !important;
- transform: translateX(0%) !important;
-}
-
-.ui.slide.up.reveal > .hidden.content {
- -webkit-transform: translateY(100%) !important;
- transform: translateY(100%) !important;
-}
-
-.ui.slide.up.active.reveal > .visible.content,
-.ui.slide.up.reveal:hover > .visible.content {
- -webkit-transform: translateY(-100%) !important;
- transform: translateY(-100%) !important;
-}
-
-.ui.slide.up.active.reveal > .hidden.content,
-.ui.slide.up.reveal:hover > .hidden.content {
- -webkit-transform: translateY(0%) !important;
- transform: translateY(0%) !important;
-}
-
-.ui.slide.down.reveal > .hidden.content {
- -webkit-transform: translateY(-100%) !important;
- transform: translateY(-100%) !important;
-}
-
-.ui.slide.down.active.reveal > .visible.content,
-.ui.slide.down.reveal:hover > .visible.content {
- -webkit-transform: translateY(100%) !important;
- transform: translateY(100%) !important;
-}
-
-.ui.slide.down.active.reveal > .hidden.content,
-.ui.slide.down.reveal:hover > .hidden.content {
- -webkit-transform: translateY(0%) !important;
- transform: translateY(0%) !important;
-}
-
-/*--------------
- Fade
- ---------------*/
-
-.ui.fade.reveal > .visible.content {
- opacity: 1;
-}
-
-.ui.fade.active.reveal > .visible.content,
-.ui.fade.reveal:hover > .visible.content {
- opacity: 0;
-}
-
-/*--------------
- Move
- ---------------*/
-
-.ui.move.reveal {
- position: relative !important;
- overflow: hidden !important;
- white-space: nowrap;
-}
-
-.ui.move.reveal > .content {
- display: block;
- float: left;
- white-space: normal;
- margin: 0;
- -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s;
- transition: -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s;
- transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s;
- transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s, -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s;
-}
-
-.ui.move.reveal > .visible.content {
- position: relative !important;
-}
-
-.ui.move.reveal > .hidden.content {
- position: absolute !important;
- left: 0 !important;
- width: 100% !important;
-}
-
-.ui.move.active.reveal > .visible.content,
-.ui.move.reveal:hover > .visible.content {
- -webkit-transform: translateX(-100%) !important;
- transform: translateX(-100%) !important;
-}
-
-.ui.move.right.active.reveal > .visible.content,
-.ui.move.right.reveal:hover > .visible.content {
- -webkit-transform: translateX(100%) !important;
- transform: translateX(100%) !important;
-}
-
-.ui.move.up.active.reveal > .visible.content,
-.ui.move.up.reveal:hover > .visible.content {
- -webkit-transform: translateY(-100%) !important;
- transform: translateY(-100%) !important;
-}
-
-.ui.move.down.active.reveal > .visible.content,
-.ui.move.down.reveal:hover > .visible.content {
- -webkit-transform: translateY(100%) !important;
- transform: translateY(100%) !important;
-}
-
-/*--------------
- Rotate
- ---------------*/
-
-.ui.rotate.reveal > .visible.content {
- -webkit-transition-duration: 0.5s;
- transition-duration: 0.5s;
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
-}
-
-.ui.rotate.reveal > .visible.content,
-.ui.rotate.right.reveal > .visible.content {
- -webkit-transform-origin: bottom right;
- transform-origin: bottom right;
-}
-
-.ui.rotate.active.reveal > .visible.content,
-.ui.rotate.reveal:hover > .visible.content,
-.ui.rotate.right.active.reveal > .visible.content,
-.ui.rotate.right.reveal:hover > .visible.content {
- -webkit-transform: rotate(110deg);
- transform: rotate(110deg);
-}
-
-.ui.rotate.left.reveal > .visible.content {
- -webkit-transform-origin: bottom left;
- transform-origin: bottom left;
-}
-
-.ui.rotate.left.active.reveal > .visible.content,
-.ui.rotate.left.reveal:hover > .visible.content {
- -webkit-transform: rotate(-110deg);
- transform: rotate(-110deg);
-}
-
-/*******************************
- States
-*******************************/
-
-.ui.disabled.reveal:hover > .visible.visible.content {
- position: static !important;
- display: block !important;
- opacity: 1 !important;
- top: 0 !important;
- left: 0 !important;
- right: auto !important;
- bottom: auto !important;
- -webkit-transform: none !important;
- transform: none !important;
-}
-
-.ui.disabled.reveal:hover > .hidden.hidden.content {
- display: none !important;
-}
-
-/*******************************
- Coupling
-*******************************/
-
-.ui.reveal > .ui.ribbon.label {
- z-index: 5;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*--------------
- Visible
----------------*/
-
-.ui.visible.reveal {
- overflow: visible;
-}
-
-/*--------------
- Instant
----------------*/
-
-.ui.instant.reveal > .content {
- -webkit-transition-delay: 0s !important;
- transition-delay: 0s !important;
-}
-
-/*--------------
- Sizing
----------------*/
-
-.ui.reveal > .content {
- font-size: 1rem;
-}
-
-.ui.mini.reveal > .content {
- font-size: 0.78571429rem;
-}
-
-.ui.tiny.reveal > .content {
- font-size: 0.85714286rem;
-}
-
-.ui.small.reveal > .content {
- font-size: 0.92857143rem;
-}
-
-.ui.large.reveal > .content {
- font-size: 1.14285714rem;
-}
-
-.ui.big.reveal > .content {
- font-size: 1.28571429rem;
-}
-
-.ui.huge.reveal > .content {
- font-size: 1.42857143rem;
-}
-
-.ui.massive.reveal > .content {
- font-size: 1.71428571rem;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Segment
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Segment
-*******************************/
-
-.ui.segment {
- position: relative;
- background: #FFFFFF;
- -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
- margin: 1rem 0;
- padding: 1em 1em;
- border-radius: 0.28571429rem;
- border: 1px solid rgba(34, 36, 38, 0.15);
-}
-
-.ui.segment:first-child {
- margin-top: 0;
-}
-
-.ui.segment:last-child {
- margin-bottom: 0;
-}
-
-/* Vertical */
-
-.ui.vertical.segment {
- margin: 0;
- padding-left: 0;
- padding-right: 0;
- background: none transparent;
- border-radius: 0;
- -webkit-box-shadow: none;
- box-shadow: none;
- border: none;
- border-bottom: 1px solid rgba(34, 36, 38, 0.15);
-}
-
-.ui.vertical.segment:last-child {
- border-bottom: none;
-}
-
-/*-------------------
- Loose Coupling
---------------------*/
-
-/* Header */
-
-.ui.inverted.segment > .ui.header > .sub.header,
-.ui.inverted.segment > .ui.header {
- color: #FFFFFF;
-}
-
-/* Label */
-
-.ui[class*="bottom attached"].segment > [class*="top attached"].label {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
-}
-
-.ui[class*="top attached"].segment > [class*="bottom attached"].label {
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
-}
-
-.ui.attached.segment:not(.top):not(.bottom) > [class*="top attached"].label {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
-}
-
-.ui.attached.segment:not(.top):not(.bottom) > [class*="bottom attached"].label {
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
-}
-
-/* Grid */
-
-.ui.page.grid.segment,
-.ui.grid > .row > .ui.segment.column,
-.ui.grid > .ui.segment.column {
- padding-top: 2em;
- padding-bottom: 2em;
-}
-
-.ui.grid.segment {
- margin: 1rem 0;
- border-radius: 0.28571429rem;
-}
-
-/* Table */
-
-.ui.basic.table.segment {
- background: #FFFFFF;
- border: 1px solid rgba(34, 36, 38, 0.15);
- -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui[class*="very basic"].table.segment {
- padding: 1em 1em;
-}
-
-/* Tab */
-
-.ui.segment.tab:last-child {
- margin-bottom: 1rem;
-}
-
-/*******************************
- Types
-*******************************/
-
-/*-------------------
- Placeholder
- --------------------*/
-
-.ui.placeholder.segment {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- -webkit-box-align: stretch;
- -ms-flex-align: stretch;
- align-items: stretch;
- max-width: initial;
- -webkit-animation: none;
- animation: none;
- overflow: visible;
- padding: 1em 1em;
- min-height: 18rem;
- background: #F9FAFB;
- border-color: rgba(34, 36, 38, 0.15);
- -webkit-box-shadow: 0 2px 25px 0 rgba(34, 36, 38, 0.05) inset;
- box-shadow: 0 2px 25px 0 rgba(34, 36, 38, 0.05) inset;
-}
-
-.ui.placeholder.segment .button,
-.ui.placeholder.segment textarea {
- display: block;
-}
-
-.ui.placeholder.segment .field,
-.ui.placeholder.segment textarea,
-.ui.placeholder.segment > .ui.input,
-.ui.placeholder.segment .button {
- max-width: 15rem;
- margin-left: auto;
- margin-right: auto;
-}
-
-.ui.placeholder.segment .column .button,
-.ui.placeholder.segment .column .field,
-.ui.placeholder.segment .column textarea,
-.ui.placeholder.segment .column > .ui.input {
- max-width: 15rem;
- margin-left: auto;
- margin-right: auto;
-}
-
-.ui.placeholder.segment > .inline {
- -ms-flex-item-align: center;
- align-self: center;
-}
-
-.ui.placeholder.segment > .inline > .button {
- display: inline-block;
- width: auto;
- margin: 0 0.35714286rem 0 0;
-}
-
-.ui.placeholder.segment > .inline > .button:last-child {
- margin-right: 0;
-}
-
-/*-------------------
- Piled
- --------------------*/
-
-.ui.piled.segments,
-.ui.piled.segment {
- margin: 3em 0;
- -webkit-box-shadow: '';
- box-shadow: '';
- z-index: auto;
-}
-
-.ui.piled.segment:first-child {
- margin-top: 0;
-}
-
-.ui.piled.segment:last-child {
- margin-bottom: 0;
-}
-
-.ui.piled.segments:after,
-.ui.piled.segments:before,
-.ui.piled.segment:after,
-.ui.piled.segment:before {
- background-color: #FFFFFF;
- visibility: visible;
- content: '';
- display: block;
- height: 100%;
- left: 0;
- position: absolute;
- width: 100%;
- border: 1px solid rgba(34, 36, 38, 0.15);
- -webkit-box-shadow: '';
- box-shadow: '';
-}
-
-.ui.piled.segments:before,
-.ui.piled.segment:before {
- -webkit-transform: rotate(-1.2deg);
- transform: rotate(-1.2deg);
- top: 0;
- z-index: -2;
-}
-
-.ui.piled.segments:after,
-.ui.piled.segment:after {
- -webkit-transform: rotate(1.2deg);
- transform: rotate(1.2deg);
- top: 0;
- z-index: -1;
-}
-
-/* Piled Attached */
-
-.ui[class*="top attached"].piled.segment {
- margin-top: 3em;
- margin-bottom: 0;
-}
-
-.ui.piled.segment[class*="top attached"]:first-child {
- margin-top: 0;
-}
-
-.ui.piled.segment[class*="bottom attached"] {
- margin-top: 0;
- margin-bottom: 3em;
-}
-
-.ui.piled.segment[class*="bottom attached"]:last-child {
- margin-bottom: 0;
-}
-
-/*-------------------
- Stacked
- --------------------*/
-
-.ui.stacked.segment {
- padding-bottom: 1.4em;
-}
-
-.ui.stacked.segments:before,
-.ui.stacked.segments:after,
-.ui.stacked.segment:before,
-.ui.stacked.segment:after {
- content: '';
- position: absolute;
- bottom: -3px;
- left: 0;
- border-top: 1px solid rgba(34, 36, 38, 0.15);
- background: rgba(0, 0, 0, 0.03);
- width: 100%;
- height: 6px;
- visibility: visible;
-}
-
-.ui.stacked.segments:before,
-.ui.stacked.segment:before {
- display: none;
-}
-
-/* Add additional page */
-
-.ui.tall.stacked.segments:before,
-.ui.tall.stacked.segment:before {
- display: block;
- bottom: 0;
-}
-
-/* Inverted */
-
-.ui.stacked.inverted.segments:before,
-.ui.stacked.inverted.segments:after,
-.ui.stacked.inverted.segment:before,
-.ui.stacked.inverted.segment:after {
- background-color: rgba(0, 0, 0, 0.03);
- border-top: 1px solid rgba(34, 36, 38, 0.35);
-}
-
-/*-------------------
- Padded
- --------------------*/
-
-.ui.padded.segment {
- padding: 1.5em;
-}
-
-.ui[class*="very padded"].segment {
- padding: 3em;
-}
-
-/* Padded vertical */
-
-.ui.padded.segment.vertical.segment,
-.ui[class*="very padded"].vertical.segment {
- padding-left: 0;
- padding-right: 0;
-}
-
-/*-------------------
- Compact
- --------------------*/
-
-.ui.compact.segment {
- display: table;
-}
-
-/* Compact Group */
-
-.ui.compact.segments {
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
-}
-
-.ui.compact.segments .segment,
-.ui.segments .compact.segment {
- display: block;
- -webkit-box-flex: 0;
- -ms-flex: 0 1 auto;
- flex: 0 1 auto;
-}
-
-/*-------------------
- Circular
- --------------------*/
-
-.ui.circular.segment {
- display: table-cell;
- padding: 2em;
- text-align: center;
- vertical-align: middle;
- border-radius: 500em;
-}
-
-/*-------------------
- Raised
- --------------------*/
-
-.ui.raised.raised.segments,
-.ui.raised.raised.segment {
- -webkit-box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-/*******************************
- Groups
- *******************************/
-
-/* Group */
-
-.ui.segments {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- position: relative;
- margin: 1rem 0;
- border: 1px solid rgba(34, 36, 38, 0.15);
- -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
- border-radius: 0.28571429rem;
-}
-
-.ui.segments:first-child {
- margin-top: 0;
-}
-
-.ui.segments:last-child {
- margin-bottom: 0;
-}
-
-/* Nested Segment */
-
-.ui.segments > .segment {
- top: 0;
- bottom: 0;
- border-radius: 0;
- margin: 0;
- width: auto;
- -webkit-box-shadow: none;
- box-shadow: none;
- border: none;
- border-top: 1px solid rgba(34, 36, 38, 0.15);
-}
-
-.ui.segments:not(.horizontal) > .segment:first-child {
- top: 0;
- bottom: 0;
- border-top: none;
- margin-top: 0;
- margin-bottom: 0;
- border-radius: 0.28571429rem 0.28571429rem 0 0;
-}
-
-/* Bottom */
-
-.ui.segments:not(.horizontal) > .segment:last-child {
- top: 0;
- bottom: 0;
- margin-top: 0;
- margin-bottom: 0;
- -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), none;
- box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), none;
- border-radius: 0 0 0.28571429rem 0.28571429rem;
-}
-
-/* Only */
-
-.ui.segments:not(.horizontal) > .segment:only-child {
- border-radius: 0.28571429rem;
-}
-
-/* Nested Group */
-
-.ui.segments > .ui.segments {
- border-top: 1px solid rgba(34, 36, 38, 0.15);
- margin: 1rem 1rem;
-}
-
-.ui.segments > .segments:first-child {
- border-top: none;
-}
-
-.ui.segments > .segment + .segments:not(.horizontal) {
- margin-top: 0;
-}
-
-/* Horizontal Group */
-
-.ui.horizontal.segments {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -ms-flex-direction: row;
- flex-direction: row;
- background-color: transparent;
- padding: 0;
- -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
- margin: 1rem 0;
- border-radius: 0.28571429rem;
- border: 1px solid rgba(34, 36, 38, 0.15);
-}
-
-.ui.stackable.horizontal.segments {
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
-}
-
-/* Nested Horizontal Group */
-
-.ui.segments > .horizontal.segments {
- margin: 0;
- background-color: transparent;
- border-radius: 0;
- border: none;
- -webkit-box-shadow: none;
- box-shadow: none;
- border-top: 1px solid rgba(34, 36, 38, 0.15);
-}
-
-/* Horizontal Segment */
-
-.ui.horizontal.segments:not(.compact) > .segment:not(.compact) {
- -webkit-box-flex: 1;
- flex: 1 1 auto;
- -ms-flex: 1 1 0;
- /* Solves #2550 MS Flex */
-}
-
-.ui.horizontal.segments > .segment {
- margin: 0;
- min-width: 0;
- border-radius: 0;
- border: none;
- -webkit-box-shadow: none;
- box-shadow: none;
- border-left: 1px solid rgba(34, 36, 38, 0.15);
-}
-
-/* Border Fixes */
-
-.ui.segments > .horizontal.segments:first-child {
- border-top: none;
-}
-
-.ui.horizontal.segments:not(.stackable) > .segment:first-child {
- border-left: none;
-}
-
-/*******************************
- States
-*******************************/
-
-/*--------------
- Disabled
- ---------------*/
-
-.ui.disabled.segment {
- opacity: 0.45;
- color: rgba(40, 40, 40, 0.3);
-}
-
-/*--------------
- Loading
- ---------------*/
-
-.ui.loading.segment {
- position: relative;
- cursor: default;
- pointer-events: none;
- text-shadow: none !important;
- -webkit-transition: all 0s linear;
- transition: all 0s linear;
-}
-
-.ui.loading.segment:before {
- position: absolute;
- content: '';
- top: 0;
- left: 0;
- background: rgba(255, 255, 255, 0.8);
- width: 100%;
- height: 100%;
- border-radius: 0.28571429rem;
- z-index: 100;
-}
-
-.ui.loading.segment:after {
- position: absolute;
- content: '';
- top: 50%;
- left: 50%;
- margin: -1.5em 0 0 -1.5em;
- width: 3em;
- height: 3em;
- -webkit-animation: loader 0.6s infinite linear;
- animation: loader 0.6s infinite linear;
- border: 0.2em solid #767676;
- border-radius: 500rem;
- -webkit-box-shadow: 0 0 0 1px transparent;
- box-shadow: 0 0 0 1px transparent;
- visibility: visible;
- z-index: 101;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*-------------------
- Basic
- --------------------*/
-
-.ui.basic.segment,
-.ui.segments .ui.basic.segment,
-.ui.basic.segments {
- background: none transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
- border: none;
- border-radius: 0;
-}
-
-/*-------------------
- Clearing
- --------------------*/
-
-.ui.clearing.segment:after {
- content: "";
- display: block;
- clear: both;
-}
-
-/*-------------------
- Colors
---------------------*/
-
-.ui.red.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #DB2828;
-}
-
-.ui.inverted.red.segment.segment.segment.segment.segment {
- background-color: #DB2828;
- color: #FFFFFF;
-}
-
-.ui.orange.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #F2711C;
-}
-
-.ui.inverted.orange.segment.segment.segment.segment.segment {
- background-color: #F2711C;
- color: #FFFFFF;
-}
-
-.ui.yellow.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #FBBD08;
-}
-
-.ui.inverted.yellow.segment.segment.segment.segment.segment {
- background-color: #FBBD08;
- color: #FFFFFF;
-}
-
-.ui.olive.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #B5CC18;
-}
-
-.ui.inverted.olive.segment.segment.segment.segment.segment {
- background-color: #B5CC18;
- color: #FFFFFF;
-}
-
-.ui.green.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #21BA45;
-}
-
-.ui.inverted.green.segment.segment.segment.segment.segment {
- background-color: #21BA45;
- color: #FFFFFF;
-}
-
-.ui.teal.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #00B5AD;
-}
-
-.ui.inverted.teal.segment.segment.segment.segment.segment {
- background-color: #00B5AD;
- color: #FFFFFF;
-}
-
-.ui.blue.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #2185D0;
-}
-
-.ui.inverted.blue.segment.segment.segment.segment.segment {
- background-color: #2185D0;
- color: #FFFFFF;
-}
-
-.ui.violet.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #6435C9;
-}
-
-.ui.inverted.violet.segment.segment.segment.segment.segment {
- background-color: #6435C9;
- color: #FFFFFF;
-}
-
-.ui.purple.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #A333C8;
-}
-
-.ui.inverted.purple.segment.segment.segment.segment.segment {
- background-color: #A333C8;
- color: #FFFFFF;
-}
-
-.ui.pink.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #E03997;
-}
-
-.ui.inverted.pink.segment.segment.segment.segment.segment {
- background-color: #E03997;
- color: #FFFFFF;
-}
-
-.ui.brown.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #A5673F;
-}
-
-.ui.inverted.brown.segment.segment.segment.segment.segment {
- background-color: #A5673F;
- color: #FFFFFF;
-}
-
-.ui.grey.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #767676;
-}
-
-.ui.inverted.grey.segment.segment.segment.segment.segment {
- background-color: #767676;
- color: #FFFFFF;
-}
-
-.ui.black.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: 2px solid #1B1C1D;
-}
-
-.ui.inverted.black.segment.segment.segment.segment.segment {
- background-color: #1B1C1D;
- color: #FFFFFF;
-}
-
-/*-------------------
- Aligned
- --------------------*/
-
-.ui[class*="left aligned"].segment {
- text-align: left;
-}
-
-.ui[class*="right aligned"].segment {
- text-align: right;
-}
-
-.ui[class*="center aligned"].segment {
- text-align: center;
-}
-
-/*-------------------
- Floated
- --------------------*/
-
-.ui.floated.segment,
-.ui[class*="left floated"].segment {
- float: left;
- margin-right: 1em;
-}
-
-.ui[class*="right floated"].segment {
- float: right;
- margin-left: 1em;
-}
-
-/*-------------------
- Inverted
- --------------------*/
-
-.ui.inverted.segment {
- border: none;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.inverted.segment,
-.ui.primary.inverted.segment {
- background: #1B1C1D;
- color: rgba(255, 255, 255, 0.9);
-}
-
-/* Nested */
-
-.ui.inverted.segment .segment {
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.inverted.segment .inverted.segment {
- color: rgba(255, 255, 255, 0.9);
-}
-
-/* Attached */
-
-.ui.inverted.attached.segment {
- border-color: #555555;
-}
-
-/* Loading */
-
-.ui.inverted.loading.segment {
- color: #FFFFFF;
-}
-
-.ui.inverted.loading.segment:before {
- background: rgba(0, 0, 0, 0.85);
-}
-
-/*-------------------
- Emphasis
---------------------*/
-
-/* Secondary */
-
-.ui.secondary.segment {
- background: #F3F4F5;
- color: rgba(0, 0, 0, 0.6);
-}
-
-.ui.secondary.inverted.segment {
- background: #4c4f52 -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0.2)), to(rgba(255, 255, 255, 0.2)));
- background: #4c4f52 -webkit-linear-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.2) 100%);
- background: #4c4f52 linear-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.2) 100%);
- color: rgba(255, 255, 255, 0.8);
-}
-
-/* Tertiary */
-
-.ui.tertiary.segment {
- background: #DCDDDE;
- color: rgba(0, 0, 0, 0.6);
-}
-
-.ui.tertiary.inverted.segment {
- background: #717579 -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0.35)), to(rgba(255, 255, 255, 0.35)));
- background: #717579 -webkit-linear-gradient(rgba(255, 255, 255, 0.35) 0, rgba(255, 255, 255, 0.35) 100%);
- background: #717579 linear-gradient(rgba(255, 255, 255, 0.35) 0, rgba(255, 255, 255, 0.35) 100%);
- color: rgba(255, 255, 255, 0.8);
-}
-
-/*-------------------
- Attached
- --------------------*/
-
-/* Middle */
-
-.ui.attached.segment {
- top: 0;
- bottom: 0;
- border-radius: 0;
- margin: 0 -1px;
- width: calc(100% + 2px);
- max-width: calc(100% + 2px);
- -webkit-box-shadow: none;
- box-shadow: none;
- border: 1px solid #D4D4D5;
-}
-
-.ui.attached:not(.message) + .ui.attached.segment:not(.top) {
- border-top: none;
-}
-
-/* Top */
-
-.ui[class*="top attached"].segment {
- bottom: 0;
- margin-bottom: 0;
- top: 0;
- margin-top: 1rem;
- border-radius: 0.28571429rem 0.28571429rem 0 0;
-}
-
-.ui.segment[class*="top attached"]:first-child {
- margin-top: 0;
-}
-
-/* Bottom */
-
-.ui.segment[class*="bottom attached"] {
- bottom: 0;
- margin-top: 0;
- top: 0;
- margin-bottom: 1rem;
- -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), none;
- box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), none;
- border-radius: 0 0 0.28571429rem 0.28571429rem;
-}
-
-.ui.segment[class*="bottom attached"]:last-child {
- margin-bottom: 1rem;
-}
-
-/*--------------
- Fitted
- ---------------*/
-
-.ui.fitted.segment:not(.horizontally) {
- padding-top: 0;
- padding-bottom: 0;
-}
-
-.ui.fitted.segment:not(.vertically) {
- padding-left: 0;
- padding-right: 0;
-}
-
-/*-------------------
- Size
---------------------*/
-
-.ui.segments .segment,
-.ui.segment {
- font-size: 1rem;
-}
-
-.ui.mini.segments .segment,
-.ui.mini.segment {
- font-size: 0.78571429rem;
-}
-
-.ui.tiny.segments .segment,
-.ui.tiny.segment {
- font-size: 0.85714286rem;
-}
-
-.ui.small.segments .segment,
-.ui.small.segment {
- font-size: 0.92857143rem;
-}
-
-.ui.large.segments .segment,
-.ui.large.segment {
- font-size: 1.14285714rem;
-}
-
-.ui.big.segments .segment,
-.ui.big.segment {
- font-size: 1.28571429rem;
-}
-
-.ui.huge.segments .segment,
-.ui.huge.segment {
- font-size: 1.42857143rem;
-}
-
-.ui.massive.segments .segment,
-.ui.massive.segment {
- font-size: 1.71428571rem;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Step
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Plural
-*******************************/
-
-.ui.steps {
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -ms-flex-direction: row;
- flex-direction: row;
- -webkit-box-align: stretch;
- -ms-flex-align: stretch;
- align-items: stretch;
- margin: 1em 0;
- background: '';
- -webkit-box-shadow: none;
- box-shadow: none;
- line-height: 1.14285714em;
- border-radius: 0.28571429rem;
- border: 1px solid rgba(34, 36, 38, 0.15);
-}
-
-.ui.steps:not(.unstackable) {
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
-}
-
-/* First Steps */
-
-.ui.steps:first-child {
- margin-top: 0;
-}
-
-/* Last Steps */
-
-.ui.steps:last-child {
- margin-bottom: 0;
-}
-
-/*******************************
- Singular
-*******************************/
-
-.ui.steps .step {
- position: relative;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-flex: 1;
- -ms-flex: 1 0 auto;
- flex: 1 0 auto;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -ms-flex-direction: row;
- flex-direction: row;
- vertical-align: middle;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- margin: 0 0;
- padding: 1.14285714em 2em;
- background: #FFFFFF;
- color: rgba(0, 0, 0, 0.87);
- -webkit-box-shadow: none;
- box-shadow: none;
- border-radius: 0;
- border: none;
- border-right: 1px solid rgba(34, 36, 38, 0.15);
- -webkit-transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease;
- transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease;
- transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease;
- transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, -webkit-box-shadow 0.1s ease;
-}
-
-/* Arrow */
-
-.ui.steps .step:after {
- display: none;
- position: absolute;
- z-index: 2;
- content: '';
- top: 50%;
- right: 0;
- background-color: #FFFFFF;
- width: 1.14285714em;
- height: 1.14285714em;
- border-style: solid;
- border-color: rgba(34, 36, 38, 0.15);
- border-width: 0 1px 1px 0;
- -webkit-transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease;
- transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease;
- transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease;
- transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, -webkit-box-shadow 0.1s ease;
- -webkit-transform: translateY(-50%) translateX(50%) rotate(-45deg);
- transform: translateY(-50%) translateX(50%) rotate(-45deg);
-}
-
-/* First Step */
-
-.ui.steps .step:first-child {
- padding-left: 2em;
- border-radius: 0.28571429rem 0 0 0.28571429rem;
-}
-
-/* Last Step */
-
-.ui.steps .step:last-child {
- border-radius: 0 0.28571429rem 0.28571429rem 0;
- border-right: none;
- margin-right: 0;
-}
-
-/* Only Step */
-
-.ui.steps .step:only-child {
- border-radius: 0.28571429rem;
-}
-
-/*******************************
- Content
-*******************************/
-
-/* Title */
-
-.ui.steps .step .title {
- font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
- font-size: 1.14285714em;
- font-weight: bold;
-}
-
-.ui.steps .step > .title {
- width: 100%;
-}
-
-/* Description */
-
-.ui.steps .step .description {
- font-weight: normal;
- font-size: 0.92857143em;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.steps .step > .description {
- width: 100%;
-}
-
-.ui.steps .step .title ~ .description {
- margin-top: 0.25em;
-}
-
-/* Icon */
-
-.ui.steps .step > .icon {
- line-height: 1;
- font-size: 2.5em;
- margin: 0 1rem 0 0;
-}
-
-.ui.steps .step > .icon,
-.ui.steps .step > .icon ~ .content {
- display: block;
- -webkit-box-flex: 0;
- -ms-flex: 0 1 auto;
- flex: 0 1 auto;
- -ms-flex-item-align: middle;
- align-self: middle;
-}
-
-/* Horizontal Icon */
-
-.ui.steps:not(.vertical) .step > .icon {
- width: auto;
-}
-
-/* Link */
-
-.ui.steps .link.step,
-.ui.steps a.step {
- cursor: pointer;
-}
-
-/*******************************
- Types
-*******************************/
-
-/*--------------
- Ordered
- ---------------*/
-
-.ui.ordered.steps {
- counter-reset: ordered;
-}
-
-.ui.ordered.steps .step:before {
- display: block;
- position: static;
- text-align: center;
- content: counter(ordered);
- -ms-flex-item-align: middle;
- align-self: middle;
- margin-right: 1rem;
- font-size: 2.5em;
- counter-increment: ordered;
- font-family: inherit;
- font-weight: bold;
-}
-
-.ui.ordered.steps .step > * {
- display: block;
- -ms-flex-item-align: middle;
- align-self: middle;
-}
-
-/*--------------
- Vertical
- ---------------*/
-
-.ui.vertical.steps {
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- overflow: visible;
-}
-
-.ui.vertical.steps .step {
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
- border-radius: 0;
- padding: 1.14285714em 2em;
- border-right: none;
- border-bottom: 1px solid rgba(34, 36, 38, 0.15);
-}
-
-.ui.vertical.steps .step:first-child {
- padding: 1.14285714em 2em;
- border-radius: 0.28571429rem 0.28571429rem 0 0;
-}
-
-.ui.vertical.steps .step:last-child {
- border-bottom: none;
- border-radius: 0 0 0.28571429rem 0.28571429rem;
-}
-
-.ui.vertical.steps .step:only-child {
- border-radius: 0.28571429rem;
-}
-
-/* Arrow */
-
-.ui.vertical.steps .step:after {
- top: 50%;
- right: 0;
- border-width: 0 1px 1px 0;
- display: none;
-}
-
-.ui.vertical.steps .active.step:after {
- display: block;
-}
-
-.ui.vertical.steps .step:last-child:after {
- display: none;
-}
-
-.ui.vertical.steps .active.step:last-child:after {
- display: block;
-}
-
-/*---------------
- Responsive
-----------------*/
-
-/* Mobile (Default) */
-
-@media only screen and (max-width: 767.98px) {
- .ui.steps:not(.unstackable) {
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
- overflow: visible;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- }
-
- .ui.steps:not(.unstackable) .step {
- width: 100% !important;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- border-radius: 0;
- padding: 1.14285714em 2em;
- border-right: none;
- border-bottom: 1px solid rgba(34, 36, 38, 0.15);
- }
-
- .ui.steps:not(.unstackable) .step:first-child {
- padding: 1.14285714em 2em;
- border-radius: 0.28571429rem 0.28571429rem 0 0;
- }
-
- .ui.steps:not(.unstackable) .step:last-child {
- border-radius: 0 0 0.28571429rem 0.28571429rem;
- border-bottom: none;
- }
-
- /* Arrow */
-
- .ui.steps:not(.unstackable) .step:after {
- top: unset;
- bottom: -1.14285714em;
- right: 50%;
- -webkit-transform: translateY(-50%) translateX(50%) rotate(45deg);
- transform: translateY(-50%) translateX(50%) rotate(45deg);
- }
-
- .ui.vertical.steps .active.step:last-child:after {
- display: none;
- }
-
- /* Content */
-
- .ui.steps:not(.unstackable) .step .content {
- text-align: center;
- }
-
- /* Icon */
-
- .ui.steps:not(.unstackable) .step > .icon,
- .ui.ordered.steps:not(.unstackable) .step:before {
- margin: 0 0 1rem 0;
- }
-}
-
-/*******************************
- States
-*******************************/
-
-/* Link Hover */
-
-.ui.steps .link.step:hover::after,
-.ui.steps .link.step:hover,
-.ui.steps a.step:hover::after,
-.ui.steps a.step:hover {
- background: #F9FAFB;
- color: rgba(0, 0, 0, 0.8);
-}
-
-/* Link Down */
-
-.ui.steps .link.step:active::after,
-.ui.steps .link.step:active,
-.ui.steps a.step:active::after,
-.ui.steps a.step:active {
- background: #F3F4F5;
- color: rgba(0, 0, 0, 0.9);
-}
-
-/* Active */
-
-.ui.steps .step.active {
- cursor: auto;
- background: #F3F4F5;
-}
-
-.ui.steps .step.active:after {
- background: #F3F4F5;
-}
-
-.ui.steps .step.active .title {
- color: #4183C4;
-}
-
-.ui.ordered.steps .step.active:before,
-.ui.steps .active.step .icon {
- color: rgba(0, 0, 0, 0.85);
-}
-
-/* Active Arrow */
-
-.ui.steps .step:after {
- display: block;
-}
-
-.ui.steps .active.step:after {
- display: block;
-}
-
-.ui.steps .step:last-child:after {
- display: none;
-}
-
-.ui.steps .active.step:last-child:after {
- display: none;
-}
-
-/* Active Hover */
-
-.ui.steps .link.active.step:hover::after,
-.ui.steps .link.active.step:hover,
-.ui.steps a.active.step:hover::after,
-.ui.steps a.active.step:hover {
- cursor: pointer;
- background: #DCDDDE;
- color: rgba(0, 0, 0, 0.87);
-}
-
-/* Completed */
-
-.ui.steps .step.completed > .icon:before,
-.ui.ordered.steps .step.completed:before {
- color: #21BA45;
-}
-
-/* Disabled */
-
-.ui.steps .disabled.step {
- cursor: auto;
- background: #FFFFFF;
- pointer-events: none;
-}
-
-.ui.steps .disabled.step,
-.ui.steps .disabled.step .title,
-.ui.steps .disabled.step .description {
- color: rgba(40, 40, 40, 0.3);
-}
-
-.ui.steps .disabled.step:after {
- background: #FFFFFF;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*--------------
- Stackable
- ---------------*/
-
-/* Tablet Or Below */
-
-@media only screen and (max-width: 991.98px) {
- .ui[class*="tablet stackable"].steps {
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
- overflow: visible;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- }
-
- /* Steps */
-
- .ui[class*="tablet stackable"].steps .step {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- border-radius: 0;
- padding: 1.14285714em 2em;
- border-right: none;
- border-bottom: 1px solid rgba(34, 36, 38, 0.15);
- }
-
- .ui[class*="tablet stackable"].steps .step:first-child {
- padding: 1.14285714em 2em;
- border-radius: 0.28571429rem 0.28571429rem 0 0;
- }
-
- .ui[class*="tablet stackable"].steps .step:last-child {
- border-radius: 0 0 0.28571429rem 0.28571429rem;
- border-bottom: none;
- }
-
- /* Arrow */
-
- .ui[class*="tablet stackable"].steps .step:after {
- top: unset;
- bottom: -1.14285714em;
- right: 50%;
- -webkit-transform: translateY(-50%) translateX(50%) rotate(45deg);
- transform: translateY(-50%) translateX(50%) rotate(45deg);
- }
-
- /* Content */
-
- .ui[class*="tablet stackable"].steps .step .content {
- text-align: center;
- }
-
- /* Icon */
-
- .ui[class*="tablet stackable"].steps .step > .icon,
- .ui[class*="tablet stackable"].ordered.steps .step:before {
- margin: 0 0 1rem 0;
- }
-}
-
-/*--------------
- Fluid
- ---------------*/
-
-/* Fluid */
-
-.ui.fluid.steps {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- width: 100%;
-}
-
-/*--------------
- Attached
- ---------------*/
-
-/* Top */
-
-.ui.attached.steps {
- width: calc(100% + 2px) !important;
- margin: 0 -1px 0;
- max-width: calc(100% + 2px);
- border-radius: 0.28571429rem 0.28571429rem 0 0;
-}
-
-.ui.attached.steps .step:first-child {
- border-radius: 0.28571429rem 0 0 0;
-}
-
-.ui.attached.steps .step:last-child {
- border-radius: 0 0.28571429rem 0 0;
-}
-
-/* Bottom */
-
-.ui.bottom.attached.steps {
- margin: 0 -1px 0;
- border-radius: 0 0 0.28571429rem 0.28571429rem;
-}
-
-.ui.bottom.attached.steps .step:first-child {
- border-radius: 0 0 0 0.28571429rem;
-}
-
-.ui.bottom.attached.steps .step:last-child {
- border-radius: 0 0 0.28571429rem 0;
-}
-
-/*-------------------
- Evenly Divided
---------------------*/
-
-.ui.one.steps,
-.ui.two.steps,
-.ui.three.steps,
-.ui.four.steps,
-.ui.five.steps,
-.ui.six.steps,
-.ui.seven.steps,
-.ui.eight.steps {
- width: 100%;
-}
-
-.ui.one.steps > .step,
-.ui.two.steps > .step,
-.ui.three.steps > .step,
-.ui.four.steps > .step,
-.ui.five.steps > .step,
-.ui.six.steps > .step,
-.ui.seven.steps > .step,
-.ui.eight.steps > .step {
- -ms-flex-wrap: nowrap;
- flex-wrap: nowrap;
-}
-
-.ui.one.steps > .step {
- width: 100%;
-}
-
-.ui.two.steps > .step {
- width: 50%;
-}
-
-.ui.three.steps > .step {
- width: 33.333%;
-}
-
-.ui.four.steps > .step {
- width: 25%;
-}
-
-.ui.five.steps > .step {
- width: 20%;
-}
-
-.ui.six.steps > .step {
- width: 16.666%;
-}
-
-.ui.seven.steps > .step {
- width: 14.285%;
-}
-
-.ui.eight.steps > .step {
- width: 12.5%;
-}
-
-/*-------------------
- Sizes
---------------------*/
-
-.ui.steps .step,
-.ui.step {
- font-size: 1rem;
-}
-
-.ui.mini.steps .step,
-.ui.mini.step {
- font-size: 0.78571429rem;
-}
-
-.ui.tiny.steps .step,
-.ui.tiny.step {
- font-size: 0.85714286rem;
-}
-
-.ui.small.steps .step,
-.ui.small.step {
- font-size: 0.92857143rem;
-}
-
-.ui.large.steps .step,
-.ui.large.step {
- font-size: 1.14285714rem;
-}
-
-.ui.big.steps .step,
-.ui.big.step {
- font-size: 1.28571429rem;
-}
-
-.ui.huge.steps .step,
-.ui.huge.step {
- font-size: 1.42857143rem;
-}
-
-.ui.massive.steps .step,
-.ui.massive.step {
- font-size: 1.71428571rem;
-}
-
-/*--------------
- Inverted
- ---------------*/
-
-.ui.inverted.steps {
- border: 1px solid #555555;
-}
-
-.ui.inverted.steps .step {
- color: rgba(255, 255, 255, 0.9);
- background: #1B1C1D;
- border-color: #555555;
-}
-
-.ui.inverted.steps .step:after {
- background-color: #1B1C1D;
- border-color: #555555;
-}
-
-.ui.inverted.steps .step .description {
- color: rgba(255, 255, 255, 0.9);
-}
-
-/* Active */
-
-.ui.inverted.steps .step.active,
-.ui.inverted.steps .step.active:after {
- background: #333333;
-}
-
-.ui.inverted.ordered.steps .step.active:before,
-.ui.inverted.steps .active.step .icon {
- color: #ffffff;
-}
-
-/* Disabled */
-
-.ui.inverted.steps .disabled.step,
-.ui.inverted.steps .disabled.step:after {
- background: #222222;
-}
-
-.ui.inverted.steps .disabled.step,
-.ui.inverted.steps .disabled.step .title,
-.ui.inverted.steps .disabled.step .description {
- color: rgba(225, 225, 225, 0.3);
-}
-
-/* Link Hover */
-
-.ui.inverted.steps .link.step:hover::after,
-.ui.inverted.steps .link.step:hover,
-.ui.inverted.steps a.step:hover::after,
-.ui.inverted.steps a.step:hover {
- background: #3F3F3F;
- color: #ffffff;
-}
-
-/* Link Down */
-
-.ui.inverted.steps .link.step:active::after,
-.ui.inverted.steps .link.step:active,
-.ui.inverted.steps a.step:active::after,
-.ui.inverted.steps a.step:active {
- background: #444444;
- color: #ffffff;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-@font-face {
- font-family: 'Step';
- src: url(data:application/x-font-ttf;charset=utf-8;;base64,AAEAAAAOAIAAAwBgT1MvMj3hSQEAAADsAAAAVmNtYXDQEhm3AAABRAAAAUpjdnQgBkn/lAAABuwAAAAcZnBnbYoKeDsAAAcIAAAJkWdhc3AAAAAQAAAG5AAAAAhnbHlm32cEdgAAApAAAAC2aGVhZAErPHsAAANIAAAANmhoZWEHUwNNAAADgAAAACRobXR4CykAAAAAA6QAAAAMbG9jYQA4AFsAAAOwAAAACG1heHAApgm8AAADuAAAACBuYW1lzJ0aHAAAA9gAAALNcG9zdK69QJgAAAaoAAAAO3ByZXCSoZr/AAAQnAAAAFYAAQO4AZAABQAIAnoCvAAAAIwCegK8AAAB4AAxAQIAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA6ADoAQNS/2oAWgMLAE8AAAABAAAAAAAAAAAAAwAAAAMAAAAcAAEAAAAAAEQAAwABAAAAHAAEACgAAAAGAAQAAQACAADoAf//AAAAAOgA//8AABgBAAEAAAAAAAAAAAEGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADpAKYABUAHEAZDwEAAQFCAAIBAmoAAQABagAAAGEUFxQDEisBFAcBBiInASY0PwE2Mh8BATYyHwEWA6QP/iAQLBD+6g8PTBAsEKQBbhAsEEwPAhYWEP4gDw8BFhAsEEwQEKUBbxAQTBAAAAH//f+xA18DCwAMABJADwABAQpDAAAACwBEFRMCESsBFA4BIi4CPgEyHgEDWXLG6MhuBnq89Lp+AV51xHR0xOrEdHTEAAAAAAEAAAABAADDeRpdXw889QALA+gAAAAAzzWYjQAAAADPNWBN//3/sQOkAwsAAAAIAAIAAAAAAAAAAQAAA1L/agBaA+gAAP/3A6QAAQAAAAAAAAAAAAAAAAAAAAMD6AAAA+gAAANZAAAAAAAAADgAWwABAAAAAwAWAAEAAAAAAAIABgATAG4AAAAtCZEAAAAAAAAAEgDeAAEAAAAAAAAANQAAAAEAAAAAAAEACAA1AAEAAAAAAAIABwA9AAEAAAAAAAMACABEAAEAAAAAAAQACABMAAEAAAAAAAUACwBUAAEAAAAAAAYACABfAAEAAAAAAAoAKwBnAAEAAAAAAAsAEwCSAAMAAQQJAAAAagClAAMAAQQJAAEAEAEPAAMAAQQJAAIADgEfAAMAAQQJAAMAEAEtAAMAAQQJAAQAEAE9AAMAAQQJAAUAFgFNAAMAAQQJAAYAEAFjAAMAAQQJAAoAVgFzAAMAAQQJAAsAJgHJQ29weXJpZ2h0IChDKSAyMDE0IGJ5IG9yaWdpbmFsIGF1dGhvcnMgQCBmb250ZWxsby5jb21mb250ZWxsb1JlZ3VsYXJmb250ZWxsb2ZvbnRlbGxvVmVyc2lvbiAxLjBmb250ZWxsb0dlbmVyYXRlZCBieSBzdmcydHRmIGZyb20gRm9udGVsbG8gcHJvamVjdC5odHRwOi8vZm9udGVsbG8uY29tAEMAbwBwAHkAcgBpAGcAaAB0ACAAKABDACkAIAAyADAAMQA0ACAAYgB5ACAAbwByAGkAZwBpAG4AYQBsACAAYQB1AHQAaABvAHIAcwAgAEAAIABmAG8AbgB0AGUAbABsAG8ALgBjAG8AbQBmAG8AbgB0AGUAbABsAG8AUgBlAGcAdQBsAGEAcgBmAG8AbgB0AGUAbABsAG8AZgBvAG4AdABlAGwAbABvAFYAZQByAHMAaQBvAG4AIAAxAC4AMABmAG8AbgB0AGUAbABsAG8ARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABzAHYAZwAyAHQAdABmACAAZgByAG8AbQAgAEYAbwBuAHQAZQBsAGwAbwAgAHAAcgBvAGoAZQBjAHQALgBoAHQAdABwADoALwAvAGYAbwBuAHQAZQBsAGwAbwAuAGMAbwBtAAAAAAIAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAQIBAwljaGVja21hcmsGY2lyY2xlAAAAAAEAAf//AA8AAAAAAAAAAAAAAAAAAAAAADIAMgML/7EDC/+xsAAssCBgZi2wASwgZCCwwFCwBCZasARFW1ghIyEbilggsFBQWCGwQFkbILA4UFghsDhZWSCwCkVhZLAoUFghsApFILAwUFghsDBZGyCwwFBYIGYgiophILAKUFhgGyCwIFBYIbAKYBsgsDZQWCGwNmAbYFlZWRuwACtZWSOwAFBYZVlZLbACLCBFILAEJWFkILAFQ1BYsAUjQrAGI0IbISFZsAFgLbADLCMhIyEgZLEFYkIgsAYjQrIKAAIqISCwBkMgiiCKsAArsTAFJYpRWGBQG2FSWVgjWSEgsEBTWLAAKxshsEBZI7AAUFhlWS2wBCywB0MrsgACAENgQi2wBSywByNCIyCwACNCYbCAYrABYLAEKi2wBiwgIEUgsAJFY7ABRWJgRLABYC2wBywgIEUgsAArI7ECBCVgIEWKI2EgZCCwIFBYIbAAG7AwUFiwIBuwQFlZI7AAUFhlWbADJSNhRESwAWAtsAgssQUFRbABYUQtsAkssAFgICCwCUNKsABQWCCwCSNCWbAKQ0qwAFJYILAKI0JZLbAKLCC4BABiILgEAGOKI2GwC0NgIIpgILALI0IjLbALLEtUWLEHAURZJLANZSN4LbAMLEtRWEtTWLEHAURZGyFZJLATZSN4LbANLLEADENVWLEMDEOwAWFCsAorWbAAQ7ACJUKxCQIlQrEKAiVCsAEWIyCwAyVQWLEBAENgsAQlQoqKIIojYbAJKiEjsAFhIIojYbAJKiEbsQEAQ2CwAiVCsAIlYbAJKiFZsAlDR7AKQ0dgsIBiILACRWOwAUViYLEAABMjRLABQ7AAPrIBAQFDYEItsA4ssQAFRVRYALAMI0IgYLABYbUNDQEACwBCQopgsQ0FK7BtKxsiWS2wDyyxAA4rLbAQLLEBDistsBEssQIOKy2wEiyxAw4rLbATLLEEDistsBQssQUOKy2wFSyxBg4rLbAWLLEHDistsBcssQgOKy2wGCyxCQ4rLbAZLLAIK7EABUVUWACwDCNCIGCwAWG1DQ0BAAsAQkKKYLENBSuwbSsbIlktsBossQAZKy2wGyyxARkrLbAcLLECGSstsB0ssQMZKy2wHiyxBBkrLbAfLLEFGSstsCAssQYZKy2wISyxBxkrLbAiLLEIGSstsCMssQkZKy2wJCwgPLABYC2wJSwgYLANYCBDI7ABYEOwAiVhsAFgsCQqIS2wJiywJSuwJSotsCcsICBHICCwAkVjsAFFYmAjYTgjIIpVWCBHICCwAkVjsAFFYmAjYTgbIVktsCgssQAFRVRYALABFrAnKrABFTAbIlktsCkssAgrsQAFRVRYALABFrAnKrABFTAbIlktsCosIDWwAWAtsCssALADRWOwAUVisAArsAJFY7ABRWKwACuwABa0AAAAAABEPiM4sSoBFSotsCwsIDwgRyCwAkVjsAFFYmCwAENhOC2wLSwuFzwtsC4sIDwgRyCwAkVjsAFFYmCwAENhsAFDYzgtsC8ssQIAFiUgLiBHsAAjQrACJUmKikcjRyNhIFhiGyFZsAEjQrIuAQEVFCotsDAssAAWsAQlsAQlRyNHI2GwBkUrZYouIyAgPIo4LbAxLLAAFrAEJbAEJSAuRyNHI2EgsAQjQrAGRSsgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjILAIQyCKI0cjRyNhI0ZgsARDsIBiYCCwACsgiophILACQ2BkI7ADQ2FkUFiwAkNhG7ADQ2BZsAMlsIBiYSMgILAEJiNGYTgbI7AIQ0awAiWwCENHI0cjYWAgsARDsIBiYCMgsAArI7AEQ2CwACuwBSVhsAUlsIBisAQmYSCwBCVgZCOwAyVgZFBYIRsjIVkjICCwBCYjRmE4WS2wMiywABYgICCwBSYgLkcjRyNhIzw4LbAzLLAAFiCwCCNCICAgRiNHsAArI2E4LbA0LLAAFrADJbACJUcjRyNhsABUWC4gPCMhG7ACJbACJUcjRyNhILAFJbAEJUcjRyNhsAYlsAUlSbACJWGwAUVjIyBYYhshWWOwAUViYCMuIyAgPIo4IyFZLbA1LLAAFiCwCEMgLkcjRyNhIGCwIGBmsIBiIyAgPIo4LbA2LCMgLkawAiVGUlggPFkusSYBFCstsDcsIyAuRrACJUZQWCA8WS6xJgEUKy2wOCwjIC5GsAIlRlJYIDxZIyAuRrACJUZQWCA8WS6xJgEUKy2wOSywMCsjIC5GsAIlRlJYIDxZLrEmARQrLbA6LLAxK4ogIDywBCNCijgjIC5GsAIlRlJYIDxZLrEmARQrsARDLrAmKy2wOyywABawBCWwBCYgLkcjRyNhsAZFKyMgPCAuIzixJgEUKy2wPCyxCAQlQrAAFrAEJbAEJSAuRyNHI2EgsAQjQrAGRSsgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjIEewBEOwgGJgILAAKyCKimEgsAJDYGQjsANDYWRQWLACQ2EbsANDYFmwAyWwgGJhsAIlRmE4IyA8IzgbISAgRiNHsAArI2E4IVmxJgEUKy2wPSywMCsusSYBFCstsD4ssDErISMgIDywBCNCIzixJgEUK7AEQy6wJistsD8ssAAVIEewACNCsgABARUUEy6wLCotsEAssAAVIEewACNCsgABARUUEy6wLCotsEEssQABFBOwLSotsEIssC8qLbBDLLAAFkUjIC4gRoojYTixJgEUKy2wRCywCCNCsEMrLbBFLLIAADwrLbBGLLIAATwrLbBHLLIBADwrLbBILLIBATwrLbBJLLIAAD0rLbBKLLIAAT0rLbBLLLIBAD0rLbBMLLIBAT0rLbBNLLIAADkrLbBOLLIAATkrLbBPLLIBADkrLbBQLLIBATkrLbBRLLIAADsrLbBSLLIAATsrLbBTLLIBADsrLbBULLIBATsrLbBVLLIAAD4rLbBWLLIAAT4rLbBXLLIBAD4rLbBYLLIBAT4rLbBZLLIAADorLbBaLLIAATorLbBbLLIBADorLbBcLLIBATorLbBdLLAyKy6xJgEUKy2wXiywMiuwNistsF8ssDIrsDcrLbBgLLAAFrAyK7A4Ky2wYSywMysusSYBFCstsGIssDMrsDYrLbBjLLAzK7A3Ky2wZCywMyuwOCstsGUssDQrLrEmARQrLbBmLLA0K7A2Ky2wZyywNCuwNystsGgssDQrsDgrLbBpLLA1Ky6xJgEUKy2waiywNSuwNistsGsssDUrsDcrLbBsLLA1K7A4Ky2wbSwrsAhlsAMkUHiwARUwLQAAAEu4AMhSWLEBAY5ZuQgACABjILABI0SwAyNwsgQoCUVSRLIKAgcqsQYBRLEkAYhRWLBAiFixBgNEsSYBiFFYuAQAiFixBgFEWVlZWbgB/4WwBI2xBQBEAAA=) format('truetype'), url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAoUAA4AAAAAEPQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABRAAAAEQAAABWPeFJAWNtYXAAAAGIAAAAOgAAAUrQEhm3Y3Z0IAAAAcQAAAAUAAAAHAZJ/5RmcGdtAAAB2AAABPkAAAmRigp4O2dhc3AAAAbUAAAACAAAAAgAAAAQZ2x5ZgAABtwAAACuAAAAtt9nBHZoZWFkAAAHjAAAADUAAAA2ASs8e2hoZWEAAAfEAAAAIAAAACQHUwNNaG10eAAAB+QAAAAMAAAADAspAABsb2NhAAAH8AAAAAgAAAAIADgAW21heHAAAAf4AAAAIAAAACAApgm8bmFtZQAACBgAAAF3AAACzcydGhxwb3N0AAAJkAAAACoAAAA7rr1AmHByZXAAAAm8AAAAVgAAAFaSoZr/eJxjYGTewTiBgZWBg6mKaQ8DA0MPhGZ8wGDIyMTAwMTAysyAFQSkuaYwOLxgeMHIHPQ/iyGKmZvBHyjMCJIDAPe9C2B4nGNgYGBmgGAZBkYGEHAB8hjBfBYGDSDNBqQZGZgYGF4w/v8PUvCCAURLMELVAwEjG8OIBwBk5AavAAB4nGNgQANGDEbM3P83gjAAELQD4XicnVXZdtNWFJU8ZHASOmSgoA7X3DhQ68qEKRgwaSrFdiEdHAitBB2kDHTkncc+62uOQrtWH/m07n09JLR0rbYsls++R1tn2DrnRhwjKn0aiGvUoZKXA6msPZZK90lc13Uvj5UMBnFdthJPSZuonSRKat3sUC7xWOsqWSdYJ+PlIFZPVZ5noAziFB5lSUQbRBuplyZJ4onjJ4kWZxAfJUkgJaMQp9LIUEI1GsRS1aFM6dCr1xNx00DKRqMedVhU90PFJ8c1p9SsA0YqVznCFevVRr4bpwMve5DEOsGzrYcxHnisfpQqkIqR6cg/dkpOlIaBVHHUoVbi6DCTX/eRTCrNQKaMYkWl7oG43f102xYxPXQ6vi5KlUaqurnOKJrt0fGogygP2cbppNzQ2fbw5RlTVKtdcbPtQGYNXErJbHSfRAAdJlLj6QFONZwCqRn1R8XZ588BEslclKo8VTKHegOZMzt7cTHtbiersnCknwcyb3Z2452HQ6dXh3/R+hdM4cxHj+Jifj5C+lBqfiJOJKVGWMzyp4YfcVcgQrkxiAsXyuBThDl0RdrZZl3jtTH2hs/5SqlhPQna6KP4fgr9TiQrHGdRo/VInM1j13Wt3GdQS7W7Fzsyr0OVIu7vCwuuM+eEYZ4WC1VfnvneBTT/Bohn/EDeNIVL+5YpSrRvm6JMu2iKCu0SVKVdNsUU7YoppmnPmmKG9h1TzNKeMzLj/8vc55H7HN7xkJv2XeSmfQ+5ad9HbtoPkJtWITdtHblpLyA3rUZu2lWjOnYEGgZpF1IVQdA0svph3Fab9UDWjDR8aWDyLmLI+upER521tcofxX914gsHcmmip7siF5viLq/bFj483e6rj5pG3bDV+MaR8jAeRnocmtBZ+c3hv+1N3S6a7jKqMugBFUwKwABl7UAC0zrbCaT1mqf48gdgXIZ4zkpDtVSfO4am7+V5X/exOfG+x+3GLrdcd3kJWdYNcmP28N9SZKrrH+UtrVQnR6wrJ49VaxhDKrwour6SlHu0tRu/KKmy8l6U1srnk5CbPYMbQlu27mGwI0xpyiUeXlOlKD3UUo6yQyxvKco84JSLC1qGxLgOdQ9qa8TpoXoYGwshhqG0vRBwSCldFd+0ynfxHqtr2Oj4xRXh6XpyEhGf4ir7UfBU10b96A7avGbdMoMpVaqn+4xPsa/b9lFZaaSOsxe3VAfXNOsaORXTT+Rr4HRvOGjdAz1UfDRBI1U1x+jGKGM0ljXl3wR0MVZ+w2jVYvs93E+dpFWsuUuY7JsT9+C0u/0q+7WcW0bW/dcGvW3kip8jMb8tCvw7B2K3ZA3UO5OBGAvIWdAYxhYmdxiug23EbfY/Jqf/34aFRXJXOxq7eerD1ZNRJXfZ8rjLTXZZ16M2R9VOGvsIjS0PN+bY4XIstsRgQbb+wf8x7gF3aVEC4NDIZZiI2nShnurh6h6rsW04VxIBds2x43QAegAuQd8cu9bzCYD13CPnLsB9cgh2yCH4lByCz8i5BfA5OQRfkEMwIIdgl5w7AA/IIXhIDsEeOQSPyNkE+JIcgq/IIYjJIUjIuQ3wmByCJ+QQfE0OwTdGrk5k/pYH2QD6zqKbQKmdGhzaOGRGrk3Y+zxY9oFFZB9aROqRkesT6lMeLPV7i0j9wSJSfzRyY0L9iQdL/dkiUn+xiNRnxpeZIymvDp7zjg7+BJfqrV4AAAAAAQAB//8AD3icY2BkAALmJUwzGEQZZBwk+RkZGBmdGJgYmbIYgMwsoGSiiLgIs5A2owg7I5uSOqOaiT2jmZE8I5gQY17C/09BQEfg3yt+fh8gvYQxD0j68DOJiQn8U+DnZxQDcQUEljLmCwBpBgbG/3//b2SOZ+Zm4GEQcuAH2sblDLSEm8FFVJhJEGgLH6OSHpMdo5EcI3Nk0bEXJ/LYqvZ82VXHGFd6pKTkyCsQwQAAq+QkqAAAeJxjYGRgYADiw5VSsfH8Nl8ZuJlfAEUYzpvO6IXQCb7///7fyLyEmRvI5WBgAokCAFb/DJAAAAB4nGNgZGBgDvqfxRDF/IKB4f935iUMQBEUwAwAi5YFpgPoAAAD6AAAA1kAAAAAAAAAOABbAAEAAAADABYAAQAAAAAAAgAGABMAbgAAAC0JkQAAAAB4nHWQy2rCQBSG//HSi0JbWui2sypKabxgN4IgWHTTbqS4LTHGJBIzMhkFX6Pv0IfpS/RZ+puMpShNmMx3vjlz5mQAXOMbAvnzxJGzwBmjnAs4Rc9ykf7Zcon8YrmMKt4sn9C/W67gAYHlKm7wwQqidM5ogU/LAlfi0nIBF+LOcpH+0XKJ3LNcxq14tXxC71muYCJSy1Xci6+BWm11FIRG1gZ12W62OnK6lYoqStxYumsTKp3KvpyrxPhxrBxPLfc89oN17Op9uJ8nvk4jlciW09yrkZ/42jX+bFc93QRtY+ZyrtVSDm2GXGm18D3jhMasuo3G3/MwgMIKW2hEvKoQBhI12jrnNppooUOaMkMyM8+KkMBFTONizR1htpIy7nPMGSW0PjNisgOP3+WRH5MC7o9ZRR+tHsYT0u6MKPOSfTns7jBrREqyTDezs9/eU2x4WpvWcNeuS511JTE8qCF5H7u1BY1H72S3Ymi7aPD95/9+AN1fhEsAeJxjYGKAAC4G7ICZgYGRiZGZMzkjNTk7N7Eomy05syg5J5WBAQBE1QZBAABLuADIUlixAQGOWbkIAAgAYyCwASNEsAMjcLIEKAlFUkSyCgIHKrEGAUSxJAGIUViwQIhYsQYDRLEmAYhRWLgEAIhYsQYBRFlZWVm4Af+FsASNsQUARAAA) format('woff');
-}
-
-.ui.steps .step.completed > .icon:before,
-.ui.ordered.steps .step.completed:before {
- font-family: 'Step';
- content: '\e800';
- /* '' */
-}
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Breadcrumb
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Breadcrumb
-*******************************/
-
-.ui.breadcrumb {
- line-height: 1.4285em;
- display: inline-block;
- margin: 0 0;
- vertical-align: middle;
-}
-
-.ui.breadcrumb:first-child {
- margin-top: 0;
-}
-
-.ui.breadcrumb:last-child {
- margin-bottom: 0;
-}
-
-/*******************************
- Content
-*******************************/
-
-/* Divider */
-
-.ui.breadcrumb .divider {
- display: inline-block;
- opacity: 0.7;
- margin: 0 0.21428571rem 0;
- font-size: 0.92857143em;
- color: rgba(0, 0, 0, 0.4);
- vertical-align: baseline;
-}
-
-/* Link */
-
-.ui.breadcrumb a {
- color: #4183C4;
-}
-
-.ui.breadcrumb a:hover {
- color: #1e70bf;
-}
-
-/* Icon Divider */
-
-.ui.breadcrumb .icon.divider {
- font-size: 0.85714286em;
- vertical-align: baseline;
-}
-
-/* Section */
-
-.ui.breadcrumb a.section {
- cursor: pointer;
-}
-
-.ui.breadcrumb .section {
- display: inline-block;
- margin: 0;
- padding: 0;
-}
-
-/* Loose Coupling */
-
-.ui.breadcrumb.segment {
- display: inline-block;
- padding: 0.78571429em 1em;
-}
-
-/* Inverted */
-
-.ui.inverted.breadcrumb {
- color: #DCDDDE;
-}
-
-.ui.inverted.breadcrumb > .active.section {
- color: #FFFFFF;
-}
-
-.ui.inverted.breadcrumb > .divider {
- color: rgba(255, 255, 255, 0.7);
-}
-
-/*******************************
- States
-*******************************/
-
-.ui.breadcrumb .active.section {
- font-weight: bold;
-}
-
-/*******************************
- Variations
-*******************************/
-
-.ui.breadcrumb {
- font-size: 1rem;
-}
-
-.ui.mini.breadcrumb {
- font-size: 0.78571429rem;
-}
-
-.ui.tiny.breadcrumb {
- font-size: 0.85714286rem;
-}
-
-.ui.small.breadcrumb {
- font-size: 0.92857143rem;
-}
-
-.ui.large.breadcrumb {
- font-size: 1.14285714rem;
-}
-
-.ui.big.breadcrumb {
- font-size: 1.28571429rem;
-}
-
-.ui.huge.breadcrumb {
- font-size: 1.42857143rem;
-}
-
-.ui.massive.breadcrumb {
- font-size: 1.71428571rem;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Form
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Elements
-*******************************/
-
-/*--------------------
- Form
----------------------*/
-
-.ui.form {
- position: relative;
- max-width: 100%;
-}
-
-/*--------------------
- Content
----------------------*/
-
-.ui.form > p {
- margin: 1em 0;
-}
-
-/*--------------------
- Field
----------------------*/
-
-.ui.form .field {
- clear: both;
- margin: 0 0 1em;
-}
-
-.ui.form .fields .fields,
-.ui.form .field:last-child,
-.ui.form .fields:last-child .field {
- margin-bottom: 0;
-}
-
-.ui.form .fields .field {
- clear: both;
- margin: 0;
-}
-
-/*--------------------
- Labels
----------------------*/
-
-.ui.form .field > label {
- display: block;
- margin: 0 0 0.28571429rem 0;
- color: rgba(0, 0, 0, 0.87);
- font-size: 0.92857143em;
- font-weight: bold;
- text-transform: none;
-}
-
-/*--------------------
- Standard Inputs
----------------------*/
-
-.ui.form textarea,
-.ui.form input:not([type]),
-.ui.form input[type="date"],
-.ui.form input[type="datetime-local"],
-.ui.form input[type="email"],
-.ui.form input[type="number"],
-.ui.form input[type="password"],
-.ui.form input[type="search"],
-.ui.form input[type="tel"],
-.ui.form input[type="time"],
-.ui.form input[type="text"],
-.ui.form input[type="file"],
-.ui.form input[type="url"] {
- width: 100%;
- vertical-align: top;
-}
-
-/* Set max height on unusual input */
-
-.ui.form ::-webkit-datetime-edit,
-.ui.form ::-webkit-inner-spin-button {
- height: 1.21428571em;
-}
-
-.ui.form input:not([type]),
-.ui.form input[type="date"],
-.ui.form input[type="datetime-local"],
-.ui.form input[type="email"],
-.ui.form input[type="number"],
-.ui.form input[type="password"],
-.ui.form input[type="search"],
-.ui.form input[type="tel"],
-.ui.form input[type="time"],
-.ui.form input[type="text"],
-.ui.form input[type="file"],
-.ui.form input[type="url"] {
- font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
- margin: 0;
- outline: none;
- -webkit-appearance: none;
- -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
- line-height: 1.21428571em;
- padding: 0.67857143em 1em;
- font-size: 1em;
- background: #FFFFFF;
- border: 1px solid rgba(34, 36, 38, 0.15);
- color: rgba(0, 0, 0, 0.87);
- border-radius: 0.28571429rem;
- -webkit-box-shadow: 0 0 0 0 transparent inset;
- box-shadow: 0 0 0 0 transparent inset;
- -webkit-transition: color 0.1s ease, border-color 0.1s ease;
- transition: color 0.1s ease, border-color 0.1s ease;
-}
-
-/* Text Area */
-
-.ui.input textarea,
-.ui.form textarea {
- margin: 0;
- -webkit-appearance: none;
- -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
- padding: 0.78571429em 1em;
- background: #FFFFFF;
- border: 1px solid rgba(34, 36, 38, 0.15);
- outline: none;
- color: rgba(0, 0, 0, 0.87);
- border-radius: 0.28571429rem;
- -webkit-box-shadow: 0 0 0 0 transparent inset;
- box-shadow: 0 0 0 0 transparent inset;
- -webkit-transition: color 0.1s ease, border-color 0.1s ease;
- transition: color 0.1s ease, border-color 0.1s ease;
- font-size: 1em;
- font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
- line-height: 1.2857;
- resize: vertical;
-}
-
-.ui.form textarea:not([rows]) {
- height: 12em;
- min-height: 8em;
- max-height: 24em;
-}
-
-.ui.form textarea,
-.ui.form input[type="checkbox"] {
- vertical-align: top;
-}
-
-/*--------------------
- Checkbox margin
----------------------*/
-
-.ui.form .fields:not(.grouped):not(.inline) .field:not(:only-child) label + .ui.ui.checkbox {
- margin-top: 0.7em;
-}
-
-.ui.form .fields:not(.grouped):not(.inline) .field:not(:only-child) .ui.checkbox {
- margin-top: 2.41428571em;
-}
-
-.ui.form .fields:not(.grouped):not(.inline) .field:not(:only-child) .ui.toggle.checkbox {
- margin-top: 2.21428571em;
-}
-
-.ui.form .fields:not(.grouped):not(.inline) .field:not(:only-child) .ui.slider.checkbox {
- margin-top: 2.61428571em;
-}
-
-.ui.ui.form .field .fields .field:not(:only-child) .ui.checkbox {
- margin-top: 0.6em;
-}
-
-.ui.ui.form .field .fields .field:not(:only-child) .ui.toggle.checkbox {
- margin-top: 0.5em;
-}
-
-.ui.ui.form .field .fields .field:not(:only-child) .ui.slider.checkbox {
- margin-top: 0.7em;
-}
-
-/*--------------------
- Transparent
- ---------------------*/
-
-.ui.form .field .transparent.input:not(.icon) input,
-.ui.form .field input.transparent,
-.ui.form .field textarea.transparent {
- padding: 0.67857143em 1em;
-}
-
-.ui.form .field input.transparent,
-.ui.form .field textarea.transparent {
- border-color: transparent !important;
- background-color: transparent !important;
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
-}
-
-/*--------------------------
- Input w/ attached Button
----------------------------*/
-
-.ui.form input.attached {
- width: auto;
-}
-
-/*--------------------
- Basic Select
----------------------*/
-
-.ui.form select {
- display: block;
- height: auto;
- width: 100%;
- background: #FFFFFF;
- border: 1px solid rgba(34, 36, 38, 0.15);
- border-radius: 0.28571429rem;
- -webkit-box-shadow: 0 0 0 0 transparent inset;
- box-shadow: 0 0 0 0 transparent inset;
- padding: 0.62em 1em;
- color: rgba(0, 0, 0, 0.87);
- -webkit-transition: color 0.1s ease, border-color 0.1s ease;
- transition: color 0.1s ease, border-color 0.1s ease;
-}
-
-/*--------------------
- Dropdown
----------------------*/
-
-/* Block */
-
-.ui.form .field > .selection.dropdown {
- min-width: auto;
- width: 100%;
-}
-
-.ui.form .field > .selection.dropdown > .dropdown.icon {
- float: right;
-}
-
-/* Inline */
-
-.ui.form .inline.fields .field > .selection.dropdown,
-.ui.form .inline.field > .selection.dropdown {
- width: auto;
-}
-
-.ui.form .inline.fields .field > .selection.dropdown > .dropdown.icon,
-.ui.form .inline.field > .selection.dropdown > .dropdown.icon {
- float: none;
-}
-
-/*--------------------
- UI Input
----------------------*/
-
-/* Block */
-
-.ui.form .field .ui.input,
-.ui.form .fields .field .ui.input,
-.ui.form .wide.field .ui.input {
- width: 100%;
-}
-
-/* Inline */
-
-.ui.form .inline.fields .field:not(.wide) .ui.input,
-.ui.form .inline.field:not(.wide) .ui.input {
- width: auto;
- vertical-align: middle;
-}
-
-/* Auto Input */
-
-.ui.form .fields .field .ui.input input,
-.ui.form .field .ui.input input {
- width: auto;
-}
-
-/* Full Width Input */
-
-.ui.form .ten.fields .ui.input input,
-.ui.form .nine.fields .ui.input input,
-.ui.form .eight.fields .ui.input input,
-.ui.form .seven.fields .ui.input input,
-.ui.form .six.fields .ui.input input,
-.ui.form .five.fields .ui.input input,
-.ui.form .four.fields .ui.input input,
-.ui.form .three.fields .ui.input input,
-.ui.form .two.fields .ui.input input,
-.ui.form .wide.field .ui.input input {
- -webkit-box-flex: 1;
- -ms-flex: 1 0 auto;
- flex: 1 0 auto;
- width: 0;
-}
-
-/*--------------------
- Types of Messages
----------------------*/
-
-.ui.form .error.message,
-.ui.form .error.message:empty {
- display: none;
-}
-
-.ui.form .info.message,
-.ui.form .info.message:empty {
- display: none;
-}
-
-.ui.form .success.message,
-.ui.form .success.message:empty {
- display: none;
-}
-
-.ui.form .warning.message,
-.ui.form .warning.message:empty {
- display: none;
-}
-
-/* Assumptions */
-
-.ui.form .message:first-child {
- margin-top: 0;
-}
-
-/*--------------------
- Validation Prompt
----------------------*/
-
-.ui.form .field .prompt.label {
- white-space: normal;
- background: #FFFFFF !important;
- border: 1px solid #E0B4B4 !important;
- color: #9F3A38 !important;
-}
-
-.ui.form .inline.fields .field .prompt,
-.ui.form .inline.field .prompt {
- vertical-align: top;
- margin: -0.25em 0 -0.5em 0.5em;
-}
-
-.ui.form .inline.fields .field .prompt:before,
-.ui.form .inline.field .prompt:before {
- border-width: 0 0 1px 1px;
- bottom: auto;
- right: auto;
- top: 50%;
- left: 0;
-}
-
-/*******************************
- States
-*******************************/
-
-/*--------------------
- Autofilled
----------------------*/
-
-.ui.form .field.field input:-webkit-autofill {
- -webkit-box-shadow: 0 0 0 100px #FFFFF0 inset !important;
- box-shadow: 0 0 0 100px #FFFFF0 inset !important;
- border-color: #E5DFA1 !important;
-}
-
-/* Focus */
-
-.ui.form .field.field input:-webkit-autofill:focus {
- -webkit-box-shadow: 0 0 0 100px #FFFFF0 inset !important;
- box-shadow: 0 0 0 100px #FFFFF0 inset !important;
- border-color: #D5C315 !important;
-}
-
-/*--------------------
- Placeholder
----------------------*/
-
-/* browsers require these rules separate */
-
-.ui.form ::-webkit-input-placeholder {
- color: rgba(191, 191, 191, 0.87);
-}
-
-.ui.form :-ms-input-placeholder {
- color: rgba(191, 191, 191, 0.87) !important;
-}
-
-.ui.form ::-moz-placeholder {
- color: rgba(191, 191, 191, 0.87);
-}
-
-.ui.form :focus::-webkit-input-placeholder {
- color: rgba(115, 115, 115, 0.87);
-}
-
-.ui.form :focus:-ms-input-placeholder {
- color: rgba(115, 115, 115, 0.87) !important;
-}
-
-.ui.form :focus::-moz-placeholder {
- color: rgba(115, 115, 115, 0.87);
-}
-
-/*--------------------
- Focus
----------------------*/
-
-.ui.form input:not([type]):focus,
-.ui.form input[type="date"]:focus,
-.ui.form input[type="datetime-local"]:focus,
-.ui.form input[type="email"]:focus,
-.ui.form input[type="number"]:focus,
-.ui.form input[type="password"]:focus,
-.ui.form input[type="search"]:focus,
-.ui.form input[type="tel"]:focus,
-.ui.form input[type="time"]:focus,
-.ui.form input[type="text"]:focus,
-.ui.form input[type="file"]:focus,
-.ui.form input[type="url"]:focus {
- color: rgba(0, 0, 0, 0.95);
- border-color: #85B7D9;
- border-radius: 0.28571429rem;
- background: #FFFFFF;
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.35) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.35) inset;
-}
-
-.ui.form .ui.action.input:not(.left) input:not([type]):focus,
-.ui.form .ui.action.input:not(.left) input[type="date"]:focus,
-.ui.form .ui.action.input:not(.left) input[type="datetime-local"]:focus,
-.ui.form .ui.action.input:not(.left) input[type="email"]:focus,
-.ui.form .ui.action.input:not(.left) input[type="number"]:focus,
-.ui.form .ui.action.input:not(.left) input[type="password"]:focus,
-.ui.form .ui.action.input:not(.left) input[type="search"]:focus,
-.ui.form .ui.action.input:not(.left) input[type="tel"]:focus,
-.ui.form .ui.action.input:not(.left) input[type="time"]:focus,
-.ui.form .ui.action.input:not(.left) input[type="text"]:focus,
-.ui.form .ui.action.input:not(.left) input[type="file"]:focus,
-.ui.form .ui.action.input:not(.left) input[type="url"]:focus {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
-}
-
-.ui.form .ui.action.input.left input:not([type]),
-.ui.form .ui.action.input.left input[type="date"],
-.ui.form .ui.action.input.left input[type="datetime-local"],
-.ui.form .ui.action.input.left input[type="email"],
-.ui.form .ui.action.input.left input[type="number"],
-.ui.form .ui.action.input.left input[type="password"],
-.ui.form .ui.action.input.left input[type="search"],
-.ui.form .ui.action.input.left input[type="tel"],
-.ui.form .ui.action.input.left input[type="time"],
-.ui.form .ui.action.input.left input[type="text"],
-.ui.form .ui.action.input.left input[type="file"],
-.ui.form .ui.action.input.left input[type="url"] {
- border-bottom-left-radius: 0;
- border-top-left-radius: 0;
-}
-
-.ui.form textarea:focus {
- color: rgba(0, 0, 0, 0.95);
- border-color: #85B7D9;
- border-radius: 0.28571429rem;
- background: #FFFFFF;
- -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.35) inset;
- box-shadow: 0 0 0 0 rgba(34, 36, 38, 0.35) inset;
- -webkit-appearance: none;
-}
-
-/*--------------------
- States
- ---------------------*/
-
-/* On Form */
-
-.ui.form.error .error.message:not(:empty) {
- display: block;
-}
-
-.ui.form.error .compact.error.message:not(:empty) {
- display: inline-block;
-}
-
-.ui.form.error .icon.error.message:not(:empty) {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
-}
-
-/* On Field(s) */
-
-.ui.form .fields.error .error.message:not(:empty),
-.ui.form .field.error .error.message:not(:empty) {
- display: block;
-}
-
-.ui.form .fields.error .compact.error.message:not(:empty),
-.ui.form .field.error .compact.error.message:not(:empty) {
- display: inline-block;
-}
-
-.ui.form .fields.error .icon.error.message:not(:empty),
-.ui.form .field.error .icon.error.message:not(:empty) {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
-}
-
-.ui.ui.form .fields.error .field label,
-.ui.ui.form .field.error label,
-.ui.ui.form .fields.error .field .input,
-.ui.ui.form .field.error .input {
- color: #9F3A38;
-}
-
-.ui.form .fields.error .field .corner.label,
-.ui.form .field.error .corner.label {
- border-color: #9F3A38;
- color: #FFFFFF;
-}
-
-.ui.form .fields.error .field textarea,
-.ui.form .fields.error .field select,
-.ui.form .fields.error .field input:not([type]),
-.ui.form .fields.error .field input[type="date"],
-.ui.form .fields.error .field input[type="datetime-local"],
-.ui.form .fields.error .field input[type="email"],
-.ui.form .fields.error .field input[type="number"],
-.ui.form .fields.error .field input[type="password"],
-.ui.form .fields.error .field input[type="search"],
-.ui.form .fields.error .field input[type="tel"],
-.ui.form .fields.error .field input[type="time"],
-.ui.form .fields.error .field input[type="text"],
-.ui.form .fields.error .field input[type="file"],
-.ui.form .fields.error .field input[type="url"],
-.ui.form .field.error textarea,
-.ui.form .field.error select,
-.ui.form .field.error input:not([type]),
-.ui.form .field.error input[type="date"],
-.ui.form .field.error input[type="datetime-local"],
-.ui.form .field.error input[type="email"],
-.ui.form .field.error input[type="number"],
-.ui.form .field.error input[type="password"],
-.ui.form .field.error input[type="search"],
-.ui.form .field.error input[type="tel"],
-.ui.form .field.error input[type="time"],
-.ui.form .field.error input[type="text"],
-.ui.form .field.error input[type="file"],
-.ui.form .field.error input[type="url"] {
- color: #9F3A38;
- background: #FFF6F6;
- border-color: #E0B4B4;
- border-radius: '';
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.form .field.error textarea:focus,
-.ui.form .field.error select:focus,
-.ui.form .field.error input:not([type]):focus,
-.ui.form .field.error input[type="date"]:focus,
-.ui.form .field.error input[type="datetime-local"]:focus,
-.ui.form .field.error input[type="email"]:focus,
-.ui.form .field.error input[type="number"]:focus,
-.ui.form .field.error input[type="password"]:focus,
-.ui.form .field.error input[type="search"]:focus,
-.ui.form .field.error input[type="tel"]:focus,
-.ui.form .field.error input[type="time"]:focus,
-.ui.form .field.error input[type="text"]:focus,
-.ui.form .field.error input[type="file"]:focus,
-.ui.form .field.error input[type="url"]:focus {
- background: #FFF6F6;
- border-color: #E0B4B4;
- color: #9F3A38;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/* Preserve Native Select Stylings */
-
-.ui.form .field.error select {
- -webkit-appearance: menulist-button;
-}
-
-/*------------------
- Input State
- --------------------*/
-
-/* Transparent */
-
-.ui.form .field.error .transparent.input input,
-.ui.form .field.error .transparent.input textarea,
-.ui.form .field.error input.transparent,
-.ui.form .field.error textarea.transparent {
- background-color: #FFF6F6;
- color: #9F3A38;
-}
-
-/* Autofilled */
-
-.ui.form .error.error input:-webkit-autofill {
- -webkit-box-shadow: 0 0 0 100px #FFFAF0 inset !important;
- box-shadow: 0 0 0 100px #FFFAF0 inset !important;
- border-color: #E0B4B4;
-}
-
-/* Placeholder */
-
-.ui.form .error ::-webkit-input-placeholder {
- color: #e7bdbc;
-}
-
-.ui.form .error :-ms-input-placeholder {
- color: #e7bdbc;
-}
-
-.ui.form .error ::-moz-placeholder {
- color: #e7bdbc;
-}
-
-.ui.form .error :focus::-webkit-input-placeholder {
- color: #da9796;
-}
-
-.ui.form .error :focus:-ms-input-placeholder {
- color: #da9796;
-}
-
-.ui.form .error :focus::-moz-placeholder {
- color: #da9796;
-}
-
-/*------------------
- Dropdown State
- --------------------*/
-
-.ui.form .fields.error .field .ui.dropdown,
-.ui.form .fields.error .field .ui.dropdown .item,
-.ui.form .field.error .ui.dropdown,
-.ui.form .field.error .ui.dropdown .text,
-.ui.form .field.error .ui.dropdown .item {
- background: #FFF6F6;
- color: #9F3A38;
-}
-
-.ui.form .fields.error .field .ui.dropdown,
-.ui.form .field.error .ui.dropdown {
- border-color: #E0B4B4 !important;
-}
-
-.ui.form .fields.error .field .ui.dropdown:hover,
-.ui.form .field.error .ui.dropdown:hover {
- border-color: #E0B4B4 !important;
-}
-
-.ui.form .fields.error .field .ui.dropdown:hover .menu,
-.ui.form .field.error .ui.dropdown:hover .menu {
- border-color: #E0B4B4;
-}
-
-.ui.form .fields.error .field .ui.multiple.selection.dropdown > .label,
-.ui.form .field.error .ui.multiple.selection.dropdown > .label {
- background-color: #EACBCB;
- color: #9F3A38;
-}
-
-/* Hover */
-
-.ui.form .fields.error .field .ui.dropdown .menu .item:hover,
-.ui.form .field.error .ui.dropdown .menu .item:hover {
- background-color: #FBE7E7;
-}
-
-/* Selected */
-
-.ui.form .fields.error .field .ui.dropdown .menu .selected.item,
-.ui.form .field.error .ui.dropdown .menu .selected.item {
- background-color: #FBE7E7;
-}
-
-/* Active */
-
-.ui.form .fields.error .field .ui.dropdown .menu .active.item,
-.ui.form .field.error .ui.dropdown .menu .active.item {
- background-color: #FDCFCF;
-}
-
-/*--------------------
- Checkbox State
- ---------------------*/
-
-.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label,
-.ui.form .field.error .checkbox:not(.toggle):not(.slider) label,
-.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box,
-.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box {
- color: #9F3A38;
-}
-
-.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label:before,
-.ui.form .field.error .checkbox:not(.toggle):not(.slider) label:before,
-.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box:before,
-.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box:before {
- background: #FFF6F6;
- border-color: #E0B4B4;
-}
-
-.ui.form .fields.error .field .checkbox label:after,
-.ui.form .field.error .checkbox label:after,
-.ui.form .fields.error .field .checkbox .box:after,
-.ui.form .field.error .checkbox .box:after {
- color: #9F3A38;
-}
-
-/* On Form */
-
-.ui.form.info .info.message:not(:empty) {
- display: block;
-}
-
-.ui.form.info .compact.info.message:not(:empty) {
- display: inline-block;
-}
-
-.ui.form.info .icon.info.message:not(:empty) {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
-}
-
-/* On Field(s) */
-
-.ui.form .fields.info .info.message:not(:empty),
-.ui.form .field.info .info.message:not(:empty) {
- display: block;
-}
-
-.ui.form .fields.info .compact.info.message:not(:empty),
-.ui.form .field.info .compact.info.message:not(:empty) {
- display: inline-block;
-}
-
-.ui.form .fields.info .icon.info.message:not(:empty),
-.ui.form .field.info .icon.info.message:not(:empty) {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
-}
-
-.ui.ui.form .fields.info .field label,
-.ui.ui.form .field.info label,
-.ui.ui.form .fields.info .field .input,
-.ui.ui.form .field.info .input {
- color: #276F86;
-}
-
-.ui.form .fields.info .field .corner.label,
-.ui.form .field.info .corner.label {
- border-color: #276F86;
- color: #FFFFFF;
-}
-
-.ui.form .fields.info .field textarea,
-.ui.form .fields.info .field select,
-.ui.form .fields.info .field input:not([type]),
-.ui.form .fields.info .field input[type="date"],
-.ui.form .fields.info .field input[type="datetime-local"],
-.ui.form .fields.info .field input[type="email"],
-.ui.form .fields.info .field input[type="number"],
-.ui.form .fields.info .field input[type="password"],
-.ui.form .fields.info .field input[type="search"],
-.ui.form .fields.info .field input[type="tel"],
-.ui.form .fields.info .field input[type="time"],
-.ui.form .fields.info .field input[type="text"],
-.ui.form .fields.info .field input[type="file"],
-.ui.form .fields.info .field input[type="url"],
-.ui.form .field.info textarea,
-.ui.form .field.info select,
-.ui.form .field.info input:not([type]),
-.ui.form .field.info input[type="date"],
-.ui.form .field.info input[type="datetime-local"],
-.ui.form .field.info input[type="email"],
-.ui.form .field.info input[type="number"],
-.ui.form .field.info input[type="password"],
-.ui.form .field.info input[type="search"],
-.ui.form .field.info input[type="tel"],
-.ui.form .field.info input[type="time"],
-.ui.form .field.info input[type="text"],
-.ui.form .field.info input[type="file"],
-.ui.form .field.info input[type="url"] {
- color: #276F86;
- background: #F8FFFF;
- border-color: #A9D5DE;
- border-radius: '';
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.form .field.info textarea:focus,
-.ui.form .field.info select:focus,
-.ui.form .field.info input:not([type]):focus,
-.ui.form .field.info input[type="date"]:focus,
-.ui.form .field.info input[type="datetime-local"]:focus,
-.ui.form .field.info input[type="email"]:focus,
-.ui.form .field.info input[type="number"]:focus,
-.ui.form .field.info input[type="password"]:focus,
-.ui.form .field.info input[type="search"]:focus,
-.ui.form .field.info input[type="tel"]:focus,
-.ui.form .field.info input[type="time"]:focus,
-.ui.form .field.info input[type="text"]:focus,
-.ui.form .field.info input[type="file"]:focus,
-.ui.form .field.info input[type="url"]:focus {
- background: #F8FFFF;
- border-color: #A9D5DE;
- color: #276F86;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/* Preserve Native Select Stylings */
-
-.ui.form .field.info select {
- -webkit-appearance: menulist-button;
-}
-
-/*------------------
- Input State
- --------------------*/
-
-/* Transparent */
-
-.ui.form .field.info .transparent.input input,
-.ui.form .field.info .transparent.input textarea,
-.ui.form .field.info input.transparent,
-.ui.form .field.info textarea.transparent {
- background-color: #F8FFFF;
- color: #276F86;
-}
-
-/* Autofilled */
-
-.ui.form .info.info input:-webkit-autofill {
- -webkit-box-shadow: 0 0 0 100px #F0FAFF inset !important;
- box-shadow: 0 0 0 100px #F0FAFF inset !important;
- border-color: #b3e0e0;
-}
-
-/* Placeholder */
-
-.ui.form .info ::-webkit-input-placeholder {
- color: #98cfe1;
-}
-
-.ui.form .info :-ms-input-placeholder {
- color: #98cfe1;
-}
-
-.ui.form .info ::-moz-placeholder {
- color: #98cfe1;
-}
-
-.ui.form .info :focus::-webkit-input-placeholder {
- color: #70bdd6;
-}
-
-.ui.form .info :focus:-ms-input-placeholder {
- color: #70bdd6;
-}
-
-.ui.form .info :focus::-moz-placeholder {
- color: #70bdd6;
-}
-
-/*------------------
- Dropdown State
- --------------------*/
-
-.ui.form .fields.info .field .ui.dropdown,
-.ui.form .fields.info .field .ui.dropdown .item,
-.ui.form .field.info .ui.dropdown,
-.ui.form .field.info .ui.dropdown .text,
-.ui.form .field.info .ui.dropdown .item {
- background: #F8FFFF;
- color: #276F86;
-}
-
-.ui.form .fields.info .field .ui.dropdown,
-.ui.form .field.info .ui.dropdown {
- border-color: #A9D5DE !important;
-}
-
-.ui.form .fields.info .field .ui.dropdown:hover,
-.ui.form .field.info .ui.dropdown:hover {
- border-color: #A9D5DE !important;
-}
-
-.ui.form .fields.info .field .ui.dropdown:hover .menu,
-.ui.form .field.info .ui.dropdown:hover .menu {
- border-color: #A9D5DE;
-}
-
-.ui.form .fields.info .field .ui.multiple.selection.dropdown > .label,
-.ui.form .field.info .ui.multiple.selection.dropdown > .label {
- background-color: #cce3ea;
- color: #276F86;
-}
-
-/* Hover */
-
-.ui.form .fields.info .field .ui.dropdown .menu .item:hover,
-.ui.form .field.info .ui.dropdown .menu .item:hover {
- background-color: #e9f2fb;
-}
-
-/* Selected */
-
-.ui.form .fields.info .field .ui.dropdown .menu .selected.item,
-.ui.form .field.info .ui.dropdown .menu .selected.item {
- background-color: #e9f2fb;
-}
-
-/* Active */
-
-.ui.form .fields.info .field .ui.dropdown .menu .active.item,
-.ui.form .field.info .ui.dropdown .menu .active.item {
- background-color: #cef1fd;
-}
-
-/*--------------------
- Checkbox State
- ---------------------*/
-
-.ui.form .fields.info .field .checkbox:not(.toggle):not(.slider) label,
-.ui.form .field.info .checkbox:not(.toggle):not(.slider) label,
-.ui.form .fields.info .field .checkbox:not(.toggle):not(.slider) .box,
-.ui.form .field.info .checkbox:not(.toggle):not(.slider) .box {
- color: #276F86;
-}
-
-.ui.form .fields.info .field .checkbox:not(.toggle):not(.slider) label:before,
-.ui.form .field.info .checkbox:not(.toggle):not(.slider) label:before,
-.ui.form .fields.info .field .checkbox:not(.toggle):not(.slider) .box:before,
-.ui.form .field.info .checkbox:not(.toggle):not(.slider) .box:before {
- background: #F8FFFF;
- border-color: #A9D5DE;
-}
-
-.ui.form .fields.info .field .checkbox label:after,
-.ui.form .field.info .checkbox label:after,
-.ui.form .fields.info .field .checkbox .box:after,
-.ui.form .field.info .checkbox .box:after {
- color: #276F86;
-}
-
-/* On Form */
-
-.ui.form.success .success.message:not(:empty) {
- display: block;
-}
-
-.ui.form.success .compact.success.message:not(:empty) {
- display: inline-block;
-}
-
-.ui.form.success .icon.success.message:not(:empty) {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
-}
-
-/* On Field(s) */
-
-.ui.form .fields.success .success.message:not(:empty),
-.ui.form .field.success .success.message:not(:empty) {
- display: block;
-}
-
-.ui.form .fields.success .compact.success.message:not(:empty),
-.ui.form .field.success .compact.success.message:not(:empty) {
- display: inline-block;
-}
-
-.ui.form .fields.success .icon.success.message:not(:empty),
-.ui.form .field.success .icon.success.message:not(:empty) {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
-}
-
-.ui.ui.form .fields.success .field label,
-.ui.ui.form .field.success label,
-.ui.ui.form .fields.success .field .input,
-.ui.ui.form .field.success .input {
- color: #2C662D;
-}
-
-.ui.form .fields.success .field .corner.label,
-.ui.form .field.success .corner.label {
- border-color: #2C662D;
- color: #FFFFFF;
-}
-
-.ui.form .fields.success .field textarea,
-.ui.form .fields.success .field select,
-.ui.form .fields.success .field input:not([type]),
-.ui.form .fields.success .field input[type="date"],
-.ui.form .fields.success .field input[type="datetime-local"],
-.ui.form .fields.success .field input[type="email"],
-.ui.form .fields.success .field input[type="number"],
-.ui.form .fields.success .field input[type="password"],
-.ui.form .fields.success .field input[type="search"],
-.ui.form .fields.success .field input[type="tel"],
-.ui.form .fields.success .field input[type="time"],
-.ui.form .fields.success .field input[type="text"],
-.ui.form .fields.success .field input[type="file"],
-.ui.form .fields.success .field input[type="url"],
-.ui.form .field.success textarea,
-.ui.form .field.success select,
-.ui.form .field.success input:not([type]),
-.ui.form .field.success input[type="date"],
-.ui.form .field.success input[type="datetime-local"],
-.ui.form .field.success input[type="email"],
-.ui.form .field.success input[type="number"],
-.ui.form .field.success input[type="password"],
-.ui.form .field.success input[type="search"],
-.ui.form .field.success input[type="tel"],
-.ui.form .field.success input[type="time"],
-.ui.form .field.success input[type="text"],
-.ui.form .field.success input[type="file"],
-.ui.form .field.success input[type="url"] {
- color: #2C662D;
- background: #FCFFF5;
- border-color: #A3C293;
- border-radius: '';
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.form .field.success textarea:focus,
-.ui.form .field.success select:focus,
-.ui.form .field.success input:not([type]):focus,
-.ui.form .field.success input[type="date"]:focus,
-.ui.form .field.success input[type="datetime-local"]:focus,
-.ui.form .field.success input[type="email"]:focus,
-.ui.form .field.success input[type="number"]:focus,
-.ui.form .field.success input[type="password"]:focus,
-.ui.form .field.success input[type="search"]:focus,
-.ui.form .field.success input[type="tel"]:focus,
-.ui.form .field.success input[type="time"]:focus,
-.ui.form .field.success input[type="text"]:focus,
-.ui.form .field.success input[type="file"]:focus,
-.ui.form .field.success input[type="url"]:focus {
- background: #FCFFF5;
- border-color: #A3C293;
- color: #2C662D;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/* Preserve Native Select Stylings */
-
-.ui.form .field.success select {
- -webkit-appearance: menulist-button;
-}
-
-/*------------------
- Input State
- --------------------*/
-
-/* Transparent */
-
-.ui.form .field.success .transparent.input input,
-.ui.form .field.success .transparent.input textarea,
-.ui.form .field.success input.transparent,
-.ui.form .field.success textarea.transparent {
- background-color: #FCFFF5;
- color: #2C662D;
-}
-
-/* Autofilled */
-
-.ui.form .success.success input:-webkit-autofill {
- -webkit-box-shadow: 0 0 0 100px #F0FFF0 inset !important;
- box-shadow: 0 0 0 100px #F0FFF0 inset !important;
- border-color: #bee0b3;
-}
-
-/* Placeholder */
-
-.ui.form .success ::-webkit-input-placeholder {
- color: #8fcf90;
-}
-
-.ui.form .success :-ms-input-placeholder {
- color: #8fcf90;
-}
-
-.ui.form .success ::-moz-placeholder {
- color: #8fcf90;
-}
-
-.ui.form .success :focus::-webkit-input-placeholder {
- color: #6cbf6d;
-}
-
-.ui.form .success :focus:-ms-input-placeholder {
- color: #6cbf6d;
-}
-
-.ui.form .success :focus::-moz-placeholder {
- color: #6cbf6d;
-}
-
-/*------------------
- Dropdown State
- --------------------*/
-
-.ui.form .fields.success .field .ui.dropdown,
-.ui.form .fields.success .field .ui.dropdown .item,
-.ui.form .field.success .ui.dropdown,
-.ui.form .field.success .ui.dropdown .text,
-.ui.form .field.success .ui.dropdown .item {
- background: #FCFFF5;
- color: #2C662D;
-}
-
-.ui.form .fields.success .field .ui.dropdown,
-.ui.form .field.success .ui.dropdown {
- border-color: #A3C293 !important;
-}
-
-.ui.form .fields.success .field .ui.dropdown:hover,
-.ui.form .field.success .ui.dropdown:hover {
- border-color: #A3C293 !important;
-}
-
-.ui.form .fields.success .field .ui.dropdown:hover .menu,
-.ui.form .field.success .ui.dropdown:hover .menu {
- border-color: #A3C293;
-}
-
-.ui.form .fields.success .field .ui.multiple.selection.dropdown > .label,
-.ui.form .field.success .ui.multiple.selection.dropdown > .label {
- background-color: #cceacc;
- color: #2C662D;
-}
-
-/* Hover */
-
-.ui.form .fields.success .field .ui.dropdown .menu .item:hover,
-.ui.form .field.success .ui.dropdown .menu .item:hover {
- background-color: #e9fbe9;
-}
-
-/* Selected */
-
-.ui.form .fields.success .field .ui.dropdown .menu .selected.item,
-.ui.form .field.success .ui.dropdown .menu .selected.item {
- background-color: #e9fbe9;
-}
-
-/* Active */
-
-.ui.form .fields.success .field .ui.dropdown .menu .active.item,
-.ui.form .field.success .ui.dropdown .menu .active.item {
- background-color: #dafdce;
-}
-
-/*--------------------
- Checkbox State
- ---------------------*/
-
-.ui.form .fields.success .field .checkbox:not(.toggle):not(.slider) label,
-.ui.form .field.success .checkbox:not(.toggle):not(.slider) label,
-.ui.form .fields.success .field .checkbox:not(.toggle):not(.slider) .box,
-.ui.form .field.success .checkbox:not(.toggle):not(.slider) .box {
- color: #2C662D;
-}
-
-.ui.form .fields.success .field .checkbox:not(.toggle):not(.slider) label:before,
-.ui.form .field.success .checkbox:not(.toggle):not(.slider) label:before,
-.ui.form .fields.success .field .checkbox:not(.toggle):not(.slider) .box:before,
-.ui.form .field.success .checkbox:not(.toggle):not(.slider) .box:before {
- background: #FCFFF5;
- border-color: #A3C293;
-}
-
-.ui.form .fields.success .field .checkbox label:after,
-.ui.form .field.success .checkbox label:after,
-.ui.form .fields.success .field .checkbox .box:after,
-.ui.form .field.success .checkbox .box:after {
- color: #2C662D;
-}
-
-/* On Form */
-
-.ui.form.warning .warning.message:not(:empty) {
- display: block;
-}
-
-.ui.form.warning .compact.warning.message:not(:empty) {
- display: inline-block;
-}
-
-.ui.form.warning .icon.warning.message:not(:empty) {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
-}
-
-/* On Field(s) */
-
-.ui.form .fields.warning .warning.message:not(:empty),
-.ui.form .field.warning .warning.message:not(:empty) {
- display: block;
-}
-
-.ui.form .fields.warning .compact.warning.message:not(:empty),
-.ui.form .field.warning .compact.warning.message:not(:empty) {
- display: inline-block;
-}
-
-.ui.form .fields.warning .icon.warning.message:not(:empty),
-.ui.form .field.warning .icon.warning.message:not(:empty) {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
-}
-
-.ui.ui.form .fields.warning .field label,
-.ui.ui.form .field.warning label,
-.ui.ui.form .fields.warning .field .input,
-.ui.ui.form .field.warning .input {
- color: #573A08;
-}
-
-.ui.form .fields.warning .field .corner.label,
-.ui.form .field.warning .corner.label {
- border-color: #573A08;
- color: #FFFFFF;
-}
-
-.ui.form .fields.warning .field textarea,
-.ui.form .fields.warning .field select,
-.ui.form .fields.warning .field input:not([type]),
-.ui.form .fields.warning .field input[type="date"],
-.ui.form .fields.warning .field input[type="datetime-local"],
-.ui.form .fields.warning .field input[type="email"],
-.ui.form .fields.warning .field input[type="number"],
-.ui.form .fields.warning .field input[type="password"],
-.ui.form .fields.warning .field input[type="search"],
-.ui.form .fields.warning .field input[type="tel"],
-.ui.form .fields.warning .field input[type="time"],
-.ui.form .fields.warning .field input[type="text"],
-.ui.form .fields.warning .field input[type="file"],
-.ui.form .fields.warning .field input[type="url"],
-.ui.form .field.warning textarea,
-.ui.form .field.warning select,
-.ui.form .field.warning input:not([type]),
-.ui.form .field.warning input[type="date"],
-.ui.form .field.warning input[type="datetime-local"],
-.ui.form .field.warning input[type="email"],
-.ui.form .field.warning input[type="number"],
-.ui.form .field.warning input[type="password"],
-.ui.form .field.warning input[type="search"],
-.ui.form .field.warning input[type="tel"],
-.ui.form .field.warning input[type="time"],
-.ui.form .field.warning input[type="text"],
-.ui.form .field.warning input[type="file"],
-.ui.form .field.warning input[type="url"] {
- color: #573A08;
- background: #FFFAF3;
- border-color: #C9BA9B;
- border-radius: '';
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.form .field.warning textarea:focus,
-.ui.form .field.warning select:focus,
-.ui.form .field.warning input:not([type]):focus,
-.ui.form .field.warning input[type="date"]:focus,
-.ui.form .field.warning input[type="datetime-local"]:focus,
-.ui.form .field.warning input[type="email"]:focus,
-.ui.form .field.warning input[type="number"]:focus,
-.ui.form .field.warning input[type="password"]:focus,
-.ui.form .field.warning input[type="search"]:focus,
-.ui.form .field.warning input[type="tel"]:focus,
-.ui.form .field.warning input[type="time"]:focus,
-.ui.form .field.warning input[type="text"]:focus,
-.ui.form .field.warning input[type="file"]:focus,
-.ui.form .field.warning input[type="url"]:focus {
- background: #FFFAF3;
- border-color: #C9BA9B;
- color: #573A08;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/* Preserve Native Select Stylings */
-
-.ui.form .field.warning select {
- -webkit-appearance: menulist-button;
-}
-
-/*------------------
- Input State
- --------------------*/
-
-/* Transparent */
-
-.ui.form .field.warning .transparent.input input,
-.ui.form .field.warning .transparent.input textarea,
-.ui.form .field.warning input.transparent,
-.ui.form .field.warning textarea.transparent {
- background-color: #FFFAF3;
- color: #573A08;
-}
-
-/* Autofilled */
-
-.ui.form .warning.warning input:-webkit-autofill {
- -webkit-box-shadow: 0 0 0 100px #FFFFe0 inset !important;
- box-shadow: 0 0 0 100px #FFFFe0 inset !important;
- border-color: #e0e0b3;
-}
-
-/* Placeholder */
-
-.ui.form .warning ::-webkit-input-placeholder {
- color: #edad3e;
-}
-
-.ui.form .warning :-ms-input-placeholder {
- color: #edad3e;
-}
-
-.ui.form .warning ::-moz-placeholder {
- color: #edad3e;
-}
-
-.ui.form .warning :focus::-webkit-input-placeholder {
- color: #e39715;
-}
-
-.ui.form .warning :focus:-ms-input-placeholder {
- color: #e39715;
-}
-
-.ui.form .warning :focus::-moz-placeholder {
- color: #e39715;
-}
-
-/*------------------
- Dropdown State
- --------------------*/
-
-.ui.form .fields.warning .field .ui.dropdown,
-.ui.form .fields.warning .field .ui.dropdown .item,
-.ui.form .field.warning .ui.dropdown,
-.ui.form .field.warning .ui.dropdown .text,
-.ui.form .field.warning .ui.dropdown .item {
- background: #FFFAF3;
- color: #573A08;
-}
-
-.ui.form .fields.warning .field .ui.dropdown,
-.ui.form .field.warning .ui.dropdown {
- border-color: #C9BA9B !important;
-}
-
-.ui.form .fields.warning .field .ui.dropdown:hover,
-.ui.form .field.warning .ui.dropdown:hover {
- border-color: #C9BA9B !important;
-}
-
-.ui.form .fields.warning .field .ui.dropdown:hover .menu,
-.ui.form .field.warning .ui.dropdown:hover .menu {
- border-color: #C9BA9B;
-}
-
-.ui.form .fields.warning .field .ui.multiple.selection.dropdown > .label,
-.ui.form .field.warning .ui.multiple.selection.dropdown > .label {
- background-color: #eaeacc;
- color: #573A08;
-}
-
-/* Hover */
-
-.ui.form .fields.warning .field .ui.dropdown .menu .item:hover,
-.ui.form .field.warning .ui.dropdown .menu .item:hover {
- background-color: #fbfbe9;
-}
-
-/* Selected */
-
-.ui.form .fields.warning .field .ui.dropdown .menu .selected.item,
-.ui.form .field.warning .ui.dropdown .menu .selected.item {
- background-color: #fbfbe9;
-}
-
-/* Active */
-
-.ui.form .fields.warning .field .ui.dropdown .menu .active.item,
-.ui.form .field.warning .ui.dropdown .menu .active.item {
- background-color: #fdfdce;
-}
-
-/*--------------------
- Checkbox State
- ---------------------*/
-
-.ui.form .fields.warning .field .checkbox:not(.toggle):not(.slider) label,
-.ui.form .field.warning .checkbox:not(.toggle):not(.slider) label,
-.ui.form .fields.warning .field .checkbox:not(.toggle):not(.slider) .box,
-.ui.form .field.warning .checkbox:not(.toggle):not(.slider) .box {
- color: #573A08;
-}
-
-.ui.form .fields.warning .field .checkbox:not(.toggle):not(.slider) label:before,
-.ui.form .field.warning .checkbox:not(.toggle):not(.slider) label:before,
-.ui.form .fields.warning .field .checkbox:not(.toggle):not(.slider) .box:before,
-.ui.form .field.warning .checkbox:not(.toggle):not(.slider) .box:before {
- background: #FFFAF3;
- border-color: #C9BA9B;
-}
-
-.ui.form .fields.warning .field .checkbox label:after,
-.ui.form .field.warning .checkbox label:after,
-.ui.form .fields.warning .field .checkbox .box:after,
-.ui.form .field.warning .checkbox .box:after {
- color: #573A08;
-}
-
-/*--------------------
- Disabled
- ---------------------*/
-
-.ui.form .disabled.fields .field,
-.ui.form .disabled.field,
-.ui.form .field :disabled {
- pointer-events: none;
- opacity: 0.45;
-}
-
-.ui.form .field.disabled > label,
-.ui.form .fields.disabled > label {
- opacity: 0.45;
-}
-
-.ui.form .field.disabled :disabled {
- opacity: 1;
-}
-
-/*--------------
- Loading
- ---------------*/
-
-.ui.loading.form {
- position: relative;
- cursor: default;
- pointer-events: none;
-}
-
-.ui.loading.form:before {
- position: absolute;
- content: '';
- top: 0;
- left: 0;
- background: rgba(255, 255, 255, 0.8);
- width: 100%;
- height: 100%;
- z-index: 100;
-}
-
-.ui.loading.form.segments:before {
- border-radius: 0.28571429rem;
-}
-
-.ui.loading.form:after {
- position: absolute;
- content: '';
- top: 50%;
- left: 50%;
- margin: -1.5em 0 0 -1.5em;
- width: 3em;
- height: 3em;
- -webkit-animation: loader 0.6s infinite linear;
- animation: loader 0.6s infinite linear;
- border: 0.2em solid #767676;
- border-radius: 500rem;
- -webkit-box-shadow: 0 0 0 1px transparent;
- box-shadow: 0 0 0 1px transparent;
- visibility: visible;
- z-index: 101;
-}
-
-/*******************************
- Element Types
-*******************************/
-
-/*--------------------
- Required Field
- ---------------------*/
-
-.ui.form .required.fields:not(.grouped) > .field > label:after,
-.ui.form .required.fields.grouped > label:after,
-.ui.form .required.field > label:after,
-.ui.form .required.fields:not(.grouped) > .field > .checkbox:after,
-.ui.form .required.field > .checkbox:after,
-.ui.form label.required:after {
- margin: -0.2em 0 0 0.2em;
- content: '*';
- color: #DB2828;
-}
-
-.ui.form .required.fields:not(.grouped) > .field > label:after,
-.ui.form .required.fields.grouped > label:after,
-.ui.form .required.field > label:after,
-.ui.form label.required:after {
- display: inline-block;
- vertical-align: top;
-}
-
-.ui.form .required.fields:not(.grouped) > .field > .checkbox:after,
-.ui.form .required.field > .checkbox:after {
- position: absolute;
- top: 0;
- left: 100%;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*--------------------
- Inverted Colors
- ---------------------*/
-
-.ui.inverted.form label,
-.ui.form .inverted.segment label,
-.ui.form .inverted.segment .ui.checkbox label,
-.ui.form .inverted.segment .ui.checkbox .box,
-.ui.inverted.form .ui.checkbox label,
-.ui.inverted.form .ui.checkbox .box,
-.ui.inverted.form .inline.fields > label,
-.ui.inverted.form .inline.fields .field > label,
-.ui.inverted.form .inline.fields .field > p,
-.ui.inverted.form .inline.field > label,
-.ui.inverted.form .inline.field > p {
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.loading.form {
- color: #FFFFFF;
-}
-
-.ui.inverted.loading.form:before {
- background: rgba(0, 0, 0, 0.85);
-}
-
-/* Inverted Field */
-
-.ui.inverted.form input:not([type]),
-.ui.inverted.form input[type="date"],
-.ui.inverted.form input[type="datetime-local"],
-.ui.inverted.form input[type="email"],
-.ui.inverted.form input[type="number"],
-.ui.inverted.form input[type="password"],
-.ui.inverted.form input[type="search"],
-.ui.inverted.form input[type="tel"],
-.ui.inverted.form input[type="time"],
-.ui.inverted.form input[type="text"],
-.ui.inverted.form input[type="file"],
-.ui.inverted.form input[type="url"] {
- background: #FFFFFF;
- border-color: rgba(255, 255, 255, 0.1);
- color: rgba(0, 0, 0, 0.87);
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/*--------------------
- Field Groups
- ---------------------*/
-
-/* Grouped Vertically */
-
-.ui.form .grouped.fields {
- display: block;
- margin: 0 0 1em;
-}
-
-.ui.form .grouped.fields:last-child {
- margin-bottom: 0;
-}
-
-.ui.form .grouped.fields > label {
- margin: 0 0 0.28571429rem 0;
- color: rgba(0, 0, 0, 0.87);
- font-size: 0.92857143em;
- font-weight: bold;
- text-transform: none;
-}
-
-.ui.form .grouped.fields .field,
-.ui.form .grouped.inline.fields .field {
- display: block;
- margin: 0.5em 0;
- padding: 0;
-}
-
-/*--------------------
- Fields
----------------------*/
-
-/* Split fields */
-
-.ui.form .fields {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -ms-flex-direction: row;
- flex-direction: row;
- margin: 0 -0.5em 1em;
-}
-
-.ui.form .fields > .field {
- -webkit-box-flex: 0;
- -ms-flex: 0 1 auto;
- flex: 0 1 auto;
- padding-left: 0.5em;
- padding-right: 0.5em;
-}
-
-.ui.form .fields > .field:first-child {
- border-left: none;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/* Other Combinations */
-
-.ui.form .two.fields > .fields,
-.ui.form .two.fields > .field {
- width: 50%;
-}
-
-.ui.form .three.fields > .fields,
-.ui.form .three.fields > .field {
- width: 33.33333333%;
-}
-
-.ui.form .four.fields > .fields,
-.ui.form .four.fields > .field {
- width: 25%;
-}
-
-.ui.form .five.fields > .fields,
-.ui.form .five.fields > .field {
- width: 20%;
-}
-
-.ui.form .six.fields > .fields,
-.ui.form .six.fields > .field {
- width: 16.66666667%;
-}
-
-.ui.form .seven.fields > .fields,
-.ui.form .seven.fields > .field {
- width: 14.28571429%;
-}
-
-.ui.form .eight.fields > .fields,
-.ui.form .eight.fields > .field {
- width: 12.5%;
-}
-
-.ui.form .nine.fields > .fields,
-.ui.form .nine.fields > .field {
- width: 11.11111111%;
-}
-
-.ui.form .ten.fields > .fields,
-.ui.form .ten.fields > .field {
- width: 10%;
-}
-
-/* Swap to full width on mobile */
-
-@media only screen and (max-width: 767.98px) {
- .ui.form .fields {
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- }
-
- .ui[class*="equal width"].form:not(.unstackable) .fields > .field,
- .ui.form:not(.unstackable) [class*="equal width"].fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .two.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .two.fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .three.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .three.fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .four.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .four.fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .five.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .five.fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .six.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .six.fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .seven.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .seven.fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .eight.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .eight.fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .nine.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .nine.fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .ten.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .ten.fields:not(.unstackable) > .field {
- width: 100% !important;
- margin: 0 0 1em;
- }
-}
-
-/* Sizing Combinations */
-
-.ui.form .fields .wide.field {
- width: 6.25%;
- padding-left: 0.5em;
- padding-right: 0.5em;
-}
-
-.ui.form .one.wide.field {
- width: 6.25% !important;
-}
-
-.ui.form .two.wide.field {
- width: 12.5% !important;
-}
-
-.ui.form .three.wide.field {
- width: 18.75% !important;
-}
-
-.ui.form .four.wide.field {
- width: 25% !important;
-}
-
-.ui.form .five.wide.field {
- width: 31.25% !important;
-}
-
-.ui.form .six.wide.field {
- width: 37.5% !important;
-}
-
-.ui.form .seven.wide.field {
- width: 43.75% !important;
-}
-
-.ui.form .eight.wide.field {
- width: 50% !important;
-}
-
-.ui.form .nine.wide.field {
- width: 56.25% !important;
-}
-
-.ui.form .ten.wide.field {
- width: 62.5% !important;
-}
-
-.ui.form .eleven.wide.field {
- width: 68.75% !important;
-}
-
-.ui.form .twelve.wide.field {
- width: 75% !important;
-}
-
-.ui.form .thirteen.wide.field {
- width: 81.25% !important;
-}
-
-.ui.form .fourteen.wide.field {
- width: 87.5% !important;
-}
-
-.ui.form .fifteen.wide.field {
- width: 93.75% !important;
-}
-
-.ui.form .sixteen.wide.field {
- width: 100% !important;
-}
-
-/* Swap to full width on mobile */
-
-@media only screen and (max-width: 767.98px) {
- .ui.form:not(.unstackable) .two.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .two.fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .three.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .three.fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .four.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .four.fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .five.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .five.fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .two.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .three.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .four.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .five.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .six.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .seven.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .eight.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .nine.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .ten.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .eleven.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .twelve.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .thirteen.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .fourteen.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .fifteen.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .sixteen.wide.field {
- width: 100% !important;
- }
-
- .ui.form .fields {
- margin-bottom: 0;
- }
-}
-
-/*--------------------
- Equal Width
----------------------*/
-
-.ui[class*="equal width"].form .fields > .field,
-.ui.form [class*="equal width"].fields > .field {
- width: 100%;
- -webkit-box-flex: 1;
- -ms-flex: 1 1 auto;
- flex: 1 1 auto;
-}
-
-/*--------------------
- Inline Fields
- ---------------------*/
-
-.ui.form .inline.fields {
- margin: 0 0 1em;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
-}
-
-.ui.form .inline.fields .field {
- margin: 0;
- padding: 0 1em 0 0;
-}
-
-/* Inline Label */
-
-.ui.form .inline.fields > label,
-.ui.form .inline.fields .field > label,
-.ui.form .inline.fields .field > p,
-.ui.form .inline.field > label,
-.ui.form .inline.field > p {
- display: inline-block;
- width: auto;
- margin-top: 0;
- margin-bottom: 0;
- vertical-align: baseline;
- font-size: 0.92857143em;
- font-weight: bold;
- color: rgba(0, 0, 0, 0.87);
- text-transform: none;
-}
-
-/* Grouped Inline Label */
-
-.ui.form .inline.fields > label {
- margin: 0.035714em 1em 0 0;
-}
-
-/* Inline Input */
-
-.ui.form .inline.fields .field > input,
-.ui.form .inline.fields .field > select,
-.ui.form .inline.field > input,
-.ui.form .inline.field > select {
- display: inline-block;
- width: auto;
- margin-top: 0;
- margin-bottom: 0;
- vertical-align: middle;
- font-size: 1em;
-}
-
-/* Label */
-
-.ui.form .inline.fields .field > :first-child,
-.ui.form .inline.field > :first-child {
- margin: 0 0.85714286em 0 0;
-}
-
-.ui.form .inline.fields .field > :only-child,
-.ui.form .inline.field > :only-child {
- margin: 0;
-}
-
-/* Wide */
-
-.ui.form .inline.fields .wide.field {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
-}
-
-.ui.form .inline.fields .wide.field > input,
-.ui.form .inline.fields .wide.field > select {
- width: 100%;
-}
-
-/*--------------------
- Sizes
----------------------*/
-
-.ui.form,
-.ui.form .field .dropdown,
-.ui.form .field .dropdown .menu > .item {
- font-size: 1rem;
-}
-
-.ui.mini.form,
-.ui.mini.form .field .dropdown,
-.ui.mini.form .field .dropdown .menu > .item {
- font-size: 0.78571429rem;
-}
-
-.ui.tiny.form,
-.ui.tiny.form .field .dropdown,
-.ui.tiny.form .field .dropdown .menu > .item {
- font-size: 0.85714286rem;
-}
-
-.ui.small.form,
-.ui.small.form .field .dropdown,
-.ui.small.form .field .dropdown .menu > .item {
- font-size: 0.92857143rem;
-}
-
-.ui.large.form,
-.ui.large.form .field .dropdown,
-.ui.large.form .field .dropdown .menu > .item {
- font-size: 1.14285714rem;
-}
-
-.ui.big.form,
-.ui.big.form .field .dropdown,
-.ui.big.form .field .dropdown .menu > .item {
- font-size: 1.28571429rem;
-}
-
-.ui.huge.form,
-.ui.huge.form .field .dropdown,
-.ui.huge.form .field .dropdown .menu > .item {
- font-size: 1.42857143rem;
-}
-
-.ui.massive.form,
-.ui.massive.form .field .dropdown,
-.ui.massive.form .field .dropdown .menu > .item {
- font-size: 1.71428571rem;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Grid
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Standard
-*******************************/
-
-.ui.grid {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -ms-flex-direction: row;
- flex-direction: row;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- -webkit-box-align: stretch;
- -ms-flex-align: stretch;
- align-items: stretch;
- padding: 0;
-}
-
-/*----------------------
- Remove Gutters
------------------------*/
-
-.ui.grid {
- margin-top: -1rem;
- margin-bottom: -1rem;
- margin-left: -1rem;
- margin-right: -1rem;
-}
-
-.ui.relaxed.grid {
- margin-left: -1.5rem;
- margin-right: -1.5rem;
-}
-
-.ui[class*="very relaxed"].grid {
- margin-left: -2.5rem;
- margin-right: -2.5rem;
-}
-
-/* Preserve Rows Spacing on Consecutive Grids */
-
-.ui.grid + .grid {
- margin-top: 1rem;
-}
-
-/*-------------------
- Columns
---------------------*/
-
-/* Standard 16 column */
-
-.ui.grid > .column:not(.row),
-.ui.grid > .row > .column {
- position: relative;
- display: inline-block;
- width: 6.25%;
- padding-left: 1rem;
- padding-right: 1rem;
- vertical-align: top;
-}
-
-.ui.grid > * {
- padding-left: 1rem;
- padding-right: 1rem;
-}
-
-/*-------------------
- Rows
---------------------*/
-
-.ui.grid > .row {
- position: relative;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -ms-flex-direction: row;
- flex-direction: row;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- -webkit-box-pack: inherit;
- -ms-flex-pack: inherit;
- justify-content: inherit;
- -webkit-box-align: stretch;
- -ms-flex-align: stretch;
- align-items: stretch;
- width: 100% !important;
- padding: 0;
- padding-top: 1rem;
- padding-bottom: 1rem;
-}
-
-/*-------------------
- Columns
---------------------*/
-
-/* Vertical padding when no rows */
-
-.ui.grid > .column:not(.row) {
- padding-top: 1rem;
- padding-bottom: 1rem;
-}
-
-.ui.grid > .row > .column {
- margin-top: 0;
- margin-bottom: 0;
-}
-
-/*-------------------
- Content
---------------------*/
-
-.ui.grid > .row > img,
-.ui.grid > .row > .column > img {
- max-width: 100%;
-}
-
-/*-------------------
- Loose Coupling
---------------------*/
-
-/* Collapse Margin on Consecutive Grid */
-
-.ui.grid > .ui.grid:first-child {
- margin-top: 0;
-}
-
-.ui.grid > .ui.grid:last-child {
- margin-bottom: 0;
-}
-
-/* Segment inside Aligned Grid */
-
-.ui.grid .aligned.row > .column > .segment:not(.compact):not(.attached),
-.ui.aligned.grid .column > .segment:not(.compact):not(.attached) {
- width: 100%;
-}
-
-/* Align Dividers with Gutter */
-
-.ui.grid .row + .ui.divider {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- margin: 1rem 1rem;
-}
-
-.ui.grid .column + .ui.vertical.divider {
- height: calc(50% - 1rem);
-}
-
-/* Remove Border on Last Horizontal Segment */
-
-.ui.grid > .row > .column:last-child > .horizontal.segment,
-.ui.grid > .column:last-child > .horizontal.segment {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*-----------------------
- Page Grid
- -------------------------*/
-
-@media only screen and (max-width: 767.98px) {
- .ui.page.grid {
- width: auto;
- padding-left: 0;
- padding-right: 0;
- margin-left: 0;
- margin-right: 0;
- }
-}
-
-@media only screen and (min-width: 768px) and (max-width: 991.98px) {
- .ui.page.grid {
- width: auto;
- margin-left: 0;
- margin-right: 0;
- padding-left: 2em;
- padding-right: 2em;
- }
-}
-
-@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
- .ui.page.grid {
- width: auto;
- margin-left: 0;
- margin-right: 0;
- padding-left: 3%;
- padding-right: 3%;
- }
-}
-
-@media only screen and (min-width: 1200px) and (max-width: 1919.98px) {
- .ui.page.grid {
- width: auto;
- margin-left: 0;
- margin-right: 0;
- padding-left: 15%;
- padding-right: 15%;
- }
-}
-
-@media only screen and (min-width: 1920px) {
- .ui.page.grid {
- width: auto;
- margin-left: 0;
- margin-right: 0;
- padding-left: 23%;
- padding-right: 23%;
- }
-}
-
-/*-------------------
- Column Count
---------------------*/
-
-/* Assume full width with one column */
-
-.ui.grid > .column:only-child,
-.ui.grid > .row > .column:only-child {
- width: 100%;
-}
-
-/* Grid Based */
-
-.ui[class*="one column"].grid > .row > .column,
-.ui[class*="one column"].grid > .column:not(.row) {
- width: 100%;
-}
-
-.ui[class*="two column"].grid > .row > .column,
-.ui[class*="two column"].grid > .column:not(.row) {
- width: 50%;
-}
-
-.ui[class*="three column"].grid > .row > .column,
-.ui[class*="three column"].grid > .column:not(.row) {
- width: 33.33333333%;
-}
-
-.ui[class*="four column"].grid > .row > .column,
-.ui[class*="four column"].grid > .column:not(.row) {
- width: 25%;
-}
-
-.ui[class*="five column"].grid > .row > .column,
-.ui[class*="five column"].grid > .column:not(.row) {
- width: 20%;
-}
-
-.ui[class*="six column"].grid > .row > .column,
-.ui[class*="six column"].grid > .column:not(.row) {
- width: 16.66666667%;
-}
-
-.ui[class*="seven column"].grid > .row > .column,
-.ui[class*="seven column"].grid > .column:not(.row) {
- width: 14.28571429%;
-}
-
-.ui[class*="eight column"].grid > .row > .column,
-.ui[class*="eight column"].grid > .column:not(.row) {
- width: 12.5%;
-}
-
-.ui[class*="nine column"].grid > .row > .column,
-.ui[class*="nine column"].grid > .column:not(.row) {
- width: 11.11111111%;
-}
-
-.ui[class*="ten column"].grid > .row > .column,
-.ui[class*="ten column"].grid > .column:not(.row) {
- width: 10%;
-}
-
-.ui[class*="eleven column"].grid > .row > .column,
-.ui[class*="eleven column"].grid > .column:not(.row) {
- width: 9.09090909%;
-}
-
-.ui[class*="twelve column"].grid > .row > .column,
-.ui[class*="twelve column"].grid > .column:not(.row) {
- width: 8.33333333%;
-}
-
-.ui[class*="thirteen column"].grid > .row > .column,
-.ui[class*="thirteen column"].grid > .column:not(.row) {
- width: 7.69230769%;
-}
-
-.ui[class*="fourteen column"].grid > .row > .column,
-.ui[class*="fourteen column"].grid > .column:not(.row) {
- width: 7.14285714%;
-}
-
-.ui[class*="fifteen column"].grid > .row > .column,
-.ui[class*="fifteen column"].grid > .column:not(.row) {
- width: 6.66666667%;
-}
-
-.ui[class*="sixteen column"].grid > .row > .column,
-.ui[class*="sixteen column"].grid > .column:not(.row) {
- width: 6.25%;
-}
-
-/* Row Based Overrides */
-
-.ui.grid > [class*="one column"].row > .column {
- width: 100% !important;
-}
-
-.ui.grid > [class*="two column"].row > .column {
- width: 50% !important;
-}
-
-.ui.grid > [class*="three column"].row > .column {
- width: 33.33333333% !important;
-}
-
-.ui.grid > [class*="four column"].row > .column {
- width: 25% !important;
-}
-
-.ui.grid > [class*="five column"].row > .column {
- width: 20% !important;
-}
-
-.ui.grid > [class*="six column"].row > .column {
- width: 16.66666667% !important;
-}
-
-.ui.grid > [class*="seven column"].row > .column {
- width: 14.28571429% !important;
-}
-
-.ui.grid > [class*="eight column"].row > .column {
- width: 12.5% !important;
-}
-
-.ui.grid > [class*="nine column"].row > .column {
- width: 11.11111111% !important;
-}
-
-.ui.grid > [class*="ten column"].row > .column {
- width: 10% !important;
-}
-
-.ui.grid > [class*="eleven column"].row > .column {
- width: 9.09090909% !important;
-}
-
-.ui.grid > [class*="twelve column"].row > .column {
- width: 8.33333333% !important;
-}
-
-.ui.grid > [class*="thirteen column"].row > .column {
- width: 7.69230769% !important;
-}
-
-.ui.grid > [class*="fourteen column"].row > .column {
- width: 7.14285714% !important;
-}
-
-.ui.grid > [class*="fifteen column"].row > .column {
- width: 6.66666667% !important;
-}
-
-.ui.grid > [class*="sixteen column"].row > .column {
- width: 6.25% !important;
-}
-
-/* Celled Page */
-
-.ui.celled.page.grid {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/*-------------------
- Column Width
---------------------*/
-
-/* Sizing Combinations */
-
-.ui.grid > .row > [class*="one wide"].column,
-.ui.grid > .column.row > [class*="one wide"].column,
-.ui.grid > [class*="one wide"].column,
-.ui.column.grid > [class*="one wide"].column {
- width: 6.25% !important;
-}
-
-.ui.grid > .row > [class*="two wide"].column,
-.ui.grid > .column.row > [class*="two wide"].column,
-.ui.grid > [class*="two wide"].column,
-.ui.column.grid > [class*="two wide"].column {
- width: 12.5% !important;
-}
-
-.ui.grid > .row > [class*="three wide"].column,
-.ui.grid > .column.row > [class*="three wide"].column,
-.ui.grid > [class*="three wide"].column,
-.ui.column.grid > [class*="three wide"].column {
- width: 18.75% !important;
-}
-
-.ui.grid > .row > [class*="four wide"].column,
-.ui.grid > .column.row > [class*="four wide"].column,
-.ui.grid > [class*="four wide"].column,
-.ui.column.grid > [class*="four wide"].column {
- width: 25% !important;
-}
-
-.ui.grid > .row > [class*="five wide"].column,
-.ui.grid > .column.row > [class*="five wide"].column,
-.ui.grid > [class*="five wide"].column,
-.ui.column.grid > [class*="five wide"].column {
- width: 31.25% !important;
-}
-
-.ui.grid > .row > [class*="six wide"].column,
-.ui.grid > .column.row > [class*="six wide"].column,
-.ui.grid > [class*="six wide"].column,
-.ui.column.grid > [class*="six wide"].column {
- width: 37.5% !important;
-}
-
-.ui.grid > .row > [class*="seven wide"].column,
-.ui.grid > .column.row > [class*="seven wide"].column,
-.ui.grid > [class*="seven wide"].column,
-.ui.column.grid > [class*="seven wide"].column {
- width: 43.75% !important;
-}
-
-.ui.grid > .row > [class*="eight wide"].column,
-.ui.grid > .column.row > [class*="eight wide"].column,
-.ui.grid > [class*="eight wide"].column,
-.ui.column.grid > [class*="eight wide"].column {
- width: 50% !important;
-}
-
-.ui.grid > .row > [class*="nine wide"].column,
-.ui.grid > .column.row > [class*="nine wide"].column,
-.ui.grid > [class*="nine wide"].column,
-.ui.column.grid > [class*="nine wide"].column {
- width: 56.25% !important;
-}
-
-.ui.grid > .row > [class*="ten wide"].column,
-.ui.grid > .column.row > [class*="ten wide"].column,
-.ui.grid > [class*="ten wide"].column,
-.ui.column.grid > [class*="ten wide"].column {
- width: 62.5% !important;
-}
-
-.ui.grid > .row > [class*="eleven wide"].column,
-.ui.grid > .column.row > [class*="eleven wide"].column,
-.ui.grid > [class*="eleven wide"].column,
-.ui.column.grid > [class*="eleven wide"].column {
- width: 68.75% !important;
-}
-
-.ui.grid > .row > [class*="twelve wide"].column,
-.ui.grid > .column.row > [class*="twelve wide"].column,
-.ui.grid > [class*="twelve wide"].column,
-.ui.column.grid > [class*="twelve wide"].column {
- width: 75% !important;
-}
-
-.ui.grid > .row > [class*="thirteen wide"].column,
-.ui.grid > .column.row > [class*="thirteen wide"].column,
-.ui.grid > [class*="thirteen wide"].column,
-.ui.column.grid > [class*="thirteen wide"].column {
- width: 81.25% !important;
-}
-
-.ui.grid > .row > [class*="fourteen wide"].column,
-.ui.grid > .column.row > [class*="fourteen wide"].column,
-.ui.grid > [class*="fourteen wide"].column,
-.ui.column.grid > [class*="fourteen wide"].column {
- width: 87.5% !important;
-}
-
-.ui.grid > .row > [class*="fifteen wide"].column,
-.ui.grid > .column.row > [class*="fifteen wide"].column,
-.ui.grid > [class*="fifteen wide"].column,
-.ui.column.grid > [class*="fifteen wide"].column {
- width: 93.75% !important;
-}
-
-.ui.grid > .row > [class*="sixteen wide"].column,
-.ui.grid > .column.row > [class*="sixteen wide"].column,
-.ui.grid > [class*="sixteen wide"].column,
-.ui.column.grid > [class*="sixteen wide"].column {
- width: 100% !important;
-}
-
-/*----------------------
- Width per Device
------------------------*/
-
-/* Mobile Sizing Combinations */
-
-@media only screen and (min-width: 320px) and (max-width: 767.98px) {
- .ui.grid > .row > [class*="one wide mobile"].column,
- .ui.grid > .column.row > [class*="one wide mobile"].column,
- .ui.grid > [class*="one wide mobile"].column,
- .ui.column.grid > [class*="one wide mobile"].column {
- width: 6.25% !important;
- }
-
- .ui.grid > .row > [class*="two wide mobile"].column,
- .ui.grid > .column.row > [class*="two wide mobile"].column,
- .ui.grid > [class*="two wide mobile"].column,
- .ui.column.grid > [class*="two wide mobile"].column {
- width: 12.5% !important;
- }
-
- .ui.grid > .row > [class*="three wide mobile"].column,
- .ui.grid > .column.row > [class*="three wide mobile"].column,
- .ui.grid > [class*="three wide mobile"].column,
- .ui.column.grid > [class*="three wide mobile"].column {
- width: 18.75% !important;
- }
-
- .ui.grid > .row > [class*="four wide mobile"].column,
- .ui.grid > .column.row > [class*="four wide mobile"].column,
- .ui.grid > [class*="four wide mobile"].column,
- .ui.column.grid > [class*="four wide mobile"].column {
- width: 25% !important;
- }
-
- .ui.grid > .row > [class*="five wide mobile"].column,
- .ui.grid > .column.row > [class*="five wide mobile"].column,
- .ui.grid > [class*="five wide mobile"].column,
- .ui.column.grid > [class*="five wide mobile"].column {
- width: 31.25% !important;
- }
-
- .ui.grid > .row > [class*="six wide mobile"].column,
- .ui.grid > .column.row > [class*="six wide mobile"].column,
- .ui.grid > [class*="six wide mobile"].column,
- .ui.column.grid > [class*="six wide mobile"].column {
- width: 37.5% !important;
- }
-
- .ui.grid > .row > [class*="seven wide mobile"].column,
- .ui.grid > .column.row > [class*="seven wide mobile"].column,
- .ui.grid > [class*="seven wide mobile"].column,
- .ui.column.grid > [class*="seven wide mobile"].column {
- width: 43.75% !important;
- }
-
- .ui.grid > .row > [class*="eight wide mobile"].column,
- .ui.grid > .column.row > [class*="eight wide mobile"].column,
- .ui.grid > [class*="eight wide mobile"].column,
- .ui.column.grid > [class*="eight wide mobile"].column {
- width: 50% !important;
- }
-
- .ui.grid > .row > [class*="nine wide mobile"].column,
- .ui.grid > .column.row > [class*="nine wide mobile"].column,
- .ui.grid > [class*="nine wide mobile"].column,
- .ui.column.grid > [class*="nine wide mobile"].column {
- width: 56.25% !important;
- }
-
- .ui.grid > .row > [class*="ten wide mobile"].column,
- .ui.grid > .column.row > [class*="ten wide mobile"].column,
- .ui.grid > [class*="ten wide mobile"].column,
- .ui.column.grid > [class*="ten wide mobile"].column {
- width: 62.5% !important;
- }
-
- .ui.grid > .row > [class*="eleven wide mobile"].column,
- .ui.grid > .column.row > [class*="eleven wide mobile"].column,
- .ui.grid > [class*="eleven wide mobile"].column,
- .ui.column.grid > [class*="eleven wide mobile"].column {
- width: 68.75% !important;
- }
-
- .ui.grid > .row > [class*="twelve wide mobile"].column,
- .ui.grid > .column.row > [class*="twelve wide mobile"].column,
- .ui.grid > [class*="twelve wide mobile"].column,
- .ui.column.grid > [class*="twelve wide mobile"].column {
- width: 75% !important;
- }
-
- .ui.grid > .row > [class*="thirteen wide mobile"].column,
- .ui.grid > .column.row > [class*="thirteen wide mobile"].column,
- .ui.grid > [class*="thirteen wide mobile"].column,
- .ui.column.grid > [class*="thirteen wide mobile"].column {
- width: 81.25% !important;
- }
-
- .ui.grid > .row > [class*="fourteen wide mobile"].column,
- .ui.grid > .column.row > [class*="fourteen wide mobile"].column,
- .ui.grid > [class*="fourteen wide mobile"].column,
- .ui.column.grid > [class*="fourteen wide mobile"].column {
- width: 87.5% !important;
- }
-
- .ui.grid > .row > [class*="fifteen wide mobile"].column,
- .ui.grid > .column.row > [class*="fifteen wide mobile"].column,
- .ui.grid > [class*="fifteen wide mobile"].column,
- .ui.column.grid > [class*="fifteen wide mobile"].column {
- width: 93.75% !important;
- }
-
- .ui.grid > .row > [class*="sixteen wide mobile"].column,
- .ui.grid > .column.row > [class*="sixteen wide mobile"].column,
- .ui.grid > [class*="sixteen wide mobile"].column,
- .ui.column.grid > [class*="sixteen wide mobile"].column {
- width: 100% !important;
- }
-}
-
-/* Tablet Sizing Combinations */
-
-@media only screen and (min-width: 768px) and (max-width: 991.98px) {
- .ui.grid > .row > [class*="one wide tablet"].column,
- .ui.grid > .column.row > [class*="one wide tablet"].column,
- .ui.grid > [class*="one wide tablet"].column,
- .ui.column.grid > [class*="one wide tablet"].column {
- width: 6.25% !important;
- }
-
- .ui.grid > .row > [class*="two wide tablet"].column,
- .ui.grid > .column.row > [class*="two wide tablet"].column,
- .ui.grid > [class*="two wide tablet"].column,
- .ui.column.grid > [class*="two wide tablet"].column {
- width: 12.5% !important;
- }
-
- .ui.grid > .row > [class*="three wide tablet"].column,
- .ui.grid > .column.row > [class*="three wide tablet"].column,
- .ui.grid > [class*="three wide tablet"].column,
- .ui.column.grid > [class*="three wide tablet"].column {
- width: 18.75% !important;
- }
-
- .ui.grid > .row > [class*="four wide tablet"].column,
- .ui.grid > .column.row > [class*="four wide tablet"].column,
- .ui.grid > [class*="four wide tablet"].column,
- .ui.column.grid > [class*="four wide tablet"].column {
- width: 25% !important;
- }
-
- .ui.grid > .row > [class*="five wide tablet"].column,
- .ui.grid > .column.row > [class*="five wide tablet"].column,
- .ui.grid > [class*="five wide tablet"].column,
- .ui.column.grid > [class*="five wide tablet"].column {
- width: 31.25% !important;
- }
-
- .ui.grid > .row > [class*="six wide tablet"].column,
- .ui.grid > .column.row > [class*="six wide tablet"].column,
- .ui.grid > [class*="six wide tablet"].column,
- .ui.column.grid > [class*="six wide tablet"].column {
- width: 37.5% !important;
- }
-
- .ui.grid > .row > [class*="seven wide tablet"].column,
- .ui.grid > .column.row > [class*="seven wide tablet"].column,
- .ui.grid > [class*="seven wide tablet"].column,
- .ui.column.grid > [class*="seven wide tablet"].column {
- width: 43.75% !important;
- }
-
- .ui.grid > .row > [class*="eight wide tablet"].column,
- .ui.grid > .column.row > [class*="eight wide tablet"].column,
- .ui.grid > [class*="eight wide tablet"].column,
- .ui.column.grid > [class*="eight wide tablet"].column {
- width: 50% !important;
- }
-
- .ui.grid > .row > [class*="nine wide tablet"].column,
- .ui.grid > .column.row > [class*="nine wide tablet"].column,
- .ui.grid > [class*="nine wide tablet"].column,
- .ui.column.grid > [class*="nine wide tablet"].column {
- width: 56.25% !important;
- }
-
- .ui.grid > .row > [class*="ten wide tablet"].column,
- .ui.grid > .column.row > [class*="ten wide tablet"].column,
- .ui.grid > [class*="ten wide tablet"].column,
- .ui.column.grid > [class*="ten wide tablet"].column {
- width: 62.5% !important;
- }
-
- .ui.grid > .row > [class*="eleven wide tablet"].column,
- .ui.grid > .column.row > [class*="eleven wide tablet"].column,
- .ui.grid > [class*="eleven wide tablet"].column,
- .ui.column.grid > [class*="eleven wide tablet"].column {
- width: 68.75% !important;
- }
-
- .ui.grid > .row > [class*="twelve wide tablet"].column,
- .ui.grid > .column.row > [class*="twelve wide tablet"].column,
- .ui.grid > [class*="twelve wide tablet"].column,
- .ui.column.grid > [class*="twelve wide tablet"].column {
- width: 75% !important;
- }
-
- .ui.grid > .row > [class*="thirteen wide tablet"].column,
- .ui.grid > .column.row > [class*="thirteen wide tablet"].column,
- .ui.grid > [class*="thirteen wide tablet"].column,
- .ui.column.grid > [class*="thirteen wide tablet"].column {
- width: 81.25% !important;
- }
-
- .ui.grid > .row > [class*="fourteen wide tablet"].column,
- .ui.grid > .column.row > [class*="fourteen wide tablet"].column,
- .ui.grid > [class*="fourteen wide tablet"].column,
- .ui.column.grid > [class*="fourteen wide tablet"].column {
- width: 87.5% !important;
- }
-
- .ui.grid > .row > [class*="fifteen wide tablet"].column,
- .ui.grid > .column.row > [class*="fifteen wide tablet"].column,
- .ui.grid > [class*="fifteen wide tablet"].column,
- .ui.column.grid > [class*="fifteen wide tablet"].column {
- width: 93.75% !important;
- }
-
- .ui.grid > .row > [class*="sixteen wide tablet"].column,
- .ui.grid > .column.row > [class*="sixteen wide tablet"].column,
- .ui.grid > [class*="sixteen wide tablet"].column,
- .ui.column.grid > [class*="sixteen wide tablet"].column {
- width: 100% !important;
- }
-}
-
-/* Computer/Desktop Sizing Combinations */
-
-@media only screen and (min-width: 992px) {
- .ui.grid > .row > [class*="one wide computer"].column,
- .ui.grid > .column.row > [class*="one wide computer"].column,
- .ui.grid > [class*="one wide computer"].column,
- .ui.column.grid > [class*="one wide computer"].column {
- width: 6.25% !important;
- }
-
- .ui.grid > .row > [class*="two wide computer"].column,
- .ui.grid > .column.row > [class*="two wide computer"].column,
- .ui.grid > [class*="two wide computer"].column,
- .ui.column.grid > [class*="two wide computer"].column {
- width: 12.5% !important;
- }
-
- .ui.grid > .row > [class*="three wide computer"].column,
- .ui.grid > .column.row > [class*="three wide computer"].column,
- .ui.grid > [class*="three wide computer"].column,
- .ui.column.grid > [class*="three wide computer"].column {
- width: 18.75% !important;
- }
-
- .ui.grid > .row > [class*="four wide computer"].column,
- .ui.grid > .column.row > [class*="four wide computer"].column,
- .ui.grid > [class*="four wide computer"].column,
- .ui.column.grid > [class*="four wide computer"].column {
- width: 25% !important;
- }
-
- .ui.grid > .row > [class*="five wide computer"].column,
- .ui.grid > .column.row > [class*="five wide computer"].column,
- .ui.grid > [class*="five wide computer"].column,
- .ui.column.grid > [class*="five wide computer"].column {
- width: 31.25% !important;
- }
-
- .ui.grid > .row > [class*="six wide computer"].column,
- .ui.grid > .column.row > [class*="six wide computer"].column,
- .ui.grid > [class*="six wide computer"].column,
- .ui.column.grid > [class*="six wide computer"].column {
- width: 37.5% !important;
- }
-
- .ui.grid > .row > [class*="seven wide computer"].column,
- .ui.grid > .column.row > [class*="seven wide computer"].column,
- .ui.grid > [class*="seven wide computer"].column,
- .ui.column.grid > [class*="seven wide computer"].column {
- width: 43.75% !important;
- }
-
- .ui.grid > .row > [class*="eight wide computer"].column,
- .ui.grid > .column.row > [class*="eight wide computer"].column,
- .ui.grid > [class*="eight wide computer"].column,
- .ui.column.grid > [class*="eight wide computer"].column {
- width: 50% !important;
- }
-
- .ui.grid > .row > [class*="nine wide computer"].column,
- .ui.grid > .column.row > [class*="nine wide computer"].column,
- .ui.grid > [class*="nine wide computer"].column,
- .ui.column.grid > [class*="nine wide computer"].column {
- width: 56.25% !important;
- }
-
- .ui.grid > .row > [class*="ten wide computer"].column,
- .ui.grid > .column.row > [class*="ten wide computer"].column,
- .ui.grid > [class*="ten wide computer"].column,
- .ui.column.grid > [class*="ten wide computer"].column {
- width: 62.5% !important;
- }
-
- .ui.grid > .row > [class*="eleven wide computer"].column,
- .ui.grid > .column.row > [class*="eleven wide computer"].column,
- .ui.grid > [class*="eleven wide computer"].column,
- .ui.column.grid > [class*="eleven wide computer"].column {
- width: 68.75% !important;
- }
-
- .ui.grid > .row > [class*="twelve wide computer"].column,
- .ui.grid > .column.row > [class*="twelve wide computer"].column,
- .ui.grid > [class*="twelve wide computer"].column,
- .ui.column.grid > [class*="twelve wide computer"].column {
- width: 75% !important;
- }
-
- .ui.grid > .row > [class*="thirteen wide computer"].column,
- .ui.grid > .column.row > [class*="thirteen wide computer"].column,
- .ui.grid > [class*="thirteen wide computer"].column,
- .ui.column.grid > [class*="thirteen wide computer"].column {
- width: 81.25% !important;
- }
-
- .ui.grid > .row > [class*="fourteen wide computer"].column,
- .ui.grid > .column.row > [class*="fourteen wide computer"].column,
- .ui.grid > [class*="fourteen wide computer"].column,
- .ui.column.grid > [class*="fourteen wide computer"].column {
- width: 87.5% !important;
- }
-
- .ui.grid > .row > [class*="fifteen wide computer"].column,
- .ui.grid > .column.row > [class*="fifteen wide computer"].column,
- .ui.grid > [class*="fifteen wide computer"].column,
- .ui.column.grid > [class*="fifteen wide computer"].column {
- width: 93.75% !important;
- }
-
- .ui.grid > .row > [class*="sixteen wide computer"].column,
- .ui.grid > .column.row > [class*="sixteen wide computer"].column,
- .ui.grid > [class*="sixteen wide computer"].column,
- .ui.column.grid > [class*="sixteen wide computer"].column {
- width: 100% !important;
- }
-}
-
-/* Large Monitor Sizing Combinations */
-
-@media only screen and (min-width: 1200px) and (max-width: 1919.98px) {
- .ui.grid > .row > [class*="one wide large screen"].column,
- .ui.grid > .column.row > [class*="one wide large screen"].column,
- .ui.grid > [class*="one wide large screen"].column,
- .ui.column.grid > [class*="one wide large screen"].column {
- width: 6.25% !important;
- }
-
- .ui.grid > .row > [class*="two wide large screen"].column,
- .ui.grid > .column.row > [class*="two wide large screen"].column,
- .ui.grid > [class*="two wide large screen"].column,
- .ui.column.grid > [class*="two wide large screen"].column {
- width: 12.5% !important;
- }
-
- .ui.grid > .row > [class*="three wide large screen"].column,
- .ui.grid > .column.row > [class*="three wide large screen"].column,
- .ui.grid > [class*="three wide large screen"].column,
- .ui.column.grid > [class*="three wide large screen"].column {
- width: 18.75% !important;
- }
-
- .ui.grid > .row > [class*="four wide large screen"].column,
- .ui.grid > .column.row > [class*="four wide large screen"].column,
- .ui.grid > [class*="four wide large screen"].column,
- .ui.column.grid > [class*="four wide large screen"].column {
- width: 25% !important;
- }
-
- .ui.grid > .row > [class*="five wide large screen"].column,
- .ui.grid > .column.row > [class*="five wide large screen"].column,
- .ui.grid > [class*="five wide large screen"].column,
- .ui.column.grid > [class*="five wide large screen"].column {
- width: 31.25% !important;
- }
-
- .ui.grid > .row > [class*="six wide large screen"].column,
- .ui.grid > .column.row > [class*="six wide large screen"].column,
- .ui.grid > [class*="six wide large screen"].column,
- .ui.column.grid > [class*="six wide large screen"].column {
- width: 37.5% !important;
- }
-
- .ui.grid > .row > [class*="seven wide large screen"].column,
- .ui.grid > .column.row > [class*="seven wide large screen"].column,
- .ui.grid > [class*="seven wide large screen"].column,
- .ui.column.grid > [class*="seven wide large screen"].column {
- width: 43.75% !important;
- }
-
- .ui.grid > .row > [class*="eight wide large screen"].column,
- .ui.grid > .column.row > [class*="eight wide large screen"].column,
- .ui.grid > [class*="eight wide large screen"].column,
- .ui.column.grid > [class*="eight wide large screen"].column {
- width: 50% !important;
- }
-
- .ui.grid > .row > [class*="nine wide large screen"].column,
- .ui.grid > .column.row > [class*="nine wide large screen"].column,
- .ui.grid > [class*="nine wide large screen"].column,
- .ui.column.grid > [class*="nine wide large screen"].column {
- width: 56.25% !important;
- }
-
- .ui.grid > .row > [class*="ten wide large screen"].column,
- .ui.grid > .column.row > [class*="ten wide large screen"].column,
- .ui.grid > [class*="ten wide large screen"].column,
- .ui.column.grid > [class*="ten wide large screen"].column {
- width: 62.5% !important;
- }
-
- .ui.grid > .row > [class*="eleven wide large screen"].column,
- .ui.grid > .column.row > [class*="eleven wide large screen"].column,
- .ui.grid > [class*="eleven wide large screen"].column,
- .ui.column.grid > [class*="eleven wide large screen"].column {
- width: 68.75% !important;
- }
-
- .ui.grid > .row > [class*="twelve wide large screen"].column,
- .ui.grid > .column.row > [class*="twelve wide large screen"].column,
- .ui.grid > [class*="twelve wide large screen"].column,
- .ui.column.grid > [class*="twelve wide large screen"].column {
- width: 75% !important;
- }
-
- .ui.grid > .row > [class*="thirteen wide large screen"].column,
- .ui.grid > .column.row > [class*="thirteen wide large screen"].column,
- .ui.grid > [class*="thirteen wide large screen"].column,
- .ui.column.grid > [class*="thirteen wide large screen"].column {
- width: 81.25% !important;
- }
-
- .ui.grid > .row > [class*="fourteen wide large screen"].column,
- .ui.grid > .column.row > [class*="fourteen wide large screen"].column,
- .ui.grid > [class*="fourteen wide large screen"].column,
- .ui.column.grid > [class*="fourteen wide large screen"].column {
- width: 87.5% !important;
- }
-
- .ui.grid > .row > [class*="fifteen wide large screen"].column,
- .ui.grid > .column.row > [class*="fifteen wide large screen"].column,
- .ui.grid > [class*="fifteen wide large screen"].column,
- .ui.column.grid > [class*="fifteen wide large screen"].column {
- width: 93.75% !important;
- }
-
- .ui.grid > .row > [class*="sixteen wide large screen"].column,
- .ui.grid > .column.row > [class*="sixteen wide large screen"].column,
- .ui.grid > [class*="sixteen wide large screen"].column,
- .ui.column.grid > [class*="sixteen wide large screen"].column {
- width: 100% !important;
- }
-}
-
-/* Widescreen Sizing Combinations */
-
-@media only screen and (min-width: 1920px) {
- .ui.grid > .row > [class*="one wide widescreen"].column,
- .ui.grid > .column.row > [class*="one wide widescreen"].column,
- .ui.grid > [class*="one wide widescreen"].column,
- .ui.column.grid > [class*="one wide widescreen"].column {
- width: 6.25% !important;
- }
-
- .ui.grid > .row > [class*="two wide widescreen"].column,
- .ui.grid > .column.row > [class*="two wide widescreen"].column,
- .ui.grid > [class*="two wide widescreen"].column,
- .ui.column.grid > [class*="two wide widescreen"].column {
- width: 12.5% !important;
- }
-
- .ui.grid > .row > [class*="three wide widescreen"].column,
- .ui.grid > .column.row > [class*="three wide widescreen"].column,
- .ui.grid > [class*="three wide widescreen"].column,
- .ui.column.grid > [class*="three wide widescreen"].column {
- width: 18.75% !important;
- }
-
- .ui.grid > .row > [class*="four wide widescreen"].column,
- .ui.grid > .column.row > [class*="four wide widescreen"].column,
- .ui.grid > [class*="four wide widescreen"].column,
- .ui.column.grid > [class*="four wide widescreen"].column {
- width: 25% !important;
- }
-
- .ui.grid > .row > [class*="five wide widescreen"].column,
- .ui.grid > .column.row > [class*="five wide widescreen"].column,
- .ui.grid > [class*="five wide widescreen"].column,
- .ui.column.grid > [class*="five wide widescreen"].column {
- width: 31.25% !important;
- }
-
- .ui.grid > .row > [class*="six wide widescreen"].column,
- .ui.grid > .column.row > [class*="six wide widescreen"].column,
- .ui.grid > [class*="six wide widescreen"].column,
- .ui.column.grid > [class*="six wide widescreen"].column {
- width: 37.5% !important;
- }
-
- .ui.grid > .row > [class*="seven wide widescreen"].column,
- .ui.grid > .column.row > [class*="seven wide widescreen"].column,
- .ui.grid > [class*="seven wide widescreen"].column,
- .ui.column.grid > [class*="seven wide widescreen"].column {
- width: 43.75% !important;
- }
-
- .ui.grid > .row > [class*="eight wide widescreen"].column,
- .ui.grid > .column.row > [class*="eight wide widescreen"].column,
- .ui.grid > [class*="eight wide widescreen"].column,
- .ui.column.grid > [class*="eight wide widescreen"].column {
- width: 50% !important;
- }
-
- .ui.grid > .row > [class*="nine wide widescreen"].column,
- .ui.grid > .column.row > [class*="nine wide widescreen"].column,
- .ui.grid > [class*="nine wide widescreen"].column,
- .ui.column.grid > [class*="nine wide widescreen"].column {
- width: 56.25% !important;
- }
-
- .ui.grid > .row > [class*="ten wide widescreen"].column,
- .ui.grid > .column.row > [class*="ten wide widescreen"].column,
- .ui.grid > [class*="ten wide widescreen"].column,
- .ui.column.grid > [class*="ten wide widescreen"].column {
- width: 62.5% !important;
- }
-
- .ui.grid > .row > [class*="eleven wide widescreen"].column,
- .ui.grid > .column.row > [class*="eleven wide widescreen"].column,
- .ui.grid > [class*="eleven wide widescreen"].column,
- .ui.column.grid > [class*="eleven wide widescreen"].column {
- width: 68.75% !important;
- }
-
- .ui.grid > .row > [class*="twelve wide widescreen"].column,
- .ui.grid > .column.row > [class*="twelve wide widescreen"].column,
- .ui.grid > [class*="twelve wide widescreen"].column,
- .ui.column.grid > [class*="twelve wide widescreen"].column {
- width: 75% !important;
- }
-
- .ui.grid > .row > [class*="thirteen wide widescreen"].column,
- .ui.grid > .column.row > [class*="thirteen wide widescreen"].column,
- .ui.grid > [class*="thirteen wide widescreen"].column,
- .ui.column.grid > [class*="thirteen wide widescreen"].column {
- width: 81.25% !important;
- }
-
- .ui.grid > .row > [class*="fourteen wide widescreen"].column,
- .ui.grid > .column.row > [class*="fourteen wide widescreen"].column,
- .ui.grid > [class*="fourteen wide widescreen"].column,
- .ui.column.grid > [class*="fourteen wide widescreen"].column {
- width: 87.5% !important;
- }
-
- .ui.grid > .row > [class*="fifteen wide widescreen"].column,
- .ui.grid > .column.row > [class*="fifteen wide widescreen"].column,
- .ui.grid > [class*="fifteen wide widescreen"].column,
- .ui.column.grid > [class*="fifteen wide widescreen"].column {
- width: 93.75% !important;
- }
-
- .ui.grid > .row > [class*="sixteen wide widescreen"].column,
- .ui.grid > .column.row > [class*="sixteen wide widescreen"].column,
- .ui.grid > [class*="sixteen wide widescreen"].column,
- .ui.column.grid > [class*="sixteen wide widescreen"].column {
- width: 100% !important;
- }
-}
-
-/*----------------------
- Centered
- -----------------------*/
-
-.ui.centered.grid,
-.ui.centered.grid > .row,
-.ui.grid > .centered.row {
- text-align: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
-}
-
-.ui.centered.grid > .column:not(.aligned):not(.justified):not(.row),
-.ui.centered.grid > .row > .column:not(.aligned):not(.justified),
-.ui.grid .centered.row > .column:not(.aligned):not(.justified) {
- text-align: left;
-}
-
-.ui.grid > .centered.column,
-.ui.grid > .row > .centered.column {
- display: block;
- margin-left: auto;
- margin-right: auto;
-}
-
-/*----------------------
- Relaxed
- -----------------------*/
-
-.ui.relaxed.grid > .column:not(.row),
-.ui.relaxed.grid > .row > .column,
-.ui.grid > .relaxed.row > .column {
- padding-left: 1.5rem;
- padding-right: 1.5rem;
-}
-
-.ui[class*="very relaxed"].grid > .column:not(.row),
-.ui[class*="very relaxed"].grid > .row > .column,
-.ui.grid > [class*="very relaxed"].row > .column {
- padding-left: 2.5rem;
- padding-right: 2.5rem;
-}
-
-/* Coupling with UI Divider */
-
-.ui.relaxed.grid .row + .ui.divider,
-.ui.grid .relaxed.row + .ui.divider {
- margin-left: 1.5rem;
- margin-right: 1.5rem;
-}
-
-.ui[class*="very relaxed"].grid .row + .ui.divider,
-.ui.grid [class*="very relaxed"].row + .ui.divider {
- margin-left: 2.5rem;
- margin-right: 2.5rem;
-}
-
-/*----------------------
- Padded
- -----------------------*/
-
-.ui.padded.grid:not(.vertically):not(.horizontally) {
- margin: 0 !important;
-}
-
-[class*="horizontally padded"].ui.grid {
- margin-left: 0 !important;
- margin-right: 0 !important;
-}
-
-[class*="vertically padded"].ui.grid {
- margin-top: 0 !important;
- margin-bottom: 0 !important;
-}
-
-/*----------------------
- "Floated"
- -----------------------*/
-
-.ui.grid [class*="left floated"].column {
- margin-right: auto;
-}
-
-.ui.grid [class*="right floated"].column {
- margin-left: auto;
-}
-
-/*----------------------
- Divided
- -----------------------*/
-
-.ui.divided.grid:not([class*="vertically divided"]) > .column:not(.row),
-.ui.divided.grid:not([class*="vertically divided"]) > .row > .column {
- -webkit-box-shadow: -1px 0 0 0 rgba(34, 36, 38, 0.15);
- box-shadow: -1px 0 0 0 rgba(34, 36, 38, 0.15);
-}
-
-/* Swap from padding to margin on columns to have dividers align */
-
-.ui[class*="vertically divided"].grid > .column:not(.row),
-.ui[class*="vertically divided"].grid > .row > .column {
- margin-top: 1rem;
- margin-bottom: 1rem;
- padding-top: 0;
- padding-bottom: 0;
-}
-
-.ui[class*="vertically divided"].grid > .row {
- margin-top: 0;
- margin-bottom: 0;
-}
-
-/* No divider on first column on row */
-
-.ui.divided.grid:not([class*="vertically divided"]) > .column:first-child,
-.ui.divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/* No space on top of first row */
-
-.ui[class*="vertically divided"].grid > .row:first-child > .column {
- margin-top: 0;
-}
-
-/* Divided Row */
-
-.ui.grid > .divided.row > .column {
- -webkit-box-shadow: -1px 0 0 0 rgba(34, 36, 38, 0.15);
- box-shadow: -1px 0 0 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.grid > .divided.row > .column:first-child {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/* Vertically Divided */
-
-.ui[class*="vertically divided"].grid > .row {
- position: relative;
-}
-
-.ui[class*="vertically divided"].grid > .row:before {
- position: absolute;
- content: "";
- top: 0;
- left: 0;
- width: calc(100% - 2rem);
- height: 1px;
- margin: 0 1rem;
- -webkit-box-shadow: 0 -1px 0 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 -1px 0 0 rgba(34, 36, 38, 0.15);
-}
-
-/* Padded Horizontally Divided */
-
-[class*="horizontally padded"].ui.divided.grid,
-.ui.padded.divided.grid:not(.vertically):not(.horizontally) {
- width: 100%;
-}
-
-/* First Row Vertically Divided */
-
-.ui[class*="vertically divided"].grid > .row:first-child:before {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/* Inverted Divided */
-
-.ui.inverted.divided.grid:not([class*="vertically divided"]) > .column:not(.row),
-.ui.inverted.divided.grid:not([class*="vertically divided"]) > .row > .column {
- -webkit-box-shadow: -1px 0 0 0 rgba(255, 255, 255, 0.1);
- box-shadow: -1px 0 0 0 rgba(255, 255, 255, 0.1);
-}
-
-.ui.inverted.divided.grid:not([class*="vertically divided"]) > .column:not(.row):first-child,
-.ui.inverted.divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.inverted[class*="vertically divided"].grid > .row:before {
- -webkit-box-shadow: 0 -1px 0 0 rgba(255, 255, 255, 0.1);
- box-shadow: 0 -1px 0 0 rgba(255, 255, 255, 0.1);
-}
-
-/* Relaxed */
-
-.ui.relaxed[class*="vertically divided"].grid > .row:before {
- margin-left: 1.5rem;
- margin-right: 1.5rem;
- width: calc(100% - 3rem);
-}
-
-.ui[class*="very relaxed"][class*="vertically divided"].grid > .row:before {
- margin-left: 2.5rem;
- margin-right: 2.5rem;
- width: calc(100% - 5rem);
-}
-
-/*----------------------
- Celled
- -----------------------*/
-
-.ui.celled.grid {
- width: 100%;
- margin: 1em 0;
- -webkit-box-shadow: 0 0 0 1px #D4D4D5;
- box-shadow: 0 0 0 1px #D4D4D5;
-}
-
-.ui.celled.grid > .row {
- width: 100% !important;
- margin: 0;
- padding: 0;
- -webkit-box-shadow: 0 -1px 0 0 #D4D4D5;
- box-shadow: 0 -1px 0 0 #D4D4D5;
-}
-
-.ui.celled.grid > .column:not(.row),
-.ui.celled.grid > .row > .column {
- -webkit-box-shadow: -1px 0 0 0 #D4D4D5;
- box-shadow: -1px 0 0 0 #D4D4D5;
-}
-
-.ui.celled.grid > .column:first-child,
-.ui.celled.grid > .row > .column:first-child {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.celled.grid > .column:not(.row),
-.ui.celled.grid > .row > .column {
- padding: 1em;
-}
-
-.ui.relaxed.celled.grid > .column:not(.row),
-.ui.relaxed.celled.grid > .row > .column {
- padding: 1.5em;
-}
-
-.ui[class*="very relaxed"].celled.grid > .column:not(.row),
-.ui[class*="very relaxed"].celled.grid > .row > .column {
- padding: 2em;
-}
-
-/* Internally Celled */
-
-.ui[class*="internally celled"].grid {
- -webkit-box-shadow: none;
- box-shadow: none;
- margin: 0;
-}
-
-.ui[class*="internally celled"].grid > .row:first-child {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui[class*="internally celled"].grid > .row > .column:first-child {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/*----------------------
- Vertically Aligned
- -----------------------*/
-
-/* Top Aligned */
-
-.ui[class*="top aligned"].grid > .column:not(.row),
-.ui[class*="top aligned"].grid > .row > .column,
-.ui.grid > [class*="top aligned"].row > .column,
-.ui.grid > [class*="top aligned"].column:not(.row),
-.ui.grid > .row > [class*="top aligned"].column {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- vertical-align: top;
- -ms-flex-item-align: start !important;
- align-self: flex-start !important;
-}
-
-/* Middle Aligned */
-
-.ui[class*="middle aligned"].grid > .column:not(.row),
-.ui[class*="middle aligned"].grid > .row > .column,
-.ui.grid > [class*="middle aligned"].row > .column,
-.ui.grid > [class*="middle aligned"].column:not(.row),
-.ui.grid > .row > [class*="middle aligned"].column {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- vertical-align: middle;
- -ms-flex-item-align: center !important;
- align-self: center !important;
-}
-
-/* Bottom Aligned */
-
-.ui[class*="bottom aligned"].grid > .column:not(.row),
-.ui[class*="bottom aligned"].grid > .row > .column,
-.ui.grid > [class*="bottom aligned"].row > .column,
-.ui.grid > [class*="bottom aligned"].column:not(.row),
-.ui.grid > .row > [class*="bottom aligned"].column {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- vertical-align: bottom;
- -ms-flex-item-align: end !important;
- align-self: flex-end !important;
-}
-
-/* Stretched */
-
-.ui.stretched.grid > .row > .column,
-.ui.stretched.grid > .column,
-.ui.grid > .stretched.row > .column,
-.ui.grid > .stretched.column:not(.row),
-.ui.grid > .row > .stretched.column {
- display: -webkit-inline-box !important;
- display: -ms-inline-flexbox !important;
- display: inline-flex !important;
- -ms-flex-item-align: stretch;
- align-self: stretch;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
-}
-
-.ui.stretched.grid > .row > .column > *,
-.ui.stretched.grid > .column > *,
-.ui.grid > .stretched.row > .column > *,
-.ui.grid > .stretched.column:not(.row) > *,
-.ui.grid > .row > .stretched.column > * {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
-}
-
-/*----------------------
- Horizontally Centered
- -----------------------*/
-
-/* Left Aligned */
-
-.ui[class*="left aligned"].grid > .column,
-.ui[class*="left aligned"].grid > .row > .column,
-.ui.grid > [class*="left aligned"].row > .column,
-.ui.grid > [class*="left aligned"].column.column,
-.ui.grid > .row > [class*="left aligned"].column.column {
- text-align: left;
- -ms-flex-item-align: inherit;
- align-self: inherit;
-}
-
-/* Center Aligned */
-
-.ui[class*="center aligned"].grid > .column,
-.ui[class*="center aligned"].grid > .row > .column,
-.ui.grid > [class*="center aligned"].row > .column,
-.ui.grid > [class*="center aligned"].column.column,
-.ui.grid > .row > [class*="center aligned"].column.column {
- text-align: center;
- -ms-flex-item-align: inherit;
- align-self: inherit;
-}
-
-.ui[class*="center aligned"].grid {
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
-}
-
-/* Right Aligned */
-
-.ui[class*="right aligned"].grid > .column,
-.ui[class*="right aligned"].grid > .row > .column,
-.ui.grid > [class*="right aligned"].row > .column,
-.ui.grid > [class*="right aligned"].column.column,
-.ui.grid > .row > [class*="right aligned"].column.column {
- text-align: right;
- -ms-flex-item-align: inherit;
- align-self: inherit;
-}
-
-/* Justified */
-
-.ui.justified.grid > .column,
-.ui.justified.grid > .row > .column,
-.ui.grid > .justified.row > .column,
-.ui.grid > .justified.column.column,
-.ui.grid > .row > .justified.column.column {
- text-align: justify;
- -webkit-hyphens: auto;
- -ms-hyphens: auto;
- hyphens: auto;
-}
-
-/*----------------------
- Colored
------------------------*/
-
-.ui.grid > .primary.row,
-.ui.grid > .primary.column,
-.ui.grid > .row > .primary.column {
- background-color: #2185D0;
- color: #FFFFFF;
-}
-
-.ui.grid > .secondary.row,
-.ui.grid > .secondary.column,
-.ui.grid > .row > .secondary.column {
- background-color: #1B1C1D;
- color: #FFFFFF;
-}
-
-.ui.grid > .red.row,
-.ui.grid > .red.column,
-.ui.grid > .row > .red.column {
- background-color: #DB2828;
- color: #FFFFFF;
-}
-
-.ui.grid > .orange.row,
-.ui.grid > .orange.column,
-.ui.grid > .row > .orange.column {
- background-color: #F2711C;
- color: #FFFFFF;
-}
-
-.ui.grid > .yellow.row,
-.ui.grid > .yellow.column,
-.ui.grid > .row > .yellow.column {
- background-color: #FBBD08;
- color: #FFFFFF;
-}
-
-.ui.grid > .olive.row,
-.ui.grid > .olive.column,
-.ui.grid > .row > .olive.column {
- background-color: #B5CC18;
- color: #FFFFFF;
-}
-
-.ui.grid > .green.row,
-.ui.grid > .green.column,
-.ui.grid > .row > .green.column {
- background-color: #21BA45;
- color: #FFFFFF;
-}
-
-.ui.grid > .teal.row,
-.ui.grid > .teal.column,
-.ui.grid > .row > .teal.column {
- background-color: #00B5AD;
- color: #FFFFFF;
-}
-
-.ui.grid > .blue.row,
-.ui.grid > .blue.column,
-.ui.grid > .row > .blue.column {
- background-color: #2185D0;
- color: #FFFFFF;
-}
-
-.ui.grid > .violet.row,
-.ui.grid > .violet.column,
-.ui.grid > .row > .violet.column {
- background-color: #6435C9;
- color: #FFFFFF;
-}
-
-.ui.grid > .purple.row,
-.ui.grid > .purple.column,
-.ui.grid > .row > .purple.column {
- background-color: #A333C8;
- color: #FFFFFF;
-}
-
-.ui.grid > .pink.row,
-.ui.grid > .pink.column,
-.ui.grid > .row > .pink.column {
- background-color: #E03997;
- color: #FFFFFF;
-}
-
-.ui.grid > .brown.row,
-.ui.grid > .brown.column,
-.ui.grid > .row > .brown.column {
- background-color: #A5673F;
- color: #FFFFFF;
-}
-
-.ui.grid > .grey.row,
-.ui.grid > .grey.column,
-.ui.grid > .row > .grey.column {
- background-color: #767676;
- color: #FFFFFF;
-}
-
-.ui.grid > .black.row,
-.ui.grid > .black.column,
-.ui.grid > .row > .black.column {
- background-color: #1B1C1D;
- color: #FFFFFF;
-}
-
-/*----------------------
- Equal Width
------------------------*/
-
-.ui[class*="equal width"].grid > .column:not(.row),
-.ui[class*="equal width"].grid > .row > .column,
-.ui.grid > [class*="equal width"].row > .column {
- display: inline-block;
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
-}
-
-.ui[class*="equal width"].grid > .wide.column,
-.ui[class*="equal width"].grid > .row > .wide.column,
-.ui.grid > [class*="equal width"].row > .wide.column {
- -webkit-box-flex: 0;
- -ms-flex-positive: 0;
- flex-grow: 0;
-}
-
-/*----------------------
- Reverse
- -----------------------*/
-
-/* Mobile */
-
-@media only screen and (max-width: 767.98px) {
- .ui[class*="mobile reversed"].grid,
- .ui[class*="mobile reversed"].grid > .row,
- .ui.grid > [class*="mobile reversed"].row {
- -webkit-box-orient: horizontal;
- -webkit-box-direction: reverse;
- -ms-flex-direction: row-reverse;
- flex-direction: row-reverse;
- }
-
- .ui[class*="mobile vertically reversed"].grid,
- .ui.stackable[class*="mobile reversed"] {
- -webkit-box-orient: vertical;
- -webkit-box-direction: reverse;
- -ms-flex-direction: column-reverse;
- flex-direction: column-reverse;
- }
-
- /* Divided Reversed */
-
- .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child,
- .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
- -webkit-box-shadow: -1px 0 0 0 rgba(34, 36, 38, 0.15);
- box-shadow: -1px 0 0 0 rgba(34, 36, 38, 0.15);
- }
-
- .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .column:last-child,
- .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:last-child {
- -webkit-box-shadow: none;
- box-shadow: none;
- }
-
- /* Vertically Divided Reversed */
-
- .ui.grid[class*="vertically divided"][class*="mobile vertically reversed"] > .row:first-child:before {
- -webkit-box-shadow: 0 -1px 0 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 -1px 0 0 rgba(34, 36, 38, 0.15);
- }
-
- .ui.grid[class*="vertically divided"][class*="mobile vertically reversed"] > .row:last-child:before {
- -webkit-box-shadow: none;
- box-shadow: none;
- }
-
- /* Celled Reversed */
-
- .ui[class*="mobile reversed"].celled.grid > .row > .column:first-child {
- -webkit-box-shadow: -1px 0 0 0 #D4D4D5;
- box-shadow: -1px 0 0 0 #D4D4D5;
- }
-
- .ui[class*="mobile reversed"].celled.grid > .row > .column:last-child {
- -webkit-box-shadow: none;
- box-shadow: none;
- }
-}
-
-/* Tablet */
-
-@media only screen and (min-width: 768px) and (max-width: 991.98px) {
- .ui[class*="tablet reversed"].grid,
- .ui[class*="tablet reversed"].grid > .row,
- .ui.grid > [class*="tablet reversed"].row {
- -webkit-box-orient: horizontal;
- -webkit-box-direction: reverse;
- -ms-flex-direction: row-reverse;
- flex-direction: row-reverse;
- }
-
- .ui[class*="tablet vertically reversed"].grid {
- -webkit-box-orient: vertical;
- -webkit-box-direction: reverse;
- -ms-flex-direction: column-reverse;
- flex-direction: column-reverse;
- }
-
- /* Divided Reversed */
-
- .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child,
- .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
- -webkit-box-shadow: -1px 0 0 0 rgba(34, 36, 38, 0.15);
- box-shadow: -1px 0 0 0 rgba(34, 36, 38, 0.15);
- }
-
- .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .column:last-child,
- .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:last-child {
- -webkit-box-shadow: none;
- box-shadow: none;
- }
-
- /* Vertically Divided Reversed */
-
- .ui.grid[class*="vertically divided"][class*="tablet vertically reversed"] > .row:first-child:before {
- -webkit-box-shadow: 0 -1px 0 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 -1px 0 0 rgba(34, 36, 38, 0.15);
- }
-
- .ui.grid[class*="vertically divided"][class*="tablet vertically reversed"] > .row:last-child:before {
- -webkit-box-shadow: none;
- box-shadow: none;
- }
-
- /* Celled Reversed */
-
- .ui[class*="tablet reversed"].celled.grid > .row > .column:first-child {
- -webkit-box-shadow: -1px 0 0 0 #D4D4D5;
- box-shadow: -1px 0 0 0 #D4D4D5;
- }
-
- .ui[class*="tablet reversed"].celled.grid > .row > .column:last-child {
- -webkit-box-shadow: none;
- box-shadow: none;
- }
-}
-
-/* Computer */
-
-@media only screen and (min-width: 992px) {
- .ui[class*="computer reversed"].grid,
- .ui[class*="computer reversed"].grid > .row,
- .ui.grid > [class*="computer reversed"].row {
- -webkit-box-orient: horizontal;
- -webkit-box-direction: reverse;
- -ms-flex-direction: row-reverse;
- flex-direction: row-reverse;
- }
-
- .ui[class*="computer vertically reversed"].grid {
- -webkit-box-orient: vertical;
- -webkit-box-direction: reverse;
- -ms-flex-direction: column-reverse;
- flex-direction: column-reverse;
- }
-
- /* Divided Reversed */
-
- .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child,
- .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
- -webkit-box-shadow: -1px 0 0 0 rgba(34, 36, 38, 0.15);
- box-shadow: -1px 0 0 0 rgba(34, 36, 38, 0.15);
- }
-
- .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .column:last-child,
- .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:last-child {
- -webkit-box-shadow: none;
- box-shadow: none;
- }
-
- /* Vertically Divided Reversed */
-
- .ui.grid[class*="vertically divided"][class*="computer vertically reversed"] > .row:first-child:before {
- -webkit-box-shadow: 0 -1px 0 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 -1px 0 0 rgba(34, 36, 38, 0.15);
- }
-
- .ui.grid[class*="vertically divided"][class*="computer vertically reversed"] > .row:last-child:before {
- -webkit-box-shadow: none;
- box-shadow: none;
- }
-
- /* Celled Reversed */
-
- .ui[class*="computer reversed"].celled.grid > .row > .column:first-child {
- -webkit-box-shadow: -1px 0 0 0 #D4D4D5;
- box-shadow: -1px 0 0 0 #D4D4D5;
- }
-
- .ui[class*="computer reversed"].celled.grid > .row > .column:last-child {
- -webkit-box-shadow: none;
- box-shadow: none;
- }
-}
-
-/*-------------------
- Doubling
- --------------------*/
-
-/* Tablet Only */
-
-@media only screen and (min-width: 768px) and (max-width: 991.98px) {
- .ui.doubling.grid {
- width: auto;
- }
-
- .ui.grid > .doubling.row,
- .ui.doubling.grid > .row {
- margin: 0 !important;
- padding: 0 !important;
- }
-
- .ui.grid > .doubling.row > .column,
- .ui.doubling.grid > .row > .column {
- display: inline-block !important;
- padding-top: 1rem !important;
- padding-bottom: 1rem !important;
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
- margin: 0;
- }
-
- .ui[class*="two column"].doubling.grid > .row > .column,
- .ui[class*="two column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="two column"].doubling.row.row > .column {
- width: 100% !important;
- }
-
- .ui[class*="three column"].doubling.grid > .row > .column,
- .ui[class*="three column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="three column"].doubling.row.row > .column {
- width: 50% !important;
- }
-
- .ui[class*="four column"].doubling.grid > .row > .column,
- .ui[class*="four column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="four column"].doubling.row.row > .column {
- width: 50% !important;
- }
-
- .ui[class*="five column"].doubling.grid > .row > .column,
- .ui[class*="five column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="five column"].doubling.row.row > .column {
- width: 33.33333333% !important;
- }
-
- .ui[class*="six column"].doubling.grid > .row > .column,
- .ui[class*="six column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="six column"].doubling.row.row > .column {
- width: 33.33333333% !important;
- }
-
- .ui[class*="seven column"].doubling.grid > .row > .column,
- .ui[class*="seven column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="seven column"].doubling.row.row > .column {
- width: 33.33333333% !important;
- }
-
- .ui[class*="eight column"].doubling.grid > .row > .column,
- .ui[class*="eight column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="eight column"].doubling.row.row > .column {
- width: 25% !important;
- }
-
- .ui[class*="nine column"].doubling.grid > .row > .column,
- .ui[class*="nine column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="nine column"].doubling.row.row > .column {
- width: 25% !important;
- }
-
- .ui[class*="ten column"].doubling.grid > .row > .column,
- .ui[class*="ten column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="ten column"].doubling.row.row > .column {
- width: 20% !important;
- }
-
- .ui[class*="eleven column"].doubling.grid > .row > .column,
- .ui[class*="eleven column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="eleven column"].doubling.row.row > .column {
- width: 20% !important;
- }
-
- .ui[class*="twelve column"].doubling.grid > .row > .column,
- .ui[class*="twelve column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="twelve column"].doubling.row.row > .column {
- width: 16.66666667% !important;
- }
-
- .ui[class*="thirteen column"].doubling.grid > .row > .column,
- .ui[class*="thirteen column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="thirteen column"].doubling.row.row > .column {
- width: 16.66666667% !important;
- }
-
- .ui[class*="fourteen column"].doubling.grid > .row > .column,
- .ui[class*="fourteen column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="fourteen column"].doubling.row.row > .column {
- width: 14.28571429% !important;
- }
-
- .ui[class*="fifteen column"].doubling.grid > .row > .column,
- .ui[class*="fifteen column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="fifteen column"].doubling.row.row > .column {
- width: 14.28571429% !important;
- }
-
- .ui[class*="sixteen column"].doubling.grid > .row > .column,
- .ui[class*="sixteen column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="sixteen column"].doubling.row.row > .column {
- width: 12.5% !important;
- }
-}
-
-/* Mobile Only */
-
-@media only screen and (max-width: 767.98px) {
- .ui.grid > .doubling.row,
- .ui.doubling.grid > .row {
- margin: 0 !important;
- padding: 0 !important;
- }
-
- .ui.grid > .doubling.row > .column,
- .ui.doubling.grid > .row > .column {
- padding-top: 1rem !important;
- padding-bottom: 1rem !important;
- margin: 0 !important;
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
- }
-
- .ui[class*="two column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="two column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="two column"].doubling:not(.stackable).row.row > .column {
- width: 100% !important;
- }
-
- .ui[class*="three column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="three column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="three column"].doubling:not(.stackable).row.row > .column {
- width: 50% !important;
- }
-
- .ui[class*="four column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="four column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="four column"].doubling:not(.stackable).row.row > .column {
- width: 50% !important;
- }
-
- .ui[class*="five column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="five column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="five column"].doubling:not(.stackable).row.row > .column {
- width: 50% !important;
- }
-
- .ui[class*="six column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="six column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="six column"].doubling:not(.stackable).row.row > .column {
- width: 50% !important;
- }
-
- .ui[class*="seven column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="seven column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="seven column"].doubling:not(.stackable).row.row > .column {
- width: 50% !important;
- }
-
- .ui[class*="eight column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="eight column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="eight column"].doubling:not(.stackable).row.row > .column {
- width: 50% !important;
- }
-
- .ui[class*="nine column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="nine column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="nine column"].doubling:not(.stackable).row.row > .column {
- width: 33.33333333% !important;
- }
-
- .ui[class*="ten column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="ten column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="ten column"].doubling:not(.stackable).row.row > .column {
- width: 33.33333333% !important;
- }
-
- .ui[class*="eleven column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="eleven column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="eleven column"].doubling:not(.stackable).row.row > .column {
- width: 33.33333333% !important;
- }
-
- .ui[class*="twelve column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="twelve column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="twelve column"].doubling:not(.stackable).row.row > .column {
- width: 33.33333333% !important;
- }
-
- .ui[class*="thirteen column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="thirteen column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="thirteen column"].doubling:not(.stackable).row.row > .column {
- width: 33.33333333% !important;
- }
-
- .ui[class*="fourteen column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="fourteen column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="fourteen column"].doubling:not(.stackable).row.row > .column {
- width: 25% !important;
- }
-
- .ui[class*="fifteen column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="fifteen column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="fifteen column"].doubling:not(.stackable).row.row > .column {
- width: 25% !important;
- }
-
- .ui[class*="sixteen column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="sixteen column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="sixteen column"].doubling:not(.stackable).row.row > .column {
- width: 25% !important;
- }
-}
-
-/*-------------------
- Stackable
- --------------------*/
-
-@media only screen and (max-width: 767.98px) {
- .ui.stackable.grid {
- width: auto;
- margin-left: 0 !important;
- margin-right: 0 !important;
- }
-
- .ui.stackable.grid > .row > .wide.column,
- .ui.stackable.grid > .wide.column,
- .ui.stackable.grid > .column.grid > .column,
- .ui.stackable.grid > .column.row > .column,
- .ui.stackable.grid > .row > .column,
- .ui.stackable.grid > .column:not(.row),
- .ui.grid > .stackable.stackable.stackable.row > .column {
- width: 100% !important;
- margin: 0 0 !important;
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
- padding: 1rem 1rem;
- }
-
- .ui.stackable.grid:not(.vertically) > .row {
- margin: 0;
- padding: 0;
- }
-
- /* Coupling */
-
- .ui.container > .ui.stackable.grid > .column,
- .ui.container > .ui.stackable.grid > .row > .column {
- padding-left: 0 !important;
- padding-right: 0 !important;
- }
-
- /* Don't pad inside segment or nested grid */
-
- .ui.grid .ui.stackable.grid,
- .ui.segment:not(.vertical) .ui.stackable.page.grid {
- margin-left: -1rem !important;
- margin-right: -1rem !important;
- }
-
- /* Divided Stackable */
-
- .ui.stackable.divided.grid > .row:first-child > .column:first-child,
- .ui.stackable.celled.grid > .row:first-child > .column:first-child,
- .ui.stackable.divided.grid > .column:not(.row):first-child,
- .ui.stackable.celled.grid > .column:not(.row):first-child {
- border-top: none !important;
- }
-
- .ui.inverted.stackable.celled.grid > .column:not(.row),
- .ui.inverted.stackable.divided.grid > .column:not(.row),
- .ui.inverted.stackable.celled.grid > .row > .column,
- .ui.inverted.stackable.divided.grid > .row > .column {
- border-top: 1px solid rgba(255, 255, 255, 0.1);
- }
-
- .ui.stackable.celled.grid > .column:not(.row),
- .ui.stackable.divided:not(.vertically).grid > .column:not(.row),
- .ui.stackable.celled.grid > .row > .column,
- .ui.stackable.divided:not(.vertically).grid > .row > .column {
- border-top: 1px solid rgba(34, 36, 38, 0.15);
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
- padding-top: 2rem !important;
- padding-bottom: 2rem !important;
- }
-
- .ui.stackable.celled.grid > .row {
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
- }
-
- .ui.stackable.divided:not(.vertically).grid > .column:not(.row),
- .ui.stackable.divided:not(.vertically).grid > .row > .column {
- padding-left: 0 !important;
- padding-right: 0 !important;
- }
-}
-
-/*----------------------
- Only (Device)
------------------------*/
-
-/* These include arbitrary class repetitions for forced specificity */
-
-/* Mobile Only Hide */
-
-@media only screen and (max-width: 767.98px) {
- .ui[class*="tablet only"].grid.grid.grid:not(.mobile),
- .ui.grid.grid.grid > [class*="tablet only"].row:not(.mobile),
- .ui.grid.grid.grid > [class*="tablet only"].column:not(.mobile),
- .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.mobile) {
- display: none !important;
- }
-
- .ui[class*="computer only"].grid.grid.grid:not(.mobile),
- .ui.grid.grid.grid > [class*="computer only"].row:not(.mobile),
- .ui.grid.grid.grid > [class*="computer only"].column:not(.mobile),
- .ui.grid.grid.grid > .row > [class*="computer only"].column:not(.mobile) {
- display: none !important;
- }
-
- .ui[class*="large screen only"].grid.grid.grid:not(.mobile),
- .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile),
- .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile),
- .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) {
- display: none !important;
- }
-
- .ui[class*="widescreen only"].grid.grid.grid:not(.mobile),
- .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile),
- .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile),
- .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) {
- display: none !important;
- }
-}
-
-/* Tablet Only Hide */
-
-@media only screen and (min-width: 768px) and (max-width: 991.98px) {
- .ui[class*="mobile only"].grid.grid.grid:not(.tablet),
- .ui.grid.grid.grid > [class*="mobile only"].row:not(.tablet),
- .ui.grid.grid.grid > [class*="mobile only"].column:not(.tablet),
- .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.tablet) {
- display: none !important;
- }
-
- .ui[class*="computer only"].grid.grid.grid:not(.tablet),
- .ui.grid.grid.grid > [class*="computer only"].row:not(.tablet),
- .ui.grid.grid.grid > [class*="computer only"].column:not(.tablet),
- .ui.grid.grid.grid > .row > [class*="computer only"].column:not(.tablet) {
- display: none !important;
- }
-
- .ui[class*="large screen only"].grid.grid.grid:not(.mobile),
- .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile),
- .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile),
- .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) {
- display: none !important;
- }
-
- .ui[class*="widescreen only"].grid.grid.grid:not(.mobile),
- .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile),
- .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile),
- .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) {
- display: none !important;
- }
-}
-
-/* Computer Only Hide */
-
-@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
- .ui[class*="mobile only"].grid.grid.grid:not(.computer),
- .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer),
- .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer),
- .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) {
- display: none !important;
- }
-
- .ui[class*="tablet only"].grid.grid.grid:not(.computer),
- .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer),
- .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer),
- .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) {
- display: none !important;
- }
-
- .ui[class*="large screen only"].grid.grid.grid:not(.mobile),
- .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile),
- .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile),
- .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) {
- display: none !important;
- }
-
- .ui[class*="widescreen only"].grid.grid.grid:not(.mobile),
- .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile),
- .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile),
- .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) {
- display: none !important;
- }
-}
-
-/* Large Screen Only Hide */
-
-@media only screen and (min-width: 1200px) and (max-width: 1919.98px) {
- .ui[class*="mobile only"].grid.grid.grid:not(.computer),
- .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer),
- .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer),
- .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) {
- display: none !important;
- }
-
- .ui[class*="tablet only"].grid.grid.grid:not(.computer),
- .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer),
- .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer),
- .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) {
- display: none !important;
- }
-
- .ui[class*="widescreen only"].grid.grid.grid:not(.mobile),
- .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile),
- .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile),
- .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) {
- display: none !important;
- }
-}
-
-/* Widescreen Only Hide */
-
-@media only screen and (min-width: 1920px) {
- .ui[class*="mobile only"].grid.grid.grid:not(.computer),
- .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer),
- .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer),
- .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) {
- display: none !important;
- }
-
- .ui[class*="tablet only"].grid.grid.grid:not(.computer),
- .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer),
- .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer),
- .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) {
- display: none !important;
- }
-}
-
-/*-----------------
- Compact
- -----------------*/
-
-.ui.ui.ui.compact.grid > .column:not(.row),
-.ui.ui.ui.compact.grid > .row > .column {
- padding-left: 0.5rem;
- padding-right: 0.5rem;
-}
-
-.ui.ui.ui.compact.grid > * {
- padding-left: 0.5rem;
- padding-right: 0.5rem;
-}
-
-/* Row */
-
-.ui.ui.ui.compact.grid > .row {
- padding-top: 0.5rem;
- padding-bottom: 0.5rem;
-}
-
-/* Columns */
-
-.ui.ui.ui.compact.grid > .column:not(.row) {
- padding-top: 0.5rem;
- padding-bottom: 0.5rem;
-}
-
-/* Relaxed + Celled */
-
-.ui.compact.relaxed.celled.grid > .column:not(.row),
-.ui.compact.relaxed.celled.grid > .row > .column {
- padding: 0.75em;
-}
-
-.ui.compact[class*="very relaxed"].celled.grid > .column:not(.row),
-.ui.compact[class*="very relaxed"].celled.grid > .row > .column {
- padding: 1em;
-}
-
-/*-----------------
- Very compact
- -----------------*/
-
-.ui[class*="very compact"].grid > .column:not(.row),
-.ui[class*="very compact"].grid > .row > .column {
- padding-left: 0.25rem;
- padding-right: 0.5rem;
-}
-
-.ui[class*="very compact"].grid > * {
- padding-left: 0.25rem;
- padding-right: 0.25rem;
-}
-
-/* Row */
-
-.ui[class*="very compact"].grid > .row {
- padding-top: 0.25rem;
- padding-bottom: 0.25rem;
-}
-
-/* Columns */
-
-.ui[class*="very compact"].grid > .column:not(.row) {
- padding-top: 0.25rem;
- padding-bottom: 0.25rem;
-}
-
-/* Relaxed + Celled */
-
-.ui[class*="very compact"].relaxed.celled.grid > .column:not(.row),
-.ui[class*="very compact"].relaxed.celled.grid > .row > .column {
- padding: 0.375em;
-}
-
-.ui[class*="very compact"][class*="very relaxed"].celled.grid > .column:not(.row),
-.ui[class*="very compact"][class*="very relaxed"].celled.grid > .row > .column {
- padding: 0.5em;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- Site Overrides
-*******************************/
-/*
- * # Fomantic - Menu
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Copyright 2015 Contributor
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Standard
-*******************************/
-
-/*--------------
- Menu
----------------*/
-
-.ui.menu {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- margin: 1rem 0;
- font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
- background: #FFFFFF;
- font-weight: normal;
- border: 1px solid rgba(34, 36, 38, 0.15);
- -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
- border-radius: 0.28571429rem;
- min-height: 2.85714286em;
-}
-
-.ui.menu:after {
- content: '';
- display: block;
- height: 0;
- clear: both;
- visibility: hidden;
-}
-
-.ui.menu:first-child {
- margin-top: 0;
-}
-
-.ui.menu:last-child {
- margin-bottom: 0;
-}
-
-/*--------------
- Sub-Menu
----------------*/
-
-.ui.menu .menu {
- margin: 0;
-}
-
-.ui.menu:not(.vertical) > .menu {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
-}
-
-/*--------------
- Item
----------------*/
-
-.ui.menu:not(.vertical) .item {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
-}
-
-.ui.menu .item {
- position: relative;
- vertical-align: middle;
- line-height: 1;
- text-decoration: none;
- -webkit-tap-highlight-color: transparent;
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- background: none;
- padding: 0.92857143em 1.14285714em;
- text-transform: none;
- color: rgba(0, 0, 0, 0.87);
- font-weight: normal;
- -webkit-transition: background 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease;
- transition: background 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease;
- transition: background 0.1s ease, box-shadow 0.1s ease, color 0.1s ease;
- transition: background 0.1s ease, box-shadow 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease;
-}
-
-.ui.menu > .item:first-child {
- border-radius: 0.28571429rem 0 0 0.28571429rem;
-}
-
-/* Border */
-
-.ui.menu .item:before {
- position: absolute;
- content: '';
- top: 0;
- right: 0;
- height: 100%;
- width: 1px;
- background: rgba(34, 36, 38, 0.1);
-}
-
-/*--------------
- Text Content
----------------*/
-
-.ui.menu .text.item > *,
-.ui.menu .item > a:not(.ui),
-.ui.menu .item > p:only-child {
- -webkit-user-select: text;
- -moz-user-select: text;
- -ms-user-select: text;
- user-select: text;
- line-height: 1.3;
-}
-
-.ui.menu .item > p:first-child {
- margin-top: 0;
-}
-
-.ui.menu .item > p:last-child {
- margin-bottom: 0;
-}
-
-/*--------------
- Icons
----------------*/
-
-.ui.menu .item > i.icon {
- opacity: 0.9;
- float: none;
- margin: 0 0.35714286em 0 0;
-}
-
-/*--------------
- Button
----------------*/
-
-.ui.menu:not(.vertical) .item > .button {
- position: relative;
- top: 0;
- margin: -0.5em 0;
- padding-bottom: 0.78571429em;
- padding-top: 0.78571429em;
- font-size: 1em;
-}
-
-/*----------------
- Grid / Container
------------------*/
-
-.ui.menu > .grid,
-.ui.menu > .container {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: inherit;
- -ms-flex-align: inherit;
- align-items: inherit;
- -webkit-box-orient: inherit;
- -webkit-box-direction: inherit;
- -ms-flex-direction: inherit;
- flex-direction: inherit;
-}
-
-/*--------------
- Inputs
----------------*/
-
-.ui.menu .item > .input {
- width: 100%;
-}
-
-.ui.menu:not(.vertical) .item > .input {
- position: relative;
- top: 0;
- margin: -0.5em 0;
-}
-
-.ui.menu .item > .input input {
- font-size: 1em;
- padding-top: 0.57142857em;
- padding-bottom: 0.57142857em;
-}
-
-/*--------------
- Header
----------------*/
-
-.ui.menu .header.item,
-.ui.vertical.menu .header.item {
- margin: 0;
- background: '';
- text-transform: normal;
- font-weight: bold;
-}
-
-.ui.vertical.menu .item > .header:not(.ui) {
- margin: 0 0 0.5em;
- font-size: 1em;
- font-weight: bold;
-}
-
-/*--------------
- Dropdowns
----------------*/
-
-/* Dropdown Icon */
-
-.ui.menu .item > i.dropdown.icon {
- padding: 0;
- float: right;
- margin: 0 0 0 1em;
-}
-
-/* Menu */
-
-.ui.menu .dropdown.item .menu {
- min-width: calc(100% - 1px);
- border-radius: 0 0 0.28571429rem 0.28571429rem;
- background: #FFFFFF;
- margin: 0 0 0;
- -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
- box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
- -webkit-box-orient: vertical !important;
- -webkit-box-direction: normal !important;
- -ms-flex-direction: column !important;
- flex-direction: column !important;
-}
-
-/* Menu Items */
-
-.ui.menu .ui.dropdown .menu > .item {
- margin: 0;
- text-align: left;
- font-size: 1em !important;
- padding: 0.78571429em 1.14285714em !important;
- background: transparent !important;
- color: rgba(0, 0, 0, 0.87) !important;
- text-transform: none !important;
- font-weight: normal !important;
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
- -webkit-transition: none !important;
- transition: none !important;
-}
-
-.ui.menu .ui.dropdown .menu > .item:hover {
- background: rgba(0, 0, 0, 0.05) !important;
- color: rgba(0, 0, 0, 0.95) !important;
-}
-
-.ui.menu .ui.dropdown .menu > .selected.item {
- background: rgba(0, 0, 0, 0.05) !important;
- color: rgba(0, 0, 0, 0.95) !important;
-}
-
-.ui.menu .ui.dropdown .menu > .active.item {
- background: rgba(0, 0, 0, 0.03) !important;
- font-weight: bold !important;
- color: rgba(0, 0, 0, 0.95) !important;
-}
-
-.ui.menu .ui.dropdown.item .menu .item:not(.filtered) {
- display: block;
-}
-
-.ui.menu .ui.dropdown .menu > .item .icon:not(.dropdown) {
- display: inline-block;
- font-size: 1em !important;
- float: none;
- margin: 0 0.75em 0 0 !important;
-}
-
-/* Secondary */
-
-.ui.secondary.menu .dropdown.item > .menu,
-.ui.text.menu .dropdown.item > .menu {
- border-radius: 0.28571429rem;
- margin-top: 0.35714286em;
-}
-
-/* Pointing */
-
-.ui.menu .pointing.dropdown.item .menu {
- margin-top: 0.75em;
-}
-
-/* Inverted */
-
-.ui.inverted.menu .search.dropdown.item > .search,
-.ui.inverted.menu .search.dropdown.item > .text {
- color: rgba(255, 255, 255, 0.9);
-}
-
-/* Vertical */
-
-.ui.vertical.menu .dropdown.item > .icon {
- float: right;
- content: "\f0da";
- margin-left: 1em;
-}
-
-.ui.vertical.menu .dropdown.item .menu {
- left: 100%;
- /* IE needs 0, all others support max-content to show dropdown icon inline, so keep both settings! */
- min-width: 0;
- min-width: -webkit-max-content;
- min-width: -moz-max-content;
- min-width: max-content;
- margin: 0 0 0 0;
- -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
- box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
- border-radius: 0 0.28571429rem 0.28571429rem 0.28571429rem;
-}
-
-.ui.vertical.menu .dropdown.item.upward .menu {
- bottom: 0;
-}
-
-.ui.vertical.menu .dropdown.item:not(.upward) .menu {
- top: 0;
-}
-
-.ui.vertical.menu .active.dropdown.item {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
-}
-
-.ui.vertical.menu .dropdown.active.item {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/* Evenly Divided */
-
-.ui.item.menu .dropdown .menu .item {
- width: 100%;
-}
-
-/*--------------
- Labels
----------------*/
-
-.ui.menu .item > .label:not(.floating) {
- margin-left: 1em;
- padding: 0.3em 0.78571429em;
-}
-
-.ui.vertical.menu .item > .label {
- margin-top: -0.15em;
- margin-bottom: -0.15em;
- padding: 0.3em 0.78571429em;
-}
-
-.ui.menu .item > .floating.label {
- padding: 0.3em 0.78571429em;
-}
-
-.ui.menu .item > .label {
- background: #999999;
- color: #FFFFFF;
-}
-
-.ui.menu .item > .image.label img {
- margin: -0.2833em 0.8em -0.2833em -0.8em;
- height: 1.5666em;
-}
-
-/*--------------
- Images
----------------*/
-
-.ui.menu .item > img:not(.ui) {
- display: inline-block;
- vertical-align: middle;
- margin: -0.3em 0;
- width: 2.5em;
-}
-
-.ui.vertical.menu .item > img:not(.ui):only-child {
- display: block;
- max-width: 100%;
- width: auto;
-}
-
-/*******************************
- Coupling
-*******************************/
-
-/*--------------
- List
----------------*/
-
-/* Menu divider shouldnt apply */
-
-.ui.menu .list .item:before {
- background: none !important;
-}
-
-/*--------------
- Sidebar
- ---------------*/
-
-/* Show vertical dividers below last */
-
-.ui.vertical.sidebar.menu > .item:first-child:before {
- display: block !important;
-}
-
-.ui.vertical.sidebar.menu > .item::before {
- top: auto;
- bottom: 0;
-}
-
-/*--------------
- Container
----------------*/
-
-@media only screen and (max-width: 767.98px) {
- .ui.menu > .ui.container {
- width: 100% !important;
- margin-left: 0 !important;
- margin-right: 0 !important;
- }
-}
-
-@media only screen and (min-width: 768px) {
- .ui.menu:not(.secondary):not(.text):not(.tabular):not(.borderless) > .container > .item:not(.right):not(.borderless):first-child {
- border-left: 1px solid rgba(34, 36, 38, 0.1);
- }
-
- .ui.menu:not(.secondary):not(.text):not(.tabular):not(.borderless) > .container > .right.item:not(.borderless):last-child,
- .ui.menu:not(.secondary):not(.text):not(.tabular):not(.borderless) > .container > .right.menu > .item:not(.borderless):last-child {
- border-right: 1px solid rgba(34, 36, 38, 0.1);
- }
-}
-
-/*******************************
- States
-*******************************/
-
-/*--------------
- Hover
----------------*/
-
-.ui.link.menu .item:hover,
-.ui.menu .dropdown.item:hover,
-.ui.menu .link.item:hover,
-.ui.menu a.item:hover {
- cursor: pointer;
- background: rgba(0, 0, 0, 0.03);
- color: rgba(0, 0, 0, 0.95);
-}
-
-/*--------------
- Pressed
----------------*/
-
-.ui.link.menu .item:active,
-.ui.menu .link.item:active,
-.ui.menu a.item:active {
- background: rgba(0, 0, 0, 0.03);
- color: rgba(0, 0, 0, 0.95);
-}
-
-/*--------------
- Active
----------------*/
-
-.ui.menu .active.item {
- background: rgba(0, 0, 0, 0.05);
- color: rgba(0, 0, 0, 0.95);
- font-weight: normal;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.menu .active.item > i.icon {
- opacity: 1;
-}
-
-/*--------------
- Active Hover
----------------*/
-
-.ui.menu .active.item:hover,
-.ui.vertical.menu .active.item:hover {
- background-color: rgba(0, 0, 0, 0.05);
- color: rgba(0, 0, 0, 0.95);
-}
-
-/*--------------
- Disabled
----------------*/
-
-.ui.ui.menu .item.disabled {
- cursor: default;
- background-color: transparent;
- color: rgba(40, 40, 40, 0.3);
- pointer-events: none;
-}
-
-/*******************************
- Types
-*******************************/
-
-/*------------------
-Floated Menu / Item
--------------------*/
-
-/* Left Floated */
-
-.ui.menu:not(.vertical) .left.item,
-.ui.menu:not(.vertical) .left.menu {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- margin-right: auto !important;
-}
-
-/* Right Floated */
-
-.ui.menu:not(.vertical) .right.item,
-.ui.menu:not(.vertical) .right.menu {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- margin-left: auto !important;
-}
-
-.ui.menu:not(.vertical) :not(.dropdown) > .left.menu,
-.ui.menu:not(.vertical) :not(.dropdown) > .right.menu {
- display: inherit;
-}
-
-/* Center */
-
-.ui.menu:not(.vertical) .center.item,
-.ui.menu:not(.vertical) .center.menu {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- margin-left: auto !important;
- margin-right: auto !important;
-}
-
-/* Swapped Borders */
-
-.ui.menu .right.item::before,
-.ui.menu .right.menu > .item::before {
- right: auto;
- left: 0;
-}
-
-/* Remove Outer Borders */
-
-.ui.menu .center.item:last-child::before,
-.ui.menu .center.menu > .item:last-child::before {
- display: none;
-}
-
-/*--------------
- Vertical
- ---------------*/
-
-.ui.vertical.menu {
- display: block;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- background: #FFFFFF;
- -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
-}
-
-/*--- Item ---*/
-
-.ui.vertical.menu .item {
- display: block;
- background: none;
- border-top: none;
- border-right: none;
-}
-
-.ui.vertical.menu > .item:first-child {
- border-radius: 0.28571429rem 0.28571429rem 0 0;
-}
-
-.ui.vertical.menu > .item:last-child {
- border-radius: 0 0 0.28571429rem 0.28571429rem;
-}
-
-/*--- Label ---*/
-
-.ui.vertical.menu .item > .label {
- float: right;
- text-align: center;
-}
-
-/*--- Icon ---*/
-
-.ui.vertical.menu .item > i.icon,
-.ui.vertical.menu .item > i.icons {
- width: 1.18em;
- float: right;
- margin: 0 0 0 0.5em;
-}
-
-.ui.vertical.menu .item > .label + i.icon {
- float: none;
- margin: 0 0.5em 0 0;
-}
-
-/*--- Border ---*/
-
-.ui.vertical.menu .item:before {
- position: absolute;
- content: '';
- top: 0;
- left: 0;
- width: 100%;
- height: 1px;
- background: rgba(34, 36, 38, 0.1);
-}
-
-.ui.vertical.menu .item:first-child:before {
- display: none !important;
-}
-
-/*--- Sub Menu ---*/
-
-.ui.vertical.menu .item > .menu {
- margin: 0.5em -1.14285714em 0;
-}
-
-.ui.vertical.menu .menu .item {
- background: none;
- padding: 0.5em 1.33333333em;
- font-size: 0.85714286em;
- color: rgba(0, 0, 0, 0.5);
-}
-
-.ui.vertical.menu .item .menu a.item:hover,
-.ui.vertical.menu .item .menu .link.item:hover {
- color: rgba(0, 0, 0, 0.85);
-}
-
-.ui.vertical.menu .menu .item:before {
- display: none;
-}
-
-/* Vertical Active */
-
-.ui.vertical.menu .active.item {
- background: rgba(0, 0, 0, 0.05);
- border-radius: 0;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.vertical.menu > .active.item:first-child {
- border-radius: 0.28571429rem 0.28571429rem 0 0;
-}
-
-.ui.vertical.menu > .active.item:last-child {
- border-radius: 0 0 0.28571429rem 0.28571429rem;
-}
-
-.ui.vertical.menu > .active.item:only-child {
- border-radius: 0.28571429rem;
-}
-
-.ui.vertical.menu .active.item .menu .active.item {
- border-left: none;
-}
-
-.ui.vertical.menu .item .menu .active.item {
- background-color: transparent;
- font-weight: bold;
- color: rgba(0, 0, 0, 0.95);
-}
-
-/*--------------
- Tabular
- ---------------*/
-
-.ui.tabular.menu {
- border-radius: 0;
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
- border: none;
- background: none transparent;
- border-bottom: 1px solid #D4D4D5;
-}
-
-.ui.tabular.fluid.menu {
- width: calc(100% + 2px) !important;
-}
-
-.ui.tabular.menu .item {
- background: transparent;
- border-bottom: none;
- border-left: 1px solid transparent;
- border-right: 1px solid transparent;
- border-top: 2px solid transparent;
- padding: 0.92857143em 1.42857143em;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.tabular.menu .item:before {
- display: none;
-}
-
-/* Hover */
-
-.ui.tabular.menu .item:hover {
- background-color: transparent;
- color: rgba(0, 0, 0, 0.8);
-}
-
-/* Active */
-
-.ui.tabular.menu .active.item {
- background: none #FFFFFF;
- color: rgba(0, 0, 0, 0.95);
- border-top-width: 1px;
- border-color: #D4D4D5;
- font-weight: bold;
- margin-bottom: -1px;
- -webkit-box-shadow: none;
- box-shadow: none;
- border-radius: 0.28571429rem 0.28571429rem 0 0 !important;
-}
-
-/* Coupling with segment for attachment */
-
-.ui.tabular.menu + .attached:not(.top).segment,
-.ui.tabular.menu + .attached:not(.top).segment + .attached:not(.top).segment {
- border-top: none;
- margin-left: 0;
- margin-top: 0;
- margin-right: 0;
- width: 100%;
-}
-
-.top.attached.segment + .ui.bottom.tabular.menu {
- position: relative;
- width: calc(100% + 2px);
- left: -1px;
-}
-
-/* Bottom Vertical Tabular */
-
-.ui.bottom.tabular.menu {
- background: none transparent;
- border-radius: 0;
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
- border-bottom: none;
- border-top: 1px solid #D4D4D5;
-}
-
-.ui.bottom.tabular.menu .item {
- background: none;
- border-left: 1px solid transparent;
- border-right: 1px solid transparent;
- border-bottom: 1px solid transparent;
- border-top: none;
-}
-
-.ui.bottom.tabular.menu .active.item {
- background: none #FFFFFF;
- color: rgba(0, 0, 0, 0.95);
- border-color: #D4D4D5;
- margin: -1px 0 0 0;
- border-radius: 0 0 0.28571429rem 0.28571429rem !important;
-}
-
-/* Vertical Tabular (Left) */
-
-.ui.vertical.tabular.menu {
- background: none transparent;
- border-radius: 0;
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
- border-bottom: none;
- border-right: 1px solid #D4D4D5;
-}
-
-.ui.vertical.tabular.menu .item {
- background: none;
- border-left: 1px solid transparent;
- border-bottom: 1px solid transparent;
- border-top: 1px solid transparent;
- border-right: none;
-}
-
-.ui.vertical.tabular.menu .active.item {
- background: none #FFFFFF;
- color: rgba(0, 0, 0, 0.95);
- border-color: #D4D4D5;
- margin: 0 -1px 0 0;
- border-radius: 0.28571429rem 0 0 0.28571429rem !important;
-}
-
-/* Vertical Right Tabular */
-
-.ui.vertical.right.tabular.menu {
- background: none transparent;
- border-radius: 0;
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
- border-bottom: none;
- border-right: none;
- border-left: 1px solid #D4D4D5;
-}
-
-.ui.vertical.right.tabular.menu .item {
- background: none;
- border-right: 1px solid transparent;
- border-bottom: 1px solid transparent;
- border-top: 1px solid transparent;
- border-left: none;
-}
-
-.ui.vertical.right.tabular.menu .active.item {
- background: none #FFFFFF;
- color: rgba(0, 0, 0, 0.95);
- border-color: #D4D4D5;
- margin: 0 0 0 -1px;
- border-radius: 0 0.28571429rem 0.28571429rem 0 !important;
-}
-
-/* Dropdown */
-
-.ui.tabular.menu .active.dropdown.item {
- margin-bottom: 0;
- border-left: 1px solid transparent;
- border-right: 1px solid transparent;
- border-top: 2px solid transparent;
- border-bottom: none;
-}
-
-/*--------------
- Pagination
- ---------------*/
-
-.ui.pagination.menu {
- margin: 0;
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
- vertical-align: middle;
-}
-
-.ui.pagination.menu .item:last-child {
- border-radius: 0 0.28571429rem 0.28571429rem 0;
-}
-
-.ui.compact.menu .item:last-child {
- border-radius: 0 0.28571429rem 0.28571429rem 0;
-}
-
-.ui.pagination.menu .item:last-child:before {
- display: none;
-}
-
-.ui.pagination.menu .item {
- min-width: 3em;
- text-align: center;
-}
-
-.ui.pagination.menu .icon.item i.icon {
- vertical-align: top;
-}
-
-/* Active */
-
-.ui.pagination.menu .active.item {
- border-top: none;
- padding-top: 0.92857143em;
- background-color: rgba(0, 0, 0, 0.05);
- color: rgba(0, 0, 0, 0.95);
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/*--------------
- Secondary
- ---------------*/
-
-.ui.secondary.menu {
- background: none;
- margin-left: -0.35714286em;
- margin-right: -0.35714286em;
- border-radius: 0;
- border: none;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/* Item */
-
-.ui.secondary.menu .item {
- -ms-flex-item-align: center;
- align-self: center;
- -webkit-box-shadow: none;
- box-shadow: none;
- border: none;
- padding: 0.78571429em 0.92857143em;
- margin: 0 0.35714286em;
- background: none;
- -webkit-transition: color 0.1s ease;
- transition: color 0.1s ease;
- border-radius: 0.28571429rem;
-}
-
-/* No Divider */
-
-.ui.secondary.menu .item:before {
- display: none !important;
-}
-
-/* Header */
-
-.ui.secondary.menu .header.item {
- border-radius: 0;
- border-right: none;
- background: none transparent;
-}
-
-/* Image */
-
-.ui.secondary.menu .item > img:not(.ui) {
- margin: 0;
-}
-
-/* Hover */
-
-.ui.secondary.menu .dropdown.item:hover,
-.ui.secondary.menu .link.item:hover,
-.ui.secondary.menu a.item:hover {
- background: rgba(0, 0, 0, 0.05);
- color: rgba(0, 0, 0, 0.95);
-}
-
-/* Active */
-
-.ui.secondary.menu .active.item {
- -webkit-box-shadow: none;
- box-shadow: none;
- background: rgba(0, 0, 0, 0.05);
- color: rgba(0, 0, 0, 0.95);
- border-radius: 0.28571429rem;
-}
-
-/* Active Hover */
-
-.ui.secondary.menu .active.item:hover {
- -webkit-box-shadow: none;
- box-shadow: none;
- background: rgba(0, 0, 0, 0.05);
- color: rgba(0, 0, 0, 0.95);
-}
-
-/* Inverted */
-
-.ui.secondary.inverted.menu .link.item:not(.disabled),
-.ui.secondary.inverted.menu a.item:not(.disabled) {
- color: rgba(255, 255, 255, 0.7);
-}
-
-.ui.secondary.inverted.menu .dropdown.item:hover,
-.ui.secondary.inverted.menu .link.item:hover,
-.ui.secondary.inverted.menu a.item:hover {
- background: rgba(255, 255, 255, 0.08);
- color: #ffffff;
-}
-
-.ui.secondary.inverted.menu .active.item {
- background: rgba(255, 255, 255, 0.15);
- color: #ffffff;
-}
-
-/* Fix item margins */
-
-.ui.secondary.item.menu {
- margin-left: 0;
- margin-right: 0;
-}
-
-.ui.secondary.item.menu .item:last-child {
- margin-right: 0;
-}
-
-.ui.secondary.attached.menu {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/*---------------------
- Secondary Vertical
- -----------------------*/
-
-/* Sub Menu */
-
-.ui.vertical.secondary.menu .item:not(.dropdown) > .menu {
- margin: 0 -0.92857143em;
-}
-
-.ui.vertical.secondary.menu .item:not(.dropdown) > .menu > .item {
- margin: 0;
- padding: 0.5em 1.33333333em;
-}
-
-.ui.secondary.vertical.menu > .item {
- border: none;
- margin: 0 0 0.35714286em;
- border-radius: 0.28571429rem !important;
-}
-
-.ui.secondary.vertical.menu > .header.item {
- border-radius: 0;
-}
-
-/* Sub Menu */
-
-.ui.vertical.secondary.menu .item > .menu .item {
- background-color: transparent;
-}
-
-/* Inverted */
-
-.ui.secondary.inverted.menu {
- background-color: transparent;
-}
-
-/*---------------------
- Secondary Pointing
- -----------------------*/
-
-.ui.secondary.pointing.menu {
- margin-left: 0;
- margin-right: 0;
- border-bottom: 2px solid rgba(34, 36, 38, 0.15);
-}
-
-.ui.secondary.pointing.menu .item {
- border-bottom-color: transparent;
- border-bottom-style: solid;
- border-radius: 0;
- -ms-flex-item-align: end;
- align-self: flex-end;
- margin: 0 0 -2px;
- padding: 0.85714286em 1.14285714em;
- border-bottom-width: 2px;
- -webkit-transition: color 0.1s ease;
- transition: color 0.1s ease;
-}
-
-.ui.secondary.pointing.menu .ui.dropdown .menu .item {
- border-bottom-width: 0;
-}
-
-.ui.secondary.pointing.menu .item > .label:not(.floating) {
- margin-top: -0.3em;
- margin-bottom: -0.3em;
-}
-
-.ui.secondary.pointing.menu .item > .circular.label {
- margin-top: -0.5em;
- margin-bottom: -0.5em;
-}
-
-/* Item Types */
-
-.ui.secondary.pointing.menu .header.item {
- color: rgba(0, 0, 0, 0.85) !important;
-}
-
-.ui.secondary.pointing.menu .text.item {
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
-}
-
-.ui.secondary.pointing.menu .item:after {
- display: none;
-}
-
-/* Hover */
-
-.ui.secondary.pointing.menu .dropdown.item:hover,
-.ui.secondary.pointing.menu .link.item:hover,
-.ui.secondary.pointing.menu a.item:hover {
- background-color: transparent;
- color: rgba(0, 0, 0, 0.87);
-}
-
-/* Pressed */
-
-.ui.secondary.pointing.menu .dropdown.item:active,
-.ui.secondary.pointing.menu .link.item:active,
-.ui.secondary.pointing.menu a.item:active {
- background-color: transparent;
- border-color: rgba(34, 36, 38, 0.15);
-}
-
-/* Active */
-
-.ui.secondary.pointing.menu .active.item {
- background-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
- border-color: currentColor;
- font-weight: bold;
- color: rgba(0, 0, 0, 0.95);
-}
-
-/* Active Hover */
-
-.ui.secondary.pointing.menu .active.item:hover {
- border-color: currentColor;
- color: rgba(0, 0, 0, 0.95);
-}
-
-/* Active Dropdown */
-
-.ui.secondary.pointing.menu .active.dropdown.item {
- border-color: transparent;
-}
-
-/* Vertical Pointing */
-
-.ui.secondary.vertical.pointing.menu {
- border-bottom-width: 0;
- border-right-width: 2px;
- border-right-style: solid;
- border-right-color: rgba(34, 36, 38, 0.15);
-}
-
-.ui.secondary.vertical.pointing.menu .item {
- border-bottom: none;
- border-right-style: solid;
- border-right-color: transparent;
- border-radius: 0 !important;
- margin: 0 -2px 0 0;
- border-right-width: 2px;
-}
-
-/* Vertical Active */
-
-.ui.secondary.vertical.pointing.menu .active.item {
- border-color: currentColor;
-}
-
-/* Inverted */
-
-.ui.secondary.inverted.pointing.menu {
- border-color: rgba(255, 255, 255, 0.1);
-}
-
-.ui.secondary.inverted.pointing.menu .item:not(.disabled) {
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.secondary.inverted.pointing.menu .header.item {
- color: #FFFFFF !important;
-}
-
-/* Hover */
-
-.ui.secondary.inverted.pointing.menu .link.item:hover,
-.ui.secondary.inverted.pointing.menu a.item:hover {
- color: #ffffff;
-}
-
-/* Active */
-
-.ui.ui.secondary.inverted.pointing.menu .active.item {
- border-color: #FFFFFF;
- color: #ffffff;
- background-color: transparent;
-}
-
-/*--------------
- Text Menu
- ---------------*/
-
-.ui.text.menu {
- background: none transparent;
- border-radius: 0;
- -webkit-box-shadow: none;
- box-shadow: none;
- border: none;
- margin: 1em -0.5em;
-}
-
-.ui.text.menu .item {
- border-radius: 0;
- -webkit-box-shadow: none;
- box-shadow: none;
- -ms-flex-item-align: center;
- align-self: center;
- margin: 0 0;
- padding: 0.35714286em 0.5em;
- font-weight: normal;
- color: rgba(0, 0, 0, 0.6);
- -webkit-transition: opacity 0.1s ease;
- transition: opacity 0.1s ease;
-}
-
-/* Border */
-
-.ui.text.menu .item:before,
-.ui.text.menu .menu .item:before {
- display: none !important;
-}
-
-/* Header */
-
-.ui.text.menu .header.item {
- background-color: transparent;
- opacity: 1;
- color: rgba(0, 0, 0, 0.85);
- font-size: 0.92857143em;
- text-transform: uppercase;
- font-weight: bold;
-}
-
-/* Image */
-
-.ui.text.menu .item > img:not(.ui) {
- margin: 0;
-}
-
-/*--- fluid text ---*/
-
-.ui.text.item.menu .item {
- margin: 0;
-}
-
-/*--- vertical text ---*/
-
-.ui.vertical.text.menu {
- margin: 1em 0;
-}
-
-.ui.vertical.text.menu:first-child {
- margin-top: 0;
-}
-
-.ui.vertical.text.menu:last-child {
- margin-bottom: 0;
-}
-
-.ui.vertical.text.menu .item {
- margin: 0.57142857em 0;
- padding-left: 0;
- padding-right: 0;
-}
-
-.ui.vertical.text.menu .item > i.icon {
- float: none;
- margin: 0 0.35714286em 0 0;
-}
-
-.ui.vertical.text.menu .header.item {
- margin: 0.57142857em 0 0.71428571em;
-}
-
-/* Vertical Sub Menu */
-
-.ui.vertical.text.menu .item:not(.dropdown) > .menu {
- margin: 0;
-}
-
-.ui.vertical.text.menu .item:not(.dropdown) > .menu > .item {
- margin: 0;
- padding: 0.5em 0;
-}
-
-/*--- hover ---*/
-
-.ui.text.menu .item:hover {
- opacity: 1;
- background-color: transparent;
-}
-
-/*--- active ---*/
-
-.ui.text.menu .active.item {
- background-color: transparent;
- border: none;
- -webkit-box-shadow: none;
- box-shadow: none;
- font-weight: normal;
- color: rgba(0, 0, 0, 0.95);
-}
-
-/*--- active hover ---*/
-
-.ui.text.menu .active.item:hover {
- background-color: transparent;
-}
-
-/* Disable Bariations */
-
-.ui.text.pointing.menu .active.item:after {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.text.attached.menu {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/* Inverted */
-
-.ui.inverted.text.menu,
-.ui.inverted.text.menu .item,
-.ui.inverted.text.menu .item:hover,
-.ui.inverted.text.menu .active.item {
- background-color: transparent;
-}
-
-/* Fluid */
-
-.ui.fluid.text.menu {
- margin-left: 0;
- margin-right: 0;
-}
-
-/*--------------
- Icon Only
----------------*/
-
-/* Vertical Menu */
-
-.ui.vertical.icon.menu {
- display: inline-block;
- width: auto;
-}
-
-/* Item */
-
-.ui.icon.menu .item {
- height: auto;
- text-align: center;
- color: #1B1C1D;
-}
-
-/* Icon */
-
-.ui.icon.menu .item > .icon:not(.dropdown) {
- margin: 0;
- opacity: 1;
-}
-
-/* Icon Gylph */
-
-.ui.icon.menu .icon:before {
- opacity: 1;
-}
-
-/* (x) Item Icon */
-
-.ui.menu .icon.item > .icon {
- width: auto;
- margin: 0 auto;
-}
-
-/* Vertical Icon */
-
-.ui.vertical.icon.menu .item > .icon:not(.dropdown) {
- display: block;
- opacity: 1;
- margin: 0 auto;
- float: none;
-}
-
-/* Inverted */
-
-.ui.inverted.icon.menu .item {
- color: #FFFFFF;
-}
-
-/*--------------
- Labeled Icon
- ---------------*/
-
-/* Menu */
-
-.ui.labeled.icon.menu {
- text-align: center;
-}
-
-/* Item */
-
-.ui.labeled.icon.menu .item {
- min-width: 6em;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
-}
-
-/* Icon */
-
-.ui.labeled.icon.menu > .item > .icon:not(.dropdown) {
- height: 1em;
- display: block;
- font-size: 1.71428571em !important;
- margin: 0 auto 0.5rem !important;
-}
-
-/* Fluid */
-
-.ui.fluid.labeled.icon.menu > .item {
- min-width: 0;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*--------------
- Stackable
- ---------------*/
-
-@media only screen and (max-width: 767.98px) {
- .ui.stackable.menu {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- }
-
- .ui.stackable.menu .item {
- width: 100% !important;
- }
-
- .ui.stackable.menu .item:before {
- position: absolute;
- content: '';
- top: auto;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 1px;
- background: rgba(34, 36, 38, 0.1);
- }
-
- .ui.stackable.menu .left.menu,
- .ui.stackable.menu .left.item {
- margin-right: 0 !important;
- }
-
- .ui.stackable.menu .right.menu,
- .ui.stackable.menu .right.item {
- margin-left: 0 !important;
- }
-
- .ui.stackable.menu .center.menu,
- .ui.stackable.menu .center.item {
- margin-left: 0 !important;
- margin-right: 0 !important;
- }
-
- .ui.stackable.menu .right.menu,
- .ui.stackable.menu .center.menu,
- .ui.stackable.menu .left.menu {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- }
-}
-
-/*--------------
- Colors
----------------*/
-
-.ui.ui.menu .primary.active.item,
-.ui.ui.primary.menu .active.item:hover,
-.ui.ui.primary.menu .active.item {
- color: #2185D0;
-}
-
-.ui.ui.menu .red.active.item,
-.ui.ui.red.menu .active.item:hover,
-.ui.ui.red.menu .active.item {
- color: #DB2828;
-}
-
-.ui.ui.menu .orange.active.item,
-.ui.ui.orange.menu .active.item:hover,
-.ui.ui.orange.menu .active.item {
- color: #F2711C;
-}
-
-.ui.ui.menu .yellow.active.item,
-.ui.ui.yellow.menu .active.item:hover,
-.ui.ui.yellow.menu .active.item {
- color: #FBBD08;
-}
-
-.ui.ui.menu .olive.active.item,
-.ui.ui.olive.menu .active.item:hover,
-.ui.ui.olive.menu .active.item {
- color: #B5CC18;
-}
-
-.ui.ui.menu .green.active.item,
-.ui.ui.green.menu .active.item:hover,
-.ui.ui.green.menu .active.item {
- color: #21BA45;
-}
-
-.ui.ui.menu .teal.active.item,
-.ui.ui.teal.menu .active.item:hover,
-.ui.ui.teal.menu .active.item {
- color: #00B5AD;
-}
-
-.ui.ui.menu .blue.active.item,
-.ui.ui.blue.menu .active.item:hover,
-.ui.ui.blue.menu .active.item {
- color: #2185D0;
-}
-
-.ui.ui.menu .violet.active.item,
-.ui.ui.violet.menu .active.item:hover,
-.ui.ui.violet.menu .active.item {
- color: #6435C9;
-}
-
-.ui.ui.menu .purple.active.item,
-.ui.ui.purple.menu .active.item:hover,
-.ui.ui.purple.menu .active.item {
- color: #A333C8;
-}
-
-.ui.ui.menu .pink.active.item,
-.ui.ui.pink.menu .active.item:hover,
-.ui.ui.pink.menu .active.item {
- color: #E03997;
-}
-
-.ui.ui.menu .brown.active.item,
-.ui.ui.brown.menu .active.item:hover,
-.ui.ui.brown.menu .active.item {
- color: #A5673F;
-}
-
-.ui.ui.menu .grey.active.item,
-.ui.ui.grey.menu .active.item:hover,
-.ui.ui.grey.menu .active.item {
- color: #767676;
-}
-
-.ui.ui.menu .black.active.item,
-.ui.ui.black.menu .active.item:hover,
-.ui.ui.black.menu .active.item {
- color: #1B1C1D;
-}
-
-/*--------------
- Inverted
- ---------------*/
-
-.ui.inverted.menu {
- border: 0 solid transparent;
- background: #1B1C1D;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/* Menu Item */
-
-.ui.inverted.menu .item,
-.ui.inverted.menu .item > a:not(.ui) {
- background: transparent;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.menu .item.menu {
- background: transparent;
-}
-
-/*--- Border ---*/
-
-.ui.inverted.menu .item:before {
- background: rgba(255, 255, 255, 0.08);
-}
-
-.ui.vertical.inverted.menu .item:before {
- background: rgba(255, 255, 255, 0.08);
-}
-
-/* Sub Menu */
-
-.ui.vertical.inverted.menu .menu .item,
-.ui.vertical.inverted.menu .menu .item a:not(.ui) {
- color: rgba(255, 255, 255, 0.5);
-}
-
-/* Header */
-
-.ui.inverted.menu .header.item {
- margin: 0;
- background: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/* Disabled */
-
-.ui.ui.inverted.menu .item.disabled {
- color: rgba(225, 225, 225, 0.3);
-}
-
-/*--- Hover ---*/
-
-.ui.link.inverted.menu .item:hover,
-.ui.inverted.menu .dropdown.item:hover,
-.ui.inverted.menu .link.item:hover,
-.ui.inverted.menu a.item:hover {
- background: rgba(255, 255, 255, 0.08);
- color: #ffffff;
-}
-
-.ui.vertical.inverted.menu .item .menu a.item:hover,
-.ui.vertical.inverted.menu .item .menu .link.item:hover {
- background: transparent;
- color: #ffffff;
-}
-
-/*--- Pressed ---*/
-
-.ui.inverted.menu a.item:active,
-.ui.inverted.menu .link.item:active {
- background: rgba(255, 255, 255, 0.08);
- color: #ffffff;
-}
-
-/*--- Active ---*/
-
-.ui.inverted.menu .active.item {
- background: #3D3E3F;
- color: #ffffff !important;
-}
-
-.ui.inverted.vertical.menu .item .menu .active.item {
- background: transparent;
- color: #FFFFFF;
-}
-
-.ui.inverted.pointing.menu .active.item:after {
- background: #3D3E3F;
- margin: 0 !important;
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
- border: none !important;
-}
-
-/*--- Active Hover ---*/
-
-.ui.inverted.menu .active.item:hover {
- background: #3D3E3F;
- color: #FFFFFF !important;
-}
-
-.ui.inverted.pointing.menu .active.item:hover:after {
- background: #3D3E3F;
-}
-
-/*--------------
- Floated
- ---------------*/
-
-.ui.floated.menu {
- float: left;
- margin: 0 0.5rem 0 0;
-}
-
-.ui.floated.menu .item:last-child:before {
- display: none;
-}
-
-.ui.right.floated.menu {
- float: right;
- margin: 0 0 0 0.5rem;
-}
-
-/*--------------
- Inverted
- ---------------*/
-
-.ui.ui.inverted.menu .primary.active.item,
-.ui.ui.inverted.primary.menu {
- background-color: #2185D0;
-}
-
-.ui.inverted.primary.menu .item:before {
- background-color: rgba(34, 36, 38, 0.1);
-}
-
-.ui.ui.inverted.primary.menu .active.item {
- background-color: rgba(0, 0, 0, 0.1);
-}
-
-.ui.inverted.pointing.primary.menu .active.item {
- background-color: #1678c2;
-}
-
-.ui.ui.inverted.menu .red.active.item,
-.ui.ui.inverted.red.menu {
- background-color: #DB2828;
-}
-
-.ui.inverted.red.menu .item:before {
- background-color: rgba(34, 36, 38, 0.1);
-}
-
-.ui.ui.inverted.red.menu .active.item {
- background-color: rgba(0, 0, 0, 0.1);
-}
-
-.ui.inverted.pointing.red.menu .active.item {
- background-color: #d01919;
-}
-
-.ui.ui.inverted.menu .orange.active.item,
-.ui.ui.inverted.orange.menu {
- background-color: #F2711C;
-}
-
-.ui.inverted.orange.menu .item:before {
- background-color: rgba(34, 36, 38, 0.1);
-}
-
-.ui.ui.inverted.orange.menu .active.item {
- background-color: rgba(0, 0, 0, 0.1);
-}
-
-.ui.inverted.pointing.orange.menu .active.item {
- background-color: #f26202;
-}
-
-.ui.ui.inverted.menu .yellow.active.item,
-.ui.ui.inverted.yellow.menu {
- background-color: #FBBD08;
-}
-
-.ui.inverted.yellow.menu .item:before {
- background-color: rgba(34, 36, 38, 0.1);
-}
-
-.ui.ui.inverted.yellow.menu .active.item {
- background-color: rgba(0, 0, 0, 0.1);
-}
-
-.ui.inverted.pointing.yellow.menu .active.item {
- background-color: #eaae00;
-}
-
-.ui.ui.inverted.menu .olive.active.item,
-.ui.ui.inverted.olive.menu {
- background-color: #B5CC18;
-}
-
-.ui.inverted.olive.menu .item:before {
- background-color: rgba(34, 36, 38, 0.1);
-}
-
-.ui.ui.inverted.olive.menu .active.item {
- background-color: rgba(0, 0, 0, 0.1);
-}
-
-.ui.inverted.pointing.olive.menu .active.item {
- background-color: #a7bd0d;
-}
-
-.ui.ui.inverted.menu .green.active.item,
-.ui.ui.inverted.green.menu {
- background-color: #21BA45;
-}
-
-.ui.inverted.green.menu .item:before {
- background-color: rgba(34, 36, 38, 0.1);
-}
-
-.ui.ui.inverted.green.menu .active.item {
- background-color: rgba(0, 0, 0, 0.1);
-}
-
-.ui.inverted.pointing.green.menu .active.item {
- background-color: #16ab39;
-}
-
-.ui.ui.inverted.menu .teal.active.item,
-.ui.ui.inverted.teal.menu {
- background-color: #00B5AD;
-}
-
-.ui.inverted.teal.menu .item:before {
- background-color: rgba(34, 36, 38, 0.1);
-}
-
-.ui.ui.inverted.teal.menu .active.item {
- background-color: rgba(0, 0, 0, 0.1);
-}
-
-.ui.inverted.pointing.teal.menu .active.item {
- background-color: #009c95;
-}
-
-.ui.ui.inverted.menu .blue.active.item,
-.ui.ui.inverted.blue.menu {
- background-color: #2185D0;
-}
-
-.ui.inverted.blue.menu .item:before {
- background-color: rgba(34, 36, 38, 0.1);
-}
-
-.ui.ui.inverted.blue.menu .active.item {
- background-color: rgba(0, 0, 0, 0.1);
-}
-
-.ui.inverted.pointing.blue.menu .active.item {
- background-color: #1678c2;
-}
-
-.ui.ui.inverted.menu .violet.active.item,
-.ui.ui.inverted.violet.menu {
- background-color: #6435C9;
-}
-
-.ui.inverted.violet.menu .item:before {
- background-color: rgba(34, 36, 38, 0.1);
-}
-
-.ui.ui.inverted.violet.menu .active.item {
- background-color: rgba(0, 0, 0, 0.1);
-}
-
-.ui.inverted.pointing.violet.menu .active.item {
- background-color: #5829bb;
-}
-
-.ui.ui.inverted.menu .purple.active.item,
-.ui.ui.inverted.purple.menu {
- background-color: #A333C8;
-}
-
-.ui.inverted.purple.menu .item:before {
- background-color: rgba(34, 36, 38, 0.1);
-}
-
-.ui.ui.inverted.purple.menu .active.item {
- background-color: rgba(0, 0, 0, 0.1);
-}
-
-.ui.inverted.pointing.purple.menu .active.item {
- background-color: #9627ba;
-}
-
-.ui.ui.inverted.menu .pink.active.item,
-.ui.ui.inverted.pink.menu {
- background-color: #E03997;
-}
-
-.ui.inverted.pink.menu .item:before {
- background-color: rgba(34, 36, 38, 0.1);
-}
-
-.ui.ui.inverted.pink.menu .active.item {
- background-color: rgba(0, 0, 0, 0.1);
-}
-
-.ui.inverted.pointing.pink.menu .active.item {
- background-color: #e61a8d;
-}
-
-.ui.ui.inverted.menu .brown.active.item,
-.ui.ui.inverted.brown.menu {
- background-color: #A5673F;
-}
-
-.ui.inverted.brown.menu .item:before {
- background-color: rgba(34, 36, 38, 0.1);
-}
-
-.ui.ui.inverted.brown.menu .active.item {
- background-color: rgba(0, 0, 0, 0.1);
-}
-
-.ui.inverted.pointing.brown.menu .active.item {
- background-color: #975b33;
-}
-
-.ui.ui.inverted.menu .grey.active.item,
-.ui.ui.inverted.grey.menu {
- background-color: #767676;
-}
-
-.ui.inverted.grey.menu .item:before {
- background-color: rgba(34, 36, 38, 0.1);
-}
-
-.ui.ui.inverted.grey.menu .active.item {
- background-color: rgba(0, 0, 0, 0.1);
-}
-
-.ui.inverted.pointing.grey.menu .active.item {
- background-color: #838383;
-}
-
-.ui.ui.inverted.menu .black.active.item,
-.ui.ui.inverted.black.menu {
- background-color: #1B1C1D;
-}
-
-.ui.inverted.black.menu .item:before {
- background-color: rgba(34, 36, 38, 0.1);
-}
-
-.ui.ui.inverted.black.menu .active.item {
- background-color: rgba(0, 0, 0, 0.1);
-}
-
-.ui.inverted.pointing.black.menu .active.item {
- background-color: #27292a;
-}
-
-.ui.ui.ui.inverted.pointing.menu .active.item:after {
- background-color: inherit;
-}
-
-/*--------------
- Fitted
- ---------------*/
-
-.ui.fitted.menu .item,
-.ui.fitted.menu .item .menu .item,
-.ui.menu .fitted.item {
- padding: 0;
-}
-
-.ui.horizontally.fitted.menu .item,
-.ui.horizontally.fitted.menu .item .menu .item,
-.ui.menu .horizontally.fitted.item {
- padding-top: 0.92857143em;
- padding-bottom: 0.92857143em;
-}
-
-.ui.vertically.fitted.menu .item,
-.ui.vertically.fitted.menu .item .menu .item,
-.ui.menu .vertically.fitted.item {
- padding-left: 1.14285714em;
- padding-right: 1.14285714em;
-}
-
-/*--------------
- Borderless
- ---------------*/
-
-.ui.borderless.menu .item:before,
-.ui.borderless.menu .item .menu .item:before,
-.ui.menu .borderless.item:before {
- background: none !important;
-}
-
-/*-------------------
- Compact
- --------------------*/
-
-.ui.compact.menu {
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
- margin: 0;
- vertical-align: middle;
-}
-
-.ui.compact.vertical.menu {
- /* IE hack to make dropdown icons appear inline */
- display: -ms-inline-flexbox !important;
- display: inline-block;
-}
-
-.ui.compact.menu:not(.secondary) .item:last-child {
- border-radius: 0 0.28571429rem 0.28571429rem 0;
-}
-
-.ui.compact.menu .item:last-child:before {
- display: none;
-}
-
-.ui.compact.vertical.menu {
- width: auto !important;
-}
-
-.ui.compact.vertical.menu .item:last-child::before {
- display: block;
-}
-
-/*-------------------
- Fluid
- --------------------*/
-
-.ui.menu.fluid,
-.ui.vertical.menu.fluid {
- width: 100% !important;
-}
-
-/*-------------------
- Evenly Sized
---------------------*/
-
-.ui.item.menu,
-.ui.item.menu .item {
- width: 100%;
- padding-left: 0 !important;
- padding-right: 0 !important;
- margin-left: 0 !important;
- margin-right: 0 !important;
- text-align: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
-}
-
-.ui.attached.item.menu:not(.tabular) {
- margin: 0 -1px !important;
-}
-
-.ui.item.menu .item:last-child:before {
- display: none;
-}
-
-.ui.menu.two.item .item {
- width: 50%;
-}
-
-.ui.menu.three.item .item {
- width: 33.333%;
-}
-
-.ui.menu.four.item .item {
- width: 25%;
-}
-
-.ui.menu.five.item .item {
- width: 20%;
-}
-
-.ui.menu.six.item .item {
- width: 16.666%;
-}
-
-.ui.menu.seven.item .item {
- width: 14.285%;
-}
-
-.ui.menu.eight.item .item {
- width: 12.5%;
-}
-
-.ui.menu.nine.item .item {
- width: 11.11%;
-}
-
-.ui.menu.ten.item .item {
- width: 10%;
-}
-
-.ui.menu.eleven.item .item {
- width: 9.09%;
-}
-
-.ui.menu.twelve.item .item {
- width: 8.333%;
-}
-
-/*--------------
- Fixed
- ---------------*/
-
-.ui.menu.fixed {
- position: fixed;
- z-index: 101;
- margin: 0;
- width: 100%;
-}
-
-.ui.menu.fixed,
-.ui.menu.fixed .item:first-child,
-.ui.menu.fixed .item:last-child {
- border-radius: 0 !important;
-}
-
-.ui.fixed.menu,
-.ui[class*="top fixed"].menu {
- top: 0;
- left: 0;
- right: auto;
- bottom: auto;
-}
-
-.ui[class*="top fixed"].menu {
- border-top: none;
- border-left: none;
- border-right: none;
-}
-
-.ui[class*="right fixed"].menu {
- border-top: none;
- border-bottom: none;
- border-right: none;
- top: 0;
- right: 0;
- left: auto;
- bottom: auto;
- width: auto;
- height: 100%;
-}
-
-.ui[class*="bottom fixed"].menu {
- border-bottom: none;
- border-left: none;
- border-right: none;
- bottom: 0;
- left: 0;
- top: auto;
- right: auto;
-}
-
-.ui[class*="left fixed"].menu {
- border-top: none;
- border-bottom: none;
- border-left: none;
- top: 0;
- left: 0;
- right: auto;
- bottom: auto;
- width: auto;
- height: 100%;
-}
-
-/* Coupling with Grid */
-
-.ui.fixed.menu + .ui.grid {
- padding-top: 2.75rem;
-}
-
-/*-------------------
- Pointing
- --------------------*/
-
-.ui.pointing.menu .item:after {
- visibility: hidden;
- position: absolute;
- content: '';
- top: 100%;
- left: 50%;
- -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
- transform: translateX(-50%) translateY(-50%) rotate(45deg);
- background: none;
- margin: 0.5px 0 0;
- width: 0.57142857em;
- height: 0.57142857em;
- border: none;
- border-bottom: 1px solid #D4D4D5;
- border-right: 1px solid #D4D4D5;
- z-index: 2;
- -webkit-transition: background 0.1s ease;
- transition: background 0.1s ease;
-}
-
-.ui.vertical.pointing.menu .item:after {
- position: absolute;
- top: 50%;
- right: 0;
- bottom: auto;
- left: auto;
- -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
- transform: translateX(50%) translateY(-50%) rotate(45deg);
- margin: 0 -0.5px 0 0;
- border: none;
- border-top: 1px solid #D4D4D5;
- border-right: 1px solid #D4D4D5;
-}
-
-.ui.pointing.menu .ui.dropdown .menu .item:after,
-.ui.vertical.pointing.menu .ui.dropdown .menu .item:after {
- display: none;
-}
-
-/* Active */
-
-.ui.pointing.menu .active.item:after {
- visibility: visible;
-}
-
-.ui.pointing.menu .active.dropdown.item:after {
- visibility: hidden;
-}
-
-/* Don't double up pointers */
-
-.ui.pointing.menu .dropdown.active.item:after,
-.ui.pointing.menu .active.item .menu .active.item:after {
- display: none;
-}
-
-/* Colors */
-
-.ui.pointing.menu .active.item:hover:after {
- background-color: #F2F2F2;
-}
-
-.ui.pointing.menu .active.item:after {
- background-color: #F2F2F2;
-}
-
-.ui.pointing.menu .active.item:hover:after {
- background-color: #F2F2F2;
-}
-
-.ui.vertical.pointing.menu .active.item:hover:after {
- background-color: #F2F2F2;
-}
-
-.ui.vertical.pointing.menu .active.item:after {
- background-color: #F2F2F2;
-}
-
-.ui.vertical.pointing.menu .menu .active.item:after {
- background-color: #FFFFFF;
-}
-
-.ui.inverted.pointing.menu .primary.active.item:after {
- background-color: #2185D0;
-}
-
-.ui.inverted.pointing.menu .secondary.active.item:after {
- background-color: #1B1C1D;
-}
-
-.ui.inverted.pointing.menu .red.active.item:after {
- background-color: #DB2828;
-}
-
-.ui.inverted.pointing.menu .orange.active.item:after {
- background-color: #F2711C;
-}
-
-.ui.inverted.pointing.menu .yellow.active.item:after {
- background-color: #FBBD08;
-}
-
-.ui.inverted.pointing.menu .olive.active.item:after {
- background-color: #B5CC18;
-}
-
-.ui.inverted.pointing.menu .green.active.item:after {
- background-color: #21BA45;
-}
-
-.ui.inverted.pointing.menu .teal.active.item:after {
- background-color: #00B5AD;
-}
-
-.ui.inverted.pointing.menu .blue.active.item:after {
- background-color: #2185D0;
-}
-
-.ui.inverted.pointing.menu .violet.active.item:after {
- background-color: #6435C9;
-}
-
-.ui.inverted.pointing.menu .purple.active.item:after {
- background-color: #A333C8;
-}
-
-.ui.inverted.pointing.menu .pink.active.item:after {
- background-color: #E03997;
-}
-
-.ui.inverted.pointing.menu .brown.active.item:after {
- background-color: #A5673F;
-}
-
-.ui.inverted.pointing.menu .grey.active.item:after {
- background-color: #767676;
-}
-
-.ui.inverted.pointing.menu .black.active.item:after {
- background-color: #1B1C1D;
-}
-
-/*--------------
- Attached
- ---------------*/
-
-/* Middle */
-
-.ui.attached.menu {
- top: 0;
- bottom: 0;
- border-radius: 0;
- margin: 0 -1px;
- width: calc(100% + 2px);
- max-width: calc(100% + 2px);
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.attached + .ui.attached.menu:not(.top) {
- border-top: none;
-}
-
-/* Top */
-
-.ui[class*="top attached"].menu {
- bottom: 0;
- margin-bottom: 0;
- top: 0;
- margin-top: 1rem;
- border-radius: 0.28571429rem 0.28571429rem 0 0;
-}
-
-.ui.menu[class*="top attached"]:first-child {
- margin-top: 0;
-}
-
-/* Bottom */
-
-.ui[class*="bottom attached"].menu {
- bottom: 0;
- margin-top: 0;
- top: 0;
- margin-bottom: 1rem;
- -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), none;
- box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), none;
- border-radius: 0 0 0.28571429rem 0.28571429rem;
-}
-
-.ui[class*="bottom attached"].menu:last-child {
- margin-bottom: 0;
-}
-
-/* Attached Menu Item */
-
-.ui.top.attached.menu > .item:first-child {
- border-radius: 0.28571429rem 0 0 0;
-}
-
-.ui.bottom.attached.menu > .item:first-child {
- border-radius: 0 0 0 0.28571429rem;
-}
-
-/* Tabular Attached */
-
-.ui.attached.menu:not(.tabular) {
- border: 1px solid #D4D4D5;
-}
-
-.ui.attached.inverted.menu {
- border: none;
-}
-
-.ui.attached.tabular.menu {
- margin-left: 0;
- margin-right: 0;
- width: 100%;
-}
-
-/*--------------
- Sizes
----------------*/
-
-.ui.menu {
- font-size: 1rem;
-}
-
-.ui.vertical.menu {
- width: 15rem;
-}
-
-.ui.mini.menu,
-.ui.mini.menu .dropdown,
-.ui.mini.menu .dropdown .menu > .item {
- font-size: 0.78571429rem;
-}
-
-.ui.mini.vertical.menu:not(.icon) {
- width: 9rem;
-}
-
-.ui.tiny.menu,
-.ui.tiny.menu .dropdown,
-.ui.tiny.menu .dropdown .menu > .item {
- font-size: 0.85714286rem;
-}
-
-.ui.tiny.vertical.menu:not(.icon) {
- width: 11rem;
-}
-
-.ui.small.menu,
-.ui.small.menu .dropdown,
-.ui.small.menu .dropdown .menu > .item {
- font-size: 0.92857143rem;
-}
-
-.ui.small.vertical.menu:not(.icon) {
- width: 13rem;
-}
-
-.ui.large.menu,
-.ui.large.menu .dropdown,
-.ui.large.menu .dropdown .menu > .item {
- font-size: 1.07142857rem;
-}
-
-.ui.large.vertical.menu:not(.icon) {
- width: 18rem;
-}
-
-.ui.big.menu,
-.ui.big.menu .dropdown,
-.ui.big.menu .dropdown .menu > .item {
- font-size: 1.14285714rem;
-}
-
-.ui.big.vertical.menu:not(.icon) {
- width: 20rem;
-}
-
-.ui.huge.menu,
-.ui.huge.menu .dropdown,
-.ui.huge.menu .dropdown .menu > .item {
- font-size: 1.21428571rem;
-}
-
-.ui.huge.vertical.menu:not(.icon) {
- width: 22rem;
-}
-
-.ui.massive.menu,
-.ui.massive.menu .dropdown,
-.ui.massive.menu .dropdown .menu > .item {
- font-size: 1.28571429rem;
-}
-
-.ui.massive.vertical.menu:not(.icon) {
- width: 25rem;
-}
-
-/*-------------------
- Inverted dropdowns
---------------------*/
-
-.ui.menu .ui.inverted.inverted.dropdown.item .menu {
- background: #1B1C1D;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.menu .ui.inverted.dropdown .menu > .item {
- color: rgba(255, 255, 255, 0.8) !important;
-}
-
-.ui.menu .ui.inverted.dropdown .menu > .active.item {
- background: transparent !important;
- color: rgba(255, 255, 255, 0.8) !important;
-}
-
-.ui.menu .ui.inverted.dropdown .menu > .item:hover {
- background: rgba(255, 255, 255, 0.08) !important;
- color: rgba(255, 255, 255, 0.8) !important;
-}
-
-.ui.menu .ui.inverted.dropdown .menu > .selected.item {
- background: rgba(255, 255, 255, 0.15) !important;
- color: rgba(255, 255, 255, 0.8) !important;
-}
-
-/* Vertical */
-
-.ui.vertical.menu .inverted.dropdown.item .menu {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Message
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Message
-*******************************/
-
-.ui.message {
- position: relative;
- min-height: 1em;
- margin: 1em 0;
- background: #F8F8F9;
- padding: 1em 1.5em;
- line-height: 1.4285em;
- color: rgba(0, 0, 0, 0.87);
- -webkit-transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease;
- transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease;
- transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, box-shadow 0.1s ease;
- transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, box-shadow 0.1s ease, -webkit-box-shadow 0.1s ease;
- border-radius: 0.28571429rem;
- -webkit-box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.22) inset, 0 0 0 0 rgba(0, 0, 0, 0);
- box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.22) inset, 0 0 0 0 rgba(0, 0, 0, 0);
-}
-
-.ui.message:first-child {
- margin-top: 0;
-}
-
-.ui.message:last-child {
- margin-bottom: 0;
-}
-
-/*--------------
- Content
----------------*/
-
-/* Header */
-
-.ui.message .header {
- display: block;
- font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
- font-weight: bold;
- margin: -0.14285714em 0 0 0;
-}
-
-/* Default font size */
-
-.ui.message .header:not(.ui) {
- font-size: 1.14285714em;
-}
-
-/* Paragraph */
-
-.ui.message p {
- opacity: 0.85;
- margin: 0.75em 0;
-}
-
-.ui.message p:first-child {
- margin-top: 0;
-}
-
-.ui.message p:last-child {
- margin-bottom: 0;
-}
-
-.ui.message .header + p {
- margin-top: 0.25em;
-}
-
-/* List */
-
-.ui.message .list:not(.ui) {
- text-align: left;
- padding: 0;
- opacity: 0.85;
- list-style-position: inside;
- margin: 0.5em 0 0;
-}
-
-.ui.message .list:not(.ui):first-child {
- margin-top: 0;
-}
-
-.ui.message .list:not(.ui):last-child {
- margin-bottom: 0;
-}
-
-.ui.message .list:not(.ui) li {
- position: relative;
- list-style-type: none;
- margin: 0 0 0.3em 1em;
- padding: 0;
-}
-
-.ui.message .list:not(.ui) li:before {
- position: absolute;
- content: '•';
- left: -1em;
- height: 100%;
- vertical-align: baseline;
-}
-
-.ui.message .list:not(.ui) li:last-child {
- margin-bottom: 0;
-}
-
-/* Icon */
-
-.ui.message > .icon {
- margin-right: 0.6em;
-}
-
-/* Close Icon */
-
-.ui.message > .close.icon {
- cursor: pointer;
- position: absolute;
- margin: 0;
- top: 0.78575em;
- right: 0.5em;
- opacity: 0.7;
- -webkit-transition: opacity 0.1s ease;
- transition: opacity 0.1s ease;
-}
-
-.ui.message > .close.icon:hover {
- opacity: 1;
-}
-
-/* First / Last Element */
-
-.ui.message > :first-child {
- margin-top: 0;
-}
-
-.ui.message > :last-child {
- margin-bottom: 0;
-}
-
-/*******************************
- Coupling
-*******************************/
-
-.ui.dropdown .menu > .message {
- margin: 0 -1px;
-}
-
-/*******************************
- States
-*******************************/
-
-/*--------------
- Visible
----------------*/
-
-.ui.visible.visible.visible.visible.message {
- display: block;
-}
-
-.ui.icon.visible.visible.visible.visible.message {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
-}
-
-/*--------------
- Hidden
----------------*/
-
-.ui.hidden.hidden.hidden.hidden.message {
- display: none;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*--------------
- Compact
- ---------------*/
-
-.ui.compact.message {
- display: inline-block;
-}
-
-.ui.compact.icon.message {
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
- width: auto;
-}
-
-/*--------------
- Attached
- ---------------*/
-
-.ui.attached.message {
- margin-bottom: -1px;
- border-radius: 0.28571429rem 0.28571429rem 0 0;
- -webkit-box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
- margin-left: -1px;
- margin-right: -1px;
-}
-
-.ui.attached + .ui.attached.message:not(.top):not(.bottom) {
- margin-top: -1px;
- border-radius: 0;
-}
-
-.ui.bottom.attached.message {
- margin-top: -1px;
- border-radius: 0 0 0.28571429rem 0.28571429rem;
- -webkit-box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.15) inset, 0 1px 2px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.15) inset, 0 1px 2px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.bottom.attached.message:not(:last-child) {
- margin-bottom: 1em;
-}
-
-.ui.attached.icon.message {
- width: auto;
-}
-
-/*--------------
- Icon
- ---------------*/
-
-.ui.icon.message {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- width: 100%;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
-}
-
-.ui.icon.message > .icon:not(.close) {
- display: block;
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: auto;
- line-height: 1;
- vertical-align: middle;
- font-size: 3em;
- opacity: 0.8;
-}
-
-.ui.icon.message > .content {
- display: block;
- -webkit-box-flex: 1;
- -ms-flex: 1 1 auto;
- flex: 1 1 auto;
- vertical-align: middle;
-}
-
-.ui.icon.message .icon:not(.close) + .content {
- padding-left: 0;
-}
-
-.ui.icon.message .circular.icon {
- width: 1em;
-}
-
-/*--------------
- Floating
- ---------------*/
-
-.ui.floating.message {
- -webkit-box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.22) inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.22) inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-/*--------------
- Colors
----------------*/
-
-/*--------------
- Types
----------------*/
-
-.ui.positive.message {
- background-color: #FCFFF5;
- color: #2C662D;
-}
-
-.ui.positive.message,
-.ui.attached.positive.message {
- -webkit-box-shadow: 0 0 0 1px #A3C293 inset, 0 0 0 0 rgba(0, 0, 0, 0);
- box-shadow: 0 0 0 1px #A3C293 inset, 0 0 0 0 rgba(0, 0, 0, 0);
-}
-
-.ui.floating.positive.message {
- -webkit-box-shadow: 0 0 0 1px #A3C293 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px #A3C293 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.positive.message .header {
- color: #1A531B;
-}
-
-.ui.negative.message {
- background-color: #FFF6F6;
- color: #9F3A38;
-}
-
-.ui.negative.message,
-.ui.attached.negative.message {
- -webkit-box-shadow: 0 0 0 1px #E0B4B4 inset, 0 0 0 0 rgba(0, 0, 0, 0);
- box-shadow: 0 0 0 1px #E0B4B4 inset, 0 0 0 0 rgba(0, 0, 0, 0);
-}
-
-.ui.floating.negative.message {
- -webkit-box-shadow: 0 0 0 1px #E0B4B4 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px #E0B4B4 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.negative.message .header {
- color: #912D2B;
-}
-
-.ui.info.message {
- background-color: #F8FFFF;
- color: #276F86;
-}
-
-.ui.info.message,
-.ui.attached.info.message {
- -webkit-box-shadow: 0 0 0 1px #A9D5DE inset, 0 0 0 0 rgba(0, 0, 0, 0);
- box-shadow: 0 0 0 1px #A9D5DE inset, 0 0 0 0 rgba(0, 0, 0, 0);
-}
-
-.ui.floating.info.message {
- -webkit-box-shadow: 0 0 0 1px #A9D5DE inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px #A9D5DE inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.info.message .header {
- color: #0E566C;
-}
-
-.ui.warning.message {
- background-color: #FFFAF3;
- color: #573A08;
-}
-
-.ui.warning.message,
-.ui.attached.warning.message {
- -webkit-box-shadow: 0 0 0 1px #C9BA9B inset, 0 0 0 0 rgba(0, 0, 0, 0);
- box-shadow: 0 0 0 1px #C9BA9B inset, 0 0 0 0 rgba(0, 0, 0, 0);
-}
-
-.ui.floating.warning.message {
- -webkit-box-shadow: 0 0 0 1px #C9BA9B inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px #C9BA9B inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.warning.message .header {
- color: #794B02;
-}
-
-.ui.error.message {
- background-color: #FFF6F6;
- color: #9F3A38;
-}
-
-.ui.error.message,
-.ui.attached.error.message {
- -webkit-box-shadow: 0 0 0 1px #E0B4B4 inset, 0 0 0 0 rgba(0, 0, 0, 0);
- box-shadow: 0 0 0 1px #E0B4B4 inset, 0 0 0 0 rgba(0, 0, 0, 0);
-}
-
-.ui.floating.error.message {
- -webkit-box-shadow: 0 0 0 1px #E0B4B4 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px #E0B4B4 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.error.message .header {
- color: #912D2B;
-}
-
-.ui.success.message {
- background-color: #FCFFF5;
- color: #2C662D;
-}
-
-.ui.success.message,
-.ui.attached.success.message {
- -webkit-box-shadow: 0 0 0 1px #A3C293 inset, 0 0 0 0 rgba(0, 0, 0, 0);
- box-shadow: 0 0 0 1px #A3C293 inset, 0 0 0 0 rgba(0, 0, 0, 0);
-}
-
-.ui.floating.success.message {
- -webkit-box-shadow: 0 0 0 1px #A3C293 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px #A3C293 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.success.message .header {
- color: #1A531B;
-}
-
-.ui.primary.message {
- background-color: #DFF0FF;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.primary.message,
-.ui.attached.primary.message {
- -webkit-box-shadow: 0 0 0 1px #2185D0 inset, 0 0 0 0 rgba(0, 0, 0, 0);
- box-shadow: 0 0 0 1px #2185D0 inset, 0 0 0 0 rgba(0, 0, 0, 0);
-}
-
-.ui.floating.primary.message {
- -webkit-box-shadow: 0 0 0 1px #2185D0 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px #2185D0 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.primary.message .header {
- color: rgba(242, 242, 242, 0.9);
-}
-
-.ui.secondary.message {
- background-color: #F4F4F4;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.secondary.message,
-.ui.attached.secondary.message {
- -webkit-box-shadow: 0 0 0 1px #1B1C1D inset, 0 0 0 0 rgba(0, 0, 0, 0);
- box-shadow: 0 0 0 1px #1B1C1D inset, 0 0 0 0 rgba(0, 0, 0, 0);
-}
-
-.ui.floating.secondary.message {
- -webkit-box-shadow: 0 0 0 1px #1B1C1D inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px #1B1C1D inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.secondary.message .header {
- color: rgba(242, 242, 242, 0.9);
-}
-
-.ui.red.message {
- background-color: #FFE8E6;
- color: #DB2828;
-}
-
-.ui.red.message,
-.ui.attached.red.message {
- -webkit-box-shadow: 0 0 0 1px #DB2828 inset, 0 0 0 0 rgba(0, 0, 0, 0);
- box-shadow: 0 0 0 1px #DB2828 inset, 0 0 0 0 rgba(0, 0, 0, 0);
-}
-
-.ui.floating.red.message {
- -webkit-box-shadow: 0 0 0 1px #DB2828 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px #DB2828 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.red.message .header {
- color: #c82121;
-}
-
-.ui.orange.message {
- background-color: #FFEDDE;
- color: #F2711C;
-}
-
-.ui.orange.message,
-.ui.attached.orange.message {
- -webkit-box-shadow: 0 0 0 1px #F2711C inset, 0 0 0 0 rgba(0, 0, 0, 0);
- box-shadow: 0 0 0 1px #F2711C inset, 0 0 0 0 rgba(0, 0, 0, 0);
-}
-
-.ui.floating.orange.message {
- -webkit-box-shadow: 0 0 0 1px #F2711C inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px #F2711C inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.orange.message .header {
- color: #e7640d;
-}
-
-.ui.yellow.message {
- background-color: #FFF8DB;
- color: #B58105;
-}
-
-.ui.yellow.message,
-.ui.attached.yellow.message {
- -webkit-box-shadow: 0 0 0 1px #B58105 inset, 0 0 0 0 rgba(0, 0, 0, 0);
- box-shadow: 0 0 0 1px #B58105 inset, 0 0 0 0 rgba(0, 0, 0, 0);
-}
-
-.ui.floating.yellow.message {
- -webkit-box-shadow: 0 0 0 1px #B58105 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px #B58105 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.yellow.message .header {
- color: #9c6f04;
-}
-
-.ui.olive.message {
- background-color: #FBFDEF;
- color: #8ABC1E;
-}
-
-.ui.olive.message,
-.ui.attached.olive.message {
- -webkit-box-shadow: 0 0 0 1px #8ABC1E inset, 0 0 0 0 rgba(0, 0, 0, 0);
- box-shadow: 0 0 0 1px #8ABC1E inset, 0 0 0 0 rgba(0, 0, 0, 0);
-}
-
-.ui.floating.olive.message {
- -webkit-box-shadow: 0 0 0 1px #8ABC1E inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px #8ABC1E inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.olive.message .header {
- color: #7aa61a;
-}
-
-.ui.green.message {
- background-color: #E5F9E7;
- color: #1EBC30;
-}
-
-.ui.green.message,
-.ui.attached.green.message {
- -webkit-box-shadow: 0 0 0 1px #1EBC30 inset, 0 0 0 0 rgba(0, 0, 0, 0);
- box-shadow: 0 0 0 1px #1EBC30 inset, 0 0 0 0 rgba(0, 0, 0, 0);
-}
-
-.ui.floating.green.message {
- -webkit-box-shadow: 0 0 0 1px #1EBC30 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px #1EBC30 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.green.message .header {
- color: #1aa62a;
-}
-
-.ui.teal.message {
- background-color: #E1F7F7;
- color: #10A3A3;
-}
-
-.ui.teal.message,
-.ui.attached.teal.message {
- -webkit-box-shadow: 0 0 0 1px #10A3A3 inset, 0 0 0 0 rgba(0, 0, 0, 0);
- box-shadow: 0 0 0 1px #10A3A3 inset, 0 0 0 0 rgba(0, 0, 0, 0);
-}
-
-.ui.floating.teal.message {
- -webkit-box-shadow: 0 0 0 1px #10A3A3 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px #10A3A3 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.teal.message .header {
- color: #0e8c8c;
-}
-
-.ui.blue.message {
- background-color: #DFF0FF;
- color: #2185D0;
-}
-
-.ui.blue.message,
-.ui.attached.blue.message {
- -webkit-box-shadow: 0 0 0 1px #2185D0 inset, 0 0 0 0 rgba(0, 0, 0, 0);
- box-shadow: 0 0 0 1px #2185D0 inset, 0 0 0 0 rgba(0, 0, 0, 0);
-}
-
-.ui.floating.blue.message {
- -webkit-box-shadow: 0 0 0 1px #2185D0 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px #2185D0 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.blue.message .header {
- color: #1e77ba;
-}
-
-.ui.violet.message {
- background-color: #EAE7FF;
- color: #6435C9;
-}
-
-.ui.violet.message,
-.ui.attached.violet.message {
- -webkit-box-shadow: 0 0 0 1px #6435C9 inset, 0 0 0 0 rgba(0, 0, 0, 0);
- box-shadow: 0 0 0 1px #6435C9 inset, 0 0 0 0 rgba(0, 0, 0, 0);
-}
-
-.ui.floating.violet.message {
- -webkit-box-shadow: 0 0 0 1px #6435C9 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px #6435C9 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.violet.message .header {
- color: #5a30b5;
-}
-
-.ui.purple.message {
- background-color: #F6E7FF;
- color: #A333C8;
-}
-
-.ui.purple.message,
-.ui.attached.purple.message {
- -webkit-box-shadow: 0 0 0 1px #A333C8 inset, 0 0 0 0 rgba(0, 0, 0, 0);
- box-shadow: 0 0 0 1px #A333C8 inset, 0 0 0 0 rgba(0, 0, 0, 0);
-}
-
-.ui.floating.purple.message {
- -webkit-box-shadow: 0 0 0 1px #A333C8 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px #A333C8 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.purple.message .header {
- color: #922eb4;
-}
-
-.ui.pink.message {
- background-color: #FFE3FB;
- color: #E03997;
-}
-
-.ui.pink.message,
-.ui.attached.pink.message {
- -webkit-box-shadow: 0 0 0 1px #E03997 inset, 0 0 0 0 rgba(0, 0, 0, 0);
- box-shadow: 0 0 0 1px #E03997 inset, 0 0 0 0 rgba(0, 0, 0, 0);
-}
-
-.ui.floating.pink.message {
- -webkit-box-shadow: 0 0 0 1px #E03997 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px #E03997 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.pink.message .header {
- color: #dd238b;
-}
-
-.ui.brown.message {
- background-color: #F1E2D3;
- color: #A5673F;
-}
-
-.ui.brown.message,
-.ui.attached.brown.message {
- -webkit-box-shadow: 0 0 0 1px #A5673F inset, 0 0 0 0 rgba(0, 0, 0, 0);
- box-shadow: 0 0 0 1px #A5673F inset, 0 0 0 0 rgba(0, 0, 0, 0);
-}
-
-.ui.floating.brown.message {
- -webkit-box-shadow: 0 0 0 1px #A5673F inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px #A5673F inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.brown.message .header {
- color: #935b38;
-}
-
-.ui.grey.message {
- background-color: #F4F4F4;
- color: #767676;
-}
-
-.ui.grey.message,
-.ui.attached.grey.message {
- -webkit-box-shadow: 0 0 0 1px #767676 inset, 0 0 0 0 rgba(0, 0, 0, 0);
- box-shadow: 0 0 0 1px #767676 inset, 0 0 0 0 rgba(0, 0, 0, 0);
-}
-
-.ui.floating.grey.message {
- -webkit-box-shadow: 0 0 0 1px #767676 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px #767676 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.grey.message .header {
- color: #696969;
-}
-
-.ui.black.message {
- background-color: #1B1C1D;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.black.message .header {
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.message {
- background-color: #1B1C1D;
- color: rgba(255, 255, 255, 0.9);
-}
-
-/*--------------
- Sizes
----------------*/
-
-.ui.message {
- font-size: 1em;
-}
-
-.ui.mini.message {
- font-size: 0.78571429em;
-}
-
-.ui.tiny.message {
- font-size: 0.85714286em;
-}
-
-.ui.small.message {
- font-size: 0.92857143em;
-}
-
-.ui.large.message {
- font-size: 1.14285714em;
-}
-
-.ui.big.message {
- font-size: 1.28571429em;
-}
-
-.ui.huge.message {
- font-size: 1.42857143em;
-}
-
-.ui.massive.message {
- font-size: 1.71428571em;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Table
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Table
-*******************************/
-
-/* Prototype */
-
-.ui.table {
- width: 100%;
- background: #FFFFFF;
- margin: 1em 0;
- border: 1px solid rgba(34, 36, 38, 0.15);
- -webkit-box-shadow: none;
- box-shadow: none;
- border-radius: 0.28571429rem;
- text-align: left;
- vertical-align: middle;
- color: rgba(0, 0, 0, 0.87);
- border-collapse: separate;
- border-spacing: 0;
-}
-
-.ui.table:first-child {
- margin-top: 0;
-}
-
-.ui.table:last-child {
- margin-bottom: 0;
-}
-
-.ui.table > thead,
-.ui.table > tbody {
- text-align: inherit;
- vertical-align: inherit;
-}
-
-/*******************************
- Parts
-*******************************/
-
-/* Table Content */
-
-.ui.table th,
-.ui.table td {
- -webkit-transition: background 0.1s ease, color 0.1s ease;
- transition: background 0.1s ease, color 0.1s ease;
-}
-
-/* Headers */
-
-.ui.table > thead {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.table > thead > tr > th {
- cursor: auto;
- background: #F9FAFB;
- text-align: inherit;
- color: rgba(0, 0, 0, 0.87);
- padding: 0.92857143em 0.78571429em;
- vertical-align: inherit;
- font-style: none;
- font-weight: bold;
- text-transform: none;
- border-bottom: 1px solid rgba(34, 36, 38, 0.1);
- border-left: none;
-}
-
-.ui.table > thead > tr > th:first-child {
- border-left: none;
-}
-
-.ui.table > thead > tr:first-child > th:first-child {
- border-radius: 0.28571429rem 0 0 0;
-}
-
-.ui.table > thead > tr:first-child > th:last-child {
- border-radius: 0 0.28571429rem 0 0;
-}
-
-.ui.table > thead > tr:first-child > th:only-child {
- border-radius: 0.28571429rem 0.28571429rem 0 0;
-}
-
-/* Footer */
-
-.ui.table > tfoot {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.table > tfoot > tr > th,
-.ui.table > tfoot > tr > td {
- cursor: auto;
- border-top: 1px solid rgba(34, 36, 38, 0.15);
- background: #F9FAFB;
- text-align: inherit;
- color: rgba(0, 0, 0, 0.87);
- padding: 0.78571429em 0.78571429em;
- vertical-align: middle;
- font-style: normal;
- font-weight: normal;
- text-transform: none;
-}
-
-.ui.table > tfoot > tr > th:first-child,
-.ui.table > tfoot > tr > td:first-child {
- border-left: none;
-}
-
-.ui.table > tfoot > tr:first-child > th:first-child,
-.ui.table > tfoot > tr:first-child > td:first-child {
- border-radius: 0 0 0 0.28571429rem;
-}
-
-.ui.table > tfoot > tr:first-child > th:last-child,
-.ui.table > tfoot > tr:first-child > td:last-child {
- border-radius: 0 0 0.28571429rem 0;
-}
-
-.ui.table > tfoot > tr:first-child > th:only-child,
-.ui.table > tfoot > tr:first-child > td:only-child {
- border-radius: 0 0 0.28571429rem 0.28571429rem;
-}
-
-/* Table Row */
-
-.ui.table > tr > td,
-.ui.table > tbody > tr > td {
- border-top: 1px solid rgba(34, 36, 38, 0.1);
-}
-
-.ui.table > tr:first-child > td,
-.ui.table > tbody > tr:first-child > td {
- border-top: none;
-}
-
-/* Repeated tbody */
-
-.ui.table > tbody + tbody tr:first-child > td {
- border-top: 1px solid rgba(34, 36, 38, 0.1);
-}
-
-/* Table Cells */
-
-.ui.table > tbody > tr > td,
-.ui.table > tr > td {
- padding: 0.78571429em 0.78571429em;
- text-align: inherit;
-}
-
-/* Icons */
-
-.ui.table > .icon {
- vertical-align: baseline;
-}
-
-.ui.table > .icon:only-child {
- margin: 0;
-}
-
-/* Table Segment */
-
-.ui.table.segment {
- padding: 0;
-}
-
-.ui.table.segment:after {
- display: none;
-}
-
-.ui.table.segment.stacked:after {
- display: block;
-}
-
-/* Responsive */
-
-@media only screen and (max-width: 767.98px) {
- .ui.table:not(.unstackable) {
- width: 100%;
- padding: 0;
- }
-
- .ui.table:not(.unstackable) > thead,
- .ui.table:not(.unstackable) > thead > tr,
- .ui.table:not(.unstackable) > tfoot,
- .ui.table:not(.unstackable) > tfoot > tr,
- .ui.table:not(.unstackable) > tbody,
- .ui.table:not(.unstackable) > tr,
- .ui.table:not(.unstackable) > tbody > tr,
- .ui.table:not(.unstackable) > tr > th,
- .ui.table:not(.unstackable) > thead > tr > th,
- .ui.table:not(.unstackable) > tbody > tr > th,
- .ui.table:not(.unstackable) > tfoot > tr > th,
- .ui.table:not(.unstackable) > tr > td,
- .ui.table:not(.unstackable) > tbody > tr > td,
- .ui.table:not(.unstackable) > tfoot > tr > td {
- display: block !important;
- width: auto !important;
- }
-
- .ui.table:not(.unstackable) > thead {
- display: block;
- }
-
- .ui.table:not(.unstackable) > tfoot {
- display: block;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) > tr,
- .ui.ui.ui.ui.table:not(.unstackable) > thead > tr,
- .ui.ui.ui.ui.table:not(.unstackable) > tbody > tr,
- .ui.ui.ui.ui.table:not(.unstackable) > tfoot > tr {
- padding-top: 1em;
- padding-bottom: 1em;
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) > tr > th,
- .ui.ui.ui.ui.table:not(.unstackable) > thead > tr > th,
- .ui.ui.ui.ui.table:not(.unstackable) > tbody > tr > th,
- .ui.ui.ui.ui.table:not(.unstackable) > tfoot > tr > th,
- .ui.ui.ui.ui.table:not(.unstackable) > tr > td,
- .ui.ui.ui.ui.table:not(.unstackable) > tbody > tr > td,
- .ui.ui.ui.ui.table:not(.unstackable) > tfoot > tr > td {
- background: none;
- border: none;
- padding: 0.25em 0.75em;
- -webkit-box-shadow: none;
- box-shadow: none;
- }
-
- .ui.table:not(.unstackable) > tr > th:first-child,
- .ui.table:not(.unstackable) > thead > tr > th:first-child,
- .ui.table:not(.unstackable) > tbody > tr > th:first-child,
- .ui.table:not(.unstackable) > tfoot > tr > th:first-child,
- .ui.table:not(.unstackable) > tr > td:first-child,
- .ui.table:not(.unstackable) > tbody > tr > td:first-child,
- .ui.table:not(.unstackable) > tfoot > tr > td:first-child {
- font-weight: bold;
- }
-
- /* Definition Table */
-
- .ui.definition.table:not(.unstackable) > thead > tr > th:first-child {
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.primary.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #2185D0 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #2185D0 inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.primary.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #2185D0 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #2185D0 inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.primary.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #54C8FF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #54C8FF inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.primary.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #54C8FF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #54C8FF inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.secondary.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #1B1C1D inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #1B1C1D inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.secondary.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #1B1C1D inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #1B1C1D inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.secondary.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #545454 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #545454 inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.secondary.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #545454 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #545454 inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.red.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #DB2828 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #DB2828 inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.red.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #DB2828 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #DB2828 inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.red.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FF695E inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FF695E inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.red.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FF695E inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FF695E inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.orange.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #F2711C inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #F2711C inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.orange.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #F2711C inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #F2711C inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.orange.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FF851B inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FF851B inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.orange.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FF851B inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FF851B inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.yellow.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FBBD08 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FBBD08 inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.yellow.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FBBD08 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FBBD08 inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.yellow.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FFE21F inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FFE21F inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.yellow.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FFE21F inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FFE21F inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.olive.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #B5CC18 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #B5CC18 inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.olive.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #B5CC18 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #B5CC18 inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.olive.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #D9E778 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #D9E778 inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.olive.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #D9E778 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #D9E778 inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.green.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #21BA45 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #21BA45 inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.green.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #21BA45 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #21BA45 inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.green.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #2ECC40 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #2ECC40 inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.green.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #2ECC40 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #2ECC40 inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.teal.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #00B5AD inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #00B5AD inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.teal.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #00B5AD inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #00B5AD inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.teal.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #6DFFFF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #6DFFFF inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.teal.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #6DFFFF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #6DFFFF inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.blue.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #2185D0 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #2185D0 inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.blue.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #2185D0 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #2185D0 inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.blue.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #54C8FF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #54C8FF inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.blue.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #54C8FF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #54C8FF inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.violet.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #6435C9 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #6435C9 inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.violet.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #6435C9 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #6435C9 inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.violet.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #A291FB inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #A291FB inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.violet.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #A291FB inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #A291FB inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.purple.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #A333C8 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #A333C8 inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.purple.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #A333C8 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #A333C8 inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.purple.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #DC73FF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #DC73FF inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.purple.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #DC73FF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #DC73FF inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.pink.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #E03997 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #E03997 inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.pink.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #E03997 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #E03997 inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.pink.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FF8EDF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FF8EDF inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.pink.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FF8EDF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FF8EDF inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.brown.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #A5673F inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #A5673F inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.brown.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #A5673F inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #A5673F inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.brown.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #D67C1C inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #D67C1C inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.brown.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #D67C1C inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #D67C1C inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.grey.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #767676 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #767676 inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.grey.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #767676 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #767676 inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.grey.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #DCDDDE inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #DCDDDE inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.grey.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #DCDDDE inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #DCDDDE inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.black.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #1B1C1D inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #1B1C1D inset;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.black.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #1B1C1D inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #1B1C1D inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.black.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #545454 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #545454 inset;
- }
-
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.black.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #545454 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #545454 inset;
- }
-}
-
-/*******************************
- Coupling
-*******************************/
-
-/* UI Image */
-
-.ui.table .collapsing .image,
-.ui.table .collapsing .image img {
- max-width: none;
-}
-
-/*******************************
- Types
-*******************************/
-
-/*--------------
- Complex
----------------*/
-
-.ui.structured.table {
- border-collapse: collapse;
-}
-
-.ui.structured.table > thead > tr > th {
- border-left: none;
- border-right: none;
-}
-
-.ui.structured.sortable.table > thead > tr > th {
- border-left: 1px solid rgba(34, 36, 38, 0.15);
- border-right: 1px solid rgba(34, 36, 38, 0.15);
-}
-
-.ui.structured.basic.table > tr > th,
-.ui.structured.basic.table > thead > tr > th,
-.ui.structured.basic.table > tbody > tr > th,
-.ui.structured.basic.table > tfoot > tr > th {
- border-left: none;
- border-right: none;
-}
-
-.ui.structured.celled.table > tr > th,
-.ui.structured.celled.table > thead > tr > th,
-.ui.structured.celled.table > tbody > tr > th,
-.ui.structured.celled.table > tfoot > tr > th,
-.ui.structured.celled.table > tr > td,
-.ui.structured.celled.table > tbody > tr > td,
-.ui.structured.celled.table > tfoot > tr > td {
- border-left: 1px solid rgba(34, 36, 38, 0.1);
- border-right: 1px solid rgba(34, 36, 38, 0.1);
-}
-
-/*--------------
- Definition
- ---------------*/
-
-.ui.definition.table > thead:not(.full-width) > tr > th:first-child {
- pointer-events: none;
- background: #FFFFFF;
- font-weight: normal;
- color: rgba(0, 0, 0, 0.4);
- -webkit-box-shadow: -0.1em -0.2em 0 0.1em #FFFFFF;
- box-shadow: -0.1em -0.2em 0 0.1em #FFFFFF;
- -moz-transform: scale(1);
-}
-
-.ui.definition.table > tfoot:not(.full-width) > tr > th:first-child {
- pointer-events: none;
- background: #FFFFFF;
- font-weight: normal;
- color: rgba(0, 0, 0, 0.4);
- -webkit-box-shadow: -0.1em 0.2em 0 0.1em #FFFFFF;
- box-shadow: -0.1em 0.2em 0 0.1em #FFFFFF;
- -moz-transform: scale(1);
-}
-
-/* Highlight Defining Column */
-
-.ui.definition.table > tr > td:first-child:not(.ignored),
-.ui.definition.table > tbody > tr > td:first-child:not(.ignored),
-.ui.definition.table > tfoot > tr > td:first-child:not(.ignored),
-.ui.definition.table tr td.definition {
- background: rgba(0, 0, 0, 0.03);
- font-weight: bold;
- color: rgba(0, 0, 0, 0.95);
- text-transform: '';
- -webkit-box-shadow: '';
- box-shadow: '';
- text-align: '';
- font-size: 1em;
- padding-left: '';
- padding-right: '';
-}
-
-/* Fix 2nd Column */
-
-.ui.definition.table > thead:not(.full-width) > tr > th:nth-child(2) {
- border-left: 1px solid rgba(34, 36, 38, 0.15);
-}
-
-.ui.definition.table > tfoot:not(.full-width) > tr > th:nth-child(2),
-.ui.definition.table > tfoot:not(.full-width) > tr > td:nth-child(2) {
- border-left: 1px solid rgba(34, 36, 38, 0.15);
-}
-
-.ui.definition.table > tr > td:nth-child(2),
-.ui.definition.table > tbody > tr > td:nth-child(2) {
- border-left: 1px solid rgba(34, 36, 38, 0.15);
-}
-
-/*******************************
- States
-*******************************/
-
-/*--------------
- Positive
- ---------------*/
-
-.ui.ui.ui.ui.table tr.positive,
-.ui.ui.table td.positive {
- -webkit-box-shadow: 0 0 0 #A3C293 inset;
- box-shadow: 0 0 0 #A3C293 inset;
- background: #FCFFF5;
- color: #2C662D;
-}
-
-/*--------------
- Negative
- ---------------*/
-
-.ui.ui.ui.ui.table tr.negative,
-.ui.ui.table td.negative {
- -webkit-box-shadow: 0 0 0 #E0B4B4 inset;
- box-shadow: 0 0 0 #E0B4B4 inset;
- background: #FFF6F6;
- color: #9F3A38;
-}
-
-/*--------------
- Error
- ---------------*/
-
-.ui.ui.ui.ui.table tr.error,
-.ui.ui.table td.error {
- -webkit-box-shadow: 0 0 0 #E0B4B4 inset;
- box-shadow: 0 0 0 #E0B4B4 inset;
- background: #FFF6F6;
- color: #9F3A38;
-}
-
-/*--------------
- Warning
- ---------------*/
-
-.ui.ui.ui.ui.table tr.warning,
-.ui.ui.table td.warning {
- -webkit-box-shadow: 0 0 0 #C9BA9B inset;
- box-shadow: 0 0 0 #C9BA9B inset;
- background: #FFFAF3;
- color: #573A08;
-}
-
-/*--------------
- Active
- ---------------*/
-
-.ui.ui.ui.ui.table tr.active,
-.ui.ui.table td.active {
- -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.87) inset;
- box-shadow: 0 0 0 rgba(0, 0, 0, 0.87) inset;
- background: #E0E0E0;
- color: rgba(0, 0, 0, 0.87);
-}
-
-/*--------------
- Disabled
- ---------------*/
-
-.ui.table tr.disabled td,
-.ui.table tr td.disabled,
-.ui.table tr.disabled:hover,
-.ui.table tr:hover td.disabled {
- pointer-events: none;
- color: rgba(40, 40, 40, 0.3);
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*--------------
- Stackable
- ---------------*/
-
-@media only screen and (max-width: 991.98px) {
- .ui[class*="tablet stackable"].table,
- .ui[class*="tablet stackable"].table > thead,
- .ui[class*="tablet stackable"].table > thead > tr,
- .ui[class*="tablet stackable"].table > tfoot,
- .ui[class*="tablet stackable"].table > tfoot > tr,
- .ui[class*="tablet stackable"].table > tbody,
- .ui[class*="tablet stackable"].table > tbody > tr,
- .ui[class*="tablet stackable"].table > tr,
- .ui[class*="tablet stackable"].table > thead > tr > th,
- .ui[class*="tablet stackable"].table > tbody > tr > th,
- .ui[class*="tablet stackable"].table > tfoot > tr > th,
- .ui[class*="tablet stackable"].table > tr > th,
- .ui[class*="tablet stackable"].table > tbody > tr > td,
- .ui[class*="tablet stackable"].table > tfoot > tr > td,
- .ui[class*="tablet stackable"].table > tr > td {
- display: block !important;
- width: 100% !important;
- }
-
- .ui[class*="tablet stackable"].table {
- padding: 0;
- }
-
- .ui[class*="tablet stackable"].table > thead {
- display: block;
- }
-
- .ui[class*="tablet stackable"].table > tfoot {
- display: block;
- }
-
- .ui.ui.ui.ui[class*="tablet stackable"].table > thead > tr,
- .ui.ui.ui.ui[class*="tablet stackable"].table > tbody > tr,
- .ui.ui.ui.ui[class*="tablet stackable"].table > tfoot > tr,
- .ui.ui.ui.ui[class*="tablet stackable"].table > tr {
- padding-top: 1em;
- padding-bottom: 1em;
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
- }
-
- .ui[class*="tablet stackable"].table > thead > tr > th,
- .ui[class*="tablet stackable"].table > tbody > tr > th,
- .ui[class*="tablet stackable"].table > tfoot > tr > th,
- .ui[class*="tablet stackable"].table > tr > th,
- .ui[class*="tablet stackable"].table > tbody > tr > td,
- .ui[class*="tablet stackable"].table > tfoot > tr > td,
- .ui[class*="tablet stackable"].table > tr > td {
- background: none;
- border: none !important;
- padding: 0.25em 0.75em;
- -webkit-box-shadow: none;
- box-shadow: none;
- }
-
- /* Definition Table */
-
- .ui.definition[class*="tablet stackable"].table > thead > tr > th:first-child {
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
- }
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.primary.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #2185D0 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #2185D0 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.primary.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #2185D0 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #2185D0 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.primary.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #54C8FF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #54C8FF inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.primary.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #54C8FF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #54C8FF inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.secondary.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #1B1C1D inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #1B1C1D inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.secondary.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #1B1C1D inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #1B1C1D inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.secondary.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #545454 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #545454 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.secondary.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #545454 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #545454 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.red.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #DB2828 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #DB2828 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.red.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #DB2828 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #DB2828 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.red.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FF695E inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FF695E inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.red.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FF695E inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FF695E inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.orange.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #F2711C inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #F2711C inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.orange.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #F2711C inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #F2711C inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.orange.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FF851B inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FF851B inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.orange.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FF851B inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FF851B inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.yellow.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FBBD08 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FBBD08 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.yellow.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FBBD08 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FBBD08 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.yellow.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FFE21F inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FFE21F inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.yellow.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FFE21F inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FFE21F inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.olive.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #B5CC18 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #B5CC18 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.olive.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #B5CC18 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #B5CC18 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.olive.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #D9E778 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #D9E778 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.olive.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #D9E778 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #D9E778 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.green.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #21BA45 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #21BA45 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.green.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #21BA45 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #21BA45 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.green.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #2ECC40 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #2ECC40 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.green.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #2ECC40 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #2ECC40 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.teal.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #00B5AD inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #00B5AD inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.teal.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #00B5AD inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #00B5AD inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.teal.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #6DFFFF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #6DFFFF inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.teal.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #6DFFFF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #6DFFFF inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.blue.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #2185D0 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #2185D0 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.blue.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #2185D0 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #2185D0 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.blue.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #54C8FF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #54C8FF inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.blue.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #54C8FF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #54C8FF inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.violet.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #6435C9 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #6435C9 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.violet.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #6435C9 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #6435C9 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.violet.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #A291FB inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #A291FB inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.violet.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #A291FB inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #A291FB inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.purple.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #A333C8 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #A333C8 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.purple.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #A333C8 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #A333C8 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.purple.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #DC73FF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #DC73FF inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.purple.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #DC73FF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #DC73FF inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.pink.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #E03997 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #E03997 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.pink.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #E03997 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #E03997 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.pink.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FF8EDF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #FF8EDF inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.pink.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FF8EDF inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #FF8EDF inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.brown.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #A5673F inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #A5673F inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.brown.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #A5673F inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #A5673F inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.brown.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #D67C1C inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #D67C1C inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.brown.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #D67C1C inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #D67C1C inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.grey.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #767676 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #767676 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.grey.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #767676 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #767676 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.grey.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #DCDDDE inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #DCDDDE inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.grey.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #DCDDDE inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #DCDDDE inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.black.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #1B1C1D inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #1B1C1D inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.black.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #1B1C1D inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #1B1C1D inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.black.left {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #545454 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, 0.2em 0 0 0 #545454 inset;
-}
-
-.ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.black.right {
- -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #545454 inset;
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset, -0.2em 0 0 0 #545454 inset;
-}
-
-/*--------------
- Text Alignment
- ---------------*/
-
-.ui.table[class*="left aligned"],
-.ui.table [class*="left aligned"] {
- text-align: left;
-}
-
-.ui.table[class*="center aligned"],
-.ui.table [class*="center aligned"] {
- text-align: center;
-}
-
-.ui.table[class*="right aligned"],
-.ui.table [class*="right aligned"] {
- text-align: right;
-}
-
-/*------------------
- Vertical Alignment
- ------------------*/
-
-.ui.table[class*="top aligned"],
-.ui.table [class*="top aligned"] {
- vertical-align: top;
-}
-
-.ui.table[class*="middle aligned"],
-.ui.table [class*="middle aligned"] {
- vertical-align: middle;
-}
-
-.ui.table[class*="bottom aligned"],
-.ui.table [class*="bottom aligned"] {
- vertical-align: bottom;
-}
-
-/*--------------
- Collapsing
- ---------------*/
-
-.ui.table th.collapsing,
-.ui.table td.collapsing {
- width: 1px;
- white-space: nowrap;
-}
-
-/*--------------
- Fixed
- ---------------*/
-
-.ui.fixed.table {
- table-layout: fixed;
-}
-
-.ui.fixed.table th,
-.ui.fixed.table td {
- overflow: hidden;
- text-overflow: ellipsis;
-}
-
-/*--------------
- Selectable
- ---------------*/
-
-.ui.ui.selectable.table > tbody > tr:hover,
-.ui.table tbody tr td.selectable:hover {
- background: rgba(0, 0, 0, 0.05);
- color: rgba(0, 0, 0, 0.95);
-}
-
-.ui.ui.selectable.inverted.table > tbody > tr:hover,
-.ui.inverted.table tbody tr td.selectable:hover {
- background: rgba(255, 255, 255, 0.08);
- color: #ffffff;
-}
-
-/* Selectable Cell Link */
-
-.ui.table tbody tr td.selectable {
- padding: 0;
-}
-
-.ui.table tbody tr td.selectable > a:not(.ui) {
- display: block;
- color: inherit;
- padding: 0.78571429em 0.78571429em;
-}
-
-.ui.table > tr > td.selectable,
-.ui.table > tbody > tr > td.selectable,
-.ui.selectable.table > tbody > tr,
-.ui.selectable.table > tr {
- cursor: pointer;
-}
-
-/* Other States */
-
-.ui.ui.selectable.table tr.error:hover,
-.ui.table tr td.selectable.error:hover,
-.ui.selectable.table tr:hover td.error {
- background: #ffe7e7;
- color: #943634;
-}
-
-.ui.ui.selectable.table tr.warning:hover,
-.ui.table tr td.selectable.warning:hover,
-.ui.selectable.table tr:hover td.warning {
- background: #fff4e4;
- color: #493107;
-}
-
-.ui.ui.selectable.table tr.active:hover,
-.ui.table tr td.selectable.active:hover,
-.ui.selectable.table tr:hover td.active {
- background: #E0E0E0;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.ui.selectable.table tr.positive:hover,
-.ui.table tr td.selectable.positive:hover,
-.ui.selectable.table tr:hover td.positive {
- background: #f7ffe6;
- color: #275b28;
-}
-
-.ui.ui.selectable.table tr.negative:hover,
-.ui.table tr td.selectable.negative:hover,
-.ui.selectable.table tr:hover td.negative {
- background: #ffe7e7;
- color: #943634;
-}
-
-/*-------------------
- Attached
- --------------------*/
-
-/* Middle */
-
-.ui.attached.table {
- top: 0;
- bottom: 0;
- border-radius: 0;
- margin: 0 -1px;
- width: calc(100% + 2px);
- max-width: calc(100% + 2px);
- -webkit-box-shadow: none;
- box-shadow: none;
- border: 1px solid #D4D4D5;
-}
-
-.ui.attached + .ui.attached.table:not(.top) {
- border-top: none;
-}
-
-/* Top */
-
-.ui[class*="top attached"].table {
- bottom: 0;
- margin-bottom: 0;
- top: 0;
- margin-top: 1em;
- border-radius: 0.28571429rem 0.28571429rem 0 0;
-}
-
-.ui.table[class*="top attached"]:first-child {
- margin-top: 0;
-}
-
-/* Bottom */
-
-.ui[class*="bottom attached"].table {
- bottom: 0;
- margin-top: 0;
- top: 0;
- margin-bottom: 1em;
- -webkit-box-shadow: none, none;
- box-shadow: none, none;
- border-radius: 0 0 0.28571429rem 0.28571429rem;
-}
-
-.ui[class*="bottom attached"].table:last-child {
- margin-bottom: 0;
-}
-
-/*--------------
- Striped
- ---------------*/
-
-/* Table Striping */
-
-.ui.striped.table > tr:nth-child(2n),
-.ui.striped.table > tbody > tr:nth-child(2n) {
- background-color: rgba(0, 0, 50, 0.02);
-}
-
-/* Stripes */
-
-.ui.inverted.striped.table > tr:nth-child(2n),
-.ui.inverted.striped.table > tbody > tr:nth-child(2n) {
- background-color: rgba(255, 255, 255, 0.05);
-}
-
-/* Allow striped active hover */
-
-.ui.striped.selectable.selectable.selectable.table tbody tr.active:hover {
- background: #EFEFEF;
- color: rgba(0, 0, 0, 0.95);
-}
-
-/*--------------
- Single Line
----------------*/
-
-.ui.table[class*="single line"],
-.ui.table [class*="single line"] {
- white-space: nowrap;
-}
-
-/*-------------------
- Colors
---------------------*/
-
-.ui.primary.table {
- border-top: 0.2em solid #2185D0;
-}
-
-.ui.inverted.primary.table {
- background-color: #2185D0;
- color: #FFFFFF;
-}
-
-.ui.ui.ui.ui.table tr.primary:not(.marked),
-.ui.ui.table td.primary:not(.marked) {
- background: #ddf4ff;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.ui.selectable.table tr.primary:not(.marked):hover,
-.ui.table tr td.selectable.primary:not(.marked):hover,
-.ui.selectable.table tr:hover td.primary:not(.marked) {
- background: #d3f1ff;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.table td.marked.primary.left,
-.ui.table tr.marked.primary.left {
- -webkit-box-shadow: 0.2em 0 0 0 #2185D0 inset;
- box-shadow: 0.2em 0 0 0 #2185D0 inset;
-}
-
-.ui.table td.marked.primary.right,
-.ui.table tr.marked.primary.right {
- -webkit-box-shadow: -0.2em 0 0 0 #2185D0 inset;
- box-shadow: -0.2em 0 0 0 #2185D0 inset;
-}
-
-.ui.inverted.table td.marked.primary.left,
-.ui.inverted.table tr.marked.primary.left {
- -webkit-box-shadow: 0.2em 0 0 0 #54C8FF inset;
- box-shadow: 0.2em 0 0 0 #54C8FF inset;
-}
-
-.ui.inverted.table td.marked.primary.right,
-.ui.inverted.table tr.marked.primary.right {
- -webkit-box-shadow: -0.2em 0 0 0 #54C8FF inset;
- box-shadow: -0.2em 0 0 0 #54C8FF inset;
-}
-
-.ui.secondary.table {
- border-top: 0.2em solid #1B1C1D;
-}
-
-.ui.inverted.secondary.table {
- background-color: #1B1C1D;
- color: #FFFFFF;
-}
-
-.ui.ui.ui.ui.table tr.secondary:not(.marked),
-.ui.ui.table td.secondary:not(.marked) {
- background: #dddddd;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.ui.selectable.table tr.secondary:not(.marked):hover,
-.ui.table tr td.selectable.secondary:not(.marked):hover,
-.ui.selectable.table tr:hover td.secondary:not(.marked) {
- background: #e2e2e2;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.table td.marked.secondary.left,
-.ui.table tr.marked.secondary.left {
- -webkit-box-shadow: 0.2em 0 0 0 #1B1C1D inset;
- box-shadow: 0.2em 0 0 0 #1B1C1D inset;
-}
-
-.ui.table td.marked.secondary.right,
-.ui.table tr.marked.secondary.right {
- -webkit-box-shadow: -0.2em 0 0 0 #1B1C1D inset;
- box-shadow: -0.2em 0 0 0 #1B1C1D inset;
-}
-
-.ui.inverted.table td.marked.secondary.left,
-.ui.inverted.table tr.marked.secondary.left {
- -webkit-box-shadow: 0.2em 0 0 0 #545454 inset;
- box-shadow: 0.2em 0 0 0 #545454 inset;
-}
-
-.ui.inverted.table td.marked.secondary.right,
-.ui.inverted.table tr.marked.secondary.right {
- -webkit-box-shadow: -0.2em 0 0 0 #545454 inset;
- box-shadow: -0.2em 0 0 0 #545454 inset;
-}
-
-.ui.red.table {
- border-top: 0.2em solid #DB2828;
-}
-
-.ui.inverted.red.table {
- background-color: #DB2828;
- color: #FFFFFF;
-}
-
-.ui.ui.ui.ui.table tr.red:not(.marked),
-.ui.ui.table td.red:not(.marked) {
- background: #ffe1df;
- color: #DB2828;
-}
-
-.ui.ui.selectable.table tr.red:not(.marked):hover,
-.ui.table tr td.selectable.red:not(.marked):hover,
-.ui.selectable.table tr:hover td.red:not(.marked) {
- background: #ffd7d5;
- color: #DB2828;
-}
-
-.ui.table td.marked.red.left,
-.ui.table tr.marked.red.left {
- -webkit-box-shadow: 0.2em 0 0 0 #DB2828 inset;
- box-shadow: 0.2em 0 0 0 #DB2828 inset;
-}
-
-.ui.table td.marked.red.right,
-.ui.table tr.marked.red.right {
- -webkit-box-shadow: -0.2em 0 0 0 #DB2828 inset;
- box-shadow: -0.2em 0 0 0 #DB2828 inset;
-}
-
-.ui.inverted.table td.marked.red.left,
-.ui.inverted.table tr.marked.red.left {
- -webkit-box-shadow: 0.2em 0 0 0 #FF695E inset;
- box-shadow: 0.2em 0 0 0 #FF695E inset;
-}
-
-.ui.inverted.table td.marked.red.right,
-.ui.inverted.table tr.marked.red.right {
- -webkit-box-shadow: -0.2em 0 0 0 #FF695E inset;
- box-shadow: -0.2em 0 0 0 #FF695E inset;
-}
-
-.ui.orange.table {
- border-top: 0.2em solid #F2711C;
-}
-
-.ui.inverted.orange.table {
- background-color: #F2711C;
- color: #FFFFFF;
-}
-
-.ui.ui.ui.ui.table tr.orange:not(.marked),
-.ui.ui.table td.orange:not(.marked) {
- background: #ffe7d1;
- color: #F2711C;
-}
-
-.ui.ui.selectable.table tr.orange:not(.marked):hover,
-.ui.table tr td.selectable.orange:not(.marked):hover,
-.ui.selectable.table tr:hover td.orange:not(.marked) {
- background: #fae1cc;
- color: #F2711C;
-}
-
-.ui.table td.marked.orange.left,
-.ui.table tr.marked.orange.left {
- -webkit-box-shadow: 0.2em 0 0 0 #F2711C inset;
- box-shadow: 0.2em 0 0 0 #F2711C inset;
-}
-
-.ui.table td.marked.orange.right,
-.ui.table tr.marked.orange.right {
- -webkit-box-shadow: -0.2em 0 0 0 #F2711C inset;
- box-shadow: -0.2em 0 0 0 #F2711C inset;
-}
-
-.ui.inverted.table td.marked.orange.left,
-.ui.inverted.table tr.marked.orange.left {
- -webkit-box-shadow: 0.2em 0 0 0 #FF851B inset;
- box-shadow: 0.2em 0 0 0 #FF851B inset;
-}
-
-.ui.inverted.table td.marked.orange.right,
-.ui.inverted.table tr.marked.orange.right {
- -webkit-box-shadow: -0.2em 0 0 0 #FF851B inset;
- box-shadow: -0.2em 0 0 0 #FF851B inset;
-}
-
-.ui.yellow.table {
- border-top: 0.2em solid #FBBD08;
-}
-
-.ui.inverted.yellow.table {
- background-color: #FBBD08;
- color: #FFFFFF;
-}
-
-.ui.ui.ui.ui.table tr.yellow:not(.marked),
-.ui.ui.table td.yellow:not(.marked) {
- background: #fff9d2;
- color: #B58105;
-}
-
-.ui.ui.selectable.table tr.yellow:not(.marked):hover,
-.ui.table tr td.selectable.yellow:not(.marked):hover,
-.ui.selectable.table tr:hover td.yellow:not(.marked) {
- background: #fbf5cc;
- color: #B58105;
-}
-
-.ui.table td.marked.yellow.left,
-.ui.table tr.marked.yellow.left {
- -webkit-box-shadow: 0.2em 0 0 0 #FBBD08 inset;
- box-shadow: 0.2em 0 0 0 #FBBD08 inset;
-}
-
-.ui.table td.marked.yellow.right,
-.ui.table tr.marked.yellow.right {
- -webkit-box-shadow: -0.2em 0 0 0 #FBBD08 inset;
- box-shadow: -0.2em 0 0 0 #FBBD08 inset;
-}
-
-.ui.inverted.table td.marked.yellow.left,
-.ui.inverted.table tr.marked.yellow.left {
- -webkit-box-shadow: 0.2em 0 0 0 #FFE21F inset;
- box-shadow: 0.2em 0 0 0 #FFE21F inset;
-}
-
-.ui.inverted.table td.marked.yellow.right,
-.ui.inverted.table tr.marked.yellow.right {
- -webkit-box-shadow: -0.2em 0 0 0 #FFE21F inset;
- box-shadow: -0.2em 0 0 0 #FFE21F inset;
-}
-
-.ui.olive.table {
- border-top: 0.2em solid #B5CC18;
-}
-
-.ui.inverted.olive.table {
- background-color: #B5CC18;
- color: #FFFFFF;
-}
-
-.ui.ui.ui.ui.table tr.olive:not(.marked),
-.ui.ui.table td.olive:not(.marked) {
- background: #f7fae4;
- color: #8ABC1E;
-}
-
-.ui.ui.selectable.table tr.olive:not(.marked):hover,
-.ui.table tr td.selectable.olive:not(.marked):hover,
-.ui.selectable.table tr:hover td.olive:not(.marked) {
- background: #f6fada;
- color: #8ABC1E;
-}
-
-.ui.table td.marked.olive.left,
-.ui.table tr.marked.olive.left {
- -webkit-box-shadow: 0.2em 0 0 0 #B5CC18 inset;
- box-shadow: 0.2em 0 0 0 #B5CC18 inset;
-}
-
-.ui.table td.marked.olive.right,
-.ui.table tr.marked.olive.right {
- -webkit-box-shadow: -0.2em 0 0 0 #B5CC18 inset;
- box-shadow: -0.2em 0 0 0 #B5CC18 inset;
-}
-
-.ui.inverted.table td.marked.olive.left,
-.ui.inverted.table tr.marked.olive.left {
- -webkit-box-shadow: 0.2em 0 0 0 #D9E778 inset;
- box-shadow: 0.2em 0 0 0 #D9E778 inset;
-}
-
-.ui.inverted.table td.marked.olive.right,
-.ui.inverted.table tr.marked.olive.right {
- -webkit-box-shadow: -0.2em 0 0 0 #D9E778 inset;
- box-shadow: -0.2em 0 0 0 #D9E778 inset;
-}
-
-.ui.green.table {
- border-top: 0.2em solid #21BA45;
-}
-
-.ui.inverted.green.table {
- background-color: #21BA45;
- color: #FFFFFF;
-}
-
-.ui.ui.ui.ui.table tr.green:not(.marked),
-.ui.ui.table td.green:not(.marked) {
- background: #d5f5d9;
- color: #1EBC30;
-}
-
-.ui.ui.selectable.table tr.green:not(.marked):hover,
-.ui.table tr td.selectable.green:not(.marked):hover,
-.ui.selectable.table tr:hover td.green:not(.marked) {
- background: #d2eed5;
- color: #1EBC30;
-}
-
-.ui.table td.marked.green.left,
-.ui.table tr.marked.green.left {
- -webkit-box-shadow: 0.2em 0 0 0 #21BA45 inset;
- box-shadow: 0.2em 0 0 0 #21BA45 inset;
-}
-
-.ui.table td.marked.green.right,
-.ui.table tr.marked.green.right {
- -webkit-box-shadow: -0.2em 0 0 0 #21BA45 inset;
- box-shadow: -0.2em 0 0 0 #21BA45 inset;
-}
-
-.ui.inverted.table td.marked.green.left,
-.ui.inverted.table tr.marked.green.left {
- -webkit-box-shadow: 0.2em 0 0 0 #2ECC40 inset;
- box-shadow: 0.2em 0 0 0 #2ECC40 inset;
-}
-
-.ui.inverted.table td.marked.green.right,
-.ui.inverted.table tr.marked.green.right {
- -webkit-box-shadow: -0.2em 0 0 0 #2ECC40 inset;
- box-shadow: -0.2em 0 0 0 #2ECC40 inset;
-}
-
-.ui.teal.table {
- border-top: 0.2em solid #00B5AD;
-}
-
-.ui.inverted.teal.table {
- background-color: #00B5AD;
- color: #FFFFFF;
-}
-
-.ui.ui.ui.ui.table tr.teal:not(.marked),
-.ui.ui.table td.teal:not(.marked) {
- background: #e2ffff;
- color: #10A3A3;
-}
-
-.ui.ui.selectable.table tr.teal:not(.marked):hover,
-.ui.table tr td.selectable.teal:not(.marked):hover,
-.ui.selectable.table tr:hover td.teal:not(.marked) {
- background: #d8ffff;
- color: #10A3A3;
-}
-
-.ui.table td.marked.teal.left,
-.ui.table tr.marked.teal.left {
- -webkit-box-shadow: 0.2em 0 0 0 #00B5AD inset;
- box-shadow: 0.2em 0 0 0 #00B5AD inset;
-}
-
-.ui.table td.marked.teal.right,
-.ui.table tr.marked.teal.right {
- -webkit-box-shadow: -0.2em 0 0 0 #00B5AD inset;
- box-shadow: -0.2em 0 0 0 #00B5AD inset;
-}
-
-.ui.inverted.table td.marked.teal.left,
-.ui.inverted.table tr.marked.teal.left {
- -webkit-box-shadow: 0.2em 0 0 0 #6DFFFF inset;
- box-shadow: 0.2em 0 0 0 #6DFFFF inset;
-}
-
-.ui.inverted.table td.marked.teal.right,
-.ui.inverted.table tr.marked.teal.right {
- -webkit-box-shadow: -0.2em 0 0 0 #6DFFFF inset;
- box-shadow: -0.2em 0 0 0 #6DFFFF inset;
-}
-
-.ui.blue.table {
- border-top: 0.2em solid #2185D0;
-}
-
-.ui.inverted.blue.table {
- background-color: #2185D0;
- color: #FFFFFF;
-}
-
-.ui.ui.ui.ui.table tr.blue:not(.marked),
-.ui.ui.table td.blue:not(.marked) {
- background: #ddf4ff;
- color: #2185D0;
-}
-
-.ui.ui.selectable.table tr.blue:not(.marked):hover,
-.ui.table tr td.selectable.blue:not(.marked):hover,
-.ui.selectable.table tr:hover td.blue:not(.marked) {
- background: #d3f1ff;
- color: #2185D0;
-}
-
-.ui.table td.marked.blue.left,
-.ui.table tr.marked.blue.left {
- -webkit-box-shadow: 0.2em 0 0 0 #2185D0 inset;
- box-shadow: 0.2em 0 0 0 #2185D0 inset;
-}
-
-.ui.table td.marked.blue.right,
-.ui.table tr.marked.blue.right {
- -webkit-box-shadow: -0.2em 0 0 0 #2185D0 inset;
- box-shadow: -0.2em 0 0 0 #2185D0 inset;
-}
-
-.ui.inverted.table td.marked.blue.left,
-.ui.inverted.table tr.marked.blue.left {
- -webkit-box-shadow: 0.2em 0 0 0 #54C8FF inset;
- box-shadow: 0.2em 0 0 0 #54C8FF inset;
-}
-
-.ui.inverted.table td.marked.blue.right,
-.ui.inverted.table tr.marked.blue.right {
- -webkit-box-shadow: -0.2em 0 0 0 #54C8FF inset;
- box-shadow: -0.2em 0 0 0 #54C8FF inset;
-}
-
-.ui.violet.table {
- border-top: 0.2em solid #6435C9;
-}
-
-.ui.inverted.violet.table {
- background-color: #6435C9;
- color: #FFFFFF;
-}
-
-.ui.ui.ui.ui.table tr.violet:not(.marked),
-.ui.ui.table td.violet:not(.marked) {
- background: #ece9fe;
- color: #6435C9;
-}
-
-.ui.ui.selectable.table tr.violet:not(.marked):hover,
-.ui.table tr td.selectable.violet:not(.marked):hover,
-.ui.selectable.table tr:hover td.violet:not(.marked) {
- background: #e3deff;
- color: #6435C9;
-}
-
-.ui.table td.marked.violet.left,
-.ui.table tr.marked.violet.left {
- -webkit-box-shadow: 0.2em 0 0 0 #6435C9 inset;
- box-shadow: 0.2em 0 0 0 #6435C9 inset;
-}
-
-.ui.table td.marked.violet.right,
-.ui.table tr.marked.violet.right {
- -webkit-box-shadow: -0.2em 0 0 0 #6435C9 inset;
- box-shadow: -0.2em 0 0 0 #6435C9 inset;
-}
-
-.ui.inverted.table td.marked.violet.left,
-.ui.inverted.table tr.marked.violet.left {
- -webkit-box-shadow: 0.2em 0 0 0 #A291FB inset;
- box-shadow: 0.2em 0 0 0 #A291FB inset;
-}
-
-.ui.inverted.table td.marked.violet.right,
-.ui.inverted.table tr.marked.violet.right {
- -webkit-box-shadow: -0.2em 0 0 0 #A291FB inset;
- box-shadow: -0.2em 0 0 0 #A291FB inset;
-}
-
-.ui.purple.table {
- border-top: 0.2em solid #A333C8;
-}
-
-.ui.inverted.purple.table {
- background-color: #A333C8;
- color: #FFFFFF;
-}
-
-.ui.ui.ui.ui.table tr.purple:not(.marked),
-.ui.ui.table td.purple:not(.marked) {
- background: #f8e3ff;
- color: #A333C8;
-}
-
-.ui.ui.selectable.table tr.purple:not(.marked):hover,
-.ui.table tr td.selectable.purple:not(.marked):hover,
-.ui.selectable.table tr:hover td.purple:not(.marked) {
- background: #f5d9ff;
- color: #A333C8;
-}
-
-.ui.table td.marked.purple.left,
-.ui.table tr.marked.purple.left {
- -webkit-box-shadow: 0.2em 0 0 0 #A333C8 inset;
- box-shadow: 0.2em 0 0 0 #A333C8 inset;
-}
-
-.ui.table td.marked.purple.right,
-.ui.table tr.marked.purple.right {
- -webkit-box-shadow: -0.2em 0 0 0 #A333C8 inset;
- box-shadow: -0.2em 0 0 0 #A333C8 inset;
-}
-
-.ui.inverted.table td.marked.purple.left,
-.ui.inverted.table tr.marked.purple.left {
- -webkit-box-shadow: 0.2em 0 0 0 #DC73FF inset;
- box-shadow: 0.2em 0 0 0 #DC73FF inset;
-}
-
-.ui.inverted.table td.marked.purple.right,
-.ui.inverted.table tr.marked.purple.right {
- -webkit-box-shadow: -0.2em 0 0 0 #DC73FF inset;
- box-shadow: -0.2em 0 0 0 #DC73FF inset;
-}
-
-.ui.pink.table {
- border-top: 0.2em solid #E03997;
-}
-
-.ui.inverted.pink.table {
- background-color: #E03997;
- color: #FFFFFF;
-}
-
-.ui.ui.ui.ui.table tr.pink:not(.marked),
-.ui.ui.table td.pink:not(.marked) {
- background: #ffe8f9;
- color: #E03997;
-}
-
-.ui.ui.selectable.table tr.pink:not(.marked):hover,
-.ui.table tr td.selectable.pink:not(.marked):hover,
-.ui.selectable.table tr:hover td.pink:not(.marked) {
- background: #ffdef6;
- color: #E03997;
-}
-
-.ui.table td.marked.pink.left,
-.ui.table tr.marked.pink.left {
- -webkit-box-shadow: 0.2em 0 0 0 #E03997 inset;
- box-shadow: 0.2em 0 0 0 #E03997 inset;
-}
-
-.ui.table td.marked.pink.right,
-.ui.table tr.marked.pink.right {
- -webkit-box-shadow: -0.2em 0 0 0 #E03997 inset;
- box-shadow: -0.2em 0 0 0 #E03997 inset;
-}
-
-.ui.inverted.table td.marked.pink.left,
-.ui.inverted.table tr.marked.pink.left {
- -webkit-box-shadow: 0.2em 0 0 0 #FF8EDF inset;
- box-shadow: 0.2em 0 0 0 #FF8EDF inset;
-}
-
-.ui.inverted.table td.marked.pink.right,
-.ui.inverted.table tr.marked.pink.right {
- -webkit-box-shadow: -0.2em 0 0 0 #FF8EDF inset;
- box-shadow: -0.2em 0 0 0 #FF8EDF inset;
-}
-
-.ui.brown.table {
- border-top: 0.2em solid #A5673F;
-}
-
-.ui.inverted.brown.table {
- background-color: #A5673F;
- color: #FFFFFF;
-}
-
-.ui.ui.ui.ui.table tr.brown:not(.marked),
-.ui.ui.table td.brown:not(.marked) {
- background: #f7e5d2;
- color: #A5673F;
-}
-
-.ui.ui.selectable.table tr.brown:not(.marked):hover,
-.ui.table tr td.selectable.brown:not(.marked):hover,
-.ui.selectable.table tr:hover td.brown:not(.marked) {
- background: #efe0cf;
- color: #A5673F;
-}
-
-.ui.table td.marked.brown.left,
-.ui.table tr.marked.brown.left {
- -webkit-box-shadow: 0.2em 0 0 0 #A5673F inset;
- box-shadow: 0.2em 0 0 0 #A5673F inset;
-}
-
-.ui.table td.marked.brown.right,
-.ui.table tr.marked.brown.right {
- -webkit-box-shadow: -0.2em 0 0 0 #A5673F inset;
- box-shadow: -0.2em 0 0 0 #A5673F inset;
-}
-
-.ui.inverted.table td.marked.brown.left,
-.ui.inverted.table tr.marked.brown.left {
- -webkit-box-shadow: 0.2em 0 0 0 #D67C1C inset;
- box-shadow: 0.2em 0 0 0 #D67C1C inset;
-}
-
-.ui.inverted.table td.marked.brown.right,
-.ui.inverted.table tr.marked.brown.right {
- -webkit-box-shadow: -0.2em 0 0 0 #D67C1C inset;
- box-shadow: -0.2em 0 0 0 #D67C1C inset;
-}
-
-.ui.grey.table {
- border-top: 0.2em solid #767676;
-}
-
-.ui.inverted.grey.table {
- background-color: #767676;
- color: #FFFFFF;
-}
-
-.ui.ui.ui.ui.table tr.grey:not(.marked),
-.ui.ui.table td.grey:not(.marked) {
- background: #DCDDDE;
- color: #767676;
-}
-
-.ui.ui.selectable.table tr.grey:not(.marked):hover,
-.ui.table tr td.selectable.grey:not(.marked):hover,
-.ui.selectable.table tr:hover td.grey:not(.marked) {
- background: #c2c4c5;
- color: #767676;
-}
-
-.ui.table td.marked.grey.left,
-.ui.table tr.marked.grey.left {
- -webkit-box-shadow: 0.2em 0 0 0 #767676 inset;
- box-shadow: 0.2em 0 0 0 #767676 inset;
-}
-
-.ui.table td.marked.grey.right,
-.ui.table tr.marked.grey.right {
- -webkit-box-shadow: -0.2em 0 0 0 #767676 inset;
- box-shadow: -0.2em 0 0 0 #767676 inset;
-}
-
-.ui.inverted.table td.marked.grey.left,
-.ui.inverted.table tr.marked.grey.left {
- -webkit-box-shadow: 0.2em 0 0 0 #DCDDDE inset;
- box-shadow: 0.2em 0 0 0 #DCDDDE inset;
-}
-
-.ui.inverted.table td.marked.grey.right,
-.ui.inverted.table tr.marked.grey.right {
- -webkit-box-shadow: -0.2em 0 0 0 #DCDDDE inset;
- box-shadow: -0.2em 0 0 0 #DCDDDE inset;
-}
-
-.ui.black.table {
- border-top: 0.2em solid #1B1C1D;
-}
-
-.ui.inverted.black.table {
- background-color: #1B1C1D;
- color: #FFFFFF;
-}
-
-.ui.ui.ui.ui.table tr.black:not(.marked),
-.ui.ui.table td.black:not(.marked) {
- background: #545454;
- color: #FFFFFF;
-}
-
-.ui.ui.selectable.table tr.black:not(.marked):hover,
-.ui.table tr td.selectable.black:not(.marked):hover,
-.ui.selectable.table tr:hover td.black:not(.marked) {
- background: #000000;
- color: #FFFFFF;
-}
-
-.ui.table td.marked.black.left,
-.ui.table tr.marked.black.left {
- -webkit-box-shadow: 0.2em 0 0 0 #1B1C1D inset;
- box-shadow: 0.2em 0 0 0 #1B1C1D inset;
-}
-
-.ui.table td.marked.black.right,
-.ui.table tr.marked.black.right {
- -webkit-box-shadow: -0.2em 0 0 0 #1B1C1D inset;
- box-shadow: -0.2em 0 0 0 #1B1C1D inset;
-}
-
-.ui.inverted.table td.marked.black.left,
-.ui.inverted.table tr.marked.black.left {
- -webkit-box-shadow: 0.2em 0 0 0 #545454 inset;
- box-shadow: 0.2em 0 0 0 #545454 inset;
-}
-
-.ui.inverted.table td.marked.black.right,
-.ui.inverted.table tr.marked.black.right {
- -webkit-box-shadow: -0.2em 0 0 0 #545454 inset;
- box-shadow: -0.2em 0 0 0 #545454 inset;
-}
-
-/*--------------
- Column Count
----------------*/
-
-/* Grid Based */
-
-.ui.one.column.table td {
- width: 100%;
-}
-
-.ui.two.column.table td {
- width: 50%;
-}
-
-.ui.three.column.table td {
- width: 33.33333333%;
-}
-
-.ui.four.column.table td {
- width: 25%;
-}
-
-.ui.five.column.table td {
- width: 20%;
-}
-
-.ui.six.column.table td {
- width: 16.66666667%;
-}
-
-.ui.seven.column.table td {
- width: 14.28571429%;
-}
-
-.ui.eight.column.table td {
- width: 12.5%;
-}
-
-.ui.nine.column.table td {
- width: 11.11111111%;
-}
-
-.ui.ten.column.table td {
- width: 10%;
-}
-
-.ui.eleven.column.table td {
- width: 9.09090909%;
-}
-
-.ui.twelve.column.table td {
- width: 8.33333333%;
-}
-
-.ui.thirteen.column.table td {
- width: 7.69230769%;
-}
-
-.ui.fourteen.column.table td {
- width: 7.14285714%;
-}
-
-.ui.fifteen.column.table td {
- width: 6.66666667%;
-}
-
-.ui.sixteen.column.table td {
- width: 6.25%;
-}
-
-/* Column Width */
-
-.ui.table th.one.wide,
-.ui.table td.one.wide {
- width: 6.25%;
-}
-
-.ui.table th.two.wide,
-.ui.table td.two.wide {
- width: 12.5%;
-}
-
-.ui.table th.three.wide,
-.ui.table td.three.wide {
- width: 18.75%;
-}
-
-.ui.table th.four.wide,
-.ui.table td.four.wide {
- width: 25%;
-}
-
-.ui.table th.five.wide,
-.ui.table td.five.wide {
- width: 31.25%;
-}
-
-.ui.table th.six.wide,
-.ui.table td.six.wide {
- width: 37.5%;
-}
-
-.ui.table th.seven.wide,
-.ui.table td.seven.wide {
- width: 43.75%;
-}
-
-.ui.table th.eight.wide,
-.ui.table td.eight.wide {
- width: 50%;
-}
-
-.ui.table th.nine.wide,
-.ui.table td.nine.wide {
- width: 56.25%;
-}
-
-.ui.table th.ten.wide,
-.ui.table td.ten.wide {
- width: 62.5%;
-}
-
-.ui.table th.eleven.wide,
-.ui.table td.eleven.wide {
- width: 68.75%;
-}
-
-.ui.table th.twelve.wide,
-.ui.table td.twelve.wide {
- width: 75%;
-}
-
-.ui.table th.thirteen.wide,
-.ui.table td.thirteen.wide {
- width: 81.25%;
-}
-
-.ui.table th.fourteen.wide,
-.ui.table td.fourteen.wide {
- width: 87.5%;
-}
-
-.ui.table th.fifteen.wide,
-.ui.table td.fifteen.wide {
- width: 93.75%;
-}
-
-.ui.table th.sixteen.wide,
-.ui.table td.sixteen.wide {
- width: 100%;
-}
-
-/*--------------
- Sortable
- ---------------*/
-
-.ui.sortable.table > thead > tr > th {
- cursor: pointer;
- white-space: nowrap;
- border-left: 1px solid rgba(34, 36, 38, 0.15);
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.sortable.table > thead > tr > th:first-child {
- border-left: none;
-}
-
-.ui.sortable.table thead th.sorted,
-.ui.sortable.table thead th.sorted:hover {
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
-}
-
-.ui.sortable.table > thead > tr > th:after {
- display: none;
- font-style: normal;
- font-weight: normal;
- text-decoration: inherit;
- content: '';
- height: 1em;
- width: auto;
- opacity: 0.8;
- margin: 0 0 0 0.5em;
- font-family: 'Icons';
-}
-
-.ui.sortable.table thead th.ascending:after {
- content: '\f0d8';
-}
-
-.ui.sortable.table thead th.descending:after {
- content: '\f0d7';
-}
-
-/* Hover */
-
-.ui.sortable.table th.disabled:hover {
- cursor: auto;
- color: rgba(40, 40, 40, 0.3);
-}
-
-.ui.sortable.table > thead > tr > th:hover {
- color: rgba(0, 0, 0, 0.8);
-}
-
-.ui.sortable.table:not(.basic) > thead > tr > th:hover {
- background: rgba(0, 0, 0, 0.05);
-}
-
-/* Sorted */
-
-.ui.sortable.table thead th.sorted {
- color: rgba(0, 0, 0, 0.95);
-}
-
-.ui.sortable.table:not(.basic) thead th.sorted {
- background: rgba(0, 0, 0, 0.05);
-}
-
-.ui.sortable.table thead th.sorted:after {
- display: inline-block;
-}
-
-/* Sorted Hover */
-
-.ui.sortable.table thead th.sorted:hover {
- color: rgba(0, 0, 0, 0.95);
-}
-
-.ui.sortable.table:not(.basic) thead th.sorted:hover {
- background: rgba(0, 0, 0, 0.05);
-}
-
-/* Inverted */
-
-.ui.inverted.sortable.table thead th.sorted {
- color: #ffffff;
-}
-
-.ui.inverted.sortable.table:not(.basic) thead th.sorted {
- background: rgba(255, 255, 255, 0.15) -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
- background: rgba(255, 255, 255, 0.15) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
- background: rgba(255, 255, 255, 0.15) linear-gradient(transparent, rgba(0, 0, 0, 0.05));
-}
-
-.ui.inverted.sortable.table > thead > tr > th:hover {
- color: #ffffff;
-}
-
-.ui.inverted.sortable.table:not(.basic) > thead > tr > th:hover {
- background: rgba(255, 255, 255, 0.08) -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
- background: rgba(255, 255, 255, 0.08) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
- background: rgba(255, 255, 255, 0.08) linear-gradient(transparent, rgba(0, 0, 0, 0.05));
-}
-
-.ui.inverted.sortable.table:not(.basic) > thead > tr > th {
- border-left-color: transparent;
- border-right-color: transparent;
-}
-
-/*--------------
- Inverted
- ---------------*/
-
-/* Text Color */
-
-.ui.inverted.table {
- background: #333333;
- color: rgba(255, 255, 255, 0.9);
- border: none;
-}
-
-.ui.ui.inverted.table > thead > tr > th,
-.ui.ui.inverted.table > tbody > tr > th,
-.ui.ui.inverted.table > tfoot > tr > th,
-.ui.ui.inverted.table > tfoot > tr > td,
-.ui.ui.inverted.table > tr > th {
- background-color: rgba(0, 0, 0, 0.15);
- border-color: rgba(255, 255, 255, 0.1);
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.table > tbody > tr > td,
-.ui.inverted.table > tfoot > tr > td,
-.ui.inverted.table > tr > td {
- border-color: rgba(255, 255, 255, 0.1);
-}
-
-.ui.inverted.table tr.disabled td,
-.ui.inverted.table tr td.disabled,
-.ui.inverted.table tr.disabled:hover td,
-.ui.inverted.table tr:hover td.disabled {
- pointer-events: none;
- color: rgba(225, 225, 225, 0.3);
-}
-
-.ui.inverted.table tr td.disabled:not([class="disabled"]),
-.ui.inverted.table tr.disabled:not([class="disabled"]) td,
-.ui.inverted.table tr.disabled td[class]:not(.disabled),
-.ui.inverted.table tr:hover td.disabled:not([class="disabled"]) {
- color: rgba(40, 40, 40, 0.3);
-}
-
-/* Definition */
-
-.ui.inverted.definition.table > tfoot:not(.full-width) > tr > th:first-child,
-.ui.inverted.definition.table > thead:not(.full-width) > tr > th:first-child {
- background: #FFFFFF;
-}
-
-.ui.inverted.definition.table > tbody > tr > td:first-child .ui.inverted.definition.table > tfoot > tr > td:first-child,
-.ui.inverted.definition.table > tr > td:first-child {
- background: rgba(255, 255, 255, 0.02);
- color: #ffffff;
-}
-
-/*--------------
- Collapsing
- ---------------*/
-
-.ui.collapsing.table {
- width: auto;
-}
-
-/*--------------
- Basic
- ---------------*/
-
-.ui.basic.table {
- background: transparent;
- border: 1px solid rgba(34, 36, 38, 0.15);
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.basic.table > thead,
-.ui.basic.table > tfoot {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.basic.table > thead > tr > th,
-.ui.basic.table > tbody > tr > th,
-.ui.basic.table > tfoot > tr > th,
-.ui.basic.table > tr > th {
- background: transparent;
- border-left: none;
-}
-
-.ui.basic.table > tbody > tr {
- border-bottom: 1px solid rgba(0, 0, 0, 0.1);
-}
-
-.ui.basic.table > tbody > tr > td,
-.ui.basic.table > tfoot > tr > td,
-.ui.basic.table > tr > td {
- background: transparent;
-}
-
-.ui.basic.striped.table > tbody > tr:nth-child(2n) {
- background-color: rgba(0, 0, 0, 0.05);
-}
-
-/* Very Basic */
-
-.ui[class*="very basic"].table {
- border: none;
-}
-
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tr > th,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > thead > tr > th,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tbody > tr > th,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tfoot > tr > th,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tr > td,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tbody > tr > td {
- padding: '';
-}
-
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tr > th:first-child,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > thead > tr > th:first-child,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tbody > tr > th:first-child,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tfoot > tr > th:first-child,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tr > td:first-child,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tbody > tr > td:first-child,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tfoot > tr > td:first-child {
- padding-left: 0;
-}
-
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tr > th:last-child,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > thead > tr > th:last-child,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tbody > tr > th:last-child,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tfoot > tr > th:last-child,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tr > td:last-child,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tbody > tr > td:last-child,
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > tfoot > tr > td:last-child {
- padding-right: 0;
-}
-
-.ui[class*="very basic"].table:not(.sortable):not(.striped) > thead > tr:first-child > th {
- padding-top: 0;
-}
-
-/*--------------
- Celled
- ---------------*/
-
-.ui.celled.table > tr > th,
-.ui.celled.table > thead > tr > th,
-.ui.celled.table > tbody > tr > th,
-.ui.celled.table > tfoot > tr > th,
-.ui.celled.table > tr > td,
-.ui.celled.table > tbody > tr > td,
-.ui.celled.table > tfoot > tr > td {
- border-left: 1px solid rgba(34, 36, 38, 0.1);
-}
-
-.ui.inverted.celled.table > tbody > tr > td,
-.ui.inverted.celled.table > tr > td {
- border-left: 1px solid rgba(255, 255, 255, 0.1);
-}
-
-.ui.celled.table > tr > th:first-child,
-.ui.celled.table > thead > tr > th:first-child,
-.ui.celled.table > tbody > tr > th:first-child,
-.ui.celled.table > tfoot > tr > th:first-child,
-.ui.celled.table > tr > td:first-child,
-.ui.celled.table > tbody > tr > td:first-child,
-.ui.celled.table > tfoot > tr > td:first-child {
- border-left: none;
-}
-
-/*--------------
- Padded
- ---------------*/
-
-.ui.padded.table > tr > th,
-.ui.padded.table > thead > tr > th,
-.ui.padded.table > tbody > tr > th,
-.ui.padded.table > tfoot > tr > th {
- padding-left: 1em;
- padding-right: 1em;
-}
-
-.ui.padded.table > tr > th,
-.ui.padded.table > thead > tr > th,
-.ui.padded.table > tbody > tr > th,
-.ui.padded.table > tfoot > tr > th,
-.ui.padded.table > tr > td,
-.ui.padded.table > tbody > tr > td,
-.ui.padded.table > tfoot > tr > td {
- padding: 1em 1em;
-}
-
-/* Very */
-
-.ui[class*="very padded"].table > tr > th,
-.ui[class*="very padded"].table > thead > tr > th,
-.ui[class*="very padded"].table > tbody > tr > th,
-.ui[class*="very padded"].table > tfoot > tr > th {
- padding-left: 1.5em;
- padding-right: 1.5em;
-}
-
-.ui[class*="very padded"].table > tr > td,
-.ui[class*="very padded"].table > tbody > tr > td,
-.ui[class*="very padded"].table > tfoot > tr > td {
- padding: 1.5em 1.5em;
-}
-
-/*--------------
- Compact
- ---------------*/
-
-.ui.compact.table > tr > th,
-.ui.compact.table > thead > tr > th,
-.ui.compact.table > tbody > tr > th,
-.ui.compact.table > tfoot > tr > th {
- padding-left: 0.7em;
- padding-right: 0.7em;
-}
-
-.ui.compact.table > tr > td,
-.ui.compact.table > tbody > tr > td,
-.ui.compact.table > tfoot > tr > td {
- padding: 0.5em 0.7em;
-}
-
-/* Very */
-
-.ui[class*="very compact"].table > tr > th,
-.ui[class*="very compact"].table > thead > tr > th,
-.ui[class*="very compact"].table > tbody > tr > th,
-.ui[class*="very compact"].table > tfoot > tr > th {
- padding-left: 0.6em;
- padding-right: 0.6em;
-}
-
-.ui[class*="very compact"].table > tr > td,
-.ui[class*="very compact"].table > tbody > tr > td,
-.ui[class*="very compact"].table > tfoot > tr > td {
- padding: 0.4em 0.6em;
-}
-
-/*--------------
- Sizes
----------------*/
-
-/* Standard */
-
-.ui.table {
- font-size: 1em;
-}
-
-.ui.mini.table {
- font-size: 0.78571429rem;
-}
-
-.ui.tiny.table {
- font-size: 0.85714286rem;
-}
-
-.ui.small.table {
- font-size: 0.9em;
-}
-
-.ui.large.table {
- font-size: 1.1em;
-}
-
-.ui.big.table {
- font-size: 1.28571429rem;
-}
-
-.ui.huge.table {
- font-size: 1.42857143rem;
-}
-
-.ui.massive.table {
- font-size: 1.71428571rem;
-}
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Ad
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Copyright 2013 Contributors
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Advertisement
-*******************************/
-
-.ui.ad {
- display: block;
- overflow: hidden;
- margin: 1em 0;
-}
-
-.ui.ad:first-child {
- margin: 0;
-}
-
-.ui.ad:last-child {
- margin: 0;
-}
-
-.ui.ad iframe {
- margin: 0;
- padding: 0;
- border: none;
- overflow: hidden;
-}
-
-/*--------------
- Common
----------------*/
-
-/* Leaderboard */
-
-.ui.leaderboard.ad {
- width: 728px;
- height: 90px;
-}
-
-/* Medium Rectangle */
-
-.ui[class*="medium rectangle"].ad {
- width: 300px;
- height: 250px;
-}
-
-/* Large Rectangle */
-
-.ui[class*="large rectangle"].ad {
- width: 336px;
- height: 280px;
-}
-
-/* Half Page */
-
-.ui[class*="half page"].ad {
- width: 300px;
- height: 600px;
-}
-
-/*--------------
- Square
- ---------------*/
-
-/* Square */
-
-.ui.square.ad {
- width: 250px;
- height: 250px;
-}
-
-/* Small Square */
-
-.ui[class*="small square"].ad {
- width: 200px;
- height: 200px;
-}
-
-/*--------------
- Rectangle
- ---------------*/
-
-/* Small Rectangle */
-
-.ui[class*="small rectangle"].ad {
- width: 180px;
- height: 150px;
-}
-
-/* Vertical Rectangle */
-
-.ui[class*="vertical rectangle"].ad {
- width: 240px;
- height: 400px;
-}
-
-/*--------------
- Button
- ---------------*/
-
-.ui.button.ad {
- width: 120px;
- height: 90px;
-}
-
-.ui[class*="square button"].ad {
- width: 125px;
- height: 125px;
-}
-
-.ui[class*="small button"].ad {
- width: 120px;
- height: 60px;
-}
-
-/*--------------
- Skyscrapers
- ---------------*/
-
-/* Skyscraper */
-
-.ui.skyscraper.ad {
- width: 120px;
- height: 600px;
-}
-
-/* Wide Skyscraper */
-
-.ui[class*="wide skyscraper"].ad {
- width: 160px;
-}
-
-/*--------------
- Banners
- ---------------*/
-
-/* Banner */
-
-.ui.banner.ad {
- width: 468px;
- height: 60px;
-}
-
-/* Vertical Banner */
-
-.ui[class*="vertical banner"].ad {
- width: 120px;
- height: 240px;
-}
-
-/* Top Banner */
-
-.ui[class*="top banner"].ad {
- width: 930px;
- height: 180px;
-}
-
-/* Half Banner */
-
-.ui[class*="half banner"].ad {
- width: 234px;
- height: 60px;
-}
-
-/*--------------
- Boards
----------------*/
-
-/* Leaderboard */
-
-.ui[class*="large leaderboard"].ad {
- width: 970px;
- height: 90px;
-}
-
-/* Billboard */
-
-.ui.billboard.ad {
- width: 970px;
- height: 250px;
-}
-
-/*--------------
- Panorama
- ---------------*/
-
-/* Panorama */
-
-.ui.panorama.ad {
- width: 980px;
- height: 120px;
-}
-
-/*--------------
- Netboard
- ---------------*/
-
-/* Netboard */
-
-.ui.netboard.ad {
- width: 580px;
- height: 400px;
-}
-
-/*--------------
- Mobile
- ---------------*/
-
-/* Large Mobile Banner */
-
-.ui[class*="large mobile banner"].ad {
- width: 320px;
- height: 100px;
-}
-
-/* Mobile Leaderboard */
-
-.ui[class*="mobile leaderboard"].ad {
- width: 320px;
- height: 50px;
-}
-
-/*******************************
- Types
-*******************************/
-
-/* Mobile Sizes */
-
-.ui.mobile.ad {
- display: none;
-}
-
-@media only screen and (max-width: 767.98px) {
- .ui.mobile.ad {
- display: block;
- }
-}
-
-/*******************************
- Variations
-*******************************/
-
-.ui.centered.ad {
- margin-left: auto;
- margin-right: auto;
-}
-
-.ui.test.ad {
- position: relative;
- background: #545454;
-}
-
-.ui.test.ad:after {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 100%;
- text-align: center;
- -webkit-transform: translateX(-50%) translateY(-50%);
- transform: translateX(-50%) translateY(-50%);
- content: 'Ad';
- color: #FFFFFF;
- font-size: 1em;
- font-weight: bold;
-}
-
-.ui.mobile.test.ad:after {
- font-size: 0.85714286em;
-}
-
-.ui.test.ad[data-text]:after {
- content: attr(data-text);
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- User Variable Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Card
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Standard
-*******************************/
-
-/*--------------
- Card
----------------*/
-
-.ui.cards > .card,
-.ui.card {
- max-width: 100%;
- position: relative;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- width: 290px;
- min-height: 0;
- background: #FFFFFF;
- padding: 0;
- border: none;
- border-radius: 0.28571429rem;
- -webkit-box-shadow: 0 1px 3px 0 #D4D4D5, 0 0 0 1px #D4D4D5;
- box-shadow: 0 1px 3px 0 #D4D4D5, 0 0 0 1px #D4D4D5;
- -webkit-transition: -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease;
- transition: -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease;
- transition: box-shadow 0.1s ease, transform 0.1s ease;
- transition: box-shadow 0.1s ease, transform 0.1s ease, -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease;
- z-index: '';
- word-wrap: break-word;
-}
-
-.ui.card {
- margin: 1em 0;
-}
-
-.ui.cards > .card a,
-.ui.card a {
- cursor: pointer;
-}
-
-.ui.card:first-child {
- margin-top: 0;
-}
-
-.ui.card:last-child {
- margin-bottom: 0;
-}
-
-/*--------------
- Cards
----------------*/
-
-.ui.cards {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- margin: -0.875em -0.5em;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
-}
-
-.ui.cards > .card {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- margin: 0.875em 0.5em;
- float: none;
-}
-
-/* Clearing */
-
-.ui.cards:after,
-.ui.card:after {
- display: block;
- content: ' ';
- height: 0;
- clear: both;
- overflow: hidden;
- visibility: hidden;
-}
-
-/* Consecutive Card Groups Preserve Row Spacing */
-
-.ui.cards ~ .ui.cards {
- margin-top: 0.875em;
-}
-
-/*--------------
- Rounded Edges
----------------*/
-
-.ui.cards > .card > :first-child,
-.ui.card > :first-child {
- border-radius: 0.28571429rem 0.28571429rem 0 0 !important;
- border-top: none !important;
-}
-
-.ui.cards > .card > :last-child,
-.ui.card > :last-child {
- border-radius: 0 0 0.28571429rem 0.28571429rem !important;
-}
-
-.ui.cards > .card > :only-child,
-.ui.card > :only-child {
- border-radius: 0.28571429rem !important;
-}
-
-/*--------------
- Images
----------------*/
-
-.ui.cards > .card > .image,
-.ui.card > .image {
- position: relative;
- display: block;
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- padding: 0;
- background: rgba(0, 0, 0, 0.05);
-}
-
-.ui.cards > .card > .image > img,
-.ui.card > .image > img {
- display: block;
- width: 100%;
- height: auto;
- border-radius: inherit;
-}
-
-.ui.cards > .card > .image:not(.ui) > img,
-.ui.card > .image:not(.ui) > img {
- border: none;
-}
-
-/*--------------
- Content
----------------*/
-
-.ui.cards > .card > .content,
-.ui.card > .content {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- border: none;
- border-top: 1px solid rgba(34, 36, 38, 0.1);
- background: none;
- margin: 0;
- padding: 1em 1em;
- -webkit-box-shadow: none;
- box-shadow: none;
- font-size: 1em;
- border-radius: 0;
-}
-
-.ui.cards > .card > .content:after,
-.ui.card > .content:after {
- display: block;
- content: ' ';
- height: 0;
- clear: both;
- overflow: hidden;
- visibility: hidden;
-}
-
-.ui.cards > .card > .content > .header,
-.ui.card > .content > .header {
- display: block;
- margin: '';
- font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
- color: rgba(0, 0, 0, 0.85);
-}
-
-/* Default Header Size */
-
-.ui.cards > .card > .content > .header:not(.ui),
-.ui.card > .content > .header:not(.ui) {
- font-weight: bold;
- font-size: 1.28571429em;
- margin-top: -0.21425em;
- line-height: 1.28571429em;
-}
-
-.ui.cards > .card > .content > .meta + .description,
-.ui.cards > .card > .content > .header + .description,
-.ui.card > .content > .meta + .description,
-.ui.card > .content > .header + .description {
- margin-top: 0.5em;
-}
-
-/*----------------
- Floated Content
------------------*/
-
-.ui.cards > .card [class*="left floated"],
-.ui.card [class*="left floated"] {
- float: left;
-}
-
-.ui.cards > .card [class*="right floated"],
-.ui.card [class*="right floated"] {
- float: right;
-}
-
-/*--------------
- Aligned
----------------*/
-
-.ui.cards > .card [class*="left aligned"],
-.ui.card [class*="left aligned"] {
- text-align: left;
-}
-
-.ui.cards > .card [class*="center aligned"],
-.ui.card [class*="center aligned"] {
- text-align: center;
-}
-
-.ui.cards > .card [class*="right aligned"],
-.ui.card [class*="right aligned"] {
- text-align: right;
-}
-
-/*--------------
- Content Image
----------------*/
-
-.ui.cards > .card .content img,
-.ui.card .content img {
- display: inline-block;
- vertical-align: middle;
- width: '';
-}
-
-.ui.cards > .card img.avatar,
-.ui.cards > .card .avatar img,
-.ui.card img.avatar,
-.ui.card .avatar img {
- width: 2em;
- height: 2em;
- border-radius: 500rem;
-}
-
-/*--------------
- Description
----------------*/
-
-.ui.cards > .card > .content > .description,
-.ui.card > .content > .description {
- clear: both;
- color: rgba(0, 0, 0, 0.68);
-}
-
-/*--------------
- Paragraph
----------------*/
-
-.ui.cards > .card > .content p,
-.ui.card > .content p {
- margin: 0 0 0.5em;
-}
-
-.ui.cards > .card > .content p:last-child,
-.ui.card > .content p:last-child {
- margin-bottom: 0;
-}
-
-/*--------------
- Meta
----------------*/
-
-.ui.cards > .card .meta,
-.ui.card .meta {
- font-size: 1em;
- color: rgba(0, 0, 0, 0.4);
-}
-
-.ui.cards > .card .meta *,
-.ui.card .meta * {
- margin-right: 0.3em;
-}
-
-.ui.cards > .card .meta :last-child,
-.ui.card .meta :last-child {
- margin-right: 0;
-}
-
-.ui.cards > .card .meta [class*="right floated"],
-.ui.card .meta [class*="right floated"] {
- margin-right: 0;
- margin-left: 0.3em;
-}
-
-/*--------------
- Links
----------------*/
-
-/* Generic */
-
-.ui.cards > .card > .content a:not(.ui),
-.ui.card > .content a:not(.ui) {
- color: '';
- -webkit-transition: color 0.1s ease;
- transition: color 0.1s ease;
-}
-
-.ui.cards > .card > .content a:not(.ui):hover,
-.ui.card > .content a:not(.ui):hover {
- color: '';
-}
-
-/* Header */
-
-.ui.cards > .card > .content > a.header,
-.ui.card > .content > a.header {
- color: rgba(0, 0, 0, 0.85);
-}
-
-.ui.cards > .card > .content > a.header:hover,
-.ui.card > .content > a.header:hover {
- color: #1e70bf;
-}
-
-/* Meta */
-
-.ui.cards > .card .meta > a:not(.ui),
-.ui.card .meta > a:not(.ui) {
- color: rgba(0, 0, 0, 0.4);
-}
-
-.ui.cards > .card .meta > a:not(.ui):hover,
-.ui.card .meta > a:not(.ui):hover {
- color: rgba(0, 0, 0, 0.87);
-}
-
-/*--------------
- Buttons
----------------*/
-
-.ui.cards > .card > .buttons,
-.ui.card > .buttons,
-.ui.cards > .card > .button,
-.ui.card > .button {
- margin: 0 -1px;
- width: calc(100% + 2px);
-}
-
-.ui.cards > .card > .buttons:last-child,
-.ui.card > .buttons:last-child,
-.ui.cards > .card > .button:last-child,
-.ui.card > .button:last-child {
- margin-bottom: -1px;
-}
-
-/*--------------
- Dimmer
----------------*/
-
-.ui.cards > .card .dimmer,
-.ui.card .dimmer {
- background-color: '';
- z-index: 10;
-}
-
-/*--------------
- Labels
----------------*/
-
-/*-----Star----- */
-
-/* Icon */
-
-.ui.cards > .card > .content .star.icon,
-.ui.card > .content .star.icon {
- cursor: pointer;
- opacity: 0.75;
- -webkit-transition: color 0.1s ease;
- transition: color 0.1s ease;
-}
-
-.ui.cards > .card > .content .star.icon:hover,
-.ui.card > .content .star.icon:hover {
- opacity: 1;
- color: #FFB70A;
-}
-
-.ui.cards > .card > .content .active.star.icon,
-.ui.card > .content .active.star.icon {
- color: #FFE623;
-}
-
-/*-----Like----- */
-
-/* Icon */
-
-.ui.cards > .card > .content .like.icon,
-.ui.card > .content .like.icon {
- cursor: pointer;
- opacity: 0.75;
- -webkit-transition: color 0.1s ease;
- transition: color 0.1s ease;
-}
-
-.ui.cards > .card > .content .like.icon:hover,
-.ui.card > .content .like.icon:hover {
- opacity: 1;
- color: #FF2733;
-}
-
-.ui.cards > .card > .content .active.like.icon,
-.ui.card > .content .active.like.icon {
- color: #FF2733;
-}
-
-/*----------------
- Extra Content
------------------*/
-
-.ui.cards > .card > .extra,
-.ui.card > .extra {
- max-width: 100%;
- min-height: 0 !important;
- -webkit-box-flex: 0;
- -ms-flex-positive: 0;
- flex-grow: 0;
- border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
- position: static;
- background: none;
- width: auto;
- margin: 0 0;
- padding: 0.75em 1em;
- top: 0;
- left: 0;
- color: rgba(0, 0, 0, 0.4);
- -webkit-box-shadow: none;
- box-shadow: none;
- -webkit-transition: color 0.1s ease;
- transition: color 0.1s ease;
-}
-
-.ui.cards > .card > .extra a:not(.ui),
-.ui.card > .extra a:not(.ui) {
- color: rgba(0, 0, 0, 0.4);
-}
-
-.ui.cards > .card > .extra a:not(.ui):hover,
-.ui.card > .extra a:not(.ui):hover {
- color: #1e70bf;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*-------------------
- Horizontal
- --------------------*/
-
-.ui.horizontal.cards > .card,
-.ui.card.horizontal {
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -ms-flex-direction: row;
- flex-direction: row;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- min-width: 270px;
- width: 400px;
- max-width: 100%;
-}
-
-.ui.horizontal.cards > .card > .image,
-.ui.card.horizontal > .image {
- border-radius: 0.28571429rem 0 0 0.28571429rem;
- width: 150px;
-}
-
-.ui.horizontal.cards > .card > .image > img,
-.ui.card.horizontal > .image > img {
- background-size: cover;
- background-repeat: no-repeat;
- background-position: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- width: 100%;
- height: 100%;
- border-radius: 0.28571429rem 0 0 0.28571429rem;
-}
-
-.ui.horizontal.cards > .card > .image:last-child > img,
-.ui.card.horizontal > .image:last-child > img {
- border-radius: 0 0.28571429rem 0.28571429rem 0;
-}
-
-.ui.horizontal.cards > .card > .content,
-.ui.horizontal.card > .content {
- -ms-flex-preferred-size: 1px;
- flex-basis: 1px;
-}
-
-.ui.horizontal.cards > .card > .extra,
-.ui.horizontal.card > .extra {
- -ms-flex-preferred-size: 100%;
- flex-basis: 100%;
-}
-
-/*-------------------
- Raised
- --------------------*/
-
-.ui.raised.cards > .card,
-.ui.raised.card {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.raised.cards a.card:hover,
-.ui.link.cards .raised.card:hover,
-a.ui.raised.card:hover,
-.ui.link.raised.card:hover {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 4px 0 rgba(34, 36, 38, 0.15), 0 2px 10px 0 rgba(34, 36, 38, 0.25);
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 4px 0 rgba(34, 36, 38, 0.15), 0 2px 10px 0 rgba(34, 36, 38, 0.25);
-}
-
-/*-------------------
- Centered
- --------------------*/
-
-.ui.centered.cards {
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
-}
-
-.ui.centered.card {
- margin-left: auto;
- margin-right: auto;
-}
-
-/*-------------------
- Fluid
- --------------------*/
-
-.ui.fluid.card {
- width: 100%;
- max-width: 9999px;
-}
-
-/*-------------------
- Link
- --------------------*/
-
-.ui.cards a.card,
-.ui.link.cards .card,
-a.ui.card,
-.ui.link.card {
- -webkit-transform: none;
- transform: none;
-}
-
-.ui.cards a.card:hover,
-.ui.link.cards .card:not(.icon):hover,
-a.ui.card:hover,
-.ui.link.card:hover {
- cursor: pointer;
- z-index: 5;
- background: #FFFFFF;
- border: none;
- -webkit-box-shadow: 0 1px 3px 0 #BCBDBD, 0 0 0 1px #D4D4D5;
- box-shadow: 0 1px 3px 0 #BCBDBD, 0 0 0 1px #D4D4D5;
- -webkit-transform: translateY(-3px);
- transform: translateY(-3px);
-}
-
-/*-------------------
- Colors
---------------------*/
-
-.ui.primary.cards > .card,
-.ui.cards > .primary.card,
-.ui.primary.card {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #2185D0, 0 1px 3px 0 #D4D4D5;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #2185D0, 0 1px 3px 0 #D4D4D5;
-}
-
-.ui.primary.cards > .card:hover,
-.ui.cards > .primary.card:hover,
-.ui.primary.card:hover {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #1678c2, 0 1px 3px 0 #BCBDBD;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #1678c2, 0 1px 3px 0 #BCBDBD;
-}
-
-.ui.inverted.primary.cards > .card,
-.ui.inverted.cards > .primary.card,
-.ui.inverted.primary.card {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #54C8FF, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #54C8FF, 0 0 0 1px #555555;
-}
-
-.ui.inverted.primary.cards > .card:hover,
-.ui.inverted.cards > .primary.card:hover,
-.ui.inverted.primary.card:hover {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #21b8ff, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #21b8ff, 0 0 0 1px #555555;
-}
-
-.ui.secondary.cards > .card,
-.ui.cards > .secondary.card,
-.ui.secondary.card {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #1B1C1D, 0 1px 3px 0 #D4D4D5;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #1B1C1D, 0 1px 3px 0 #D4D4D5;
-}
-
-.ui.secondary.cards > .card:hover,
-.ui.cards > .secondary.card:hover,
-.ui.secondary.card:hover {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #27292a, 0 1px 3px 0 #BCBDBD;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #27292a, 0 1px 3px 0 #BCBDBD;
-}
-
-.ui.inverted.secondary.cards > .card,
-.ui.inverted.cards > .secondary.card,
-.ui.inverted.secondary.card {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #545454, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #545454, 0 0 0 1px #555555;
-}
-
-.ui.inverted.secondary.cards > .card:hover,
-.ui.inverted.cards > .secondary.card:hover,
-.ui.inverted.secondary.card:hover {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #6e6e6e, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #6e6e6e, 0 0 0 1px #555555;
-}
-
-.ui.red.cards > .card,
-.ui.cards > .red.card,
-.ui.red.card {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #DB2828, 0 1px 3px 0 #D4D4D5;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #DB2828, 0 1px 3px 0 #D4D4D5;
-}
-
-.ui.red.cards > .card:hover,
-.ui.cards > .red.card:hover,
-.ui.red.card:hover {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #d01919, 0 1px 3px 0 #BCBDBD;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #d01919, 0 1px 3px 0 #BCBDBD;
-}
-
-.ui.inverted.red.cards > .card,
-.ui.inverted.cards > .red.card,
-.ui.inverted.red.card {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #FF695E, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #FF695E, 0 0 0 1px #555555;
-}
-
-.ui.inverted.red.cards > .card:hover,
-.ui.inverted.cards > .red.card:hover,
-.ui.inverted.red.card:hover {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #ff392b, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #ff392b, 0 0 0 1px #555555;
-}
-
-.ui.orange.cards > .card,
-.ui.cards > .orange.card,
-.ui.orange.card {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #F2711C, 0 1px 3px 0 #D4D4D5;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #F2711C, 0 1px 3px 0 #D4D4D5;
-}
-
-.ui.orange.cards > .card:hover,
-.ui.cards > .orange.card:hover,
-.ui.orange.card:hover {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #f26202, 0 1px 3px 0 #BCBDBD;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #f26202, 0 1px 3px 0 #BCBDBD;
-}
-
-.ui.inverted.orange.cards > .card,
-.ui.inverted.cards > .orange.card,
-.ui.inverted.orange.card {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #FF851B, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #FF851B, 0 0 0 1px #555555;
-}
-
-.ui.inverted.orange.cards > .card:hover,
-.ui.inverted.cards > .orange.card:hover,
-.ui.inverted.orange.card:hover {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #e76b00, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #e76b00, 0 0 0 1px #555555;
-}
-
-.ui.yellow.cards > .card,
-.ui.cards > .yellow.card,
-.ui.yellow.card {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #FBBD08, 0 1px 3px 0 #D4D4D5;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #FBBD08, 0 1px 3px 0 #D4D4D5;
-}
-
-.ui.yellow.cards > .card:hover,
-.ui.cards > .yellow.card:hover,
-.ui.yellow.card:hover {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #eaae00, 0 1px 3px 0 #BCBDBD;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #eaae00, 0 1px 3px 0 #BCBDBD;
-}
-
-.ui.inverted.yellow.cards > .card,
-.ui.inverted.cards > .yellow.card,
-.ui.inverted.yellow.card {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #FFE21F, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #FFE21F, 0 0 0 1px #555555;
-}
-
-.ui.inverted.yellow.cards > .card:hover,
-.ui.inverted.cards > .yellow.card:hover,
-.ui.inverted.yellow.card:hover {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #ebcd00, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #ebcd00, 0 0 0 1px #555555;
-}
-
-.ui.olive.cards > .card,
-.ui.cards > .olive.card,
-.ui.olive.card {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #B5CC18, 0 1px 3px 0 #D4D4D5;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #B5CC18, 0 1px 3px 0 #D4D4D5;
-}
-
-.ui.olive.cards > .card:hover,
-.ui.cards > .olive.card:hover,
-.ui.olive.card:hover {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #a7bd0d, 0 1px 3px 0 #BCBDBD;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #a7bd0d, 0 1px 3px 0 #BCBDBD;
-}
-
-.ui.inverted.olive.cards > .card,
-.ui.inverted.cards > .olive.card,
-.ui.inverted.olive.card {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #D9E778, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #D9E778, 0 0 0 1px #555555;
-}
-
-.ui.inverted.olive.cards > .card:hover,
-.ui.inverted.cards > .olive.card:hover,
-.ui.inverted.olive.card:hover {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #d2e745, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #d2e745, 0 0 0 1px #555555;
-}
-
-.ui.green.cards > .card,
-.ui.cards > .green.card,
-.ui.green.card {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #21BA45, 0 1px 3px 0 #D4D4D5;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #21BA45, 0 1px 3px 0 #D4D4D5;
-}
-
-.ui.green.cards > .card:hover,
-.ui.cards > .green.card:hover,
-.ui.green.card:hover {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #16ab39, 0 1px 3px 0 #BCBDBD;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #16ab39, 0 1px 3px 0 #BCBDBD;
-}
-
-.ui.inverted.green.cards > .card,
-.ui.inverted.cards > .green.card,
-.ui.inverted.green.card {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #2ECC40, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #2ECC40, 0 0 0 1px #555555;
-}
-
-.ui.inverted.green.cards > .card:hover,
-.ui.inverted.cards > .green.card:hover,
-.ui.inverted.green.card:hover {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #1ea92e, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #1ea92e, 0 0 0 1px #555555;
-}
-
-.ui.teal.cards > .card,
-.ui.cards > .teal.card,
-.ui.teal.card {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #00B5AD, 0 1px 3px 0 #D4D4D5;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #00B5AD, 0 1px 3px 0 #D4D4D5;
-}
-
-.ui.teal.cards > .card:hover,
-.ui.cards > .teal.card:hover,
-.ui.teal.card:hover {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #009c95, 0 1px 3px 0 #BCBDBD;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #009c95, 0 1px 3px 0 #BCBDBD;
-}
-
-.ui.inverted.teal.cards > .card,
-.ui.inverted.cards > .teal.card,
-.ui.inverted.teal.card {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #6DFFFF, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #6DFFFF, 0 0 0 1px #555555;
-}
-
-.ui.inverted.teal.cards > .card:hover,
-.ui.inverted.cards > .teal.card:hover,
-.ui.inverted.teal.card:hover {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #3affff, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #3affff, 0 0 0 1px #555555;
-}
-
-.ui.blue.cards > .card,
-.ui.cards > .blue.card,
-.ui.blue.card {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #2185D0, 0 1px 3px 0 #D4D4D5;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #2185D0, 0 1px 3px 0 #D4D4D5;
-}
-
-.ui.blue.cards > .card:hover,
-.ui.cards > .blue.card:hover,
-.ui.blue.card:hover {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #1678c2, 0 1px 3px 0 #BCBDBD;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #1678c2, 0 1px 3px 0 #BCBDBD;
-}
-
-.ui.inverted.blue.cards > .card,
-.ui.inverted.cards > .blue.card,
-.ui.inverted.blue.card {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #54C8FF, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #54C8FF, 0 0 0 1px #555555;
-}
-
-.ui.inverted.blue.cards > .card:hover,
-.ui.inverted.cards > .blue.card:hover,
-.ui.inverted.blue.card:hover {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #21b8ff, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #21b8ff, 0 0 0 1px #555555;
-}
-
-.ui.violet.cards > .card,
-.ui.cards > .violet.card,
-.ui.violet.card {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #6435C9, 0 1px 3px 0 #D4D4D5;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #6435C9, 0 1px 3px 0 #D4D4D5;
-}
-
-.ui.violet.cards > .card:hover,
-.ui.cards > .violet.card:hover,
-.ui.violet.card:hover {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #5829bb, 0 1px 3px 0 #BCBDBD;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #5829bb, 0 1px 3px 0 #BCBDBD;
-}
-
-.ui.inverted.violet.cards > .card,
-.ui.inverted.cards > .violet.card,
-.ui.inverted.violet.card {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #A291FB, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #A291FB, 0 0 0 1px #555555;
-}
-
-.ui.inverted.violet.cards > .card:hover,
-.ui.inverted.cards > .violet.card:hover,
-.ui.inverted.violet.card:hover {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #745aff, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #745aff, 0 0 0 1px #555555;
-}
-
-.ui.purple.cards > .card,
-.ui.cards > .purple.card,
-.ui.purple.card {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #A333C8, 0 1px 3px 0 #D4D4D5;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #A333C8, 0 1px 3px 0 #D4D4D5;
-}
-
-.ui.purple.cards > .card:hover,
-.ui.cards > .purple.card:hover,
-.ui.purple.card:hover {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #9627ba, 0 1px 3px 0 #BCBDBD;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #9627ba, 0 1px 3px 0 #BCBDBD;
-}
-
-.ui.inverted.purple.cards > .card,
-.ui.inverted.cards > .purple.card,
-.ui.inverted.purple.card {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #DC73FF, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #DC73FF, 0 0 0 1px #555555;
-}
-
-.ui.inverted.purple.cards > .card:hover,
-.ui.inverted.cards > .purple.card:hover,
-.ui.inverted.purple.card:hover {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #cf40ff, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #cf40ff, 0 0 0 1px #555555;
-}
-
-.ui.pink.cards > .card,
-.ui.cards > .pink.card,
-.ui.pink.card {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #E03997, 0 1px 3px 0 #D4D4D5;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #E03997, 0 1px 3px 0 #D4D4D5;
-}
-
-.ui.pink.cards > .card:hover,
-.ui.cards > .pink.card:hover,
-.ui.pink.card:hover {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #e61a8d, 0 1px 3px 0 #BCBDBD;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #e61a8d, 0 1px 3px 0 #BCBDBD;
-}
-
-.ui.inverted.pink.cards > .card,
-.ui.inverted.cards > .pink.card,
-.ui.inverted.pink.card {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #FF8EDF, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #FF8EDF, 0 0 0 1px #555555;
-}
-
-.ui.inverted.pink.cards > .card:hover,
-.ui.inverted.cards > .pink.card:hover,
-.ui.inverted.pink.card:hover {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #ff5bd1, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #ff5bd1, 0 0 0 1px #555555;
-}
-
-.ui.brown.cards > .card,
-.ui.cards > .brown.card,
-.ui.brown.card {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #A5673F, 0 1px 3px 0 #D4D4D5;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #A5673F, 0 1px 3px 0 #D4D4D5;
-}
-
-.ui.brown.cards > .card:hover,
-.ui.cards > .brown.card:hover,
-.ui.brown.card:hover {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #975b33, 0 1px 3px 0 #BCBDBD;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #975b33, 0 1px 3px 0 #BCBDBD;
-}
-
-.ui.inverted.brown.cards > .card,
-.ui.inverted.cards > .brown.card,
-.ui.inverted.brown.card {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #D67C1C, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #D67C1C, 0 0 0 1px #555555;
-}
-
-.ui.inverted.brown.cards > .card:hover,
-.ui.inverted.cards > .brown.card:hover,
-.ui.inverted.brown.card:hover {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #b0620f, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #b0620f, 0 0 0 1px #555555;
-}
-
-.ui.grey.cards > .card,
-.ui.cards > .grey.card,
-.ui.grey.card {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #767676, 0 1px 3px 0 #D4D4D5;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #767676, 0 1px 3px 0 #D4D4D5;
-}
-
-.ui.grey.cards > .card:hover,
-.ui.cards > .grey.card:hover,
-.ui.grey.card:hover {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #838383, 0 1px 3px 0 #BCBDBD;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #838383, 0 1px 3px 0 #BCBDBD;
-}
-
-.ui.inverted.grey.cards > .card,
-.ui.inverted.cards > .grey.card,
-.ui.inverted.grey.card {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #DCDDDE, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #DCDDDE, 0 0 0 1px #555555;
-}
-
-.ui.inverted.grey.cards > .card:hover,
-.ui.inverted.cards > .grey.card:hover,
-.ui.inverted.grey.card:hover {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #c2c4c5, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #c2c4c5, 0 0 0 1px #555555;
-}
-
-.ui.black.cards > .card,
-.ui.cards > .black.card,
-.ui.black.card {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #1B1C1D, 0 1px 3px 0 #D4D4D5;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #1B1C1D, 0 1px 3px 0 #D4D4D5;
-}
-
-.ui.black.cards > .card:hover,
-.ui.cards > .black.card:hover,
-.ui.black.card:hover {
- -webkit-box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #27292a, 0 1px 3px 0 #BCBDBD;
- box-shadow: 0 0 0 1px #D4D4D5, 0 2px 0 0 #27292a, 0 1px 3px 0 #BCBDBD;
-}
-
-.ui.inverted.black.cards > .card,
-.ui.inverted.cards > .black.card,
-.ui.inverted.black.card {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #545454, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #545454, 0 0 0 1px #555555;
-}
-
-.ui.inverted.black.cards > .card:hover,
-.ui.inverted.cards > .black.card:hover,
-.ui.inverted.black.card:hover {
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #000000, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 2px 0 0 #000000, 0 0 0 1px #555555;
-}
-
-/*--------------
- Card Count
----------------*/
-
-.ui.one.cards {
- margin-left: 0;
- margin-right: 0;
-}
-
-.ui.one.cards > .card {
- width: 100%;
-}
-
-.ui.two.cards {
- margin-left: -1em;
- margin-right: -1em;
-}
-
-.ui.two.cards > .card {
- width: calc(50% - 2em);
- margin-left: 1em;
- margin-right: 1em;
-}
-
-.ui.three.cards {
- margin-left: -1em;
- margin-right: -1em;
-}
-
-.ui.three.cards > .card {
- width: calc(33.33333333333333% - 2em);
- margin-left: 1em;
- margin-right: 1em;
-}
-
-.ui.four.cards {
- margin-left: -0.75em;
- margin-right: -0.75em;
-}
-
-.ui.four.cards > .card {
- width: calc(25% - 1.5em);
- margin-left: 0.75em;
- margin-right: 0.75em;
-}
-
-.ui.five.cards {
- margin-left: -0.75em;
- margin-right: -0.75em;
-}
-
-.ui.five.cards > .card {
- width: calc(20% - 1.5em);
- margin-left: 0.75em;
- margin-right: 0.75em;
-}
-
-.ui.six.cards {
- margin-left: -0.75em;
- margin-right: -0.75em;
-}
-
-.ui.six.cards > .card {
- width: calc(16.666666666666664% - 1.5em);
- margin-left: 0.75em;
- margin-right: 0.75em;
-}
-
-.ui.seven.cards {
- margin-left: -0.5em;
- margin-right: -0.5em;
-}
-
-.ui.seven.cards > .card {
- width: calc(14.285714285714285% - 1em);
- margin-left: 0.5em;
- margin-right: 0.5em;
-}
-
-.ui.eight.cards {
- margin-left: -0.5em;
- margin-right: -0.5em;
-}
-
-.ui.eight.cards > .card {
- width: calc(12.5% - 1em);
- margin-left: 0.5em;
- margin-right: 0.5em;
- font-size: 11px;
-}
-
-.ui.nine.cards {
- margin-left: -0.5em;
- margin-right: -0.5em;
-}
-
-.ui.nine.cards > .card {
- width: calc(11.11111111111111% - 1em);
- margin-left: 0.5em;
- margin-right: 0.5em;
- font-size: 10px;
-}
-
-.ui.ten.cards {
- margin-left: -0.5em;
- margin-right: -0.5em;
-}
-
-.ui.ten.cards > .card {
- width: calc(10% - 1em);
- margin-left: 0.5em;
- margin-right: 0.5em;
-}
-
-/*-------------------
- Doubling
- --------------------*/
-
-/* Mobile Only */
-
-@media only screen and (max-width: 767.98px) {
- .ui.two.doubling.cards {
- margin-left: 0;
- margin-right: 0;
- }
-
- .ui.two.doubling.cards > .card {
- width: 100%;
- margin-left: 0;
- margin-right: 0;
- }
-
- .ui.three.doubling.cards {
- margin-left: -1em;
- margin-right: -1em;
- }
-
- .ui.three.doubling.cards > .card {
- width: calc(50% - 2em);
- margin-left: 1em;
- margin-right: 1em;
- }
-
- .ui.four.doubling.cards {
- margin-left: -1em;
- margin-right: -1em;
- }
-
- .ui.four.doubling.cards > .card {
- width: calc(50% - 2em);
- margin-left: 1em;
- margin-right: 1em;
- }
-
- .ui.five.doubling.cards {
- margin-left: -1em;
- margin-right: -1em;
- }
-
- .ui.five.doubling.cards > .card {
- width: calc(50% - 2em);
- margin-left: 1em;
- margin-right: 1em;
- }
-
- .ui.six.doubling.cards {
- margin-left: -1em;
- margin-right: -1em;
- }
-
- .ui.six.doubling.cards > .card {
- width: calc(50% - 2em);
- margin-left: 1em;
- margin-right: 1em;
- }
-
- .ui.seven.doubling.cards {
- margin-left: -1em;
- margin-right: -1em;
- }
-
- .ui.seven.doubling.cards > .card {
- width: calc(33.33333333333333% - 2em);
- margin-left: 1em;
- margin-right: 1em;
- }
-
- .ui.eight.doubling.cards {
- margin-left: -1em;
- margin-right: -1em;
- }
-
- .ui.eight.doubling.cards > .card {
- width: calc(33.33333333333333% - 2em);
- margin-left: 1em;
- margin-right: 1em;
- }
-
- .ui.nine.doubling.cards {
- margin-left: -1em;
- margin-right: -1em;
- }
-
- .ui.nine.doubling.cards > .card {
- width: calc(33.33333333333333% - 2em);
- margin-left: 1em;
- margin-right: 1em;
- }
-
- .ui.ten.doubling.cards {
- margin-left: -1em;
- margin-right: -1em;
- }
-
- .ui.ten.doubling.cards > .card {
- width: calc(33.33333333333333% - 2em);
- margin-left: 1em;
- margin-right: 1em;
- }
-}
-
-/* Tablet Only */
-
-@media only screen and (min-width: 768px) and (max-width: 991.98px) {
- .ui.two.doubling.cards {
- margin-left: 0;
- margin-right: 0;
- }
-
- .ui.two.doubling.cards > .card {
- width: 100%;
- margin-left: 0;
- margin-right: 0;
- }
-
- .ui.three.doubling.cards {
- margin-left: -1em;
- margin-right: -1em;
- }
-
- .ui.three.doubling.cards > .card {
- width: calc(50% - 2em);
- margin-left: 1em;
- margin-right: 1em;
- }
-
- .ui.four.doubling.cards {
- margin-left: -1em;
- margin-right: -1em;
- }
-
- .ui.four.doubling.cards > .card {
- width: calc(50% - 2em);
- margin-left: 1em;
- margin-right: 1em;
- }
-
- .ui.five.doubling.cards {
- margin-left: -1em;
- margin-right: -1em;
- }
-
- .ui.five.doubling.cards > .card {
- width: calc(33.33333333333333% - 2em);
- margin-left: 1em;
- margin-right: 1em;
- }
-
- .ui.six.doubling.cards {
- margin-left: -1em;
- margin-right: -1em;
- }
-
- .ui.six.doubling.cards > .card {
- width: calc(33.33333333333333% - 2em);
- margin-left: 1em;
- margin-right: 1em;
- }
-
- .ui.eight.doubling.cards {
- margin-left: -1em;
- margin-right: -1em;
- }
-
- .ui.eight.doubling.cards > .card {
- width: calc(33.33333333333333% - 2em);
- margin-left: 1em;
- margin-right: 1em;
- }
-
- .ui.eight.doubling.cards {
- margin-left: -0.75em;
- margin-right: -0.75em;
- }
-
- .ui.eight.doubling.cards > .card {
- width: calc(25% - 1.5em);
- margin-left: 0.75em;
- margin-right: 0.75em;
- }
-
- .ui.nine.doubling.cards {
- margin-left: -0.75em;
- margin-right: -0.75em;
- }
-
- .ui.nine.doubling.cards > .card {
- width: calc(25% - 1.5em);
- margin-left: 0.75em;
- margin-right: 0.75em;
- }
-
- .ui.ten.doubling.cards {
- margin-left: -0.75em;
- margin-right: -0.75em;
- }
-
- .ui.ten.doubling.cards > .card {
- width: calc(20% - 1.5em);
- margin-left: 0.75em;
- margin-right: 0.75em;
- }
-}
-
-/*-------------------
- Stackable
- --------------------*/
-
-@media only screen and (max-width: 767.98px) {
- .ui.stackable.cards {
- display: block !important;
- }
-
- .ui.stackable.cards .card:first-child {
- margin-top: 0 !important;
- }
-
- .ui.stackable.cards > .card {
- display: block !important;
- height: auto !important;
- margin: 1em 1em;
- padding: 0 !important;
- width: calc(100% - 2em) !important;
- }
-}
-
-/*--------------
- Size
----------------*/
-
-.ui.cards > .card {
- font-size: 1em;
-}
-
-.ui.mini.cards .card {
- font-size: 0.78571429rem;
-}
-
-.ui.tiny.cards .card {
- font-size: 0.85714286rem;
-}
-
-.ui.small.cards .card {
- font-size: 0.92857143rem;
-}
-
-.ui.large.cards .card {
- font-size: 1.14285714rem;
-}
-
-.ui.big.cards .card {
- font-size: 1.28571429rem;
-}
-
-.ui.huge.cards .card {
- font-size: 1.42857143rem;
-}
-
-.ui.massive.cards .card {
- font-size: 1.71428571rem;
-}
-
-/*-----------------
- Inverted
- ------------------*/
-
-.ui.inverted.cards > .card,
-.ui.inverted.card {
- background: #1B1C1D;
- -webkit-box-shadow: 0 1px 3px 0 #555555, 0 0 0 1px #555555;
- box-shadow: 0 1px 3px 0 #555555, 0 0 0 1px #555555;
-}
-
-/* Content */
-
-.ui.inverted.cards > .card > .content,
-.ui.inverted.card > .content {
- border-top: 1px solid rgba(255, 255, 255, 0.15);
-}
-
-/* Header */
-
-.ui.inverted.cards > .card > .content > .header,
-.ui.inverted.card > .content > .header {
- color: rgba(255, 255, 255, 0.9);
-}
-
-/* Description */
-
-.ui.inverted.cards > .card > .content > .description,
-.ui.inverted.card > .content > .description {
- color: rgba(255, 255, 255, 0.8);
-}
-
-/* Meta */
-
-.ui.inverted.cards > .card .meta,
-.ui.inverted.card .meta {
- color: rgba(255, 255, 255, 0.7);
-}
-
-.ui.inverted.cards > .card .meta > a:not(.ui),
-.ui.inverted.card .meta > a:not(.ui) {
- color: rgba(255, 255, 255, 0.7);
-}
-
-.ui.inverted.cards > .card .meta > a:not(.ui):hover,
-.ui.inverted.card .meta > a:not(.ui):hover {
- color: #ffffff;
-}
-
-/* Extra */
-
-.ui.inverted.cards > .card > .extra,
-.ui.inverted.card > .extra {
- border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
- color: rgba(255, 255, 255, 0.7);
-}
-
-.ui.inverted.cards > .card > .extra a:not(.ui),
-.ui.inverted.card > .extra a:not(.ui) {
- color: rgba(255, 255, 255, 0.5);
-}
-
-.ui.inverted.cards > .card > .extra a:not(.ui):hover,
-.ui.inverted.card > .extra a:not(.ui):hover {
- color: #1e70bf;
-}
-
-/* Link card(s) */
-
-.ui.inverted.cards a.card:hover,
-.ui.inverted.link.cards .card:not(.icon):hover,
-a.inverted.ui.card:hover,
-.ui.inverted.link.card:hover {
- background: #1B1C1D;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- User Variable Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Comment
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Standard
-*******************************/
-
-/*--------------
- Comments
----------------*/
-
-.ui.comments {
- margin: 1.5em 0;
- max-width: 650px;
-}
-
-.ui.comments:first-child {
- margin-top: 0;
-}
-
-.ui.comments:last-child {
- margin-bottom: 0;
-}
-
-/*--------------
- Comment
----------------*/
-
-.ui.comments .comment {
- position: relative;
- background: none;
- margin: 0.5em 0 0;
- padding: 0.5em 0 0;
- border: none;
- border-top: none;
- line-height: 1.2;
-}
-
-.ui.comments .comment:first-child {
- margin-top: 0;
- padding-top: 0;
-}
-
-/*--------------------
- Nested Comments
----------------------*/
-
-.ui.comments .comment > .comments {
- margin: 0 0 0.5em 0.5em;
- padding: 1em 0 1em 1em;
-}
-
-.ui.comments .comment > .comments:before {
- position: absolute;
- top: 0;
- left: 0;
-}
-
-.ui.comments .comment > .comments .comment {
- border: none;
- border-top: none;
- background: none;
-}
-
-/*--------------
- Avatar
----------------*/
-
-.ui.comments .comment .avatar {
- display: block;
- width: 2.5em;
- height: auto;
- float: left;
- margin: 0.2em 0 0;
-}
-
-.ui.comments .comment img.avatar,
-.ui.comments .comment .avatar img {
- display: block;
- margin: 0 auto;
- width: 100%;
- height: 100%;
- border-radius: 0.25rem;
-}
-
-/*--------------
- Content
----------------*/
-
-.ui.comments .comment > .content {
- display: block;
-}
-
-/* If there is an avatar move content over */
-
-.ui.comments .comment > .avatar ~ .content {
- margin-left: 3.5em;
-}
-
-/*--------------
- Author
----------------*/
-
-.ui.comments .comment .author {
- font-size: 1em;
- color: rgba(0, 0, 0, 0.87);
- font-weight: bold;
-}
-
-.ui.comments .comment a.author {
- cursor: pointer;
-}
-
-.ui.comments .comment a.author:hover {
- color: #1e70bf;
-}
-
-/*--------------
- Metadata
----------------*/
-
-.ui.comments .comment .metadata {
- display: inline-block;
- margin-left: 0.5em;
- color: rgba(0, 0, 0, 0.4);
- font-size: 0.875em;
-}
-
-.ui.comments .comment .metadata > * {
- display: inline-block;
- margin: 0 0.5em 0 0;
-}
-
-.ui.comments .comment .metadata > :last-child {
- margin-right: 0;
-}
-
-/*--------------------
- Comment Text
----------------------*/
-
-.ui.comments .comment .text {
- margin: 0.25em 0 0.5em;
- font-size: 1em;
- word-wrap: break-word;
- color: rgba(0, 0, 0, 0.87);
- line-height: 1.3;
-}
-
-/*--------------------
- User Actions
----------------------*/
-
-.ui.comments .comment .actions {
- font-size: 0.875em;
-}
-
-.ui.comments .comment .actions a {
- cursor: pointer;
- display: inline-block;
- margin: 0 0.75em 0 0;
- color: rgba(0, 0, 0, 0.4);
-}
-
-.ui.comments .comment .actions a:last-child {
- margin-right: 0;
-}
-
-.ui.comments .comment .actions a.active,
-.ui.comments .comment .actions a:hover {
- color: rgba(0, 0, 0, 0.8);
-}
-
-/*--------------------
- Reply Form
----------------------*/
-
-.ui.comments > .reply.form {
- margin-top: 1em;
-}
-
-.ui.comments .comment .reply.form {
- width: 100%;
- margin-top: 1em;
-}
-
-.ui.comments .reply.form textarea {
- font-size: 1em;
- height: 12em;
-}
-
-/*******************************
- State
-*******************************/
-
-.ui.collapsed.comments,
-.ui.comments .collapsed.comments,
-.ui.comments .collapsed.comment {
- display: none;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*--------------------
- Threaded
- ---------------------*/
-
-.ui.threaded.comments .comment > .comments {
- margin: -1.5em 0 -1em 1.25em;
- padding: 3em 0 2em 2.25em;
- -webkit-box-shadow: -1px 0 0 rgba(34, 36, 38, 0.15);
- box-shadow: -1px 0 0 rgba(34, 36, 38, 0.15);
-}
-
-/*--------------------
- Minimal
- ---------------------*/
-
-.ui.minimal.comments .comment .actions {
- opacity: 0;
- position: absolute;
- top: 0;
- right: 0;
- left: auto;
- -webkit-transition: opacity 0.2s ease;
- transition: opacity 0.2s ease;
- -webkit-transition-delay: 0.1s;
- transition-delay: 0.1s;
-}
-
-.ui.minimal.comments .comment > .content:hover > .actions {
- opacity: 1;
-}
-
-/*-------------------
- Sizes
---------------------*/
-
-.ui.comments {
- font-size: 1rem;
-}
-
-.ui.mini.comments {
- font-size: 0.78571429rem;
-}
-
-.ui.tiny.comments {
- font-size: 0.85714286rem;
-}
-
-.ui.small.comments {
- font-size: 0.92857143rem;
-}
-
-.ui.large.comments {
- font-size: 1.14285714rem;
-}
-
-.ui.big.comments {
- font-size: 1.28571429rem;
-}
-
-.ui.huge.comments {
- font-size: 1.42857143rem;
-}
-
-.ui.massive.comments {
- font-size: 1.71428571rem;
-}
-
-/*-------------------
- Inverted
- --------------------*/
-
-.ui.inverted.comments .comment {
- background-color: #1B1C1D;
-}
-
-.ui.inverted.comments .comment .author,
-.ui.inverted.comments .comment .text {
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.comments .comment .metadata,
-.ui.inverted.comments .comment .actions a {
- color: rgba(255, 255, 255, 0.7);
-}
-
-.ui.inverted.comments .comment a.author:hover,
-.ui.inverted.comments .comment .actions a.active,
-.ui.inverted.comments .comment .actions a:hover {
- color: #ffffff;
-}
-
-.ui.inverted.threaded.comments .comment > .comments {
- -webkit-box-shadow: -1px 0 0 #555555;
- box-shadow: -1px 0 0 #555555;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- User Variable Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Feed
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Activity Feed
-*******************************/
-
-.ui.feed {
- margin: 1em 0;
-}
-
-.ui.feed:first-child {
- margin-top: 0;
-}
-
-.ui.feed:last-child {
- margin-bottom: 0;
-}
-
-/*******************************
- Content
-*******************************/
-
-/* Event */
-
-.ui.feed > .event {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -ms-flex-direction: row;
- flex-direction: row;
- width: 100%;
- padding: 0.21428571rem 0;
- margin: 0;
- background: none;
- border-top: none;
-}
-
-.ui.feed > .event:first-child {
- border-top: 0;
- padding-top: 0;
-}
-
-.ui.feed > .event:last-child {
- padding-bottom: 0;
-}
-
-/* Event Label */
-
-.ui.feed > .event > .label {
- display: block;
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 2.5em;
- height: auto;
- -ms-flex-item-align: stretch;
- align-self: stretch;
- text-align: left;
-}
-
-.ui.feed > .event > .label .icon {
- opacity: 1;
- font-size: 1.5em;
- width: 100%;
- padding: 0.25em;
- background: none;
- border: none;
- border-radius: none;
- color: rgba(0, 0, 0, 0.6);
-}
-
-.ui.feed > .event > .label img {
- width: 100%;
- height: auto;
- border-radius: 500rem;
-}
-
-.ui.feed > .event > .label + .content {
- margin: 0.5em 0 0.35714286em 1.14285714em;
-}
-
-/*--------------
- Content
----------------*/
-
-/* Content */
-
-.ui.feed > .event > .content {
- display: block;
- -webkit-box-flex: 1;
- -ms-flex: 1 1 auto;
- flex: 1 1 auto;
- -ms-flex-item-align: stretch;
- align-self: stretch;
- text-align: left;
- word-wrap: break-word;
-}
-
-.ui.feed > .event:last-child > .content {
- padding-bottom: 0;
-}
-
-/* Link */
-
-.ui.feed > .event > .content a {
- cursor: pointer;
-}
-
-/*--------------
- Date
----------------*/
-
-.ui.feed > .event > .content .date {
- margin: -0.5rem 0 0;
- padding: 0;
- color: rgba(0, 0, 0, 0.4);
- font-weight: normal;
- font-size: 1em;
- font-style: normal;
-}
-
-/*--------------
- Summary
----------------*/
-
-.ui.feed > .event > .content .summary {
- margin: 0;
- font-size: 1em;
- font-weight: bold;
- color: rgba(0, 0, 0, 0.87);
-}
-
-/* Summary Image */
-
-.ui.feed > .event > .content .summary img {
- display: inline-block;
- width: auto;
- height: 10em;
- margin: -0.25em 0.25em 0 0;
- border-radius: 0.25em;
- vertical-align: middle;
-}
-
-/*--------------
- User
----------------*/
-
-.ui.feed > .event > .content .user {
- display: inline-block;
- font-weight: bold;
- margin-right: 0;
- vertical-align: baseline;
-}
-
-.ui.feed > .event > .content .user img {
- margin: -0.25em 0.25em 0 0;
- width: auto;
- height: 10em;
- vertical-align: middle;
-}
-
-/*--------------
- Inline Date
----------------*/
-
-/* Date inside Summary */
-
-.ui.feed > .event > .content .summary > .date {
- display: inline-block;
- float: none;
- font-weight: normal;
- font-size: 0.85714286em;
- font-style: normal;
- margin: 0 0 0 0.5em;
- padding: 0;
- color: rgba(0, 0, 0, 0.4);
-}
-
-/*--------------
- Extra Summary
----------------*/
-
-.ui.feed > .event > .content .extra {
- margin: 0.5em 0 0;
- background: none;
- padding: 0;
- color: rgba(0, 0, 0, 0.87);
-}
-
-/* Images */
-
-.ui.feed > .event > .content .extra.images img {
- display: inline-block;
- margin: 0 0.25em 0 0;
- width: 6em;
-}
-
-/* Text */
-
-.ui.feed > .event > .content .extra.text {
- padding: 0;
- border-left: none;
- font-size: 1em;
- max-width: 500px;
- line-height: 1.4285em;
-}
-
-/*--------------
- Meta
----------------*/
-
-.ui.feed > .event > .content .meta {
- display: inline-block;
- font-size: 0.85714286em;
- margin: 0.5em 0 0;
- background: none;
- border: none;
- border-radius: 0;
- -webkit-box-shadow: none;
- box-shadow: none;
- padding: 0;
- color: rgba(0, 0, 0, 0.6);
-}
-
-.ui.feed > .event > .content .meta > * {
- position: relative;
- margin-left: 0.75em;
-}
-
-.ui.feed > .event > .content .meta > *:after {
- content: '';
- color: rgba(0, 0, 0, 0.2);
- top: 0;
- left: -1em;
- opacity: 1;
- position: absolute;
- vertical-align: top;
-}
-
-.ui.feed > .event > .content .meta .like {
- color: '';
- -webkit-transition: 0.2s color ease;
- transition: 0.2s color ease;
-}
-
-.ui.feed > .event > .content .meta .like:hover .icon {
- color: #FF2733;
-}
-
-.ui.feed > .event > .content .meta .active.like .icon {
- color: #EF404A;
-}
-
-/* First element */
-
-.ui.feed > .event > .content .meta > :first-child {
- margin-left: 0;
-}
-
-.ui.feed > .event > .content .meta > :first-child::after {
- display: none;
-}
-
-/* Action */
-
-.ui.feed > .event > .content .meta a,
-.ui.feed > .event > .content .meta > .icon {
- cursor: pointer;
- opacity: 1;
- color: rgba(0, 0, 0, 0.5);
- -webkit-transition: color 0.1s ease;
- transition: color 0.1s ease;
-}
-
-.ui.feed > .event > .content .meta a:hover,
-.ui.feed > .event > .content .meta a:hover .icon,
-.ui.feed > .event > .content .meta > .icon:hover {
- color: rgba(0, 0, 0, 0.95);
-}
-
-/*******************************
- Variations
-*******************************/
-
-.ui.feed {
- font-size: 1rem;
-}
-
-.ui.mini.feed {
- font-size: 0.78571429rem;
-}
-
-.ui.tiny.feed {
- font-size: 0.85714286rem;
-}
-
-.ui.small.feed {
- font-size: 0.92857143rem;
-}
-
-.ui.large.feed {
- font-size: 1.14285714rem;
-}
-
-.ui.big.feed {
- font-size: 1.28571429rem;
-}
-
-.ui.huge.feed {
- font-size: 1.42857143rem;
-}
-
-.ui.massive.feed {
- font-size: 1.71428571rem;
-}
-
-/*------------------
- Inverted
- -------------------*/
-
-.ui.inverted.feed > .event {
- background: #1B1C1D;
-}
-
-.ui.inverted.feed > .event > .content .date,
-.ui.inverted.feed > .event > .content .meta .like {
- color: rgba(255, 255, 255, 0.7);
-}
-
-.ui.inverted.feed > .event > .content .summary,
-.ui.inverted.feed > .event > .content .extra.text {
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.feed > .event > .content .meta .like:hover {
- color: #ffffff;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- User Variable Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Item
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Standard
-*******************************/
-
-/*--------------
- Item
----------------*/
-
-.ui.items > .item {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- margin: 1em 0;
- width: 100%;
- min-height: 0;
- background: transparent;
- padding: 0;
- border: none;
- border-radius: 0;
- -webkit-box-shadow: none;
- box-shadow: none;
- -webkit-transition: -webkit-box-shadow 0.1s ease;
- transition: -webkit-box-shadow 0.1s ease;
- transition: box-shadow 0.1s ease;
- transition: box-shadow 0.1s ease, -webkit-box-shadow 0.1s ease;
- z-index: '';
-}
-
-.ui.items > .item a {
- cursor: pointer;
-}
-
-/*--------------
- Items
----------------*/
-
-.ui.items {
- margin: 1.5em 0;
-}
-
-.ui.items:first-child {
- margin-top: 0 !important;
-}
-
-.ui.items:last-child {
- margin-bottom: 0 !important;
-}
-
-/*--------------
- Item
----------------*/
-
-.ui.items > .item:after {
- display: block;
- content: ' ';
- height: 0;
- clear: both;
- overflow: hidden;
- visibility: hidden;
-}
-
-.ui.items > .item:first-child {
- margin-top: 0;
-}
-
-.ui.items > .item:last-child {
- margin-bottom: 0;
-}
-
-/*--------------
- Images
----------------*/
-
-.ui.items > .item > .image {
- position: relative;
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- display: block;
- float: none;
- margin: 0;
- padding: 0;
- max-height: '';
- -ms-flex-item-align: start;
- align-self: start;
-}
-
-.ui.items > .item > .image > img {
- display: block;
- width: 100%;
- height: auto;
- border-radius: 0.125rem;
- border: none;
-}
-
-.ui.items > .item > .image:only-child > img {
- border-radius: 0;
-}
-
-/*--------------
- Content
----------------*/
-
-.ui.items > .item > .content {
- display: block;
- -webkit-box-flex: 1;
- -ms-flex: 1 1 auto;
- flex: 1 1 auto;
- background: none;
- color: rgba(0, 0, 0, 0.87);
- margin: 0;
- padding: 0;
- -webkit-box-shadow: none;
- box-shadow: none;
- font-size: 1em;
- border: none;
- border-radius: 0;
-}
-
-.ui.items > .item > .content:after {
- display: block;
- content: ' ';
- height: 0;
- clear: both;
- overflow: hidden;
- visibility: hidden;
-}
-
-.ui.items > .item > .image + .content {
- min-width: 0;
- width: auto;
- display: block;
- margin-left: 0;
- -ms-flex-item-align: start;
- align-self: start;
- padding-left: 1.5em;
-}
-
-.ui.items > .item > .content > .header {
- display: inline-block;
- margin: -0.21425em 0 0;
- font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
- font-weight: bold;
- color: rgba(0, 0, 0, 0.85);
-}
-
-/* Default Header Size */
-
-.ui.items > .item > .content > .header:not(.ui) {
- font-size: 1.28571429em;
-}
-
-/*--------------
- Floated
----------------*/
-
-.ui.items > .item [class*="left floated"] {
- float: left;
-}
-
-.ui.items > .item [class*="right floated"] {
- float: right;
-}
-
-/*--------------
- Content Image
----------------*/
-
-.ui.items > .item .content img {
- -ms-flex-item-align: center;
- align-self: center;
- width: '';
-}
-
-.ui.items > .item img.avatar,
-.ui.items > .item .avatar img {
- width: '';
- height: '';
- border-radius: 500rem;
-}
-
-/*--------------
- Description
----------------*/
-
-.ui.items > .item > .content > .description {
- margin-top: 0.6em;
- max-width: auto;
- font-size: 1em;
- line-height: 1.4285em;
- color: rgba(0, 0, 0, 0.87);
-}
-
-/*--------------
- Paragraph
----------------*/
-
-.ui.items > .item > .content p {
- margin: 0 0 0.5em;
-}
-
-.ui.items > .item > .content p:last-child {
- margin-bottom: 0;
-}
-
-/*--------------
- Meta
----------------*/
-
-.ui.items > .item .meta {
- margin: 0.5em 0 0.5em;
- font-size: 1em;
- line-height: 1em;
- color: rgba(0, 0, 0, 0.6);
-}
-
-.ui.items > .item .meta * {
- margin-right: 0.3em;
-}
-
-.ui.items > .item .meta :last-child {
- margin-right: 0;
-}
-
-.ui.items > .item .meta [class*="right floated"] {
- margin-right: 0;
- margin-left: 0.3em;
-}
-
-/*--------------
- Links
----------------*/
-
-/* Generic */
-
-.ui.items > .item > .content a:not(.ui) {
- color: '';
- -webkit-transition: color 0.1s ease;
- transition: color 0.1s ease;
-}
-
-.ui.items > .item > .content a:not(.ui):hover {
- color: '';
-}
-
-/* Header */
-
-.ui.items > .item > .content > a.header {
- color: rgba(0, 0, 0, 0.85);
-}
-
-.ui.items > .item > .content > a.header:hover {
- color: #1e70bf;
-}
-
-/* Meta */
-
-.ui.items > .item .meta > a:not(.ui) {
- color: rgba(0, 0, 0, 0.4);
-}
-
-.ui.items > .item .meta > a:not(.ui):hover {
- color: rgba(0, 0, 0, 0.87);
-}
-
-/*--------------
- Labels
----------------*/
-
-/*-----Star----- */
-
-/* Icon */
-
-.ui.items > .item > .content .favorite.icon {
- cursor: pointer;
- opacity: 0.75;
- -webkit-transition: color 0.1s ease;
- transition: color 0.1s ease;
-}
-
-.ui.items > .item > .content .favorite.icon:hover {
- opacity: 1;
- color: #FFB70A;
-}
-
-.ui.items > .item > .content .active.favorite.icon {
- color: #FFE623;
-}
-
-/*-----Like----- */
-
-/* Icon */
-
-.ui.items > .item > .content .like.icon {
- cursor: pointer;
- opacity: 0.75;
- -webkit-transition: color 0.1s ease;
- transition: color 0.1s ease;
-}
-
-.ui.items > .item > .content .like.icon:hover {
- opacity: 1;
- color: #FF2733;
-}
-
-.ui.items > .item > .content .active.like.icon {
- color: #FF2733;
-}
-
-/*----------------
- Extra Content
------------------*/
-
-.ui.items > .item .extra {
- display: block;
- position: relative;
- background: none;
- margin: 0.5rem 0 0;
- width: 100%;
- padding: 0 0 0;
- top: 0;
- left: 0;
- color: rgba(0, 0, 0, 0.4);
- -webkit-box-shadow: none;
- box-shadow: none;
- -webkit-transition: color 0.1s ease;
- transition: color 0.1s ease;
- border-top: none;
-}
-
-.ui.items > .item .extra > * {
- margin: 0.25rem 0.5rem 0.25rem 0;
-}
-
-.ui.items > .item .extra > [class*="right floated"] {
- margin: 0.25rem 0 0.25rem 0.5rem;
-}
-
-.ui.items > .item .extra:after {
- display: block;
- content: ' ';
- height: 0;
- clear: both;
- overflow: hidden;
- visibility: hidden;
-}
-
-/*******************************
- Responsive
-*******************************/
-
-/* Default Image Width */
-
-.ui.items > .item > .image:not(.ui) {
- width: 175px;
-}
-
-/* Tablet Only */
-
-@media only screen and (min-width: 768px) and (max-width: 991.98px) {
- .ui.items > .item {
- margin: 1em 0;
- }
-
- .ui.items > .item > .image:not(.ui) {
- width: 150px;
- }
-
- .ui.items > .item > .image + .content {
- display: block;
- padding: 0 0 0 1em;
- }
-}
-
-/* Mobile Only */
-
-@media only screen and (max-width: 767.98px) {
- .ui.items:not(.unstackable) > .item {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- margin: 2em 0;
- }
-
- .ui.items:not(.unstackable) > .item > .image {
- display: block;
- margin-left: auto;
- margin-right: auto;
- }
-
- .ui.items:not(.unstackable) > .item > .image,
- .ui.items:not(.unstackable) > .item > .image > img {
- max-width: 100% !important;
- width: auto !important;
- max-height: 250px !important;
- }
-
- .ui.items:not(.unstackable) > .item > .image + .content {
- display: block;
- padding: 1.5em 0 0;
- }
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*-------------------
- Aligned
- --------------------*/
-
-.ui.items > .item > .image + [class*="top aligned"].content {
- -ms-flex-item-align: start;
- align-self: flex-start;
-}
-
-.ui.items > .item > .image + [class*="middle aligned"].content {
- -ms-flex-item-align: center;
- align-self: center;
-}
-
-.ui.items > .item > .image + [class*="bottom aligned"].content {
- -ms-flex-item-align: end;
- align-self: flex-end;
-}
-
-/*--------------
- Relaxed
- ---------------*/
-
-.ui.relaxed.items > .item {
- margin: 1.5em 0;
-}
-
-.ui[class*="very relaxed"].items > .item {
- margin: 2em 0;
-}
-
-/*-------------------
- Divided
- --------------------*/
-
-.ui.divided.items > .item {
- border-top: 1px solid rgba(34, 36, 38, 0.15);
- margin: 0;
- padding: 1em 0;
-}
-
-.ui.divided.items > .item:first-child {
- border-top: none;
- margin-top: 0 !important;
- padding-top: 0 !important;
-}
-
-.ui.divided.items > .item:last-child {
- margin-bottom: 0 !important;
- padding-bottom: 0 !important;
-}
-
-/* Relaxed Divided */
-
-.ui.relaxed.divided.items > .item {
- margin: 0;
- padding: 1.5em 0;
-}
-
-.ui[class*="very relaxed"].divided.items > .item {
- margin: 0;
- padding: 2em 0;
-}
-
-/*-------------------
- Link
- --------------------*/
-
-.ui.items a.item:hover,
-.ui.link.items > .item:hover {
- cursor: pointer;
-}
-
-.ui.items a.item:hover .content .header,
-.ui.link.items > .item:hover .content .header {
- color: #1e70bf;
-}
-
-/*--------------
- Size
----------------*/
-
-.ui.items > .item {
- font-size: 1em;
-}
-
-.ui.mini.items > .item {
- font-size: 0.78571429em;
-}
-
-.ui.tiny.items > .item {
- font-size: 0.85714286em;
-}
-
-.ui.small.items > .item {
- font-size: 0.92857143em;
-}
-
-.ui.large.items > .item {
- font-size: 1.14285714em;
-}
-
-.ui.big.items > .item {
- font-size: 1.28571429em;
-}
-
-.ui.huge.items > .item {
- font-size: 1.42857143em;
-}
-
-.ui.massive.items > .item {
- font-size: 1.71428571em;
-}
-
-/*---------------
- Unstackable
- ----------------*/
-
-@media only screen and (max-width: 767.98px) {
- .ui.unstackable.items > .item > .image,
- .ui.unstackable.items > .item > .image > img {
- width: 125px !important;
- }
-}
-
-/*--------------
- Inverted
- ---------------*/
-
-.ui.inverted.items > .item {
- background: transparent;
-}
-
-.ui.inverted.items > .item > .content {
- background: none;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.items > .item .extra {
- background: none;
-}
-
-.ui.inverted.items > .item > .content > .header {
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.items > .item > .content > .description {
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.items > .item .meta {
- color: rgba(255, 255, 255, 0.8);
-}
-
-.ui.inverted.items > .item > .content a:not(.ui) {
- color: #57a4ef;
-}
-
-.ui.inverted.items > .item > .content a:not(.ui):hover {
- color: #4183C4;
-}
-
-.ui.inverted.items > .item > .content > a.header {
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.items > .item > .content > a.header:hover {
- color: #ffffff;
-}
-
-.ui.inverted.items > .item .meta > a:not(.ui) {
- color: rgba(255, 255, 255, 0.7);
-}
-
-.ui.inverted.items > .item .meta > a:not(.ui):hover {
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.items > .item > .content .favorite.icon:hover {
- color: #ffc63d;
-}
-
-.ui.inverted.items > .item > .content .active.favorite.icon {
- color: #ffec56;
-}
-
-.ui.inverted.items > .item > .content .like.icon:hover {
- color: #ff5a63;
-}
-
-.ui.inverted.items > .item > .content .active.like.icon {
- color: #ff5a63;
-}
-
-.ui.inverted.items > .item .extra {
- color: rgba(255, 255, 255, 0.7);
-}
-
-.ui.inverted.items a.item:hover .content .header,
-.ui.inverted.link.items > .item:hover .content .header {
- color: #ffffff;
-}
-
-.ui.inverted.divided.items > .item {
- border-top: 1px solid rgba(255, 255, 255, 0.1);
-}
-
-.ui.inverted.divided.items > .item:first-child {
- border-top: none;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- User Variable Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Statistic
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Statistic
-*******************************/
-
-/* Standalone */
-
-.ui.statistic {
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- margin: 1em 0;
- max-width: none;
-}
-
-.ui.statistic + .ui.statistic {
- margin: 0 0 0 1.5em;
-}
-
-.ui.statistic:first-child {
- margin-top: 0;
-}
-
-.ui.statistic:last-child {
- margin-bottom: 0;
-}
-
-/*******************************
- Group
-*******************************/
-
-/* Grouped */
-
-.ui.statistics {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: start;
- -ms-flex-align: start;
- align-items: flex-start;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
-}
-
-.ui.statistics > .statistic {
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
- -webkit-box-flex: 0;
- -ms-flex: 0 1 auto;
- flex: 0 1 auto;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- margin: 0 1.5em 1em;
- max-width: none;
-}
-
-.ui.statistics {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- margin: 1em -1.5em -1em;
-}
-
-/* Clearing */
-
-.ui.statistics:after {
- display: block;
- content: ' ';
- height: 0;
- clear: both;
- overflow: hidden;
- visibility: hidden;
-}
-
-.ui.statistics:first-child {
- margin-top: 0;
-}
-
-/*******************************
- Content
-*******************************/
-
-/*--------------
- Value
----------------*/
-
-.ui.statistics .statistic > .value,
-.ui.statistic > .value {
- font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
- font-size: 4rem;
- font-weight: normal;
- line-height: 1em;
- color: #1B1C1D;
- text-transform: uppercase;
- text-align: center;
-}
-
-/*--------------
- Label
----------------*/
-
-.ui.statistics .statistic > .label,
-.ui.statistic > .label {
- font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
- font-size: 1em;
- font-weight: bold;
- color: rgba(0, 0, 0, 0.87);
- text-transform: uppercase;
- text-align: center;
-}
-
-/* Top Label */
-
-.ui.statistics .statistic > .label ~ .value,
-.ui.statistic > .label ~ .value {
- margin-top: 0;
-}
-
-/* Bottom Label */
-
-.ui.statistics .statistic > .value ~ .label,
-.ui.statistic > .value ~ .label {
- margin-top: 0;
-}
-
-/*******************************
- Types
-*******************************/
-
-/*--------------
- Icon Value
----------------*/
-
-.ui.statistics .statistic > .value .icon,
-.ui.statistic > .value .icon {
- opacity: 1;
- width: auto;
- margin: 0;
-}
-
-/*--------------
- Text Value
----------------*/
-
-.ui.statistics .statistic > .text.value,
-.ui.statistic > .text.value {
- line-height: 1em;
- min-height: 2em;
- font-weight: bold;
- text-align: center;
-}
-
-.ui.statistics .statistic > .text.value + .label,
-.ui.statistic > .text.value + .label {
- text-align: center;
-}
-
-/*--------------
- Image Value
----------------*/
-
-.ui.statistics .statistic > .value img,
-.ui.statistic > .value img {
- max-height: 3rem;
- vertical-align: baseline;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*--------------
- Count
----------------*/
-
-.ui.ten.statistics {
- margin: 0 0 -1em;
-}
-
-.ui.ten.statistics .statistic {
- min-width: 10%;
- margin: 0 0 1em;
-}
-
-.ui.nine.statistics {
- margin: 0 0 -1em;
-}
-
-.ui.nine.statistics .statistic {
- min-width: 11.11111111%;
- margin: 0 0 1em;
-}
-
-.ui.eight.statistics {
- margin: 0 0 -1em;
-}
-
-.ui.eight.statistics .statistic {
- min-width: 12.5%;
- margin: 0 0 1em;
-}
-
-.ui.seven.statistics {
- margin: 0 0 -1em;
-}
-
-.ui.seven.statistics .statistic {
- min-width: 14.28571429%;
- margin: 0 0 1em;
-}
-
-.ui.six.statistics {
- margin: 0 0 -1em;
-}
-
-.ui.six.statistics .statistic {
- min-width: 16.66666667%;
- margin: 0 0 1em;
-}
-
-.ui.five.statistics {
- margin: 0 0 -1em;
-}
-
-.ui.five.statistics .statistic {
- min-width: 20%;
- margin: 0 0 1em;
-}
-
-.ui.four.statistics {
- margin: 0 0 -1em;
-}
-
-.ui.four.statistics .statistic {
- min-width: 25%;
- margin: 0 0 1em;
-}
-
-.ui.three.statistics {
- margin: 0 0 -1em;
-}
-
-.ui.three.statistics .statistic {
- min-width: 33.33333333%;
- margin: 0 0 1em;
-}
-
-.ui.two.statistics {
- margin: 0 0 -1em;
-}
-
-.ui.two.statistics .statistic {
- min-width: 50%;
- margin: 0 0 1em;
-}
-
-.ui.one.statistics {
- margin: 0 0 -1em;
-}
-
-.ui.one.statistics .statistic {
- min-width: 100%;
- margin: 0 0 1em;
-}
-
-/*--------------
- Horizontal
- ---------------*/
-
-.ui.horizontal.statistic {
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -ms-flex-direction: row;
- flex-direction: row;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
-}
-
-.ui.horizontal.statistics {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- margin: 0;
- max-width: none;
-}
-
-.ui.horizontal.statistics .statistic {
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -ms-flex-direction: row;
- flex-direction: row;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- max-width: none;
- margin: 1em 0;
-}
-
-.ui.horizontal.statistic > .text.value,
-.ui.horizontal.statistics > .statistic > .text.value {
- min-height: 0 !important;
-}
-
-.ui.horizontal.statistics .statistic > .value .icon,
-.ui.horizontal.statistic > .value .icon {
- width: 1.18em;
-}
-
-.ui.horizontal.statistics .statistic > .value,
-.ui.horizontal.statistic > .value {
- display: inline-block;
- vertical-align: middle;
-}
-
-.ui.horizontal.statistics .statistic > .label,
-.ui.horizontal.statistic > .label {
- display: inline-block;
- vertical-align: middle;
- margin: 0 0 0 0.75em;
-}
-
-/*--------------
- Inverted
- ---------------*/
-
-.ui.inverted.statistics .statistic > .value,
-.ui.inverted.statistic .value {
- color: #FFFFFF;
-}
-
-.ui.inverted.statistics .statistic > .label,
-.ui.inverted.statistic .label {
- color: rgba(255, 255, 255, 0.9);
-}
-
-/*--------------
- Colors
----------------*/
-
-.ui.primary.statistics .statistic > .value,
-.ui.statistics .primary.statistic > .value,
-.ui.primary.statistic > .value {
- color: #2185D0;
-}
-
-.ui.inverted.primary.statistics .statistic > .value,
-.ui.statistics .inverted.primary.statistic > .value,
-.ui.inverted.primary.statistic > .value {
- color: #54C8FF;
-}
-
-.ui.secondary.statistics .statistic > .value,
-.ui.statistics .secondary.statistic > .value,
-.ui.secondary.statistic > .value {
- color: #1B1C1D;
-}
-
-.ui.inverted.secondary.statistics .statistic > .value,
-.ui.statistics .inverted.secondary.statistic > .value,
-.ui.inverted.secondary.statistic > .value {
- color: #545454;
-}
-
-.ui.red.statistics .statistic > .value,
-.ui.statistics .red.statistic > .value,
-.ui.red.statistic > .value {
- color: #DB2828;
-}
-
-.ui.inverted.red.statistics .statistic > .value,
-.ui.statistics .inverted.red.statistic > .value,
-.ui.inverted.red.statistic > .value {
- color: #FF695E;
-}
-
-.ui.orange.statistics .statistic > .value,
-.ui.statistics .orange.statistic > .value,
-.ui.orange.statistic > .value {
- color: #F2711C;
-}
-
-.ui.inverted.orange.statistics .statistic > .value,
-.ui.statistics .inverted.orange.statistic > .value,
-.ui.inverted.orange.statistic > .value {
- color: #FF851B;
-}
-
-.ui.yellow.statistics .statistic > .value,
-.ui.statistics .yellow.statistic > .value,
-.ui.yellow.statistic > .value {
- color: #FBBD08;
-}
-
-.ui.inverted.yellow.statistics .statistic > .value,
-.ui.statistics .inverted.yellow.statistic > .value,
-.ui.inverted.yellow.statistic > .value {
- color: #FFE21F;
-}
-
-.ui.olive.statistics .statistic > .value,
-.ui.statistics .olive.statistic > .value,
-.ui.olive.statistic > .value {
- color: #B5CC18;
-}
-
-.ui.inverted.olive.statistics .statistic > .value,
-.ui.statistics .inverted.olive.statistic > .value,
-.ui.inverted.olive.statistic > .value {
- color: #D9E778;
-}
-
-.ui.green.statistics .statistic > .value,
-.ui.statistics .green.statistic > .value,
-.ui.green.statistic > .value {
- color: #21BA45;
-}
-
-.ui.inverted.green.statistics .statistic > .value,
-.ui.statistics .inverted.green.statistic > .value,
-.ui.inverted.green.statistic > .value {
- color: #2ECC40;
-}
-
-.ui.teal.statistics .statistic > .value,
-.ui.statistics .teal.statistic > .value,
-.ui.teal.statistic > .value {
- color: #00B5AD;
-}
-
-.ui.inverted.teal.statistics .statistic > .value,
-.ui.statistics .inverted.teal.statistic > .value,
-.ui.inverted.teal.statistic > .value {
- color: #6DFFFF;
-}
-
-.ui.blue.statistics .statistic > .value,
-.ui.statistics .blue.statistic > .value,
-.ui.blue.statistic > .value {
- color: #2185D0;
-}
-
-.ui.inverted.blue.statistics .statistic > .value,
-.ui.statistics .inverted.blue.statistic > .value,
-.ui.inverted.blue.statistic > .value {
- color: #54C8FF;
-}
-
-.ui.violet.statistics .statistic > .value,
-.ui.statistics .violet.statistic > .value,
-.ui.violet.statistic > .value {
- color: #6435C9;
-}
-
-.ui.inverted.violet.statistics .statistic > .value,
-.ui.statistics .inverted.violet.statistic > .value,
-.ui.inverted.violet.statistic > .value {
- color: #A291FB;
-}
-
-.ui.purple.statistics .statistic > .value,
-.ui.statistics .purple.statistic > .value,
-.ui.purple.statistic > .value {
- color: #A333C8;
-}
-
-.ui.inverted.purple.statistics .statistic > .value,
-.ui.statistics .inverted.purple.statistic > .value,
-.ui.inverted.purple.statistic > .value {
- color: #DC73FF;
-}
-
-.ui.pink.statistics .statistic > .value,
-.ui.statistics .pink.statistic > .value,
-.ui.pink.statistic > .value {
- color: #E03997;
-}
-
-.ui.inverted.pink.statistics .statistic > .value,
-.ui.statistics .inverted.pink.statistic > .value,
-.ui.inverted.pink.statistic > .value {
- color: #FF8EDF;
-}
-
-.ui.brown.statistics .statistic > .value,
-.ui.statistics .brown.statistic > .value,
-.ui.brown.statistic > .value {
- color: #A5673F;
-}
-
-.ui.inverted.brown.statistics .statistic > .value,
-.ui.statistics .inverted.brown.statistic > .value,
-.ui.inverted.brown.statistic > .value {
- color: #D67C1C;
-}
-
-.ui.grey.statistics .statistic > .value,
-.ui.statistics .grey.statistic > .value,
-.ui.grey.statistic > .value {
- color: #767676;
-}
-
-.ui.inverted.grey.statistics .statistic > .value,
-.ui.statistics .inverted.grey.statistic > .value,
-.ui.inverted.grey.statistic > .value {
- color: #DCDDDE;
-}
-
-.ui.black.statistics .statistic > .value,
-.ui.statistics .black.statistic > .value,
-.ui.black.statistic > .value {
- color: #1B1C1D;
-}
-
-.ui.inverted.black.statistics .statistic > .value,
-.ui.statistics .inverted.black.statistic > .value,
-.ui.inverted.black.statistic > .value {
- color: #545454;
-}
-
-/*--------------
- Floated
- ---------------*/
-
-.ui[class*="left floated"].statistic {
- float: left;
- margin: 0 2em 1em 0;
-}
-
-.ui[class*="right floated"].statistic {
- float: right;
- margin: 0 0 1em 2em;
-}
-
-.ui.floated.statistic:last-child {
- margin-bottom: 0;
-}
-
-/*--------------
- Stackable
- ---------------*/
-
-@media only screen and (max-width: 767.98px) {
- .ui.stackable.statistics {
- width: auto;
- margin-left: 0 !important;
- margin-right: 0 !important;
- }
-
- .ui.stackable.statistics > .statistic {
- width: 100% !important;
- margin: 0 0 !important;
- padding: 1rem 1rem !important;
- }
-}
-
-/*--------------
- Sizes
----------------*/
-
-/* Medium */
-
-.ui.statistics .statistic > .value,
-.ui.statistic > .value {
- font-size: 4rem;
-}
-
-.ui.horizontal.statistics .statistic > .value,
-.ui.horizontal.statistic > .value {
- font-size: 3rem;
-}
-
-.ui.statistics .statistic > .text.value,
-.ui.statistic > .text.value {
- font-size: 2rem;
-}
-
-.ui.mini.statistics .statistic > .value,
-.ui.mini.statistic > .value {
- font-size: 1.5rem;
-}
-
-.ui.mini.horizontal.statistics .statistic > .value,
-.ui.mini.horizontal.statistic > .value {
- font-size: 1.5rem;
-}
-
-.ui.mini.statistics .statistic > .text.value,
-.ui.mini.statistic > .text.value {
- font-size: 1rem;
-}
-
-.ui.tiny.statistics .statistic > .value,
-.ui.tiny.statistic > .value {
- font-size: 2rem;
-}
-
-.ui.tiny.horizontal.statistics .statistic > .value,
-.ui.tiny.horizontal.statistic > .value {
- font-size: 2rem;
-}
-
-.ui.tiny.statistics .statistic > .text.value,
-.ui.tiny.statistic > .text.value {
- font-size: 1rem;
-}
-
-.ui.small.statistics .statistic > .value,
-.ui.small.statistic > .value {
- font-size: 3rem;
-}
-
-.ui.small.horizontal.statistics .statistic > .value,
-.ui.small.horizontal.statistic > .value {
- font-size: 2rem;
-}
-
-.ui.small.statistics .statistic > .text.value,
-.ui.small.statistic > .text.value {
- font-size: 1rem;
-}
-
-.ui.large.statistics .statistic > .value,
-.ui.large.statistic > .value {
- font-size: 5rem;
-}
-
-.ui.large.horizontal.statistics .statistic > .value,
-.ui.large.horizontal.statistic > .value {
- font-size: 4rem;
-}
-
-.ui.large.statistics .statistic > .text.value,
-.ui.large.statistic > .text.value {
- font-size: 2.5rem;
-}
-
-.ui.big.statistics .statistic > .value,
-.ui.big.statistic > .value {
- font-size: 5.5rem;
-}
-
-.ui.big.horizontal.statistics .statistic > .value,
-.ui.big.horizontal.statistic > .value {
- font-size: 4.5rem;
-}
-
-.ui.big.statistics .statistic > .text.value,
-.ui.big.statistic > .text.value {
- font-size: 2.5rem;
-}
-
-.ui.huge.statistics .statistic > .value,
-.ui.huge.statistic > .value {
- font-size: 6rem;
-}
-
-.ui.huge.horizontal.statistics .statistic > .value,
-.ui.huge.horizontal.statistic > .value {
- font-size: 5rem;
-}
-
-.ui.huge.statistics .statistic > .text.value,
-.ui.huge.statistic > .text.value {
- font-size: 2.5rem;
-}
-
-.ui.massive.statistics .statistic > .value,
-.ui.massive.statistic > .value {
- font-size: 7rem;
-}
-
-.ui.massive.horizontal.statistics .statistic > .value,
-.ui.massive.horizontal.statistic > .value {
- font-size: 6rem;
-}
-
-.ui.massive.statistics .statistic > .text.value,
-.ui.massive.statistic > .text.value {
- font-size: 3rem;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- User Variable Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Accordion
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Accordion
-*******************************/
-
-.ui.accordion,
-.ui.accordion .accordion {
- max-width: 100%;
-}
-
-.ui.accordion .accordion {
- margin: 1em 0 0;
- padding: 0;
-}
-
-/* Title */
-
-.ui.accordion .title,
-.ui.accordion .accordion .title {
- cursor: pointer;
-}
-
-/* Default Styling */
-
-.ui.accordion .title:not(.ui) {
- padding: 0.5em 0;
- font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
- font-size: 1em;
- color: rgba(0, 0, 0, 0.87);
-}
-
-/* Default Styling */
-
-.ui.accordion:not(.styled) .title ~ .content:not(.ui),
-.ui.accordion:not(.styled) .accordion .title ~ .content:not(.ui) {
- margin: '';
- padding: 0.5em 0 1em;
-}
-
-.ui.accordion:not(.styled) .title ~ .content:not(.ui):last-child {
- padding-bottom: 0;
-}
-
-/* Arrow */
-
-.ui.accordion .title .dropdown.icon,
-.ui.accordion .accordion .title .dropdown.icon {
- display: inline-block;
- float: none;
- opacity: 1;
- width: 1.25em;
- height: 1em;
- margin: 0 0.25rem 0 0;
- padding: 0;
- font-size: 1em;
- -webkit-transition: opacity 0.1s ease, -webkit-transform 0.1s ease;
- transition: opacity 0.1s ease, -webkit-transform 0.1s ease;
- transition: transform 0.1s ease, opacity 0.1s ease;
- transition: transform 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease;
- vertical-align: baseline;
- -webkit-transform: none;
- transform: none;
-}
-
-/*--------------
- Coupling
----------------*/
-
-/* Menu */
-
-.ui.accordion.menu .item .title {
- display: block;
- padding: 0;
-}
-
-.ui.accordion.menu .item .title > .dropdown.icon {
- float: right;
- margin: 0.21425em 0 0 1em;
- -webkit-transform: rotate(180deg);
- transform: rotate(180deg);
-}
-
-/* Header */
-
-.ui.accordion .ui.header .dropdown.icon {
- font-size: 1em;
- margin: 0 0.25rem 0 0;
-}
-
-/*******************************
- States
-*******************************/
-
-.ui.accordion .active.title .dropdown.icon,
-.ui.accordion .accordion .active.title .dropdown.icon {
- -webkit-transform: rotate(90deg);
- transform: rotate(90deg);
-}
-
-.ui.accordion.menu .item .active.title > .dropdown.icon {
- -webkit-transform: rotate(90deg);
- transform: rotate(90deg);
-}
-
-/*******************************
- Types
-*******************************/
-
-/*--------------
- Styled
- ---------------*/
-
-.ui.styled.accordion {
- width: 600px;
-}
-
-.ui.styled.accordion,
-.ui.styled.accordion .accordion {
- border-radius: 0.28571429rem;
- background: #FFFFFF;
- -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15);
- box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15);
-}
-
-.ui.styled.accordion .title,
-.ui.styled.accordion .accordion .title {
- margin: 0;
- padding: 0.75em 1em;
- color: rgba(0, 0, 0, 0.4);
- font-weight: bold;
- border-top: 1px solid rgba(34, 36, 38, 0.15);
- -webkit-transition: background 0.1s ease, color 0.1s ease;
- transition: background 0.1s ease, color 0.1s ease;
-}
-
-.ui.styled.accordion > .title:first-child,
-.ui.styled.accordion .accordion .title:first-child {
- border-top: none;
-}
-
-/* Content */
-
-.ui.styled.accordion .content,
-.ui.styled.accordion .accordion .content {
- margin: 0;
- padding: 0.5em 1em 1.5em;
-}
-
-.ui.styled.accordion .accordion .content {
- margin: 0;
- padding: 0.5em 1em 1.5em;
-}
-
-/* Hover */
-
-.ui.styled.accordion .title:hover,
-.ui.styled.accordion .active.title,
-.ui.styled.accordion .accordion .title:hover,
-.ui.styled.accordion .accordion .active.title {
- background: transparent;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.styled.accordion .accordion .title:hover,
-.ui.styled.accordion .accordion .active.title {
- background: transparent;
- color: rgba(0, 0, 0, 0.87);
-}
-
-/* Active */
-
-.ui.styled.accordion .active.title {
- background: transparent;
- color: rgba(0, 0, 0, 0.95);
-}
-
-.ui.styled.accordion .accordion .active.title {
- background: transparent;
- color: rgba(0, 0, 0, 0.95);
-}
-
-/*******************************
- States
-*******************************/
-
-/*--------------
- Not Active
----------------*/
-
-.ui.accordion .title ~ .content:not(.active),
-.ui.accordion .accordion .title ~ .content:not(.active) {
- display: none;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*--------------
- Fluid
- ---------------*/
-
-.ui.fluid.accordion,
-.ui.fluid.accordion .accordion {
- width: 100%;
-}
-
-/*--------------
- Inverted
- ---------------*/
-
-.ui.inverted.accordion .title:not(.ui) {
- color: rgba(255, 255, 255, 0.9);
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-@font-face {
- font-family: 'Accordion';
- src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfOIKAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zryj6HgAAAFwAAAAyGhlYWT/0IhHAAACOAAAADZoaGVhApkB5wAAAnAAAAAkaG10eAJuABIAAAKUAAAAGGxvY2EAjABWAAACrAAAAA5tYXhwAAgAFgAAArwAAAAgbmFtZfC1n04AAALcAAABPHBvc3QAAwAAAAAEGAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDZ//3//wAB/+MPKwADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQASAEkAtwFuABMAADc0PwE2FzYXFh0BFAcGJwYvASY1EgaABQgHBQYGBQcIBYAG2wcGfwcBAQcECf8IBAcBAQd/BgYAAAAAAQAAAEkApQFuABMAADcRNDc2MzIfARYVFA8BBiMiJyY1AAUGBwgFgAYGgAUIBwYFWwEACAUGBoAFCAcFgAYGBQcAAAABAAAAAQAAqWYls18PPPUACwIAAAAAAM/9o+4AAAAAz/2j7gAAAAAAtwFuAAAACAACAAAAAAAAAAEAAAHg/+AAAAIAAAAAAAC3AAEAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAQAAAAC3ABIAtwAAAAAAAAAKABQAHgBCAGQAAAABAAAABgAUAAEAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIADgBAAAEAAAAAAAMADAAiAAEAAAAAAAQADABOAAEAAAAAAAUAFgAMAAEAAAAAAAYABgAuAAEAAAAAAAoANABaAAMAAQQJAAEADAAAAAMAAQQJAAIADgBAAAMAAQQJAAMADAAiAAMAAQQJAAQADABOAAMAAQQJAAUAFgAMAAMAAQQJAAYADAA0AAMAAQQJAAoANABaAHIAYQB0AGkAbgBnAFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAGEAdABpAG4AZ3JhdGluZwByAGEAdABpAG4AZwBSAGUAZwB1AGwAYQByAHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('truetype'), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAASwAAoAAAAABGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAS0AAAEtFpovuE9TLzIAAAIkAAAAYAAAAGAIIweQY21hcAAAAoQAAABMAAAATA984gpnYXNwAAAC0AAAAAgAAAAIAAAAEGhlYWQAAALYAAAANgAAADb/0IhHaGhlYQAAAxAAAAAkAAAAJAKZAedobXR4AAADNAAAABgAAAAYAm4AEm1heHAAAANMAAAABgAAAAYABlAAbmFtZQAAA1QAAAE8AAABPPC1n05wb3N0AAAEkAAAACAAAAAgAAMAAAEABAQAAQEBB3JhdGluZwABAgABADr4HAL4GwP4GAQeCgAZU/+Lix4KABlT/4uLDAeLa/iU+HQFHQAAAHkPHQAAAH4RHQAAAAkdAAABJBIABwEBBw0PERQZHnJhdGluZ3JhdGluZ3UwdTF1MjB1RjBEOXVGMERBAAACAYkABAAGAQEEBwoNVp38lA78lA78lA77lA773Z33bxWLkI2Qj44I9xT3FAWOj5CNkIuQi4+JjoePiI2Gi4YIi/uUBYuGiYeHiIiHh4mGi4aLho2Ijwj7FPcUBYeOiY+LkAgO+92L5hWL95QFi5CNkI6Oj4+PjZCLkIuQiY6HCPcU+xQFj4iNhouGi4aJh4eICPsU+xQFiIeGiYaLhouHjYePiI6Jj4uQCA74lBT4lBWLDAoAAAAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDZ//3//wAB/+MPKwADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAEAADfYOJZfDzz1AAsCAAAAAADP/aPuAAAAAM/9o+4AAAAAALcBbgAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAAAtwABAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAEAAAAAtwASALcAAAAAUAAABgAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIADgBAAAEAAAAAAAMADAAiAAEAAAAAAAQADABOAAEAAAAAAAUAFgAMAAEAAAAAAAYABgAuAAEAAAAAAAoANABaAAMAAQQJAAEADAAAAAMAAQQJAAIADgBAAAMAAQQJAAMADAAiAAMAAQQJAAQADABOAAMAAQQJAAUAFgAMAAMAAQQJAAYADAA0AAMAAQQJAAoANABaAHIAYQB0AGkAbgBnAFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAGEAdABpAG4AZ3JhdGluZwByAGEAdABpAG4AZwBSAGUAZwB1AGwAYQByAHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('woff');
- font-weight: normal;
- font-style: normal;
-}
-
-/* Dropdown Icon */
-
-.ui.accordion .title .dropdown.icon,
-.ui.accordion .accordion .title .dropdown.icon {
- font-family: Accordion;
- line-height: 1;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- font-weight: normal;
- font-style: normal;
- text-align: center;
-}
-
-.ui.accordion .title .dropdown.icon:before,
-.ui.accordion .accordion .title .dropdown.icon:before {
- content: '\f0da' ;
-}
-
-/*******************************
- User Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Calendar
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Popup
-*******************************/
-
-.ui.calendar .ui.popup {
- max-width: none;
- padding: 0;
- border: none;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
-}
-
-/*******************************
- Calendar
-*******************************/
-
-.ui.calendar .calendar:focus {
- outline: 0;
-}
-
-/*******************************
- Grid
-*******************************/
-
-.ui.calendar .ui.popup .ui.grid {
- display: block;
- white-space: nowrap;
-}
-
-.ui.calendar .ui.popup .ui.grid > .column {
- width: auto;
-}
-
-/*******************************
- Table
-*******************************/
-
-.ui.calendar .ui.table.year,
-.ui.calendar .ui.table.month,
-.ui.calendar .ui.table.minute {
- min-width: 15em;
-}
-
-.ui.calendar .ui.table.day {
- min-width: 18em;
-}
-
-.ui.calendar .ui.table.day.andweek {
- min-width: 22em;
-}
-
-.ui.calendar .ui.table.hour {
- min-width: 20em;
-}
-
-.ui.calendar .ui.table tr th,
-.ui.calendar .ui.table tr td {
- padding: 0.5em;
- white-space: nowrap;
-}
-
-.ui.calendar .ui.table tr th {
- border-left: none;
-}
-
-.ui.calendar .ui.table tr th .icon {
- margin: 0;
-}
-
-.ui.calendar .ui.table tr:first-child th {
- position: relative;
- padding-left: 0;
- padding-right: 0;
-}
-
-.ui.calendar .ui.table.day tr:first-child th {
- border: none;
-}
-
-.ui.calendar .ui.table.day tr:nth-child(2) th {
- padding-top: 0.2em;
- padding-bottom: 0.3em;
-}
-
-.ui.calendar .ui.table tr td {
- padding-left: 0.1em;
- padding-right: 0.1em;
-}
-
-.ui.calendar .ui.table tr .link {
- cursor: pointer;
-}
-
-.ui.calendar .ui.table tr .prev.link {
- width: 14.28571429%;
- position: absolute;
- left: 0;
-}
-
-.ui.calendar .ui.table tr .next.link {
- width: 14.28571429%;
- position: absolute;
- right: 0;
-}
-
-.ui.calendar .ui.table tr .disabled {
- pointer-events: auto;
- cursor: default;
- color: rgba(40, 40, 40, 0.3);
-}
-
-.ui.calendar .ui.table tr .adjacent:not(.disabled) {
- color: rgba(0, 0, 0, 0.6);
- background: rgba(0, 0, 0, 0.03);
-}
-
-/*--------------
- States
----------------*/
-
-.ui.calendar .ui.table tr td.today {
- font-weight: bold;
-}
-
-.ui.calendar .ui.table tr td.range {
- background: rgba(0, 0, 0, 0.05);
- color: rgba(0, 0, 0, 0.95);
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.calendar .ui.table.inverted tr td.range {
- background: rgba(255, 255, 255, 0.08);
- color: #ffffff;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.calendar:not(.disabled) .calendar:focus .ui.table tbody tr td.focus,
-.ui.calendar:not(.disabled) .calendar.active .ui.table tbody tr td.focus {
- -webkit-box-shadow: inset 0 0 0 1px #85B7D9;
- box-shadow: inset 0 0 0 1px #85B7D9;
-}
-
-.ui.calendar:not(.disabled) .calendar:focus .ui.table.inverted tbody tr td.focus,
-.ui.calendar:not(.disabled) .calendar.active .ui.table.inverted tbody tr td.focus {
- -webkit-box-shadow: inset 0 0 0 1px #85B7D9;
- box-shadow: inset 0 0 0 1px #85B7D9;
-}
-
-/*******************************
- States
-*******************************/
-
-/*--------------------
- Disabled
- ---------------------*/
-
-.ui.disabled.calendar {
- opacity: 0.45;
-}
-
-.ui.disabled.calendar > .input,
-.ui.disabled.calendar .ui.table tr .link {
- pointer-events: none;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Checkbox
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Checkbox
-*******************************/
-
-/*--------------
- Content
----------------*/
-
-.ui.checkbox {
- position: relative;
- display: inline-block;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- outline: none;
- vertical-align: baseline;
- font-style: normal;
- min-height: 17px;
- font-size: 1em;
- line-height: 17px;
- min-width: 17px;
-}
-
-/* HTML Checkbox */
-
-.ui.checkbox input[type="checkbox"],
-.ui.checkbox input[type="radio"] {
- cursor: pointer;
- position: absolute;
- top: 0;
- left: 0;
- opacity: 0 !important;
- outline: none;
- z-index: 3;
- width: 17px;
- height: 17px;
-}
-
-.ui.checkbox label {
- cursor: auto;
- position: relative;
- display: block;
- padding-left: 1.85714em;
- outline: none;
- font-size: 1em;
-}
-
-.ui.checkbox label:before {
- position: absolute;
- top: 0;
- left: 0;
- width: 17px;
- height: 17px;
- content: '';
- background: #FFFFFF;
- border-radius: 0.21428571rem;
- -webkit-transition: border 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease;
- transition: border 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease;
- transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease;
- transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease, -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease;
- border: 1px solid #D4D4D5;
-}
-
-/*--------------
- Checkmark
----------------*/
-
-.ui.checkbox label:after {
- position: absolute;
- font-size: 14px;
- top: 0;
- left: 0;
- width: 17px;
- height: 17px;
- text-align: center;
- opacity: 0;
- color: rgba(0, 0, 0, 0.87);
- -webkit-transition: border 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease;
- transition: border 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease;
- transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease;
- transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease, -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease;
-}
-
-/*--------------
- Label
----------------*/
-
-/* Inside */
-
-.ui.checkbox label,
-.ui.checkbox + label {
- color: rgba(0, 0, 0, 0.87);
- -webkit-transition: color 0.1s ease;
- transition: color 0.1s ease;
-}
-
-/* Outside */
-
-.ui.checkbox + label {
- vertical-align: middle;
-}
-
-/*******************************
- States
-*******************************/
-
-/*--------------
- Hover
----------------*/
-
-.ui.checkbox label:hover::before {
- background: #FFFFFF;
- border-color: rgba(34, 36, 38, 0.35);
-}
-
-.ui.checkbox label:hover,
-.ui.checkbox + label:hover {
- color: rgba(0, 0, 0, 0.8);
-}
-
-/*--------------
- Down
----------------*/
-
-.ui.checkbox label:active::before {
- background: #F9FAFB;
- border-color: rgba(34, 36, 38, 0.35);
-}
-
-.ui.checkbox label:active::after {
- color: rgba(0, 0, 0, 0.95);
-}
-
-.ui.checkbox input:active ~ label {
- color: rgba(0, 0, 0, 0.95);
-}
-
-/*--------------
- Focus
----------------*/
-
-.ui.checkbox input:focus ~ label:before {
- background: #FFFFFF;
- border-color: #96C8DA;
-}
-
-.ui.checkbox input:focus ~ label:after {
- color: rgba(0, 0, 0, 0.95);
-}
-
-.ui.checkbox input:focus ~ label {
- color: rgba(0, 0, 0, 0.95);
-}
-
-/*--------------
- Active
----------------*/
-
-.ui.checkbox input:checked ~ label:before {
- background: #FFFFFF;
- border-color: rgba(34, 36, 38, 0.35);
-}
-
-.ui.checkbox input:checked ~ label:after {
- opacity: 1;
- color: rgba(0, 0, 0, 0.95);
-}
-
-/*--------------
- Indeterminate
- ---------------*/
-
-.ui.checkbox input:not([type=radio]):indeterminate ~ label:before {
- background: #FFFFFF;
- border-color: rgba(34, 36, 38, 0.35);
-}
-
-.ui.checkbox input:not([type=radio]):indeterminate ~ label:after {
- opacity: 1;
- color: rgba(0, 0, 0, 0.95);
-}
-
-.ui.indeterminate.toggle.checkbox input:not([type=radio]):indeterminate ~ label:before {
- background: rgba(0, 0, 0, 0.15);
-}
-
-.ui.indeterminate.toggle.checkbox input:not([type=radio]) ~ label:after {
- left: 1.075rem;
-}
-
-/*--------------
- Active Focus
----------------*/
-
-.ui.checkbox input:not([type=radio]):indeterminate:focus ~ label:before,
-.ui.checkbox input:checked:focus ~ label:before {
- background: #FFFFFF;
- border-color: #96C8DA;
-}
-
-.ui.checkbox input:not([type=radio]):indeterminate:focus ~ label:after,
-.ui.checkbox input:checked:focus ~ label:after {
- color: rgba(0, 0, 0, 0.95);
-}
-
-/*--------------
- Read-Only
----------------*/
-
-.ui.read-only.checkbox,
-.ui.read-only.checkbox label {
- cursor: default;
-}
-
-/*--------------
- Disabled
- ---------------*/
-
-.ui.disabled.checkbox label,
-.ui.checkbox input[disabled] ~ label {
- cursor: default !important;
- opacity: 0.5;
- color: #000000;
-}
-
-/*--------------
- Hidden
----------------*/
-
-/* Initialized checkbox moves input below element
- to prevent manually triggering */
-
-.ui.checkbox input.hidden {
- z-index: -1;
-}
-
-/* Selectable Label */
-
-.ui.checkbox input.hidden + label {
- cursor: pointer;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
-}
-
-/*******************************
- Types
-*******************************/
-
-/*--------------
- Radio
- ---------------*/
-
-.ui.radio.checkbox {
- min-height: 15px;
-}
-
-.ui.radio.checkbox label {
- padding-left: 1.85714em;
-}
-
-/* Box */
-
-.ui.radio.checkbox label:before {
- content: '';
- -webkit-transform: none;
- transform: none;
- width: 15px;
- height: 15px;
- border-radius: 500rem;
- top: 1px;
- left: 0;
-}
-
-/* Bullet */
-
-.ui.radio.checkbox label:after {
- border: none;
- content: '' !important;
- line-height: 15px;
- top: 1px;
- left: 0;
- width: 15px;
- height: 15px;
- border-radius: 500rem;
- -webkit-transform: scale(0.46666667);
- transform: scale(0.46666667);
- background-color: rgba(0, 0, 0, 0.87);
-}
-
-/* Focus */
-
-.ui.radio.checkbox input:focus ~ label:before {
- background-color: #FFFFFF;
-}
-
-.ui.radio.checkbox input:focus ~ label:after {
- background-color: rgba(0, 0, 0, 0.95);
-}
-
-/* Indeterminate */
-
-.ui.radio.checkbox input:indeterminate ~ label:after {
- opacity: 0;
-}
-
-/* Active */
-
-.ui.radio.checkbox input:checked ~ label:before {
- background-color: #FFFFFF;
-}
-
-.ui.radio.checkbox input:checked ~ label:after {
- background-color: rgba(0, 0, 0, 0.95);
-}
-
-/* Active Focus */
-
-.ui.radio.checkbox input:focus:checked ~ label:before {
- background-color: #FFFFFF;
-}
-
-.ui.radio.checkbox input:focus:checked ~ label:after {
- background-color: rgba(0, 0, 0, 0.95);
-}
-
-/*--------------
- Slider
- ---------------*/
-
-.ui.slider.checkbox {
- min-height: 1.25rem;
-}
-
-/* Input */
-
-.ui.slider.checkbox input {
- width: 3.5rem;
- height: 1.25rem;
-}
-
-/* Label */
-
-.ui.slider.checkbox label {
- padding-left: 4.5rem;
- line-height: 1rem;
- color: rgba(0, 0, 0, 0.4);
-}
-
-/* Line */
-
-.ui.slider.checkbox label:before {
- display: block;
- position: absolute;
- content: '';
- -webkit-transform: none;
- transform: none;
- border: none !important;
- left: 0;
- z-index: 1;
- top: 0.4rem;
- background-color: rgba(0, 0, 0, 0.05);
- width: 3.5rem;
- height: 0.21428571rem;
- border-radius: 500rem;
- -webkit-transition: background 0.3s ease;
- transition: background 0.3s ease;
-}
-
-/* Handle */
-
-.ui.slider.checkbox label:after {
- background: #FFFFFF -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
- background: #FFFFFF -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
- background: #FFFFFF linear-gradient(transparent, rgba(0, 0, 0, 0.05));
- position: absolute;
- content: '' !important;
- opacity: 1;
- z-index: 2;
- border: none;
- -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
- width: 1.5rem;
- height: 1.5rem;
- top: -0.25rem;
- left: 0;
- -webkit-transform: none;
- transform: none;
- border-radius: 500rem;
- -webkit-transition: left 0.3s ease;
- transition: left 0.3s ease;
-}
-
-/* Focus */
-
-.ui.slider.checkbox input:focus ~ label:before {
- background-color: rgba(0, 0, 0, 0.15);
- border: none;
-}
-
-/* Hover */
-
-.ui.slider.checkbox label:hover {
- color: rgba(0, 0, 0, 0.8);
-}
-
-.ui.slider.checkbox label:hover::before {
- background: rgba(0, 0, 0, 0.15);
-}
-
-/* Active */
-
-.ui.slider.checkbox input:checked ~ label {
- color: rgba(0, 0, 0, 0.95) !important;
-}
-
-.ui.slider.checkbox input:checked ~ label:before {
- background-color: #545454 !important;
-}
-
-.ui.slider.checkbox input:checked ~ label:after {
- left: 2rem;
-}
-
-/* Active Focus */
-
-.ui.slider.checkbox input:focus:checked ~ label {
- color: rgba(0, 0, 0, 0.95) !important;
-}
-
-.ui.slider.checkbox input:focus:checked ~ label:before {
- background-color: #000000 !important;
-}
-
-/*--------------
- Toggle
- ---------------*/
-
-.ui.toggle.checkbox {
- min-height: 1.5rem;
-}
-
-/* Input */
-
-.ui.toggle.checkbox input {
- width: 3.5rem;
- height: 1.5rem;
-}
-
-/* Label */
-
-.ui.toggle.checkbox label {
- min-height: 1.5rem;
- padding-left: 4.5rem;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.toggle.checkbox label {
- padding-top: 0.15em;
-}
-
-/* Switch */
-
-.ui.toggle.checkbox label:before {
- display: block;
- position: absolute;
- content: '';
- z-index: 1;
- -webkit-transform: none;
- transform: none;
- border: none;
- top: 0;
- background: rgba(0, 0, 0, 0.05);
- -webkit-box-shadow: none;
- box-shadow: none;
- width: 3.5rem;
- height: 1.5rem;
- border-radius: 500rem;
-}
-
-/* Handle */
-
-.ui.toggle.checkbox label:after {
- background: #FFFFFF -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
- background: #FFFFFF -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
- background: #FFFFFF linear-gradient(transparent, rgba(0, 0, 0, 0.05));
- position: absolute;
- content: '' !important;
- opacity: 1;
- z-index: 2;
- border: none;
- -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
- width: 1.5rem;
- height: 1.5rem;
- top: 0;
- left: 0;
- border-radius: 500rem;
- -webkit-transition: background 0.3s ease, left 0.3s ease;
- transition: background 0.3s ease, left 0.3s ease;
-}
-
-.ui.toggle.checkbox input ~ label:after {
- left: -0.05rem;
- -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
-}
-
-/* Focus */
-
-.ui.toggle.checkbox input:focus ~ label:before {
- background-color: rgba(0, 0, 0, 0.15);
- border: none;
-}
-
-/* Hover */
-
-.ui.toggle.checkbox label:hover::before {
- background-color: rgba(0, 0, 0, 0.15);
- border: none;
-}
-
-/* Active */
-
-.ui.toggle.checkbox input:checked ~ label {
- color: rgba(0, 0, 0, 0.95) !important;
-}
-
-.ui.toggle.checkbox input:checked ~ label:before {
- background-color: #2185D0 !important;
-}
-
-.ui.toggle.checkbox input:checked ~ label:after {
- left: 2.15rem;
- -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
-}
-
-/* Active Focus */
-
-.ui.toggle.checkbox input:focus:checked ~ label {
- color: rgba(0, 0, 0, 0.95) !important;
-}
-
-.ui.toggle.checkbox input:focus:checked ~ label:before {
- background-color: #0d71bb !important;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*--------------
- Fitted
- ---------------*/
-
-.ui.fitted.checkbox label {
- padding-left: 0 !important;
-}
-
-.ui.fitted.toggle.checkbox {
- width: 3.5rem;
-}
-
-.ui.fitted.slider.checkbox {
- width: 3.5rem;
-}
-
-/*--------------
- Inverted
- ---------------*/
-
-.ui.inverted.checkbox label,
-.ui.inverted.checkbox + label {
- color: rgba(255, 255, 255, 0.9) !important;
-}
-
-/* Hover */
-
-.ui.inverted.checkbox label:hover {
- color: #ffffff !important;
-}
-
-.ui.inverted.checkbox label:hover::before {
- border-color: rgba(34, 36, 38, 0.5);
-}
-
-/*Slider Label */
-
-.ui.inverted.slider.checkbox label {
- color: rgba(255, 255, 255, 0.5);
-}
-
-/* Slider Line */
-
-.ui.inverted.slider.checkbox label:before {
- background-color: rgba(255, 255, 255, 0.5) !important;
-}
-
-/* Slider Hover */
-
-.ui.inverted.slider.checkbox label:hover::before {
- background: rgba(255, 255, 255, 0.7) !important;
-}
-
-/* Slider Active */
-
-.ui.inverted.slider.checkbox input:checked ~ label {
- color: #ffffff !important;
-}
-
-.ui.inverted.slider.checkbox input:checked ~ label:before {
- background-color: rgba(255, 255, 255, 0.8) !important;
-}
-
-/* Slider Active Focus */
-
-.ui.inverted.slider.checkbox input:focus:checked ~ label {
- color: #ffffff !important;
-}
-
-.ui.inverted.slider.checkbox input:focus:checked ~ label:before {
- background-color: rgba(255, 255, 255, 0.8) !important;
-}
-
-/* Toggle Switch */
-
-.ui.inverted.toggle.checkbox label:before {
- background-color: rgba(255, 255, 255, 0.9) !important;
-}
-
-/* Toggle Hover */
-
-.ui.inverted.toggle.checkbox label:hover::before {
- background: #ffffff !important;
-}
-
-/* Toggle Active */
-
-.ui.inverted.toggle.checkbox input:checked ~ label {
- color: #ffffff !important;
-}
-
-.ui.inverted.toggle.checkbox input:checked ~ label:before {
- background-color: #2185D0 !important;
-}
-
-/* Toggle Active Focus */
-
-.ui.inverted.toggle.checkbox input:focus:checked ~ label {
- color: #ffffff !important;
-}
-
-.ui.inverted.toggle.checkbox input:focus:checked ~ label:before {
- background-color: #0d71bb !important;
-}
-
-/*--------------------
- Size
----------------------*/
-
-.ui.mini.checkbox {
- font-size: 0.78571429em;
-}
-
-.ui.tiny.checkbox {
- font-size: 0.85714286em;
-}
-
-.ui.small.checkbox {
- font-size: 0.92857143em;
-}
-
-.ui.large.checkbox {
- font-size: 1.14285714em;
-}
-
-.ui.large.form .checkbox:not(.slider):not(.toggle):not(.radio) label:after,
-.ui.large.checkbox:not(.slider):not(.toggle):not(.radio) label:after,
-.ui.large.form .checkbox:not(.slider):not(.toggle):not(.radio) label:before,
-.ui.large.checkbox:not(.slider):not(.toggle):not(.radio) label:before {
- -webkit-transform: scale(1.14285714);
- transform: scale(1.14285714);
- -webkit-transform-origin: left;
- transform-origin: left;
-}
-
-.ui.large.form .checkbox.radio label:before,
-.ui.large.checkbox.radio label:before {
- -webkit-transform: scale(1.14285714);
- transform: scale(1.14285714);
- -webkit-transform-origin: left;
- transform-origin: left;
-}
-
-.ui.large.form .checkbox.radio label:after,
-.ui.large.checkbox.radio label:after {
- -webkit-transform: scale(0.57142857);
- transform: scale(0.57142857);
- -webkit-transform-origin: left;
- transform-origin: left;
- left: 0.33571429em;
-}
-
-.ui.big.checkbox {
- font-size: 1.28571429em;
-}
-
-.ui.big.form .checkbox:not(.slider):not(.toggle):not(.radio) label:after,
-.ui.big.checkbox:not(.slider):not(.toggle):not(.radio) label:after,
-.ui.big.form .checkbox:not(.slider):not(.toggle):not(.radio) label:before,
-.ui.big.checkbox:not(.slider):not(.toggle):not(.radio) label:before {
- -webkit-transform: scale(1.28571429);
- transform: scale(1.28571429);
- -webkit-transform-origin: left;
- transform-origin: left;
-}
-
-.ui.big.form .checkbox.radio label:before,
-.ui.big.checkbox.radio label:before {
- -webkit-transform: scale(1.28571429);
- transform: scale(1.28571429);
- -webkit-transform-origin: left;
- transform-origin: left;
-}
-
-.ui.big.form .checkbox.radio label:after,
-.ui.big.checkbox.radio label:after {
- -webkit-transform: scale(0.64285714);
- transform: scale(0.64285714);
- -webkit-transform-origin: left;
- transform-origin: left;
- left: 0.37142857em;
-}
-
-.ui.huge.checkbox {
- font-size: 1.42857143em;
-}
-
-.ui.huge.form .checkbox:not(.slider):not(.toggle):not(.radio) label:after,
-.ui.huge.checkbox:not(.slider):not(.toggle):not(.radio) label:after,
-.ui.huge.form .checkbox:not(.slider):not(.toggle):not(.radio) label:before,
-.ui.huge.checkbox:not(.slider):not(.toggle):not(.radio) label:before {
- -webkit-transform: scale(1.42857143);
- transform: scale(1.42857143);
- -webkit-transform-origin: left;
- transform-origin: left;
-}
-
-.ui.huge.form .checkbox.radio label:before,
-.ui.huge.checkbox.radio label:before {
- -webkit-transform: scale(1.42857143);
- transform: scale(1.42857143);
- -webkit-transform-origin: left;
- transform-origin: left;
-}
-
-.ui.huge.form .checkbox.radio label:after,
-.ui.huge.checkbox.radio label:after {
- -webkit-transform: scale(0.71428571);
- transform: scale(0.71428571);
- -webkit-transform-origin: left;
- transform-origin: left;
- left: 0.40714286em;
-}
-
-.ui.massive.checkbox {
- font-size: 1.71428571em;
-}
-
-.ui.massive.form .checkbox:not(.slider):not(.toggle):not(.radio) label:after,
-.ui.massive.checkbox:not(.slider):not(.toggle):not(.radio) label:after,
-.ui.massive.form .checkbox:not(.slider):not(.toggle):not(.radio) label:before,
-.ui.massive.checkbox:not(.slider):not(.toggle):not(.radio) label:before {
- -webkit-transform: scale(1.71428571);
- transform: scale(1.71428571);
- -webkit-transform-origin: left;
- transform-origin: left;
-}
-
-.ui.massive.form .checkbox.radio label:before,
-.ui.massive.checkbox.radio label:before {
- -webkit-transform: scale(1.71428571);
- transform: scale(1.71428571);
- -webkit-transform-origin: left;
- transform-origin: left;
-}
-
-.ui.massive.form .checkbox.radio label:after,
-.ui.massive.checkbox.radio label:after {
- -webkit-transform: scale(0.85714286);
- transform: scale(0.85714286);
- -webkit-transform-origin: left;
- transform-origin: left;
- left: 0.47857143em;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-@font-face {
- font-family: 'Checkbox';
- src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBD8AAAC8AAAAYGNtYXAYVtCJAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5Zn4huwUAAAF4AAABYGhlYWQGPe1ZAAAC2AAAADZoaGVhB30DyAAAAxAAAAAkaG10eBBKAEUAAAM0AAAAHGxvY2EAmgESAAADUAAAABBtYXhwAAkALwAAA2AAAAAgbmFtZSC8IugAAAOAAAABknBvc3QAAwAAAAAFFAAAACAAAwMTAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADoAgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6AL//f//AAAAAAAg6AD//f//AAH/4xgEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAEUAUQO7AvgAGgAAARQHAQYjIicBJjU0PwE2MzIfAQE2MzIfARYVA7sQ/hQQFhcQ/uMQEE4QFxcQqAF2EBcXEE4QAnMWEP4UEBABHRAXFhBOEBCoAXcQEE4QFwAAAAABAAABbgMlAkkAFAAAARUUBwYjISInJj0BNDc2MyEyFxYVAyUQEBf9SRcQEBAQFwK3FxAQAhJtFxAQEBAXbRcQEBAQFwAAAAABAAAASQMlA24ALAAAARUUBwYrARUUBwYrASInJj0BIyInJj0BNDc2OwE1NDc2OwEyFxYdATMyFxYVAyUQEBfuEBAXbhYQEO4XEBAQEBfuEBAWbhcQEO4XEBACEm0XEBDuFxAQEBAX7hAQF20XEBDuFxAQEBAX7hAQFwAAAQAAAAIAAHRSzT9fDzz1AAsEAAAAAADRsdR3AAAAANGx1HcAAAAAA7sDbgAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAADuwABAAAAAAAAAAAAAAAAAAAABwQAAAAAAAAAAAAAAAIAAAAEAABFAyUAAAMlAAAAAAAAAAoAFAAeAE4AcgCwAAEAAAAHAC0AAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAIAAAAAQAAAAAAAgAHAGkAAQAAAAAAAwAIADkAAQAAAAAABAAIAH4AAQAAAAAABQALABgAAQAAAAAABgAIAFEAAQAAAAAACgAaAJYAAwABBAkAAQAQAAgAAwABBAkAAgAOAHAAAwABBAkAAwAQAEEAAwABBAkABAAQAIYAAwABBAkABQAWACMAAwABBAkABgAQAFkAAwABBAkACgA0ALBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhWZXJzaW9uIDIuMABWAGUAcgBzAGkAbwBuACAAMgAuADBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhDaGVja2JveABDAGgAZQBjAGsAYgBvAHhSZWd1bGFyAFIAZQBnAHUAbABhAHJDaGVja2JveABDAGgAZQBjAGsAYgBvAHhGb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('truetype');
-}
-
-/* Checkmark */
-
-.ui.checkbox label:after,
-.ui.checkbox .box:after {
- font-family: 'Checkbox';
-}
-
-/* Checked */
-
-.ui.checkbox input:checked ~ .box:after,
-.ui.checkbox input:checked ~ label:after {
- content: '\e800';
-}
-
-/* Indeterminate */
-
-.ui.checkbox input:indeterminate ~ .box:after,
-.ui.checkbox input:indeterminate ~ label:after {
- font-size: 12px;
- content: '\e801';
-}
-
-/* UTF Reference
-.check:before { content: '\e800'; }
-.dash:before { content: '\e801'; }
-.plus:before { content: '\e802'; }
-*/
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Dimmer
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Dimmer
-*******************************/
-
-.dimmable:not(body) {
- position: relative;
-}
-
-.ui.dimmer {
- display: none;
- position: absolute;
- top: 0 !important;
- left: 0 !important;
- width: 100%;
- height: 100%;
- text-align: center;
- vertical-align: middle;
- padding: 1em;
- background-color: rgba(0, 0, 0, 0.85);
- opacity: 0;
- line-height: 1;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- -webkit-animation-duration: 0.5s;
- animation-duration: 0.5s;
- -webkit-transition: background-color 0.5s linear;
- transition: background-color 0.5s linear;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- will-change: opacity;
- z-index: 1000;
-}
-
-/* Dimmer Content */
-
-.ui.dimmer > .content {
- -webkit-user-select: text;
- -moz-user-select: text;
- -ms-user-select: text;
- user-select: text;
- color: #FFFFFF;
-}
-
-/* Loose Coupling */
-
-.ui.segment > .ui.dimmer:not(.page) {
- border-radius: inherit;
-}
-
-/* Scrollbars */
-
-.ui.dimmer:not(.inverted)::-webkit-scrollbar-track {
- background: rgba(255, 255, 255, 0.1);
-}
-
-.ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb {
- background: rgba(255, 255, 255, 0.25);
-}
-
-.ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb:window-inactive {
- background: rgba(255, 255, 255, 0.15);
-}
-
-.ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb:hover {
- background: rgba(255, 255, 255, 0.35);
-}
-
-/*******************************
- States
-*******************************/
-
-/* Animating */
-
-.animating.dimmable:not(body),
-.dimmed.dimmable:not(body) {
- overflow: hidden;
-}
-
-/* Animating / Active / Visible */
-
-.dimmed.dimmable > .ui.animating.dimmer,
-.dimmed.dimmable > .ui.visible.dimmer,
-.ui.active.dimmer {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- opacity: 1;
-}
-
-/* Disabled */
-
-.ui.disabled.dimmer {
- width: 0 !important;
- height: 0 !important;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*--------------
- Legacy
- ---------------*/
-
-/* Animating / Active / Visible */
-
-.dimmed.dimmable > .ui.animating.legacy.dimmer,
-.dimmed.dimmable > .ui.visible.legacy.dimmer,
-.ui.active.legacy.dimmer {
- display: block;
-}
-
-/*--------------
- Alignment
- ---------------*/
-
-.ui[class*="top aligned"].dimmer {
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
-}
-
-.ui[class*="bottom aligned"].dimmer {
- -webkit-box-pack: end;
- -ms-flex-pack: end;
- justify-content: flex-end;
-}
-
-/*--------------
- Page
- ---------------*/
-
-.ui.page.dimmer {
- position: fixed;
- -webkit-transform-style: '';
- transform-style: '';
- -webkit-perspective: 2000px;
- perspective: 2000px;
- -webkit-transform-origin: center center;
- transform-origin: center center;
-}
-
-body.animating.in.dimmable,
-body.dimmed.dimmable {
- overflow: hidden;
-}
-
-body.dimmable > .dimmer {
- position: fixed;
-}
-
-/*--------------
- Blurring
- ---------------*/
-
-.blurring.dimmable > :not(.dimmer) {
- -webkit-filter: initial;
- filter: initial;
- -webkit-transition: 800ms -webkit-filter ease;
- transition: 800ms -webkit-filter ease;
- transition: 800ms filter ease;
- transition: 800ms filter ease, 800ms -webkit-filter ease;
-}
-
-.blurring.dimmed.dimmable > :not(.dimmer):not(.popup) {
- -webkit-filter: blur(5px) grayscale(0.7);
- filter: blur(5px) grayscale(0.7);
-}
-
-/* Dimmer Color */
-
-.blurring.dimmable > .dimmer {
- background-color: rgba(0, 0, 0, 0.6);
-}
-
-.blurring.dimmable > .inverted.dimmer {
- background-color: rgba(255, 255, 255, 0.6);
-}
-
-/*--------------
- Aligned
- ---------------*/
-
-.ui.dimmer > .top.aligned.content > * {
- vertical-align: top;
-}
-
-.ui.dimmer > .bottom.aligned.content > * {
- vertical-align: bottom;
-}
-
-/*--------------
- Shades
- ---------------*/
-
-.medium.medium.medium.medium.medium.dimmer {
- background-color: rgba(0, 0, 0, 0.65);
-}
-
-.light.light.light.light.light.dimmer {
- background-color: rgba(0, 0, 0, 0.45);
-}
-
-.very.light.light.light.light.dimmer {
- background-color: rgba(0, 0, 0, 0.25);
-}
-
-/*--------------
- Inverted
- ---------------*/
-
-.ui.inverted.dimmer {
- background-color: rgba(255, 255, 255, 0.85);
-}
-
-.ui.inverted.dimmer > .content,
-.ui.inverted.dimmer > .content > * {
- color: #000000;
-}
-
-/*--------------
- Inverted Shades
- ---------------*/
-
-.medium.medium.medium.medium.medium.inverted.dimmer {
- background-color: rgba(255, 255, 255, 0.65);
-}
-
-.light.light.light.light.light.inverted.dimmer {
- background-color: rgba(255, 255, 255, 0.45);
-}
-
-.very.light.light.light.light.inverted.dimmer {
- background-color: rgba(255, 255, 255, 0.25);
-}
-
-/*--------------
- Simple
- ---------------*/
-
-/* Displays without javascript */
-
-.ui.simple.dimmer {
- display: block;
- overflow: hidden;
- opacity: 0;
- width: 0;
- height: 0;
- z-index: -100;
- background-color: rgba(0, 0, 0, 0);
-}
-
-.dimmed.dimmable > .ui.simple.dimmer {
- overflow: visible;
- opacity: 1;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.85);
- z-index: 1;
-}
-
-.ui.simple.inverted.dimmer {
- background-color: rgba(255, 255, 255, 0);
-}
-
-.dimmed.dimmable > .ui.simple.inverted.dimmer {
- background-color: rgba(255, 255, 255, 0.85);
-}
-
-/*--------------
- Partially
- ----------------*/
-
-.ui[class*="top dimmer"],
-.ui[class*="center dimmer"],
-.ui[class*="bottom dimmer"] {
- height: auto;
-}
-
-.ui[class*="bottom dimmer"] {
- top: auto !important;
- bottom: 0;
-}
-
-.ui[class*="center dimmer"] {
- top: 50% !important;
- transform: translateY(-50%);
- -webkit-transform: translateY(calc(-50% - 0.5px));
-}
-
-.ui.segment > .ui.ui[class*="top dimmer"] {
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
-}
-
-.ui.segment > .ui.ui[class*="center dimmer"] {
- border-radius: 0;
-}
-
-.ui.segment > .ui.ui[class*="bottom dimmer"] {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
-}
-
-.ui[class*="center dimmer"].transition[class*="fade up"].in {
- -webkit-animation-name: fadeInUpCenter;
- animation-name: fadeInUpCenter;
-}
-
-.ui[class*="center dimmer"].transition[class*="fade down"].in {
- -webkit-animation-name: fadeInDownCenter;
- animation-name: fadeInDownCenter;
-}
-
-.ui[class*="center dimmer"].transition[class*="fade up"].out {
- -webkit-animation-name: fadeOutUpCenter;
- animation-name: fadeOutUpCenter;
-}
-
-.ui[class*="center dimmer"].transition[class*="fade down"].out {
- -webkit-animation-name: fadeOutDownCenter;
- animation-name: fadeOutDownCenter;
-}
-
-.ui[class*="center dimmer"].bounce.transition {
- -webkit-animation-name: bounceCenter;
- animation-name: bounceCenter;
-}
-
-@-webkit-keyframes fadeInUpCenter {
- 0% {
- opacity: 0;
- transform: translateY(-40%);
- -webkit-transform: translateY(calc(-40% - 0.5px));
- }
-
- 100% {
- opacity: 1;
- transform: translateY(-50%);
- -webkit-transform: translateY(calc(-50% - 0.5px));
- }
-}
-
-@keyframes fadeInUpCenter {
- 0% {
- opacity: 0;
- transform: translateY(-40%);
- -webkit-transform: translateY(calc(-40% - 0.5px));
- }
-
- 100% {
- opacity: 1;
- transform: translateY(-50%);
- -webkit-transform: translateY(calc(-50% - 0.5px));
- }
-}
-
-@-webkit-keyframes fadeInDownCenter {
- 0% {
- opacity: 0;
- transform: translateY(-60%);
- -webkit-transform: translateY(calc(-60% - 0.5px));
- }
-
- 100% {
- opacity: 1;
- transform: translateY(-50%);
- -webkit-transform: translateY(calc(-50% - 0.5px));
- }
-}
-
-@keyframes fadeInDownCenter {
- 0% {
- opacity: 0;
- transform: translateY(-60%);
- -webkit-transform: translateY(calc(-60% - 0.5px));
- }
-
- 100% {
- opacity: 1;
- transform: translateY(-50%);
- -webkit-transform: translateY(calc(-50% - 0.5px));
- }
-}
-
-@-webkit-keyframes fadeOutUpCenter {
- 0% {
- opacity: 1;
- transform: translateY(-50%);
- -webkit-transform: translateY(calc(-50% - 0.5px));
- }
-
- 100% {
- opacity: 0;
- transform: translateY(-45%);
- -webkit-transform: translateY(calc(-45% - 0.5px));
- }
-}
-
-@keyframes fadeOutUpCenter {
- 0% {
- opacity: 1;
- transform: translateY(-50%);
- -webkit-transform: translateY(calc(-50% - 0.5px));
- }
-
- 100% {
- opacity: 0;
- transform: translateY(-45%);
- -webkit-transform: translateY(calc(-45% - 0.5px));
- }
-}
-
-@-webkit-keyframes fadeOutDownCenter {
- 0% {
- opacity: 1;
- transform: translateY(-50%);
- -webkit-transform: translateY(calc(-50% - 0.5px));
- }
-
- 100% {
- opacity: 0;
- transform: translateY(-55%);
- -webkit-transform: translateY(calc(-55% - 0.5px));
- }
-}
-
-@keyframes fadeOutDownCenter {
- 0% {
- opacity: 1;
- transform: translateY(-50%);
- -webkit-transform: translateY(calc(-50% - 0.5px));
- }
-
- 100% {
- opacity: 0;
- transform: translateY(-55%);
- -webkit-transform: translateY(calc(-55% - 0.5px));
- }
-}
-
-@-webkit-keyframes bounceCenter {
- 0%, 20%, 50%, 80%, 100% {
- transform: translateY(-50%);
- -webkit-transform: translateY(calc(-50% - 0.5px));
- }
-
- 40% {
- -webkit-transform: translateY(calc(-50% - 30px));
- transform: translateY(calc(-50% - 30px));
- }
-
- 60% {
- -webkit-transform: translateY(calc(-50% - 15px));
- transform: translateY(calc(-50% - 15px));
- }
-}
-
-@keyframes bounceCenter {
- 0%, 20%, 50%, 80%, 100% {
- transform: translateY(-50%);
- -webkit-transform: translateY(calc(-50% - 0.5px));
- }
-
- 40% {
- -webkit-transform: translateY(calc(-50% - 30px));
- transform: translateY(calc(-50% - 30px));
- }
-
- 60% {
- -webkit-transform: translateY(calc(-50% - 15px));
- transform: translateY(calc(-50% - 15px));
- }
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- User Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Dropdown
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Dropdown
-*******************************/
-
-.ui.dropdown {
- cursor: pointer;
- position: relative;
- display: inline-block;
- outline: none;
- text-align: left;
- -webkit-transition: width 0.1s ease, -webkit-box-shadow 0.1s ease;
- transition: width 0.1s ease, -webkit-box-shadow 0.1s ease;
- transition: box-shadow 0.1s ease, width 0.1s ease;
- transition: box-shadow 0.1s ease, width 0.1s ease, -webkit-box-shadow 0.1s ease;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-}
-
-/*******************************
- Content
-*******************************/
-
-/*--------------
- Menu
----------------*/
-
-.ui.dropdown .menu {
- cursor: auto;
- position: absolute;
- display: none;
- outline: none;
- top: 100%;
- min-width: -webkit-max-content;
- min-width: -moz-max-content;
- min-width: max-content;
- margin: 0;
- padding: 0 0;
- background: #FFFFFF;
- font-size: 1em;
- text-shadow: none;
- text-align: left;
- -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
- border: 1px solid rgba(34, 36, 38, 0.15);
- border-radius: 0.28571429rem;
- -webkit-transition: opacity 0.1s ease;
- transition: opacity 0.1s ease;
- z-index: 11;
- will-change: transform, opacity;
-}
-
-.ui.dropdown .menu > * {
- white-space: nowrap;
-}
-
-/*--------------
- Hidden Input
----------------*/
-
-.ui.dropdown > input:not(.search):first-child,
-.ui.dropdown > select {
- display: none !important;
-}
-
-/*--------------
- Dropdown Icon
----------------*/
-
-.ui.dropdown:not(.labeled) > .dropdown.icon {
- position: relative;
- width: auto;
- font-size: 0.85714286em;
- margin: 0 0 0 1em;
-}
-
-.ui.dropdown .menu > .item .dropdown.icon {
- width: auto;
- float: right;
- margin: 0em 0 0 1em;
-}
-
-.ui.dropdown .menu > .item .dropdown.icon + .text {
- margin-right: 1em;
-}
-
-/*--------------
- Text
----------------*/
-
-.ui.dropdown > .text {
- display: inline-block;
- -webkit-transition: none;
- transition: none;
-}
-
-/*--------------
- Menu Item
----------------*/
-
-.ui.dropdown .menu > .item {
- position: relative;
- cursor: pointer;
- display: block;
- border: none;
- height: auto;
- min-height: 2.57142857rem;
- text-align: left;
- border-top: none;
- line-height: 1em;
- font-size: 1rem;
- color: rgba(0, 0, 0, 0.87);
- padding: 0.78571429rem 1.14285714rem !important;
- text-transform: none;
- font-weight: normal;
- -webkit-box-shadow: none;
- box-shadow: none;
- -webkit-touch-callout: none;
-}
-
-.ui.dropdown .menu > .item:first-child {
- border-top-width: 0;
-}
-
-/*--------------
- Floated Content
----------------*/
-
-.ui.dropdown > .text > [class*="right floated"],
-.ui.dropdown .menu .item > [class*="right floated"] {
- float: right !important;
- margin-right: 0 !important;
- margin-left: 1em !important;
-}
-
-.ui.dropdown > .text > [class*="left floated"],
-.ui.dropdown .menu .item > [class*="left floated"] {
- float: left !important;
- margin-left: 0 !important;
- margin-right: 1em !important;
-}
-
-.ui.dropdown .menu .item > .icon.floated,
-.ui.dropdown .menu .item > .flag.floated,
-.ui.dropdown .menu .item > .image.floated,
-.ui.dropdown .menu .item > img.floated {
- margin-top: 0em;
-}
-
-/*--------------
- Menu Divider
----------------*/
-
-.ui.dropdown .menu > .header {
- margin: 1rem 0 0.75rem;
- padding: 0 1.14285714rem;
- font-weight: bold;
- text-transform: uppercase;
-}
-
-.ui.dropdown .menu > .header:not(.ui) {
- color: rgba(0, 0, 0, 0.85);
- font-size: 0.78571429em;
-}
-
-.ui.dropdown .menu > .divider {
- border-top: 1px solid rgba(34, 36, 38, 0.1);
- height: 0;
- margin: 0.5em 0;
-}
-
-.ui.dropdown .menu > .horizontal.divider {
- border-top: none;
-}
-
-.ui.dropdown.dropdown .menu > .input {
- width: auto;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- margin: 1.14285714rem 0.78571429rem;
- min-width: 10rem;
-}
-
-.ui.dropdown .menu > .header + .input {
- margin-top: 0;
-}
-
-.ui.dropdown .menu > .input:not(.transparent) input {
- padding: 0.5em 1em;
-}
-
-.ui.dropdown .menu > .input:not(.transparent) .button,
-.ui.dropdown .menu > .input:not(.transparent) .icon,
-.ui.dropdown .menu > .input:not(.transparent) .label {
- padding-top: 0.5em;
- padding-bottom: 0.5em;
-}
-
-/*-----------------
- Item Description
--------------------*/
-
-.ui.dropdown > .text > .description,
-.ui.dropdown .menu > .item > .description {
- float: right;
- margin: 0 0 0 1em;
- color: rgba(0, 0, 0, 0.4);
-}
-
-/*-----------------
- Message
--------------------*/
-
-.ui.dropdown .menu > .message {
- padding: 0.78571429rem 1.14285714rem;
- font-weight: normal;
-}
-
-.ui.dropdown .menu > .message:not(.ui) {
- color: rgba(0, 0, 0, 0.4);
-}
-
-/*--------------
- Sub Menu
----------------*/
-
-.ui.dropdown .menu .menu {
- top: 0;
- left: 100%;
- right: auto;
- margin: 0 0 0 -0.5em !important;
- border-radius: 0.28571429rem !important;
- z-index: 21 !important;
-}
-
-/* Hide Arrow */
-
-.ui.dropdown .menu .menu:after {
- display: none;
-}
-
-/*--------------
- Sub Elements
----------------*/
-
-/* Icons / Flags / Labels / Image */
-
-.ui.dropdown > .text > .icon,
-.ui.dropdown > .text > .label,
-.ui.dropdown > .text > .flag,
-.ui.dropdown > .text > img,
-.ui.dropdown > .text > .image {
- margin-top: 0em;
-}
-
-.ui.dropdown .menu > .item > .icon,
-.ui.dropdown .menu > .item > .label,
-.ui.dropdown .menu > .item > .flag,
-.ui.dropdown .menu > .item > .image,
-.ui.dropdown .menu > .item > img {
- margin-top: 0em;
-}
-
-.ui.dropdown > .text > .icon,
-.ui.dropdown > .text > .label,
-.ui.dropdown > .text > .flag,
-.ui.dropdown > .text > img,
-.ui.dropdown > .text > .image,
-.ui.dropdown .menu > .item > .icon,
-.ui.dropdown .menu > .item > .label,
-.ui.dropdown .menu > .item > .flag,
-.ui.dropdown .menu > .item > .image,
-.ui.dropdown .menu > .item > img {
- margin-left: 0;
- float: none;
- margin-right: 0.78571429rem;
-}
-
-/*--------------
- Image
----------------*/
-
-.ui.dropdown > .text > img,
-.ui.dropdown > .text > .image:not(.icon),
-.ui.dropdown .menu > .item > .image:not(.icon),
-.ui.dropdown .menu > .item > img {
- display: inline-block;
- vertical-align: top;
- width: auto;
- margin-top: -0.5em;
- margin-bottom: -0.5em;
- max-height: 2em;
-}
-
-/*******************************
- Coupling
-*******************************/
-
-/*--------------
- Menu
----------------*/
-
-/* Remove Menu Item Divider */
-
-.ui.dropdown .ui.menu > .item:before,
-.ui.menu .ui.dropdown .menu > .item:before {
- display: none;
-}
-
-/* Prevent Menu Item Border */
-
-.ui.menu .ui.dropdown .menu .active.item {
- border-left: none;
-}
-
-/* Automatically float dropdown menu right on last menu item */
-
-.ui.menu .right.menu .dropdown:last-child .menu,
-.ui.menu .right.dropdown.item .menu,
-.ui.buttons > .ui.dropdown:last-child .menu {
- left: auto;
- right: 0;
-}
-
-/*--------------
- Label
- ---------------*/
-
-/* Dropdown Menu */
-
-.ui.label.dropdown .menu {
- min-width: 100%;
-}
-
-/*--------------
- Button
- ---------------*/
-
-/* No Margin On Icon Button */
-
-.ui.dropdown.icon.button > .dropdown.icon {
- margin: 0;
-}
-
-.ui.button.dropdown .menu {
- min-width: 100%;
-}
-
-/*******************************
- Types
-*******************************/
-
-select.ui.dropdown {
- height: 38px;
- padding: 0.5em;
- border: 1px solid rgba(34, 36, 38, 0.15);
- visibility: visible;
-}
-
-/*--------------
- Selection
- ---------------*/
-
-/* Displays like a select box */
-
-.ui.selection.dropdown {
- cursor: pointer;
- word-wrap: break-word;
- line-height: 1em;
- white-space: normal;
- outline: 0;
- -webkit-transform: rotateZ(0deg);
- transform: rotateZ(0deg);
- min-width: 14em;
- min-height: 2.71428571em;
- background: #FFFFFF;
- display: inline-block;
- padding: 0.78571429em 3.2em 0.78571429em 1em;
- color: rgba(0, 0, 0, 0.87);
- -webkit-box-shadow: none;
- box-shadow: none;
- border: 1px solid rgba(34, 36, 38, 0.15);
- border-radius: 0.28571429rem;
- -webkit-transition: width 0.1s ease, -webkit-box-shadow 0.1s ease;
- transition: width 0.1s ease, -webkit-box-shadow 0.1s ease;
- transition: box-shadow 0.1s ease, width 0.1s ease;
- transition: box-shadow 0.1s ease, width 0.1s ease, -webkit-box-shadow 0.1s ease;
-}
-
-.ui.selection.dropdown.visible,
-.ui.selection.dropdown.active {
- z-index: 10;
-}
-
-.ui.selection.dropdown > .search.icon,
-.ui.selection.dropdown > .delete.icon,
-.ui.selection.dropdown > .dropdown.icon {
- cursor: pointer;
- position: absolute;
- width: auto;
- height: auto;
- line-height: 1.21428571em;
- top: 0.78571429em;
- right: 1em;
- z-index: 3;
- margin: -0.78571429em;
- padding: 0.91666667em;
- opacity: 0.8;
- -webkit-transition: opacity 0.1s ease;
- transition: opacity 0.1s ease;
-}
-
-/* Compact */
-
-.ui.compact.selection.dropdown {
- min-width: 0;
-}
-
-/* Selection Menu */
-
-.ui.selection.dropdown .menu {
- overflow-x: hidden;
- overflow-y: auto;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- -webkit-overflow-scrolling: touch;
- border-top-width: 0 !important;
- width: auto;
- outline: none;
- margin: 0 -1px;
- min-width: calc(100% + 2px);
- width: calc(100% + 2px);
- border-radius: 0 0 0.28571429rem 0.28571429rem;
- -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
- -webkit-transition: opacity 0.1s ease;
- transition: opacity 0.1s ease;
-}
-
-.ui.selection.dropdown .menu:after,
-.ui.selection.dropdown .menu:before {
- display: none;
-}
-
-/*--------------
- Message
- ---------------*/
-
-.ui.selection.dropdown .menu > .message {
- padding: 0.78571429rem 1.14285714rem;
-}
-
-@media only screen and (max-width: 767.98px) {
- .ui.selection.dropdown[class*="very short"] .menu {
- max-height: 4.00714286rem;
- }
-
- .ui.selection.dropdown.short .menu {
- max-height: 6.01071429rem;
- }
-
- .ui.selection.dropdown .menu {
- max-height: 8.01428571rem;
- }
-
- .ui.selection.dropdown.long .menu {
- max-height: 16.02857143rem;
- }
-
- .ui.selection.dropdown[class*="very long"] .menu {
- max-height: 24.04285714rem;
- }
-}
-
-@media only screen and (min-width: 768px) {
- .ui.selection.dropdown[class*="very short"] .menu {
- max-height: 5.34285714rem;
- }
-
- .ui.selection.dropdown.short .menu {
- max-height: 8.01428571rem;
- }
-
- .ui.selection.dropdown .menu {
- max-height: 10.68571429rem;
- }
-
- .ui.selection.dropdown.long .menu {
- max-height: 21.37142857rem;
- }
-
- .ui.selection.dropdown[class*="very long"] .menu {
- max-height: 32.05714286rem;
- }
-}
-
-@media only screen and (min-width: 992px) {
- .ui.selection.dropdown[class*="very short"] .menu {
- max-height: 8.01428571rem;
- }
-
- .ui.selection.dropdown.short .menu {
- max-height: 12.02142857rem;
- }
-
- .ui.selection.dropdown .menu {
- max-height: 16.02857143rem;
- }
-
- .ui.selection.dropdown.long .menu {
- max-height: 32.05714286rem;
- }
-
- .ui.selection.dropdown[class*="very long"] .menu {
- max-height: 48.08571429rem;
- }
-}
-
-@media only screen and (min-width: 1920px) {
- .ui.selection.dropdown[class*="very short"] .menu {
- max-height: 10.68571429rem;
- }
-
- .ui.selection.dropdown.short .menu {
- max-height: 16.02857143rem;
- }
-
- .ui.selection.dropdown .menu {
- max-height: 21.37142857rem;
- }
-
- .ui.selection.dropdown.long .menu {
- max-height: 42.74285714rem;
- }
-
- .ui.selection.dropdown[class*="very long"] .menu {
- max-height: 64.11428571rem;
- }
-}
-
-/* Menu Item */
-
-.ui.selection.dropdown .menu > .item {
- border-top: 1px solid #FAFAFA;
- padding: 0.78571429rem 1.14285714rem !important;
- white-space: normal;
- word-wrap: normal;
-}
-
-/* User Item */
-
-.ui.selection.dropdown .menu > .hidden.addition.item {
- display: none;
-}
-
-/* Hover */
-
-.ui.selection.dropdown:hover {
- border-color: rgba(34, 36, 38, 0.35);
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/* Active */
-
-.ui.selection.active.dropdown {
- border-color: #96C8DA;
- -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.selection.active.dropdown .menu {
- border-color: #96C8DA;
- -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
-}
-
-/* Focus */
-
-.ui.selection.dropdown:focus {
- border-color: #96C8DA;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.selection.dropdown:focus .menu {
- border-color: #96C8DA;
- -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
-}
-
-/* Visible */
-
-.ui.selection.visible.dropdown > .text:not(.default) {
- font-weight: normal;
- color: rgba(0, 0, 0, 0.8);
-}
-
-/* Visible Hover */
-
-.ui.selection.active.dropdown:hover {
- border-color: #96C8DA;
- -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.selection.active.dropdown:hover .menu {
- border-color: #96C8DA;
- -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
-}
-
-/* Dropdown Icon */
-
-.ui.active.selection.dropdown > .dropdown.icon,
-.ui.visible.selection.dropdown > .dropdown.icon {
- opacity: '';
- z-index: 3;
-}
-
-/* Connecting Border */
-
-.ui.active.selection.dropdown {
- border-bottom-left-radius: 0 !important;
- border-bottom-right-radius: 0 !important;
-}
-
-/* Empty Connecting Border */
-
-.ui.active.empty.selection.dropdown {
- border-radius: 0.28571429rem !important;
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
-}
-
-.ui.active.empty.selection.dropdown .menu {
- border: none !important;
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
-}
-
-/*--------------
- Searchable
- ---------------*/
-
-/* Search Selection */
-
-.ui.search.dropdown {
- min-width: '';
-}
-
-/* Search Dropdown */
-
-.ui.search.dropdown > input.search {
- background: none transparent !important;
- border: none !important;
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
- cursor: text;
- top: 0;
- left: 1px;
- width: 100%;
- outline: none;
- -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
- padding: inherit;
-}
-
-/* Text Layering */
-
-.ui.search.dropdown > input.search {
- position: absolute;
- z-index: 2;
-}
-
-.ui.search.dropdown > .text {
- cursor: text;
- position: relative;
- left: 1px;
- z-index: 3;
-}
-
-/* Search Selection */
-
-.ui.search.selection.dropdown > input.search {
- line-height: 1.21428571em;
- padding: 0.67857143em 3.2em 0.67857143em 1em;
-}
-
-/* Used to size multi select input to character width */
-
-.ui.search.selection.dropdown > span.sizer {
- line-height: 1.21428571em;
- padding: 0.67857143em 3.2em 0.67857143em 1em;
- display: none;
- white-space: pre;
-}
-
-/* Active/Visible Search */
-
-.ui.search.dropdown.active > input.search,
-.ui.search.dropdown.visible > input.search {
- cursor: auto;
-}
-
-.ui.search.dropdown.active > .text,
-.ui.search.dropdown.visible > .text {
- pointer-events: none;
-}
-
-/* Filtered Text */
-
-.ui.active.search.dropdown input.search:focus + .text .icon,
-.ui.active.search.dropdown input.search:focus + .text .flag {
- opacity: 0.45;
-}
-
-.ui.active.search.dropdown input.search:focus + .text {
- color: rgba(115, 115, 115, 0.87) !important;
-}
-
-/* Search Menu */
-
-.ui.search.dropdown .menu {
- overflow-x: hidden;
- overflow-y: auto;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- -webkit-overflow-scrolling: touch;
-}
-
-@media only screen and (max-width: 767.98px) {
- .ui.search.dropdown .menu {
- max-height: 8.01428571rem;
- }
-}
-
-@media only screen and (min-width: 768px) {
- .ui.search.dropdown .menu {
- max-height: 10.68571429rem;
- }
-}
-
-@media only screen and (min-width: 992px) {
- .ui.search.dropdown .menu {
- max-height: 16.02857143rem;
- }
-}
-
-@media only screen and (min-width: 1920px) {
- .ui.search.dropdown .menu {
- max-height: 21.37142857rem;
- }
-}
-
-/* Clearable Selection */
-
-.ui.dropdown > .remove.icon {
- cursor: pointer;
- font-size: 0.85714286em;
- margin: -0.78571429em;
- padding: 0.91666667em;
- right: 3em;
- top: 0.78571429em;
- position: absolute;
- opacity: 0.6;
- z-index: 3;
-}
-
-.ui.clearable.dropdown .text,
-.ui.clearable.dropdown a:last-of-type {
- margin-right: 1.5em;
-}
-
-.ui.dropdown select.noselection ~ .remove.icon,
-.ui.dropdown input[value=''] ~ .remove.icon,
-.ui.dropdown input:not([value]) ~ .remove.icon,
-.ui.dropdown.loading > .remove.icon {
- display: none;
-}
-
-/*--------------
- Multiple
- ---------------*/
-
-/* Multiple Selection */
-
-.ui.multiple.dropdown {
- padding: 0.22619048em 3.2em 0.22619048em 0.35714286em;
-}
-
-.ui.multiple.dropdown .menu {
- cursor: auto;
-}
-
-/* Selection Label */
-
-.ui.multiple.dropdown > .label {
- display: inline-block;
- white-space: normal;
- font-size: 1em;
- padding: 0.35714286em 0.78571429em;
- margin: 0.14285714rem 0.28571429rem 0.14285714rem 0;
- -webkit-box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
-}
-
-/* Dropdown Icon */
-
-.ui.multiple.dropdown .dropdown.icon {
- margin: '';
- padding: '';
-}
-
-/* Text */
-
-.ui.multiple.dropdown > .text {
- position: static;
- padding: 0;
- max-width: 100%;
- margin: 0.45238095em 0 0.45238095em 0.64285714em;
- line-height: 1.21428571em;
-}
-
-.ui.multiple.dropdown > .label ~ input.search {
- margin-left: 0.14285714em !important;
-}
-
-.ui.multiple.dropdown > .label ~ .text {
- display: none;
-}
-
-.ui.multiple.dropdown > .label:not(.image) > img:not(.centered) {
- margin-right: 0.78571429rem;
-}
-
-.ui.multiple.dropdown > .label:not(.image) > img.ui:not(.avatar) {
- margin-bottom: 0.39285714rem;
-}
-
-.ui.multiple.dropdown > .image.label img {
- margin: -0.35714286em 0.78571429em -0.35714286em -0.78571429em;
- height: 1.71428571em;
-}
-
-/*-----------------
- Multiple Search
- -----------------*/
-
-/* Multiple Search Selection */
-
-.ui.multiple.search.dropdown,
-.ui.multiple.search.dropdown > input.search {
- cursor: text;
-}
-
-/* Prompt Text */
-
-.ui.multiple.search.dropdown > .text {
- display: inline-block;
- position: absolute;
- top: 0;
- left: 0;
- padding: inherit;
- margin: 0.45238095em 0 0.45238095em 0.64285714em;
- line-height: 1.21428571em;
-}
-
-.ui.multiple.search.dropdown > .label ~ .text {
- display: none;
-}
-
-/* Search */
-
-.ui.multiple.search.dropdown > input.search {
- position: static;
- padding: 0;
- max-width: 100%;
- margin: 0.45238095em 0 0.45238095em 0.64285714em;
- width: 2.2em;
- line-height: 1.21428571em;
-}
-
-/*--------------
- Inline
- ---------------*/
-
-.ui.inline.dropdown {
- cursor: pointer;
- display: inline-block;
- color: inherit;
-}
-
-.ui.inline.dropdown .dropdown.icon {
- margin: 0 0.21428571em 0 0.21428571em;
- vertical-align: baseline;
-}
-
-.ui.inline.dropdown > .text {
- font-weight: bold;
-}
-
-.ui.inline.dropdown .menu {
- cursor: auto;
- margin-top: 0.21428571em;
- border-radius: 0.28571429rem;
-}
-
-/*******************************
- States
-*******************************/
-
-/*--------------------
- Active
-----------------------*/
-
-/* Menu Item Active */
-
-.ui.dropdown .menu .active.item {
- background: transparent;
- font-weight: bold;
- color: rgba(0, 0, 0, 0.95);
- -webkit-box-shadow: none;
- box-shadow: none;
- z-index: 12;
-}
-
-/*--------------------
- Hover
-----------------------*/
-
-/* Menu Item Hover */
-
-.ui.dropdown .menu > .item:hover {
- background: rgba(0, 0, 0, 0.05);
- color: rgba(0, 0, 0, 0.95);
- z-index: 13;
-}
-
-/*--------------------
- Default Text
-----------------------*/
-
-.ui.dropdown:not(.button) > .default.text,
-.ui.default.dropdown:not(.button) > .text {
- color: rgba(191, 191, 191, 0.87);
-}
-
-.ui.dropdown:not(.button) > input:focus ~ .default.text,
-.ui.default.dropdown:not(.button) > input:focus ~ .text {
- color: rgba(115, 115, 115, 0.87);
-}
-
-/*--------------------
- Loading
- ---------------------*/
-
-.ui.loading.dropdown > i.icon {
- height: 1em !important;
-}
-
-.ui.loading.selection.dropdown > i.icon {
- padding: 1.5em 1.28571429em !important;
-}
-
-.ui.loading.dropdown > i.icon:before {
- position: absolute;
- content: '';
- top: 50%;
- left: 50%;
- margin: -0.64285714em 0 0 -0.64285714em;
- width: 1.28571429em;
- height: 1.28571429em;
- border-radius: 500rem;
- border: 0.2em solid rgba(0, 0, 0, 0.1);
-}
-
-.ui.loading.dropdown > i.icon:after {
- position: absolute;
- content: '';
- top: 50%;
- left: 50%;
- -webkit-box-shadow: 0 0 0 1px transparent;
- box-shadow: 0 0 0 1px transparent;
- margin: -0.64285714em 0 0 -0.64285714em;
- width: 1.28571429em;
- height: 1.28571429em;
- -webkit-animation: loader 0.6s infinite linear;
- animation: loader 0.6s infinite linear;
- border: 0.2em solid #767676;
- border-radius: 500rem;
-}
-
-/* Coupling */
-
-.ui.loading.dropdown.button > i.icon:before,
-.ui.loading.dropdown.button > i.icon:after {
- display: none;
-}
-
-.ui.loading.dropdown > .text {
- -webkit-transition: none;
- transition: none;
-}
-
-/* Used To Check Position */
-
-.ui.dropdown .loading.menu {
- display: block;
- visibility: hidden;
- z-index: -1;
-}
-
-.ui.dropdown > .loading.menu {
- left: 0 !important;
- right: auto !important;
-}
-
-.ui.dropdown > .menu .loading.menu {
- left: 100% !important;
- right: auto !important;
-}
-
-/*--------------------
- Keyboard Select
-----------------------*/
-
-/* Selected Item */
-
-.ui.dropdown.selected,
-.ui.dropdown .menu .selected.item {
- background: rgba(0, 0, 0, 0.03);
- color: rgba(0, 0, 0, 0.95);
-}
-
-/*--------------------
- Search Filtered
-----------------------*/
-
-/* Filtered Item */
-
-.ui.dropdown > .filtered.text {
- visibility: hidden;
-}
-
-.ui.dropdown .filtered.item {
- display: none !important;
-}
-
-/*--------------------
- States
- ----------------------*/
-
-.ui.dropdown.error,
-.ui.dropdown.error > .text,
-.ui.dropdown.error > .default.text {
- color: #9F3A38;
-}
-
-.ui.selection.dropdown.error {
- background: #FFF6F6;
- border-color: #E0B4B4;
-}
-
-.ui.selection.dropdown.error:hover {
- border-color: #E0B4B4;
-}
-
-.ui.multiple.selection.error.dropdown > .label {
- border-color: #E0B4B4;
-}
-
-.ui.dropdown.error > .menu,
-.ui.dropdown.error > .menu .menu {
- border-color: #E0B4B4;
-}
-
-.ui.dropdown.error > .menu > .item {
- color: #9F3A38;
-}
-
-/* Item Hover */
-
-.ui.dropdown.error > .menu > .item:hover {
- background-color: #FBE7E7;
-}
-
-/* Item Active */
-
-.ui.dropdown.error > .menu .active.item {
- background-color: #FDCFCF;
-}
-
-.ui.dropdown.info,
-.ui.dropdown.info > .text,
-.ui.dropdown.info > .default.text {
- color: #276F86;
-}
-
-.ui.selection.dropdown.info {
- background: #F8FFFF;
- border-color: #A9D5DE;
-}
-
-.ui.selection.dropdown.info:hover {
- border-color: #A9D5DE;
-}
-
-.ui.multiple.selection.info.dropdown > .label {
- border-color: #A9D5DE;
-}
-
-.ui.dropdown.info > .menu,
-.ui.dropdown.info > .menu .menu {
- border-color: #A9D5DE;
-}
-
-.ui.dropdown.info > .menu > .item {
- color: #276F86;
-}
-
-/* Item Hover */
-
-.ui.dropdown.info > .menu > .item:hover {
- background-color: #e9f2fb;
-}
-
-/* Item Active */
-
-.ui.dropdown.info > .menu .active.item {
- background-color: #cef1fd;
-}
-
-.ui.dropdown.success,
-.ui.dropdown.success > .text,
-.ui.dropdown.success > .default.text {
- color: #2C662D;
-}
-
-.ui.selection.dropdown.success {
- background: #FCFFF5;
- border-color: #A3C293;
-}
-
-.ui.selection.dropdown.success:hover {
- border-color: #A3C293;
-}
-
-.ui.multiple.selection.success.dropdown > .label {
- border-color: #A3C293;
-}
-
-.ui.dropdown.success > .menu,
-.ui.dropdown.success > .menu .menu {
- border-color: #A3C293;
-}
-
-.ui.dropdown.success > .menu > .item {
- color: #2C662D;
-}
-
-/* Item Hover */
-
-.ui.dropdown.success > .menu > .item:hover {
- background-color: #e9fbe9;
-}
-
-/* Item Active */
-
-.ui.dropdown.success > .menu .active.item {
- background-color: #dafdce;
-}
-
-.ui.dropdown.warning,
-.ui.dropdown.warning > .text,
-.ui.dropdown.warning > .default.text {
- color: #573A08;
-}
-
-.ui.selection.dropdown.warning {
- background: #FFFAF3;
- border-color: #C9BA9B;
-}
-
-.ui.selection.dropdown.warning:hover {
- border-color: #C9BA9B;
-}
-
-.ui.multiple.selection.warning.dropdown > .label {
- border-color: #C9BA9B;
-}
-
-.ui.dropdown.warning > .menu,
-.ui.dropdown.warning > .menu .menu {
- border-color: #C9BA9B;
-}
-
-.ui.dropdown.warning > .menu > .item {
- color: #573A08;
-}
-
-/* Item Hover */
-
-.ui.dropdown.warning > .menu > .item:hover {
- background-color: #fbfbe9;
-}
-
-/* Item Active */
-
-.ui.dropdown.warning > .menu .active.item {
- background-color: #fdfdce;
-}
-
-/*--------------------
- Clear
-----------------------*/
-
-.ui.dropdown > .clear.dropdown.icon {
- opacity: 0.8;
- -webkit-transition: opacity 0.1s ease;
- transition: opacity 0.1s ease;
-}
-
-.ui.dropdown > .clear.dropdown.icon:hover {
- opacity: 1;
-}
-
-/*--------------------
- Disabled
- ----------------------*/
-
-/* Disabled */
-
-.ui.disabled.dropdown,
-.ui.dropdown .menu > .disabled.item {
- cursor: default;
- pointer-events: none;
- opacity: 0.45;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*--------------
- Direction
----------------*/
-
-/* Flyout Direction */
-
-.ui.dropdown .menu {
- left: 0;
-}
-
-/* Default Side (Right) */
-
-.ui.dropdown .right.menu > .menu,
-.ui.dropdown .menu .right.menu {
- left: 100% !important;
- right: auto !important;
- border-radius: 0.28571429rem !important;
-}
-
-/* Leftward Opening Menu */
-
-.ui.dropdown > .left.menu {
- left: auto !important;
- right: 0 !important;
-}
-
-.ui.dropdown > .left.menu .menu,
-.ui.dropdown .menu .left.menu {
- left: auto;
- right: 100%;
- margin: 0 -0.5em 0 0 !important;
- border-radius: 0.28571429rem !important;
-}
-
-.ui.dropdown .item .left.dropdown.icon,
-.ui.dropdown .left.menu .item .dropdown.icon {
- width: auto;
- float: left;
- margin: 0em 0 0 0;
-}
-
-.ui.dropdown .item .left.dropdown.icon,
-.ui.dropdown .left.menu .item .dropdown.icon {
- width: auto;
- float: left;
- margin: 0em 0 0 0;
-}
-
-.ui.dropdown .item .left.dropdown.icon + .text,
-.ui.dropdown .left.menu .item .dropdown.icon + .text {
- margin-left: 1em;
- margin-right: 0;
-}
-
-/*--------------
- Upward
- ---------------*/
-
-/* Upward Main Menu */
-
-.ui.upward.dropdown > .menu {
- top: auto;
- bottom: 100%;
- -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.08);
- box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.08);
- border-radius: 0.28571429rem 0.28571429rem 0 0;
-}
-
-/* Upward Sub Menu */
-
-.ui.dropdown .upward.menu {
- top: auto !important;
- bottom: 0 !important;
-}
-
-/* Active Upward */
-
-.ui.simple.upward.active.dropdown,
-.ui.simple.upward.dropdown:hover {
- border-radius: 0.28571429rem 0.28571429rem 0 0 !important;
-}
-
-.ui.upward.dropdown.button:not(.pointing):not(.floating).active {
- border-radius: 0.28571429rem 0.28571429rem 0 0;
-}
-
-/* Selection */
-
-.ui.upward.selection.dropdown .menu {
- border-top-width: 1px !important;
- border-bottom-width: 0 !important;
- -webkit-box-shadow: 0 -2px 3px 0 rgba(0, 0, 0, 0.08);
- box-shadow: 0 -2px 3px 0 rgba(0, 0, 0, 0.08);
-}
-
-.ui.upward.selection.dropdown:hover {
- -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.05);
- box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.05);
-}
-
-/* Active Upward */
-
-.ui.active.upward.selection.dropdown {
- border-radius: 0 0 0.28571429rem 0.28571429rem !important;
-}
-
-/* Visible Upward */
-
-.ui.upward.selection.dropdown.visible {
- -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.08);
- box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.08);
- border-radius: 0 0 0.28571429rem 0.28571429rem !important;
-}
-
-/* Visible Hover Upward */
-
-.ui.upward.active.selection.dropdown:hover {
- -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.05);
- box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.05);
-}
-
-.ui.upward.active.selection.dropdown:hover .menu {
- -webkit-box-shadow: 0 -2px 3px 0 rgba(0, 0, 0, 0.08);
- box-shadow: 0 -2px 3px 0 rgba(0, 0, 0, 0.08);
-}
-
-/*--------------
- Scrolling
- ---------------*/
-
-/* Selection Menu */
-
-.ui.scrolling.dropdown .menu,
-.ui.dropdown .scrolling.menu {
- overflow-x: hidden;
- overflow-y: auto;
-}
-
-.ui.scrolling.dropdown .menu {
- overflow-x: hidden;
- overflow-y: auto;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- -webkit-overflow-scrolling: touch;
- min-width: 100% !important;
- width: auto !important;
-}
-
-.ui.dropdown .scrolling.menu {
- position: static;
- overflow-y: auto;
- border: none;
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
- border-radius: 0 !important;
- margin: 0 !important;
- min-width: 100% !important;
- width: auto !important;
- border-top: 1px solid rgba(34, 36, 38, 0.15);
-}
-
-.ui.scrolling.dropdown .menu .item.item.item,
-.ui.dropdown .scrolling.menu > .item.item.item {
- border-top: none;
-}
-
-.ui.scrolling.dropdown .menu .item:first-child,
-.ui.dropdown .scrolling.menu .item:first-child {
- border-top: none;
-}
-
-.ui.dropdown > .animating.menu .scrolling.menu,
-.ui.dropdown > .visible.menu .scrolling.menu {
- display: block;
-}
-
-/* Scrollbar in IE */
-
-@media all and (-ms-high-contrast: none) {
- .ui.scrolling.dropdown .menu,
- .ui.dropdown .scrolling.menu {
- min-width: calc(100% - 17px);
- }
-}
-
-@media only screen and (max-width: 767.98px) {
- .ui.scrolling.dropdown .menu,
- .ui.dropdown .scrolling.menu {
- max-height: 10.28571429rem;
- }
-}
-
-@media only screen and (min-width: 768px) {
- .ui.scrolling.dropdown .menu,
- .ui.dropdown .scrolling.menu {
- max-height: 15.42857143rem;
- }
-}
-
-@media only screen and (min-width: 992px) {
- .ui.scrolling.dropdown .menu,
- .ui.dropdown .scrolling.menu {
- max-height: 20.57142857rem;
- }
-}
-
-@media only screen and (min-width: 1920px) {
- .ui.scrolling.dropdown .menu,
- .ui.dropdown .scrolling.menu {
- max-height: 20.57142857rem;
- }
-}
-
-/*--------------
- Columnar
----------------*/
-
-.ui.dropdown[class*="two column"] > .menu > .item {
- display: inline-block;
- width: 50%;
-}
-
-.ui.dropdown[class*="three column"] > .menu > .item {
- display: inline-block;
- width: 33%;
-}
-
-.ui.dropdown[class*="four column"] > .menu > .item {
- display: inline-block;
- width: 25%;
-}
-
-.ui.dropdown[class*="five column"] > .menu > .item {
- display: inline-block;
- width: 20%;
-}
-
-/*--------------
- Simple
- ---------------*/
-
-/* Displays without javascript */
-
-.ui.simple.dropdown .menu:before,
-.ui.simple.dropdown .menu:after {
- display: none;
-}
-
-.ui.simple.dropdown .menu {
- position: absolute;
- /* IE hack to make dropdown icons appear inline */
- display: -ms-inline-flexbox !important;
- display: block;
- overflow: hidden;
- top: -9999px;
- opacity: 0;
- width: 0;
- height: 0;
- -webkit-transition: opacity 0.1s ease;
- transition: opacity 0.1s ease;
- margin-top: 0 !important;
-}
-
-.ui.simple.active.dropdown,
-.ui.simple.dropdown:hover {
- border-bottom-left-radius: 0 !important;
- border-bottom-right-radius: 0 !important;
-}
-
-.ui.simple.active.dropdown > .menu,
-.ui.simple.dropdown:hover > .menu {
- overflow: visible;
- width: auto;
- height: auto;
- top: 100%;
- opacity: 1;
-}
-
-.ui.simple.dropdown > .menu > .item:active > .menu,
-.ui.simple.dropdown:hover > .menu > .item:hover > .menu {
- overflow: visible;
- width: auto;
- height: auto;
- top: 0 !important;
- left: 100% !important;
- opacity: 1;
-}
-
-.ui.simple.disabled.dropdown:hover .menu {
- display: none;
- height: 0;
- width: 0;
- overflow: hidden;
-}
-
-/* Visible */
-
-.ui.simple.visible.dropdown > .menu {
- display: block;
-}
-
-/* Scrolling */
-
-.ui.simple.scrolling.active.dropdown > .menu,
-.ui.simple.scrolling.dropdown:hover > .menu {
- overflow-x: hidden;
- overflow-y: auto;
-}
-
-/*--------------
- Fluid
- ---------------*/
-
-.ui.fluid.dropdown {
- display: block;
- width: 100% !important;
- min-width: 0;
-}
-
-.ui.fluid.dropdown > .dropdown.icon {
- float: right;
-}
-
-/*--------------
- Floating
- ---------------*/
-
-.ui.floating.dropdown .menu {
- left: 0;
- right: auto;
- -webkit-box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15) !important;
- box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15) !important;
- border-radius: 0.28571429rem !important;
-}
-
-.ui.floating.dropdown > .menu {
- border-radius: 0.28571429rem !important;
-}
-
-.ui:not(.upward).floating.dropdown > .menu {
- margin-top: 0.5em;
-}
-
-.ui.upward.floating.dropdown > .menu {
- margin-bottom: 0.5em;
-}
-
-/*--------------
- Pointing
- ---------------*/
-
-.ui.pointing.dropdown > .menu {
- top: 100%;
- margin-top: 0.78571429rem;
- border-radius: 0.28571429rem;
-}
-
-.ui.pointing.dropdown > .menu:not(.hidden):after {
- display: block;
- position: absolute;
- pointer-events: none;
- content: '';
- visibility: visible;
- -webkit-transform: rotate(45deg);
- transform: rotate(45deg);
- width: 0.5em;
- height: 0.5em;
- -webkit-box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
- box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
- background: #FFFFFF;
- z-index: 2;
-}
-
-.ui.pointing.dropdown > .menu:not(.hidden):after {
- top: -0.25em;
- left: 50%;
- margin: 0 0 0 -0.25em;
-}
-
-/* Top Left Pointing */
-
-.ui.top.left.pointing.dropdown > .menu {
- top: 100%;
- bottom: auto;
- left: 0;
- right: auto;
- margin: 1em 0 0;
-}
-
-.ui.top.left.pointing.dropdown > .menu {
- top: 100%;
- bottom: auto;
- left: 0;
- right: auto;
- margin: 1em 0 0;
-}
-
-.ui.top.left.pointing.dropdown > .menu:after {
- top: -0.25em;
- left: 1em;
- right: auto;
- margin: 0;
- -webkit-transform: rotate(45deg);
- transform: rotate(45deg);
-}
-
-/* Top Right Pointing */
-
-.ui.top.right.pointing.dropdown > .menu {
- top: 100%;
- bottom: auto;
- right: 0;
- left: auto;
- margin: 1em 0 0;
-}
-
-.ui.top.pointing.dropdown > .left.menu:after,
-.ui.top.right.pointing.dropdown > .menu:after {
- top: -0.25em;
- left: auto !important;
- right: 1em !important;
- margin: 0;
- -webkit-transform: rotate(45deg);
- transform: rotate(45deg);
-}
-
-/* Left Pointing */
-
-.ui.left.pointing.dropdown > .menu {
- top: 0;
- left: 100%;
- right: auto;
- margin: 0 0 0 1em;
-}
-
-.ui.left.pointing.dropdown > .menu:after {
- top: 1em;
- left: -0.25em;
- margin: 0 0 0 0;
- -webkit-transform: rotate(-45deg);
- transform: rotate(-45deg);
-}
-
-.ui.left:not(.top):not(.bottom).pointing.dropdown > .left.menu {
- left: auto !important;
- right: 100% !important;
- margin: 0 1em 0 0;
-}
-
-.ui.left:not(.top):not(.bottom).pointing.dropdown > .left.menu:after {
- top: 1em;
- left: auto;
- right: -0.25em;
- margin: 0 0 0 0;
- -webkit-transform: rotate(135deg);
- transform: rotate(135deg);
-}
-
-/* Right Pointing */
-
-.ui.right.pointing.dropdown > .menu {
- top: 0;
- left: auto;
- right: 100%;
- margin: 0 1em 0 0;
-}
-
-.ui.right.pointing.dropdown > .menu:after {
- top: 1em;
- left: auto;
- right: -0.25em;
- margin: 0 0 0 0;
- -webkit-transform: rotate(135deg);
- transform: rotate(135deg);
-}
-
-/* Bottom Pointing */
-
-.ui.bottom.pointing.dropdown > .menu {
- top: auto;
- bottom: 100%;
- left: 0;
- right: auto;
- margin: 0 0 1em;
-}
-
-.ui.bottom.pointing.dropdown > .menu:after {
- top: auto;
- bottom: -0.25em;
- right: auto;
- margin: 0;
- -webkit-transform: rotate(-135deg);
- transform: rotate(-135deg);
-}
-
-/* Reverse Sub-Menu Direction */
-
-.ui.bottom.pointing.dropdown > .menu .menu {
- top: auto !important;
- bottom: 0 !important;
-}
-
-/* Bottom Left */
-
-.ui.bottom.left.pointing.dropdown > .menu {
- left: 0;
- right: auto;
-}
-
-.ui.bottom.left.pointing.dropdown > .menu:after {
- left: 1em;
- right: auto;
-}
-
-/* Bottom Right */
-
-.ui.bottom.right.pointing.dropdown > .menu {
- right: 0;
- left: auto;
-}
-
-.ui.bottom.right.pointing.dropdown > .menu:after {
- left: auto;
- right: 1em;
-}
-
-/* Upward pointing */
-
-.ui.pointing.upward.dropdown .menu,
-.ui.top.pointing.upward.dropdown .menu {
- top: auto !important;
- bottom: 100% !important;
- margin: 0 0 0.78571429rem;
- border-radius: 0.28571429rem;
-}
-
-.ui.pointing.upward.dropdown .menu:after,
-.ui.top.pointing.upward.dropdown .menu:after {
- top: 100% !important;
- bottom: auto !important;
- -webkit-box-shadow: 1px 1px 0 0 rgba(34, 36, 38, 0.15);
- box-shadow: 1px 1px 0 0 rgba(34, 36, 38, 0.15);
- margin: -0.25em 0 0;
-}
-
-/* Right Pointing Upward */
-
-.ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu {
- top: auto !important;
- bottom: 0 !important;
- margin: 0 1em 0 0;
-}
-
-.ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after {
- top: auto !important;
- bottom: 0 !important;
- margin: 0 0 1em 0;
- -webkit-box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
- box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
-}
-
-/* Left Pointing Upward */
-
-.ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu {
- top: auto !important;
- bottom: 0 !important;
- margin: 0 0 0 1em;
-}
-
-.ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after {
- top: auto !important;
- bottom: 0 !important;
- margin: 0 0 1em 0;
- -webkit-box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
- box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
-}
-
-/*--------------------
- Sizes
----------------------*/
-
-.ui.dropdown,
-.ui.dropdown .menu > .item {
- font-size: 1rem;
-}
-
-.ui.mini.dropdown,
-.ui.mini.dropdown .menu > .item {
- font-size: 0.78571429rem;
-}
-
-.ui.tiny.dropdown,
-.ui.tiny.dropdown .menu > .item {
- font-size: 0.85714286rem;
-}
-
-.ui.small.dropdown,
-.ui.small.dropdown .menu > .item {
- font-size: 0.92857143rem;
-}
-
-.ui.large.dropdown,
-.ui.large.dropdown .menu > .item {
- font-size: 1.14285714rem;
-}
-
-.ui.big.dropdown,
-.ui.big.dropdown .menu > .item {
- font-size: 1.28571429rem;
-}
-
-.ui.huge.dropdown,
-.ui.huge.dropdown .menu > .item {
- font-size: 1.42857143rem;
-}
-
-.ui.massive.dropdown,
-.ui.massive.dropdown .menu > .item {
- font-size: 1.71428571rem;
-}
-
-/*--------------
- Inverted
- ---------------*/
-
-/* General rules and basic dropdowns */
-
-.ui.inverted.dropdown .menu {
- background: #1B1C1D;
- -webkit-box-shadow: none;
- box-shadow: none;
- border: 1px solid rgba(255, 255, 255, 0.15);
-}
-
-.ui.inverted.dropdown .menu > .item {
- color: rgba(255, 255, 255, 0.8);
-}
-
-.ui.inverted.dropdown .menu .active.item {
- background: transparent;
- color: rgba(255, 255, 255, 0.8);
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.inverted.dropdown .menu > .item:hover {
- background: rgba(255, 255, 255, 0.08);
- color: rgba(255, 255, 255, 0.8);
-}
-
-.ui.inverted.dropdown.selected,
-.ui.inverted.dropdown .menu .selected.item {
- background: rgba(255, 255, 255, 0.15);
- color: rgba(255, 255, 255, 0.8);
-}
-
-.ui.inverted.dropdown .menu > .header {
- color: #FFFFFF;
-}
-
-.ui.inverted.dropdown > .text > .description,
-.ui.inverted.dropdown .menu > .item > .description {
- color: rgba(255, 255, 255, 0.5);
-}
-
-.ui.inverted.dropdown .menu > .divider {
- border-top: 1px solid rgba(255, 255, 255, 0.15);
-}
-
-.ui.inverted.dropdown .scrolling.menu {
- border: none;
- border-top: 1px solid rgba(255, 255, 255, 0.15);
-}
-
-/* Selection */
-
-.ui.inverted.selection.dropdown {
- border: 1px solid rgba(255, 255, 255, 0.15);
- background: #1B1C1D;
- color: rgba(255, 255, 255, 0.8);
-}
-
-.ui.inverted.selection.dropdown:hover {
- border-color: rgba(255, 255, 255, 0.25);
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.inverted.selection.dropdown input {
- color: #FFFFFF;
-}
-
-.ui.inverted.selection.visible.dropdown > .text:not(.default) {
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.selection.active.dropdown .menu,
-.ui.inverted.selection.active.dropdown:hover {
- border-color: rgba(255, 255, 255, 0.15);
-}
-
-.ui.inverted.selection.dropdown .menu > .item {
- border-top: 1px solid #242526;
-}
-
-.ui.inverted.dropdown:not(.button) > .default.text,
-.ui.inverted.default.dropdown:not(.button) > .text {
- color: rgba(255, 255, 255, 0.5);
-}
-
-.ui.inverted.dropdown:not(.button) > input:focus ~ .default.text,
-.ui.inverted.default.dropdown:not(.button) > input:focus ~ .text {
- color: rgba(255, 255, 255, 0.7);
-}
-
-.ui.inverted.active.search.dropdown input.search:focus + .text .icon,
-.ui.inverted.active.search.dropdown input.search:focus + .text .flag {
- opacity: 0.45;
-}
-
-.ui.inverted.active.search.dropdown input.search:focus + .text {
- color: rgba(255, 255, 255, 0.7) !important;
-}
-
-.ui.inverted.dropdown .menu > .message:not(.ui) {
- color: rgba(255, 255, 255, 0.5);
-}
-
-/* Fixing the border */
-
-.ui.inverted.dropdown .menu > .item:first-child {
- border-top-width: 0;
-}
-
-/* Labels */
-
-.ui.inverted.multiple.dropdown > .label {
- background-color: rgba(255, 255, 255, 0.7);
- background-image: none;
- color: #000000;
- -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0) inset;
- box-shadow: 0 0 0 1px rgba(255, 255, 255, 0) inset;
-}
-
-.ui.inverted.multiple.dropdown > .label:hover {
- background-color: rgba(255, 255, 255, 0.9);
- border-color: rgba(255, 255, 255, 0.9);
- background-image: none;
- color: #000000;
-}
-
-.ui.inverted.multiple.dropdown > .label > .close.icon,
-.ui.inverted.multiple.dropdown > .label > .delete.icon {
- opacity: 0.6;
-}
-
-.ui.inverted.multiple.dropdown > .label > .close.icon:hover,
-.ui.inverted.multiple.dropdown > .label > .delete.icon:hover {
- opacity: 0.8;
-}
-
-/* Selection for form elements */
-
-.ui.inverted.dropdown textarea::-webkit-selection,
-.ui.inverted.dropdown input::-webkit-selection {
- background-color: rgba(255, 255, 255, 0.25);
- color: rgba(255, 255, 255, 0.8);
-}
-
-.ui.inverted.dropdown textarea::-moz-selection,
-.ui.inverted.dropdown input::-moz-selection {
- background-color: rgba(255, 255, 255, 0.25);
- color: rgba(255, 255, 255, 0.8);
-}
-
-.ui.inverted.dropdown textarea::selection,
-.ui.inverted.dropdown input::selection {
- background-color: rgba(255, 255, 255, 0.25);
- color: rgba(255, 255, 255, 0.8);
-}
-
-/* Scrollbars */
-
-.ui.inverted.dropdown .menu::-webkit-scrollbar-track {
- background: rgba(255, 255, 255, 0.1);
-}
-
-.ui.inverted.dropdown .menu::-webkit-scrollbar-thumb {
- background: rgba(255, 255, 255, 0.25);
-}
-
-.ui.inverted.dropdown .menu::-webkit-scrollbar-thumb:window-inactive {
- background: rgba(255, 255, 255, 0.15);
-}
-
-.ui.inverted.dropdown .menu::-webkit-scrollbar-thumb:hover {
- background: rgba(255, 255, 255, 0.35);
-}
-
-.ui.inverted.pointing.dropdown > .menu:after {
- background: #1B1C1D;
- -webkit-box-shadow: -1px -1px 0 0 rgba(255, 255, 255, 0.15);
- box-shadow: -1px -1px 0 0 rgba(255, 255, 255, 0.15);
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/* Dropdown Carets */
-
-@font-face {
- font-family: 'Dropdown';
- src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfuIIAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zjo82LgAAAFwAAABVGhlYWQAQ88bAAACxAAAADZoaGVhAwcB6QAAAvwAAAAkaG10eAS4ABIAAAMgAAAAIGxvY2EBNgDeAAADQAAAABJtYXhwAAoAFgAAA1QAAAAgbmFtZVcZpu4AAAN0AAABRXBvc3QAAwAAAAAEvAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDX//3//wAB/+MPLQADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAIABJQElABMAABM0NzY3BTYXFhUUDwEGJwYvASY1AAUGBwEACAUGBoAFCAcGgAUBEgcGBQEBAQcECQYHfwYBAQZ/BwYAAQAAAG4BJQESABMAADc0PwE2MzIfARYVFAcGIyEiJyY1AAWABgcIBYAGBgUI/wAHBgWABwaABQWABgcHBgUFBgcAAAABABIASQC3AW4AEwAANzQ/ATYXNhcWHQEUBwYnBi8BJjUSBoAFCAcFBgYFBwgFgAbbBwZ/BwEBBwQJ/wgEBwEBB38GBgAAAAABAAAASQClAW4AEwAANxE0NzYzMh8BFhUUDwEGIyInJjUABQYHCAWABgaABQgHBgVbAQAIBQYGgAUIBwWABgYFBwAAAAEAAAABAADZuaKOXw889QALAgAAAAAA0ABHWAAAAADQAEdYAAAAAAElAW4AAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAASUAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAASUAAAElAAAAtwASALcAAAAAAAAACgAUAB4AQgBkAIgAqgAAAAEAAAAIABQAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAOAAAAAQAAAAAAAgAOAEcAAQAAAAAAAwAOACQAAQAAAAAABAAOAFUAAQAAAAAABQAWAA4AAQAAAAAABgAHADIAAQAAAAAACgA0AGMAAwABBAkAAQAOAAAAAwABBAkAAgAOAEcAAwABBAkAAwAOACQAAwABBAkABAAOAFUAAwABBAkABQAWAA4AAwABBAkABgAOADkAAwABBAkACgA0AGMAaQBjAG8AbQBvAG8AbgBWAGUAcgBzAGkAbwBuACAAMQAuADAAaQBjAG8AbQBvAG8Abmljb21vb24AaQBjAG8AbQBvAG8AbgBSAGUAZwB1AGwAYQByAGkAYwBvAG0AbwBvAG4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=) format('truetype'), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVwAAoAAAAABSgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAdkAAAHZLDXE/09TLzIAAALQAAAAYAAAAGAIIweQY21hcAAAAzAAAABMAAAATA9+4ghnYXNwAAADfAAAAAgAAAAIAAAAEGhlYWQAAAOEAAAANgAAADYAQ88baGhlYQAAA7wAAAAkAAAAJAMHAelobXR4AAAD4AAAACAAAAAgBLgAEm1heHAAAAQAAAAABgAAAAYACFAAbmFtZQAABAgAAAFFAAABRVcZpu5wb3N0AAAFUAAAACAAAAAgAAMAAAEABAQAAQEBCGljb21vb24AAQIAAQA6+BwC+BsD+BgEHgoAGVP/i4seCgAZU/+LiwwHi2v4lPh0BR0AAACIDx0AAACNER0AAAAJHQAAAdASAAkBAQgPERMWGyAlKmljb21vb25pY29tb29udTB1MXUyMHVGMEQ3dUYwRDh1RjBEOXVGMERBAAACAYkABgAIAgABAAQABwAKAA0AVgCfAOgBL/yUDvyUDvyUDvuUDvtvi/emFYuQjZCOjo+Pj42Qiwj3lIsFkIuQiY6Hj4iNhouGi4aJh4eHCPsU+xQFiIiGiYaLhouHjYeOCPsU9xQFiI+Jj4uQCA77b4v3FBWLkI2Pjo8I9xT3FAWPjo+NkIuQi5CJjogI9xT7FAWPh42Hi4aLhomHh4eIiIaJhosI+5SLBYaLh42HjoiPiY+LkAgO+92d928Vi5CNkI+OCPcU9xQFjo+QjZCLkIuPiY6Hj4iNhouGCIv7lAWLhomHh4iIh4eJhouGi4aNiI8I+xT3FAWHjomPi5AIDvvdi+YVi/eUBYuQjZCOjo+Pj42Qi5CLkImOhwj3FPsUBY+IjYaLhouGiYeHiAj7FPsUBYiHhomGi4aLh42Hj4iOiY+LkAgO+JQU+JQViwwKAAAAAAMCAAGQAAUAAAFMAWYAAABHAUwBZgAAAPUAGQCEAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA8NoB4P/g/+AB4AAgAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDw2v/9//8AAAAAACDw1//9//8AAf/jDy0AAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAA5emozXw889QALAgAAAAAA0ABHWAAAAADQAEdYAAAAAAElAW4AAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAASUAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAASUAAAElAAAAtwASALcAAAAAUAAACAAAAAAADgCuAAEAAAAAAAEADgAAAAEAAAAAAAIADgBHAAEAAAAAAAMADgAkAAEAAAAAAAQADgBVAAEAAAAAAAUAFgAOAAEAAAAAAAYABwAyAAEAAAAAAAoANABjAAMAAQQJAAEADgAAAAMAAQQJAAIADgBHAAMAAQQJAAMADgAkAAMAAQQJAAQADgBVAAMAAQQJAAUAFgAOAAMAAQQJAAYADgA5AAMAAQQJAAoANABjAGkAYwBvAG0AbwBvAG4AVgBlAHIAcwBpAG8AbgAgADEALgAwAGkAYwBvAG0AbwBvAG5pY29tb29uAGkAYwBvAG0AbwBvAG4AUgBlAGcAdQBsAGEAcgBpAGMAbwBtAG8AbwBuAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('woff');
- font-weight: normal;
- font-style: normal;
-}
-
-.ui.dropdown > .dropdown.icon {
- font-family: 'Dropdown';
- line-height: 1;
- height: 1em;
- width: 1.23em;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- font-weight: normal;
- font-style: normal;
- text-align: center;
-}
-
-.ui.dropdown > .dropdown.icon {
- width: auto;
-}
-
-.ui.dropdown > .dropdown.icon:before {
- content: '\f0d7';
-}
-
-/* Sub Menu */
-
-.ui.dropdown .menu .item .dropdown.icon:before {
- content: '\f0da' ;
-}
-
-.ui.dropdown .item .left.dropdown.icon:before,
-.ui.dropdown .left.menu .item .dropdown.icon:before {
- content: "\f0d9" ;
-}
-
-/* Vertical Menu Dropdown */
-
-.ui.vertical.menu .dropdown.item > .dropdown.icon:before {
- content: "\f0da" ;
-}
-
-/* Icons for Reference
-.dropdown.down.icon {
- content: "\f0d7";
-}
-.dropdown.up.icon {
- content: "\f0d8";
-}
-.dropdown.left.icon {
- content: "\f0d9";
-}
-.dropdown.icon.icon {
- content: "\f0da";
-}
-*/
-
-/*******************************
- User Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Video
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Types
-*******************************/
-
-.ui.embed {
- position: relative;
- max-width: 100%;
- height: 0;
- overflow: hidden;
- background: #DCDDDE;
- padding-bottom: 56.25%;
-}
-
-/*-----------------
- Embedded Content
-------------------*/
-
-.ui.embed iframe,
-.ui.embed embed,
-.ui.embed object {
- position: absolute;
- border: none;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- margin: 0;
- padding: 0;
- overflow: hidden;
-}
-
-/*-----------------
- Embed
-------------------*/
-
-.ui.embed > .embed {
- display: none;
-}
-
-/*--------------
- Placeholder
----------------*/
-
-.ui.embed > .placeholder {
- position: absolute;
- cursor: pointer;
- top: 0;
- left: 0;
- display: block;
- width: 100%;
- height: 100%;
- background-color: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
-}
-
-/*--------------
- Icon
----------------*/
-
-.ui.embed > .icon {
- cursor: pointer;
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 2;
-}
-
-.ui.embed > .icon:after {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 3;
- content: '';
- background: -webkit-radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
- background: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
- opacity: 0.5;
- -webkit-transition: opacity 0.5s ease;
- transition: opacity 0.5s ease;
-}
-
-.ui.embed > .icon:before {
- position: absolute;
- top: 50%;
- left: 50%;
- -webkit-transform: translateX(-50%) translateY(-50%);
- transform: translateX(-50%) translateY(-50%);
- color: #FFFFFF;
- font-size: 6rem;
- text-shadow: 0 2px 10px rgba(34, 36, 38, 0.2);
- -webkit-transition: opacity 0.5s ease, color 0.5s ease;
- transition: opacity 0.5s ease, color 0.5s ease;
- z-index: 10;
-}
-
-/*******************************
- States
-*******************************/
-
-/*--------------
- Hover
----------------*/
-
-.ui.embed .icon:hover:after {
- background: -webkit-radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
- background: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
- opacity: 1;
-}
-
-.ui.embed .icon:hover:before {
- color: #FFFFFF;
-}
-
-/*--------------
- Active
----------------*/
-
-.ui.active.embed > .icon,
-.ui.active.embed > .placeholder {
- display: none;
-}
-
-.ui.active.embed > .embed {
- display: block;
-}
-
-/*******************************
- Variations
-*******************************/
-
-.ui.square.embed {
- padding-bottom: 100%;
-}
-
-.ui[class*="4:3"].embed {
- padding-bottom: 75%;
-}
-
-.ui[class*="16:9"].embed {
- padding-bottom: 56.25%;
-}
-
-.ui[class*="21:9"].embed {
- padding-bottom: 42.85714286%;
-}
-
-/*******************************
- Video Overrides
-*******************************/
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Modal
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Modal
-*******************************/
-
-.ui.modal {
- position: absolute;
- display: none;
- z-index: 1001;
- text-align: left;
- background: #FFFFFF;
- border: none;
- -webkit-box-shadow: 1px 3px 3px 0 rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2);
- box-shadow: 1px 3px 3px 0 rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2);
- -webkit-transform-origin: 50% 25%;
- transform-origin: 50% 25%;
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- border-radius: 0.28571429rem;
- -webkit-user-select: text;
- -moz-user-select: text;
- -ms-user-select: text;
- user-select: text;
- will-change: top, left, margin, transform, opacity;
-}
-
-.ui.modal > :first-child:not(.icon):not(.dimmer),
-.ui.modal > .icon:first-child + *,
-.ui.modal > .dimmer:first-child + *:not(.icon),
-.ui.modal > .dimmer:first-child + .icon + * {
- border-top-left-radius: 0.28571429rem;
- border-top-right-radius: 0.28571429rem;
-}
-
-.ui.modal > :last-child {
- border-bottom-left-radius: 0.28571429rem;
- border-bottom-right-radius: 0.28571429rem;
-}
-
-/*******************************
- Content
-*******************************/
-
-/*--------------
- Close
----------------*/
-
-.ui.modal > .close {
- cursor: pointer;
- position: absolute;
- top: -2.5rem;
- right: -2.5rem;
- z-index: 1;
- opacity: 0.8;
- font-size: 1.25em;
- color: #FFFFFF;
- width: 2.25rem;
- height: 2.25rem;
- padding: 0.625rem 0 0 0;
-}
-
-.ui.modal > .close:hover {
- opacity: 1;
-}
-
-/*--------------
- Header
----------------*/
-
-.ui.modal > .header {
- display: block;
- font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
- background: #FFFFFF;
- margin: 0;
- padding: 1.25rem 1.5rem;
- -webkit-box-shadow: none;
- box-shadow: none;
- color: rgba(0, 0, 0, 0.85);
- border-bottom: 1px solid rgba(34, 36, 38, 0.15);
-}
-
-.ui.modal > .header:not(.ui) {
- font-size: 1.42857143rem;
- line-height: 1.28571429em;
- font-weight: bold;
-}
-
-/*--------------
- Content
----------------*/
-
-.ui.modal > .content {
- display: block;
- width: 100%;
- font-size: 1em;
- line-height: 1.4;
- padding: 1.5rem;
- background: #FFFFFF;
-}
-
-.ui.modal > .image.content {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -ms-flex-direction: row;
- flex-direction: row;
-}
-
-/* Image */
-
-.ui.modal > .content > .image {
- display: block;
- -webkit-box-flex: 0;
- -ms-flex: 0 1 auto;
- flex: 0 1 auto;
- width: '';
- -ms-flex-item-align: start;
- align-self: start;
- max-width: 100%;
-}
-
-.ui.modal > [class*="top aligned"] {
- -ms-flex-item-align: start;
- align-self: start;
-}
-
-.ui.modal > [class*="middle aligned"] {
- -ms-flex-item-align: center;
- align-self: center;
-}
-
-.ui.modal > [class*="stretched"] {
- -ms-flex-item-align: stretch;
- align-self: stretch;
-}
-
-/* Description */
-
-.ui.modal > .content > .description {
- display: block;
- -webkit-box-flex: 1;
- -ms-flex: 1 0 auto;
- flex: 1 0 auto;
- min-width: 0;
- -ms-flex-item-align: start;
- align-self: start;
-}
-
-.ui.modal > .content > .icon + .description,
-.ui.modal > .content > .image + .description {
- -webkit-box-flex: 0;
- -ms-flex: 0 1 auto;
- flex: 0 1 auto;
- min-width: '';
- width: auto;
- padding-left: 2em;
-}
-
-/*rtl:ignore*/
-
-.ui.modal > .content > .image > i.icon {
- margin: 0;
- opacity: 1;
- width: auto;
- line-height: 1;
- font-size: 8rem;
-}
-
-/*--------------
- Actions
----------------*/
-
-.ui.modal > .actions {
- background: #F9FAFB;
- padding: 1rem 1rem;
- border-top: 1px solid rgba(34, 36, 38, 0.15);
- text-align: right;
-}
-
-.ui.modal .actions > .button {
- margin-left: 0.75em;
-}
-
-.ui.basic.modal > .actions {
- border-top: none;
-}
-
-/*-------------------
- Responsive
---------------------*/
-
-/* Modal Width */
-
-@media only screen and (max-width: 767.98px) {
- .ui.modal:not(.fullscreen) {
- width: 95%;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 768px) {
- .ui.modal:not(.fullscreen) {
- width: 88%;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 992px) {
- .ui.modal:not(.fullscreen) {
- width: 850px;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 1200px) {
- .ui.modal:not(.fullscreen) {
- width: 900px;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 1920px) {
- .ui.modal:not(.fullscreen) {
- width: 950px;
- margin: 0 0 0 0;
- }
-}
-
-/* Tablet and Mobile */
-
-@media only screen and (max-width: 991.98px) {
- .ui.modal > .header {
- padding-right: 2.25rem;
- }
-
- .ui.modal > .close {
- top: 1.0535rem;
- right: 1rem;
- color: rgba(0, 0, 0, 0.87);
- }
-}
-
-/* Mobile */
-
-@media only screen and (max-width: 767.98px) {
- .ui.modal > .header {
- padding: 0.75rem 1rem !important;
- padding-right: 2.25rem !important;
- }
-
- .ui.overlay.fullscreen.modal > .content.content.content {
- min-height: calc(100vh - 8.1rem);
- }
-
- .ui.overlay.fullscreen.modal > .scrolling.content.content.content {
- max-height: calc(100vh - 8.1rem);
- }
-
- .ui.modal > .content {
- display: block;
- padding: 1rem !important;
- }
-
- .ui.modal > .close {
- top: 0.5rem !important;
- right: 0.5rem !important;
- }
-
- /*rtl:ignore*/
-
- .ui.modal .image.content {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- }
-
- .ui.modal .content > .image {
- display: block;
- max-width: 100%;
- margin: 0 auto !important;
- text-align: center;
- padding: 0 0 1rem !important;
- }
-
- .ui.modal > .content > .image > i.icon {
- font-size: 5rem;
- text-align: center;
- }
-
- /*rtl:ignore*/
-
- .ui.modal .content > .description {
- display: block;
- width: 100% !important;
- margin: 0 !important;
- padding: 1rem 0 !important;
- -webkit-box-shadow: none;
- box-shadow: none;
- }
-
- /* Let Buttons Stack */
-
- .ui.modal > .actions {
- padding: 1rem 1rem 0rem !important;
- }
-
- .ui.modal .actions > .buttons,
- .ui.modal .actions > .button {
- margin-bottom: 1rem;
- }
-}
-
-/*--------------
- Coupling
----------------*/
-
-.ui.inverted.dimmer > .ui.modal {
- -webkit-box-shadow: 1px 3px 10px 2px rgba(0, 0, 0, 0.2);
- box-shadow: 1px 3px 10px 2px rgba(0, 0, 0, 0.2);
-}
-
-/*******************************
- Types
-*******************************/
-
-.ui.basic.modal {
- background-color: transparent;
- border: none;
- border-radius: 0;
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
- color: #FFFFFF;
-}
-
-.ui.basic.modal > .header,
-.ui.basic.modal > .content,
-.ui.basic.modal > .actions {
- background-color: transparent;
-}
-
-.ui.basic.modal > .header {
- color: #FFFFFF;
-}
-
-.ui.basic.modal > .close {
- top: 1rem;
- right: 1.5rem;
- color: #FFFFFF;
-}
-
-.ui.inverted.dimmer > .basic.modal {
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.inverted.dimmer > .ui.basic.modal > .header {
- color: rgba(0, 0, 0, 0.85);
-}
-
-/* Resort to margin positioning if legacy */
-
-.ui.legacy.legacy.modal,
-.ui.legacy.legacy.page.dimmer > .ui.modal {
- left: 50% !important;
-}
-
-.ui.legacy.legacy.modal:not(.aligned),
-.ui.legacy.legacy.page.dimmer > .ui.modal:not(.aligned) {
- top: 50%;
-}
-
-.ui.legacy.legacy.page.dimmer > .ui.scrolling.modal:not(.aligned),
-.ui.page.dimmer > .ui.scrolling.legacy.legacy.modal:not(.aligned),
-.ui.top.aligned.legacy.legacy.page.dimmer > .ui.modal:not(.aligned),
-.ui.top.aligned.dimmer > .ui.legacy.legacy.modal:not(.aligned) {
- top: auto;
-}
-
-.ui.legacy.overlay.fullscreen.modal {
- margin-top: -2rem !important;
-}
-
-/*******************************
- States
-*******************************/
-
-.ui.loading.modal {
- display: block;
- visibility: hidden;
- z-index: -1;
-}
-
-.ui.active.modal {
- display: block;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*--------------
- Aligned
- ---------------*/
-
-.modals.dimmer .ui.top.aligned.modal {
- top: 5vh;
-}
-
-.modals.dimmer .ui.bottom.aligned.modal {
- bottom: 5vh;
-}
-
-@media only screen and (max-width: 767.98px) {
- .modals.dimmer .ui.top.aligned.modal {
- top: 1rem;
- }
-
- .modals.dimmer .ui.bottom.aligned.modal {
- bottom: 1rem;
- }
-}
-
-/*--------------
- Scrolling
- ---------------*/
-
-/* Scrolling Dimmer */
-
-.scrolling.dimmable.dimmed {
- overflow: hidden;
-}
-
-.scrolling.dimmable > .dimmer {
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
- position: fixed;
-}
-
-.scrolling.dimmable.dimmed > .dimmer {
- overflow: auto;
- -webkit-overflow-scrolling: touch;
-}
-
-.modals.dimmer .ui.scrolling.modal:not(.fullscreen) {
- margin: 2rem auto;
-}
-
-/* Fix for Firefox, Edge, IE11 */
-
-.modals.dimmer .ui.scrolling.modal:not([class*="overlay fullscreen"])::after {
- content: '\00A0';
- position: absolute;
- height: 2rem;
-}
-
-/* Undetached Scrolling */
-
-.scrolling.undetached.dimmable.dimmed {
- overflow: auto;
- -webkit-overflow-scrolling: touch;
-}
-
-.scrolling.undetached.dimmable.dimmed > .dimmer {
- overflow: hidden;
-}
-
-.scrolling.undetached.dimmable .ui.scrolling.modal:not(.fullscreen) {
- position: absolute;
- left: 50%;
-}
-
-/* Scrolling Content */
-
-.ui.modal > .scrolling.content {
- max-height: calc(80vh - 10rem);
- overflow: auto;
-}
-
-.ui.overlay.fullscreen.modal > .content {
- min-height: calc(100vh - 9.1rem);
-}
-
-.ui.overlay.fullscreen.modal > .scrolling.content {
- max-height: calc(100vh - 9.1rem);
-}
-
-/*--------------
- Full Screen
- ---------------*/
-
-.ui.fullscreen.modal {
- width: 95%;
- left: 2.5%;
- margin: 1em auto;
-}
-
-.ui.overlay.fullscreen.modal {
- width: 100%;
- left: 0;
- margin: 0 auto;
- top: 0;
- border-radius: 0;
-}
-
-.ui.modal > .close.inside + .header,
-.ui.fullscreen.modal > .header {
- padding-right: 2.25rem;
-}
-
-.ui.modal > .close.inside,
-.ui.fullscreen.modal > .close {
- top: 1.0535rem;
- right: 1rem;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.basic.fullscreen.modal > .close {
- color: #FFFFFF;
-}
-
-/*--------------
- Size
----------------*/
-
-.ui.modal {
- font-size: 1rem;
-}
-
-.ui.mini.modal > .header:not(.ui) {
- font-size: 1.3em;
-}
-
-@media only screen and (max-width: 767.98px) {
- .ui.mini.modal {
- width: 95%;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 768px) {
- .ui.mini.modal {
- width: 35.2%;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 992px) {
- .ui.mini.modal {
- width: 340px;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 1200px) {
- .ui.mini.modal {
- width: 360px;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 1920px) {
- .ui.mini.modal {
- width: 380px;
- margin: 0 0 0 0;
- }
-}
-
-.ui.tiny.modal > .header:not(.ui) {
- font-size: 1.3em;
-}
-
-@media only screen and (max-width: 767.98px) {
- .ui.tiny.modal {
- width: 95%;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 768px) {
- .ui.tiny.modal {
- width: 52.8%;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 992px) {
- .ui.tiny.modal {
- width: 510px;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 1200px) {
- .ui.tiny.modal {
- width: 540px;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 1920px) {
- .ui.tiny.modal {
- width: 570px;
- margin: 0 0 0 0;
- }
-}
-
-.ui.small.modal > .header:not(.ui) {
- font-size: 1.3em;
-}
-
-@media only screen and (max-width: 767.98px) {
- .ui.small.modal {
- width: 95%;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 768px) {
- .ui.small.modal {
- width: 70.4%;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 992px) {
- .ui.small.modal {
- width: 680px;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 1200px) {
- .ui.small.modal {
- width: 720px;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 1920px) {
- .ui.small.modal {
- width: 760px;
- margin: 0 0 0 0;
- }
-}
-
-.ui.large.modal > .header:not(.ui) {
- font-size: 1.6em;
-}
-
-@media only screen and (max-width: 767.98px) {
- .ui.large.modal {
- width: 95%;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 768px) {
- .ui.large.modal {
- width: 88%;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 992px) {
- .ui.large.modal {
- width: 1020px;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 1200px) {
- .ui.large.modal {
- width: 1080px;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 1920px) {
- .ui.large.modal {
- width: 1140px;
- margin: 0 0 0 0;
- }
-}
-
-.ui.big.modal > .header:not(.ui) {
- font-size: 1.6em;
-}
-
-@media only screen and (max-width: 767.98px) {
- .ui.big.modal {
- width: 95%;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 768px) {
- .ui.big.modal {
- width: 88%;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 992px) {
- .ui.big.modal {
- width: 1190px;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 1200px) {
- .ui.big.modal {
- width: 1260px;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 1920px) {
- .ui.big.modal {
- width: 1330px;
- margin: 0 0 0 0;
- }
-}
-
-.ui.huge.modal > .header:not(.ui) {
- font-size: 1.6em;
-}
-
-@media only screen and (max-width: 767.98px) {
- .ui.huge.modal {
- width: 95%;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 768px) {
- .ui.huge.modal {
- width: 88%;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 992px) {
- .ui.huge.modal {
- width: 1360px;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 1200px) {
- .ui.huge.modal {
- width: 1440px;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 1920px) {
- .ui.huge.modal {
- width: 1520px;
- margin: 0 0 0 0;
- }
-}
-
-.ui.massive.modal > .header:not(.ui) {
- font-size: 1.8em;
-}
-
-@media only screen and (max-width: 767.98px) {
- .ui.massive.modal {
- width: 95%;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 768px) {
- .ui.massive.modal {
- width: 88%;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 992px) {
- .ui.massive.modal {
- width: 1530px;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 1200px) {
- .ui.massive.modal {
- width: 1620px;
- margin: 0 0 0 0;
- }
-}
-
-@media only screen and (min-width: 1920px) {
- .ui.massive.modal {
- width: 1710px;
- margin: 0 0 0 0;
- }
-}
-
-/*****************************
- Inverted
- *******************************/
-
-.ui.inverted.modal {
- background: rgba(0, 0, 0, 0.9);
-}
-
-.ui.inverted.modal > .header,
-.ui.inverted.modal > .content {
- background: rgba(0, 0, 0, 0.9);
- color: #FFFFFF;
-}
-
-.ui.inverted.modal > .actions {
- background: #191A1B;
- border-top: 1px solid rgba(34, 36, 38, 0.85);
- color: #FFFFFF;
-}
-
-.ui.inverted.dimmer > .modal > .close {
- color: rgba(0, 0, 0, 0.85);
-}
-
-@media only screen and (max-width: 991.98px) {
- .ui.dimmer .inverted.modal > .close {
- color: #FFFFFF;
- }
-}
-
-.ui.inverted.modal > .close.inside,
-.ui.inverted.fullscreen.modal > .close {
- color: #FFFFFF;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Nag
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Nag
-*******************************/
-
-.ui.nag {
- display: none;
- opacity: 0.95;
- position: relative;
- top: 0;
- left: 0;
- z-index: 999;
- min-height: 0;
- width: 100%;
- margin: 0;
- padding: 0.75em 1em;
- background: #555555;
- -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
- box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
- font-size: 1rem;
- text-align: center;
- color: rgba(0, 0, 0, 0.87);
- border-radius: 0 0 0.28571429rem 0.28571429rem;
- -webkit-transition: 0.2s background ease;
- transition: 0.2s background ease;
-}
-
-a.ui.nag {
- cursor: pointer;
-}
-
-.ui.nag > .title {
- display: inline-block;
- margin: 0 0.5em;
- color: #FFFFFF;
-}
-
-.ui.nag > .close.icon {
- cursor: pointer;
- opacity: 0.4;
- position: absolute;
- top: 50%;
- right: 1em;
- font-size: 1em;
- margin: -0.5em 0 0;
- color: #FFFFFF;
- -webkit-transition: opacity 0.2s ease;
- transition: opacity 0.2s ease;
-}
-
-/*******************************
- States
-*******************************/
-
-/* Hover */
-
-.ui.nag:hover {
- background: #555555;
- opacity: 1;
-}
-
-.ui.nag .close:hover {
- opacity: 1;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*--------------
- Static
----------------*/
-
-.ui.overlay.nag {
- position: absolute;
- display: block;
-}
-
-/*--------------
- Fixed
----------------*/
-
-.ui.fixed.nag {
- position: fixed;
-}
-
-/*--------------
- Bottom
----------------*/
-
-.ui.bottom.nags,
-.ui.bottom.nag {
- border-radius: 0.28571429rem 0.28571429rem 0 0;
- top: auto;
- bottom: 0;
-}
-
-/*--------------
- White
----------------*/
-
-.ui.inverted.nags .nag,
-.ui.inverted.nag {
- background-color: #F3F4F5;
- color: rgba(0, 0, 0, 0.85);
-}
-
-.ui.inverted.nags .nag .close,
-.ui.inverted.nags .nag .title,
-.ui.inverted.nag .close,
-.ui.inverted.nag .title {
- color: rgba(0, 0, 0, 0.4);
-}
-
-/*******************************
- Groups
-*******************************/
-
-.ui.nags .nag {
- border-radius: 0 !important;
-}
-
-.ui.nags .nag:last-child {
- border-radius: 0 0 0.28571429rem 0.28571429rem;
-}
-
-.ui.bottom.nags .nag:last-child {
- border-radius: 0.28571429rem 0.28571429rem 0 0;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- User Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Loader
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*-------------------
- Content
---------------------*/
-
-.ui.placeholder {
- position: static;
- overflow: hidden;
- -webkit-animation: placeholderShimmer 2s linear;
- animation: placeholderShimmer 2s linear;
- -webkit-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- background-color: #FFFFFF;
- background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(0, 0, 0, 0.08)), color-stop(15%, rgba(0, 0, 0, 0.15)), color-stop(30%, rgba(0, 0, 0, 0.08)));
- background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.08) 0, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.08) 30%);
- background-image: linear-gradient(to right, rgba(0, 0, 0, 0.08) 0, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.08) 30%);
- background-size: 1200px 100%;
- max-width: 30rem;
-}
-
-@-webkit-keyframes placeholderShimmer {
- 0% {
- background-position: -1200px 0;
- }
-
- 100% {
- background-position: 1200px 0;
- }
-}
-
-@keyframes placeholderShimmer {
- 0% {
- background-position: -1200px 0;
- }
-
- 100% {
- background-position: 1200px 0;
- }
-}
-
-.ui.placeholder + .ui.placeholder {
- margin-top: 2rem;
-}
-
-.ui.placeholder + .ui.placeholder {
- -webkit-animation-delay: 0.15s;
- animation-delay: 0.15s;
-}
-
-.ui.placeholder + .ui.placeholder + .ui.placeholder {
- -webkit-animation-delay: 0.3s;
- animation-delay: 0.3s;
-}
-
-.ui.placeholder + .ui.placeholder + .ui.placeholder + .ui.placeholder {
- -webkit-animation-delay: 0.45s;
- animation-delay: 0.45s;
-}
-
-.ui.placeholder + .ui.placeholder + .ui.placeholder + .ui.placeholder + .ui.placeholder {
- -webkit-animation-delay: 0.6s;
- animation-delay: 0.6s;
-}
-
-.ui.placeholder,
-.ui.placeholder > :before,
-.ui.placeholder .image.header:after,
-.ui.placeholder .line,
-.ui.placeholder .line:after {
- background-color: #FFFFFF;
-}
-
-.ui.placeholder.hidden {
- display: none;
-}
-
-/* Image */
-
-.ui.placeholder .image:not(.header):not(.ui):not(.icon) {
- height: 100px;
-}
-
-.ui.placeholder .square.image:not(.header) {
- height: 0;
- overflow: hidden;
- /* 1/1 aspect ratio */
- padding-top: 100%;
-}
-
-.ui.placeholder .rectangular.image:not(.header) {
- height: 0;
- overflow: hidden;
- /* 4/3 aspect ratio */
- padding-top: 75%;
-}
-
-/* Lines */
-
-.ui.placeholder .line {
- position: relative;
- height: 0.85714286em;
-}
-
-.ui.placeholder .line:before,
-.ui.placeholder .line:after {
- top: 100%;
- position: absolute;
- content: '';
- background-color: inherit;
-}
-
-.ui.placeholder .line:before {
- left: 0;
-}
-
-.ui.placeholder .line:after {
- right: 0;
-}
-
-/* Any Lines */
-
-.ui.placeholder .line {
- margin-bottom: 0.5em;
-}
-
-.ui.placeholder .line:before,
-.ui.placeholder .line:after {
- height: 0.5em;
-}
-
-.ui.placeholder .line:not(:first-child) {
- margin-top: 0.5em;
-}
-
-/* Line Outdent */
-
-.ui.placeholder .line:nth-child(1):after {
- width: 0;
-}
-
-.ui.placeholder .line:nth-child(2):after {
- width: 50%;
-}
-
-.ui.placeholder .line:nth-child(3):after {
- width: 10%;
-}
-
-.ui.placeholder .line:nth-child(4):after {
- width: 35%;
-}
-
-.ui.placeholder .line:nth-child(5):after {
- width: 65%;
-}
-
-/* Header Image + 2 Lines */
-
-.ui.placeholder .header {
- position: relative;
- overflow: hidden;
-}
-
-/* Header Line 1 & 2*/
-
-.ui.placeholder .header .line {
- margin-bottom: 0.64285714em;
-}
-
-.ui.placeholder .header .line:before,
-.ui.placeholder .header .line:after {
- height: 0.64285714em;
-}
-
-.ui.placeholder .header .line:not(:first-child) {
- margin-top: 0.64285714em;
-}
-
-.ui.placeholder .header .line:after {
- width: 20%;
-}
-
-.ui.placeholder .header .line:nth-child(2):after {
- width: 60%;
-}
-
-/* Image Header */
-
-.ui.placeholder .image.header .line {
- margin-left: 3em;
-}
-
-.ui.placeholder .image.header .line:before {
- width: 0.71428571rem;
-}
-
-.ui.placeholder .image.header:after {
- display: block;
- height: 0.85714286em;
- content: '';
- margin-left: 3em;
-}
-
-/* Spacing */
-
-.ui.placeholder .image .line:first-child,
-.ui.placeholder .paragraph .line:first-child,
-.ui.placeholder .header .line:first-child {
- height: 0.01px;
-}
-
-.ui.placeholder .image:not(:first-child):before,
-.ui.placeholder .paragraph:not(:first-child):before,
-.ui.placeholder .header:not(:first-child):before {
- height: 1.42857143em;
- content: '';
- display: block;
-}
-
-/* Inverted Content Loader */
-
-.ui.inverted.placeholder {
- background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0.08)), color-stop(15%, rgba(255, 255, 255, 0.14)), color-stop(30%, rgba(255, 255, 255, 0.08)));
- background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.14) 15%, rgba(255, 255, 255, 0.08) 30%);
- background-image: linear-gradient(to right, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.14) 15%, rgba(255, 255, 255, 0.08) 30%);
-}
-
-.ui.inverted.placeholder,
-.ui.inverted.placeholder > :before,
-.ui.inverted.placeholder .image.header:after,
-.ui.inverted.placeholder .line,
-.ui.inverted.placeholder .line:after {
- background-color: #1B1C1D;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*-------------------
- Sizes
---------------------*/
-
-.ui.placeholder .full.line.line.line:after {
- width: 0;
-}
-
-.ui.placeholder .very.long.line.line.line:after {
- width: 10%;
-}
-
-.ui.placeholder .long.line.line.line:after {
- width: 35%;
-}
-
-.ui.placeholder .medium.line.line.line:after {
- width: 50%;
-}
-
-.ui.placeholder .short.line.line.line:after {
- width: 65%;
-}
-
-.ui.placeholder .very.short.line.line.line:after {
- width: 80%;
-}
-
-/*-------------------
- Fluid
- --------------------*/
-
-.ui.fluid.placeholder {
- max-width: none;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Popup
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Popup
-*******************************/
-
-.ui.popup {
- display: none;
- position: absolute;
- top: 0;
- right: 0;
- /* Fixes content being squished when inline (moz only) */
- min-width: -webkit-min-content;
- min-width: -moz-min-content;
- min-width: min-content;
- z-index: 1900;
- border: 1px solid #D4D4D5;
- line-height: 1.4285em;
- max-width: 250px;
- background: #FFFFFF;
- padding: 0.833em 1em;
- font-weight: normal;
- font-style: normal;
- color: rgba(0, 0, 0, 0.87);
- border-radius: 0.28571429rem;
- -webkit-box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.popup > .header {
- padding: 0;
- font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
- font-size: 1.14285714em;
- line-height: 1.2;
- font-weight: bold;
-}
-
-.ui.popup > .header + .content {
- padding-top: 0.5em;
-}
-
-.ui.popup:before {
- position: absolute;
- content: '';
- width: 0.71428571em;
- height: 0.71428571em;
- background: #FFFFFF;
- -webkit-transform: rotate(45deg);
- transform: rotate(45deg);
- z-index: 1901;
- -webkit-box-shadow: 1px 1px 0 0 #bababc;
- box-shadow: 1px 1px 0 0 #bababc;
-}
-
-/*******************************
- Types
-*******************************/
-
-/*--------------
- Tooltip
- ---------------*/
-
-/* Content */
-
-[data-tooltip] {
- position: relative;
-}
-
-/* Arrow */
-
-[data-tooltip]:before {
- pointer-events: none;
- position: absolute;
- content: '';
- font-size: 1rem;
- width: 0.71428571em;
- height: 0.71428571em;
- background: #FFFFFF;
- -webkit-transform: rotate(45deg);
- transform: rotate(45deg);
- z-index: 1901;
- -webkit-box-shadow: 1px 1px 0 0 #bababc;
- box-shadow: 1px 1px 0 0 #bababc;
-}
-
-/* Popup */
-
-[data-tooltip]:after {
- pointer-events: none;
- content: attr(data-tooltip);
- position: absolute;
- text-transform: none;
- text-align: left;
- white-space: nowrap;
- font-size: 1rem;
- border: 1px solid #D4D4D5;
- line-height: 1.4285em;
- max-width: none;
- background: #FFFFFF;
- padding: 0.833em 1em;
- font-weight: normal;
- font-style: normal;
- color: rgba(0, 0, 0, 0.87);
- border-radius: 0.28571429rem;
- -webkit-box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- z-index: 1900;
-}
-
-/* Default Position (Top Center) */
-
-[data-tooltip]:not([data-position]):before {
- top: auto;
- right: auto;
- bottom: 100%;
- left: 50%;
- background: #FFFFFF;
- margin-left: -0.07142857rem;
- margin-bottom: 0.14285714rem;
-}
-
-[data-tooltip]:not([data-position]):after {
- left: 50%;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
- bottom: 100%;
- margin-bottom: 0.5em;
-}
-
-/* Animation */
-
-[data-tooltip]:before,
-[data-tooltip]:after {
- pointer-events: none;
- visibility: hidden;
- opacity: 0;
- -webkit-transition: opacity 0.1s ease, -webkit-transform 0.1s ease;
- transition: opacity 0.1s ease, -webkit-transform 0.1s ease;
- transition: transform 0.1s ease, opacity 0.1s ease;
- transition: transform 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease;
-}
-
-[data-tooltip]:before {
- -webkit-transform: rotate(45deg) scale(0) !important;
- transform: rotate(45deg) scale(0) !important;
- -webkit-transform-origin: center top;
- transform-origin: center top;
-}
-
-[data-tooltip]:after {
- -webkit-transform-origin: center bottom;
- transform-origin: center bottom;
-}
-
-[data-tooltip]:hover:before,
-[data-tooltip]:hover:after {
- visibility: visible;
- pointer-events: auto;
- opacity: 1;
-}
-
-[data-tooltip]:hover:before {
- -webkit-transform: rotate(45deg) scale(1) !important;
- transform: rotate(45deg) scale(1) !important;
-}
-
-/* Animation Position */
-
-[data-tooltip]:after,
-[data-tooltip][data-position="top center"]:after,
-[data-tooltip][data-position="bottom center"]:after {
- -webkit-transform: translateX(-50%) scale(0) !important;
- transform: translateX(-50%) scale(0) !important;
-}
-
-[data-tooltip]:hover:after,
-[data-tooltip][data-position="bottom center"]:hover:after {
- -webkit-transform: translateX(-50%) scale(1) !important;
- transform: translateX(-50%) scale(1) !important;
-}
-
-[data-tooltip][data-position="left center"]:after,
-[data-tooltip][data-position="right center"]:after {
- -webkit-transform: translateY(-50%) scale(0) !important;
- transform: translateY(-50%) scale(0) !important;
-}
-
-[data-tooltip][data-position="left center"]:hover:after,
-[data-tooltip][data-position="right center"]:hover:after {
- -webkit-transform: translateY(-50%) scale(1) !important;
- transform: translateY(-50%) scale(1) !important;
-}
-
-[data-tooltip][data-position="top left"]:after,
-[data-tooltip][data-position="top right"]:after,
-[data-tooltip][data-position="bottom left"]:after,
-[data-tooltip][data-position="bottom right"]:after {
- -webkit-transform: scale(0) !important;
- transform: scale(0) !important;
-}
-
-[data-tooltip][data-position="top left"]:hover:after,
-[data-tooltip][data-position="top right"]:hover:after,
-[data-tooltip][data-position="bottom left"]:hover:after,
-[data-tooltip][data-position="bottom right"]:hover:after {
- -webkit-transform: scale(1) !important;
- transform: scale(1) !important;
-}
-
-[data-tooltip][data-variation~="fixed"]:after {
- white-space: normal;
- width: 250px;
-}
-
-[data-tooltip][data-variation*="wide fixed"]:after {
- width: 350px;
-}
-
-[data-tooltip][data-variation*="very wide fixed"]:after {
- width: 550px;
-}
-
-@media only screen and (max-width: 767.98px) {
- [data-tooltip][data-variation~="fixed"]:after {
- width: 250px;
- }
-}
-
-/*--------------
- Inverted
- ---------------*/
-
-/* Arrow */
-
-[data-tooltip][data-inverted]:before {
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
-}
-
-/* Arrow Position */
-
-[data-tooltip][data-inverted]:before {
- background: #1B1C1D;
-}
-
-/* Popup */
-
-[data-tooltip][data-inverted]:after {
- background: #1B1C1D;
- color: #FFFFFF;
- border: none;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-[data-tooltip][data-inverted]:after .header {
- background: none;
- color: #FFFFFF;
-}
-
-/*--------------
- Position
- ---------------*/
-
-[data-position~="top"][data-tooltip]:before {
- background: #FFFFFF;
-}
-
-/* Top Center */
-
-[data-position="top center"][data-tooltip]:after {
- top: auto;
- right: auto;
- left: 50%;
- bottom: 100%;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
- margin-bottom: 0.5em;
-}
-
-[data-position="top center"][data-tooltip]:before {
- top: auto;
- right: auto;
- bottom: 100%;
- left: 50%;
- background: #FFFFFF;
- margin-left: -0.07142857rem;
- margin-bottom: 0.14285714rem;
-}
-
-/* Top Left */
-
-[data-position="top left"][data-tooltip]:after {
- top: auto;
- right: auto;
- left: 0;
- bottom: 100%;
- margin-bottom: 0.5em;
-}
-
-[data-position="top left"][data-tooltip]:before {
- top: auto;
- right: auto;
- bottom: 100%;
- left: 1em;
- margin-left: -0.07142857rem;
- margin-bottom: 0.14285714rem;
-}
-
-/* Top Right */
-
-[data-position="top right"][data-tooltip]:after {
- top: auto;
- left: auto;
- right: 0;
- bottom: 100%;
- margin-bottom: 0.5em;
-}
-
-[data-position="top right"][data-tooltip]:before {
- top: auto;
- left: auto;
- bottom: 100%;
- right: 1em;
- margin-left: -0.07142857rem;
- margin-bottom: 0.14285714rem;
-}
-
-[data-position~="bottom"][data-tooltip]:before {
- background: #FFFFFF;
- -webkit-box-shadow: -1px -1px 0 0 #bababc;
- box-shadow: -1px -1px 0 0 #bababc;
-}
-
-/* Bottom Center */
-
-[data-position="bottom center"][data-tooltip]:after {
- bottom: auto;
- right: auto;
- left: 50%;
- top: 100%;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
- margin-top: 0.5em;
-}
-
-[data-position="bottom center"][data-tooltip]:before {
- bottom: auto;
- right: auto;
- top: 100%;
- left: 50%;
- margin-left: -0.07142857rem;
- margin-top: 0.14285714rem;
-}
-
-/* Bottom Left */
-
-[data-position="bottom left"][data-tooltip]:after {
- left: 0;
- top: 100%;
- margin-top: 0.5em;
-}
-
-[data-position="bottom left"][data-tooltip]:before {
- bottom: auto;
- right: auto;
- top: 100%;
- left: 1em;
- margin-left: -0.07142857rem;
- margin-top: 0.14285714rem;
-}
-
-/* Bottom Right */
-
-[data-position="bottom right"][data-tooltip]:after {
- right: 0;
- top: 100%;
- margin-top: 0.5em;
-}
-
-[data-position="bottom right"][data-tooltip]:before {
- bottom: auto;
- left: auto;
- top: 100%;
- right: 1em;
- margin-left: -0.14285714rem;
- margin-top: 0.07142857rem;
-}
-
-/* Left Center */
-
-[data-position="left center"][data-tooltip]:after {
- right: 100%;
- top: 50%;
- margin-right: 0.5em;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
-}
-
-[data-position="left center"][data-tooltip]:before {
- right: 100%;
- top: 50%;
- margin-top: -0.14285714rem;
- margin-right: -0.07142857rem;
- background: #FFFFFF;
- -webkit-box-shadow: 1px -1px 0 0 #bababc;
- box-shadow: 1px -1px 0 0 #bababc;
-}
-
-/* Right Center */
-
-[data-position="right center"][data-tooltip]:after {
- left: 100%;
- top: 50%;
- margin-left: 0.5em;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
-}
-
-[data-position="right center"][data-tooltip]:before {
- left: 100%;
- top: 50%;
- margin-top: -0.07142857rem;
- margin-left: 0.14285714rem;
- background: #FFFFFF;
- -webkit-box-shadow: -1px 1px 0 0 #bababc;
- box-shadow: -1px 1px 0 0 #bababc;
-}
-
-/* Inverted Arrow Color */
-
-[data-inverted][data-position~="bottom"][data-tooltip]:before {
- background: #1B1C1D;
- -webkit-box-shadow: -1px -1px 0 0 #bababc;
- box-shadow: -1px -1px 0 0 #bababc;
-}
-
-[data-inverted][data-position="left center"][data-tooltip]:before {
- background: #1B1C1D;
- -webkit-box-shadow: 1px -1px 0 0 #bababc;
- box-shadow: 1px -1px 0 0 #bababc;
-}
-
-[data-inverted][data-position="right center"][data-tooltip]:before {
- background: #1B1C1D;
- -webkit-box-shadow: -1px 1px 0 0 #bababc;
- box-shadow: -1px 1px 0 0 #bababc;
-}
-
-[data-inverted][data-position~="top"][data-tooltip]:before {
- background: #1B1C1D;
-}
-
-[data-position~="bottom"][data-tooltip]:before {
- -webkit-transform-origin: center bottom;
- transform-origin: center bottom;
-}
-
-[data-position~="bottom"][data-tooltip]:after {
- -webkit-transform-origin: center top;
- transform-origin: center top;
-}
-
-[data-position="left center"][data-tooltip]:before {
- -webkit-transform-origin: top center;
- transform-origin: top center;
-}
-
-[data-position="left center"][data-tooltip]:after {
- -webkit-transform-origin: right center;
- transform-origin: right center;
-}
-
-[data-position="right center"][data-tooltip]:before {
- -webkit-transform-origin: right center;
- transform-origin: right center;
-}
-
-[data-position="right center"][data-tooltip]:after {
- -webkit-transform-origin: left center;
- transform-origin: left center;
-}
-
-/*--------------
- Basic
- ---------------*/
-
-[data-tooltip][data-variation~="basic"]:before {
- display: none;
-}
-
-/*--------------
- Spacing
----------------*/
-
-.ui.popup {
- margin: 0;
-}
-
-/* Extending from Top */
-
-.ui.top.popup {
- margin: 0 0 0.71428571em;
-}
-
-.ui.top.left.popup {
- -webkit-transform-origin: left bottom;
- transform-origin: left bottom;
-}
-
-.ui.top.center.popup {
- -webkit-transform-origin: center bottom;
- transform-origin: center bottom;
-}
-
-.ui.top.right.popup {
- -webkit-transform-origin: right bottom;
- transform-origin: right bottom;
-}
-
-/* Extending from Vertical Center */
-
-.ui.left.center.popup {
- margin: 0 0.71428571em 0 0;
- -webkit-transform-origin: right 50%;
- transform-origin: right 50%;
-}
-
-.ui.right.center.popup {
- margin: 0 0 0 0.71428571em;
- -webkit-transform-origin: left 50%;
- transform-origin: left 50%;
-}
-
-/* Extending from Bottom */
-
-.ui.bottom.popup {
- margin: 0.71428571em 0 0;
-}
-
-.ui.bottom.left.popup {
- -webkit-transform-origin: left top;
- transform-origin: left top;
-}
-
-.ui.bottom.center.popup {
- -webkit-transform-origin: center top;
- transform-origin: center top;
-}
-
-.ui.bottom.right.popup {
- -webkit-transform-origin: right top;
- transform-origin: right top;
-}
-
-/*--------------
- Pointer
- ---------------*/
-
-/*--- Below ---*/
-
-.ui.bottom.center.popup:before {
- margin-left: -0.30714286em;
- top: -0.30714286em;
- left: 50%;
- right: auto;
- bottom: auto;
- -webkit-box-shadow: -1px -1px 0 0 #bababc;
- box-shadow: -1px -1px 0 0 #bababc;
-}
-
-.ui.bottom.left.popup {
- margin-left: 0;
-}
-
-/*rtl:rename*/
-
-.ui.bottom.left.popup:before {
- top: -0.30714286em;
- left: 1em;
- right: auto;
- bottom: auto;
- margin-left: 0;
- -webkit-box-shadow: -1px -1px 0 0 #bababc;
- box-shadow: -1px -1px 0 0 #bababc;
-}
-
-.ui.bottom.right.popup {
- margin-right: 0;
-}
-
-/*rtl:rename*/
-
-.ui.bottom.right.popup:before {
- top: -0.30714286em;
- right: 1em;
- bottom: auto;
- left: auto;
- margin-left: 0;
- -webkit-box-shadow: -1px -1px 0 0 #bababc;
- box-shadow: -1px -1px 0 0 #bababc;
-}
-
-/*--- Above ---*/
-
-.ui.top.center.popup:before {
- top: auto;
- right: auto;
- bottom: -0.30714286em;
- left: 50%;
- margin-left: -0.30714286em;
-}
-
-.ui.top.left.popup {
- margin-left: 0;
-}
-
-/*rtl:rename*/
-
-.ui.top.left.popup:before {
- bottom: -0.30714286em;
- left: 1em;
- top: auto;
- right: auto;
- margin-left: 0;
-}
-
-.ui.top.right.popup {
- margin-right: 0;
-}
-
-/*rtl:rename*/
-
-.ui.top.right.popup:before {
- bottom: -0.30714286em;
- right: 1em;
- top: auto;
- left: auto;
- margin-left: 0;
-}
-
-/*--- Left Center ---*/
-
-/*rtl:rename*/
-
-.ui.left.center.popup:before {
- top: 50%;
- right: -0.30714286em;
- bottom: auto;
- left: auto;
- margin-top: -0.30714286em;
- -webkit-box-shadow: 1px -1px 0 0 #bababc;
- box-shadow: 1px -1px 0 0 #bababc;
-}
-
-/*--- Right Center ---*/
-
-/*rtl:rename*/
-
-.ui.right.center.popup:before {
- top: 50%;
- left: -0.30714286em;
- bottom: auto;
- right: auto;
- margin-top: -0.30714286em;
- -webkit-box-shadow: -1px 1px 0 0 #bababc;
- box-shadow: -1px 1px 0 0 #bababc;
-}
-
-.ui.right.center.popup:before,
-.ui.left.center.popup:before {
- background: #FFFFFF;
-}
-
-/* Arrow Color By Location */
-
-.ui.bottom.popup:before {
- background: #FFFFFF;
-}
-
-.ui.top.popup:before {
- background: #FFFFFF;
-}
-
-/* Inverted Arrow Color */
-
-.ui.inverted.bottom.popup:before {
- background: #1B1C1D;
-}
-
-.ui.inverted.right.center.popup:before,
-.ui.inverted.left.center.popup:before {
- background: #1B1C1D;
-}
-
-.ui.inverted.top.popup:before {
- background: #1B1C1D;
-}
-
-/*******************************
- Coupling
-*******************************/
-
-/* Immediate Nested Grid */
-
-.ui.popup > .ui.grid:not(.padded) {
- width: calc(100% + 1.75rem);
- margin: -0.7rem -0.875rem;
-}
-
-/*******************************
- States
-*******************************/
-
-.ui.loading.popup {
- display: block;
- visibility: hidden;
- z-index: -1;
-}
-
-.ui.animating.popup,
-.ui.visible.popup {
- display: block;
-}
-
-.ui.visible.popup {
- -webkit-transform: translateZ(0);
- transform: translateZ(0);
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*--------------
- Basic
- ---------------*/
-
-.ui.basic.popup:before {
- display: none;
-}
-
-.ui.fixed.popup {
- width: 250px;
-}
-
-/*--------------
- Wide
- ---------------*/
-
-.ui.wide.popup {
- max-width: 350px;
-}
-
-.ui.wide.popup.fixed {
- width: 350px;
-}
-
-.ui[class*="very wide"].popup {
- max-width: 550px;
-}
-
-.ui[class*="very wide"].popup.fixed {
- width: 550px;
-}
-
-@media only screen and (max-width: 767.98px) {
- .ui.wide.popup,
- .ui[class*="very wide"].popup {
- max-width: 250px;
- }
-
- .ui.wide.popup.fixed,
- .ui[class*="very wide"].popup.fixed {
- width: 250px;
- }
-}
-
-/*--------------
- Fluid
- ---------------*/
-
-.ui.fluid.popup {
- width: 100%;
- max-width: none;
-}
-
-/*--------------
- Colors
- ---------------*/
-
-/* Inverted colors */
-
-.ui.inverted.popup {
- background: #1B1C1D;
- color: #FFFFFF;
- border: none;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.inverted.popup .header {
- background-color: none;
- color: #FFFFFF;
-}
-
-.ui.inverted.popup:before {
- background-color: #1B1C1D;
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
-}
-
-/*--------------
- Flowing
- ---------------*/
-
-.ui.flowing.popup {
- max-width: none;
-}
-
-/*--------------
- Sizes
----------------*/
-
-.ui.popup {
- font-size: 1rem;
-}
-
-.ui.mini.popup {
- font-size: 0.78571429rem;
-}
-
-[data-tooltip][data-variation~="mini"]:before,
-[data-tooltip][data-variation~="mini"]:after {
- font-size: 0.78571429rem;
-}
-
-.ui.tiny.popup {
- font-size: 0.85714286rem;
-}
-
-[data-tooltip][data-variation~="tiny"]:before,
-[data-tooltip][data-variation~="tiny"]:after {
- font-size: 0.85714286rem;
-}
-
-.ui.small.popup {
- font-size: 0.92857143rem;
-}
-
-[data-tooltip][data-variation~="small"]:before,
-[data-tooltip][data-variation~="small"]:after {
- font-size: 0.92857143rem;
-}
-
-.ui.large.popup {
- font-size: 1.14285714rem;
-}
-
-[data-tooltip][data-variation~="large"]:before,
-[data-tooltip][data-variation~="large"]:after {
- font-size: 1.14285714rem;
-}
-
-.ui.big.popup {
- font-size: 1.28571429rem;
-}
-
-[data-tooltip][data-variation~="big"]:before,
-[data-tooltip][data-variation~="big"]:after {
- font-size: 1.28571429rem;
-}
-
-.ui.huge.popup {
- font-size: 1.42857143rem;
-}
-
-[data-tooltip][data-variation~="huge"]:before,
-[data-tooltip][data-variation~="huge"]:after {
- font-size: 1.42857143rem;
-}
-
-.ui.massive.popup {
- font-size: 1.71428571rem;
-}
-
-[data-tooltip][data-variation~="massive"]:before,
-[data-tooltip][data-variation~="massive"]:after {
- font-size: 1.71428571rem;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- User Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Progress Bar
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Progress
-*******************************/
-
-.ui.progress {
- position: relative;
- display: block;
- max-width: 100%;
- border: none;
- margin: 1em 0 2.5em;
- -webkit-box-shadow: none;
- box-shadow: none;
- background: rgba(0, 0, 0, 0.1);
- padding: 0;
- border-radius: 0.28571429rem;
-}
-
-.ui.progress:first-child {
- margin: 0 0 2.5em;
-}
-
-.ui.progress:last-child {
- margin: 0 0 1.5em;
-}
-
-/*******************************
- Content
-*******************************/
-
-/* Activity Bar */
-
-.ui.progress .bar {
- display: block;
- line-height: 1;
- position: relative;
- width: 0;
- min-width: 2em;
- background: #888888;
- border-radius: 0.28571429rem;
- -webkit-transition: width 0.1s ease, background-color 0.1s ease;
- transition: width 0.1s ease, background-color 0.1s ease;
- overflow: hidden;
-}
-
-.ui.ui.ui.progress:not([data-percent]):not(.indeterminate) .bar,
-.ui.ui.ui.progress[data-percent="0"]:not(.indeterminate) .bar {
- background: transparent;
-}
-
-.ui.progress[data-percent="0"] .bar .progress {
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.inverted.progress[data-percent="0"] .bar .progress {
- color: rgba(255, 255, 255, 0.9);
-}
-
-/* Percent Complete */
-
-.ui.progress .bar > .progress {
- white-space: nowrap;
- position: absolute;
- width: auto;
- font-size: 0.92857143em;
- top: 50%;
- right: 0.5em;
- left: auto;
- bottom: auto;
- color: rgba(255, 255, 255, 0.7);
- text-shadow: none;
- margin-top: -0.5em;
- font-weight: bold;
- text-align: left;
-}
-
-/* Label */
-
-.ui.progress > .label {
- position: absolute;
- width: 100%;
- font-size: 1em;
- top: 100%;
- right: auto;
- left: 0;
- bottom: auto;
- color: rgba(0, 0, 0, 0.87);
- font-weight: bold;
- text-shadow: none;
- margin-top: 0.2em;
- text-align: center;
- -webkit-transition: color 0.4s ease;
- transition: color 0.4s ease;
-}
-
-/*******************************
- Types
-*******************************/
-
-/* Indicating */
-
-.ui.indicating.progress[data-percent^="1"] .bar,
-.ui.indicating.progress[data-percent^="2"] .bar {
- background-color: #D95C5C;
-}
-
-.ui.indicating.progress[data-percent^="3"] .bar {
- background-color: #EFBC72;
-}
-
-.ui.indicating.progress[data-percent^="4"] .bar,
-.ui.indicating.progress[data-percent^="5"] .bar {
- background-color: #E6BB48;
-}
-
-.ui.indicating.progress[data-percent^="6"] .bar {
- background-color: #DDC928;
-}
-
-.ui.indicating.progress[data-percent^="7"] .bar,
-.ui.indicating.progress[data-percent^="8"] .bar {
- background-color: #B4D95C;
-}
-
-.ui.indicating.progress[data-percent^="9"] .bar,
-.ui.indicating.progress[data-percent^="100"] .bar {
- background-color: #66DA81;
-}
-
-/* Indicating Label */
-
-.ui.indicating.progress[data-percent^="1"] .label,
-.ui.indicating.progress[data-percent^="2"] .label {
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.indicating.progress[data-percent^="3"] .label {
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.indicating.progress[data-percent^="4"] .label,
-.ui.indicating.progress[data-percent^="5"] .label {
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.indicating.progress[data-percent^="6"] .label {
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.indicating.progress[data-percent^="7"] .label,
-.ui.indicating.progress[data-percent^="8"] .label {
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.indicating.progress[data-percent^="9"] .label,
-.ui.indicating.progress[data-percent^="100"] .label {
- color: rgba(0, 0, 0, 0.87);
-}
-
-/* Inverted Indicating Label */
-
-.ui.inverted.indicating.progress[data-percent^="1"] .label,
-.ui.inverted.indicating.progress[data-percent^="2"] .label {
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.indicating.progress[data-percent^="3"] .label {
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.indicating.progress[data-percent^="4"] .label,
-.ui.inverted.indicating.progress[data-percent^="5"] .label {
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.indicating.progress[data-percent^="6"] .label {
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.indicating.progress[data-percent^="7"] .label,
-.ui.inverted.indicating.progress[data-percent^="8"] .label {
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.indicating.progress[data-percent^="9"] .label,
-.ui.inverted.indicating.progress[data-percent^="100"] .label {
- color: rgba(255, 255, 255, 0.9);
-}
-
-/* Single Digits */
-
-.ui.indicating.progress[data-percent="1"] .bar,
-.ui.indicating.progress[data-percent="2"] .bar,
-.ui.indicating.progress[data-percent="3"] .bar,
-.ui.indicating.progress[data-percent="4"] .bar,
-.ui.indicating.progress[data-percent="5"] .bar,
-.ui.indicating.progress[data-percent="6"] .bar,
-.ui.indicating.progress[data-percent="7"] .bar,
-.ui.indicating.progress[data-percent="8"] .bar,
-.ui.indicating.progress[data-percent="9"] .bar {
- background-color: #D95C5C;
-}
-
-.ui.indicating.progress[data-percent="0"] .label,
-.ui.indicating.progress[data-percent="1"] .label,
-.ui.indicating.progress[data-percent="2"] .label,
-.ui.indicating.progress[data-percent="3"] .label,
-.ui.indicating.progress[data-percent="4"] .label,
-.ui.indicating.progress[data-percent="5"] .label,
-.ui.indicating.progress[data-percent="6"] .label,
-.ui.indicating.progress[data-percent="7"] .label,
-.ui.indicating.progress[data-percent="8"] .label,
-.ui.indicating.progress[data-percent="9"] .label {
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.inverted.indicating.progress[data-percent="0"] .label,
-.ui.inverted.indicating.progress[data-percent="1"] .label,
-.ui.inverted.indicating.progress[data-percent="2"] .label,
-.ui.inverted.indicating.progress[data-percent="3"] .label,
-.ui.inverted.indicating.progress[data-percent="4"] .label,
-.ui.inverted.indicating.progress[data-percent="5"] .label,
-.ui.inverted.indicating.progress[data-percent="6"] .label,
-.ui.inverted.indicating.progress[data-percent="7"] .label,
-.ui.inverted.indicating.progress[data-percent="8"] .label,
-.ui.inverted.indicating.progress[data-percent="9"] .label {
- color: rgba(255, 255, 255, 0.9);
-}
-
-/* Indicating Success */
-
-.ui.ui.indicating.progress.success .label {
- color: #1A531B;
-}
-
-/* Multiple */
-
-.ui.multiple.progress {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
-}
-
-/*******************************
- States
-*******************************/
-
-/*--------------
- Success
- ---------------*/
-
-.ui.ui.progress.success .bar {
- background-color: #21BA45;
-}
-
-.ui.ui.progress.success .bar,
-.ui.ui.progress.success .bar::after {
- -webkit-animation: none;
- animation: none;
-}
-
-.ui.progress.success > .label {
- color: #1A531B;
-}
-
-/*--------------
- Warning
- ---------------*/
-
-.ui.ui.progress.warning .bar {
- background-color: #F2C037;
-}
-
-.ui.ui.progress.warning .bar,
-.ui.ui.progress.warning .bar::after {
- -webkit-animation: none;
- animation: none;
-}
-
-.ui.progress.warning > .label {
- color: #794B02;
-}
-
-/*--------------
- Error
- ---------------*/
-
-.ui.ui.progress.error .bar {
- background-color: #DB2828;
-}
-
-.ui.ui.progress.error .bar,
-.ui.ui.progress.error .bar::after {
- -webkit-animation: none;
- animation: none;
-}
-
-.ui.progress.error > .label {
- color: #912D2B;
-}
-
-/*--------------
- Active
- ---------------*/
-
-.ui.active.progress .bar {
- position: relative;
- min-width: 2em;
-}
-
-.ui.active.progress .bar::after {
- content: '';
- opacity: 0;
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: #FFFFFF;
- border-radius: 0.28571429rem;
- -webkit-animation: progress-active 2s ease infinite;
- animation: progress-active 2s ease infinite;
- -webkit-transform-origin: left;
- transform-origin: left;
-}
-
-@-webkit-keyframes progress-active {
- 0% {
- opacity: 0.3;
- -webkit-transform: scale(0, 1);
- transform: scale(0, 1);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-}
-
-@keyframes progress-active {
- 0% {
- opacity: 0.3;
- -webkit-transform: scale(0, 1);
- transform: scale(0, 1);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-}
-
-/*--------------
- Disabled
- ---------------*/
-
-.ui.disabled.progress {
- opacity: 0.35;
-}
-
-.ui.ui.disabled.progress .bar,
-.ui.ui.disabled.progress .bar::after {
- -webkit-animation: none;
- animation: none;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*--------------
- Inverted
- ---------------*/
-
-.ui.inverted.progress {
- background: rgba(255, 255, 255, 0.08);
- border: none;
-}
-
-.ui.inverted.progress .bar {
- background: #888888;
-}
-
-.ui.inverted.progress .bar > .progress {
- color: #1B1C1D;
-}
-
-.ui.inverted.progress > .label {
- color: #FFFFFF;
-}
-
-.ui.inverted.progress.success > .label {
- color: #21BA45;
-}
-
-.ui.inverted.progress.warning > .label {
- color: #F2C037;
-}
-
-.ui.inverted.progress.error > .label {
- color: #DB2828;
-}
-
-/*--------------
- Attached
- ---------------*/
-
-/* bottom attached */
-
-.ui.progress.attached {
- background: transparent;
- position: relative;
- border: none;
- margin: 0;
-}
-
-.ui.progress.attached,
-.ui.progress.attached .bar {
- display: block;
- height: 0.2rem;
- padding: 0;
- overflow: hidden;
- border-radius: 0 0 0.28571429rem 0.28571429rem;
-}
-
-.ui.progress.attached .bar {
- border-radius: 0;
-}
-
-/* top attached */
-
-.ui.progress.top.attached,
-.ui.progress.top.attached .bar {
- top: 0;
- border-radius: 0.28571429rem 0.28571429rem 0 0;
-}
-
-.ui.progress.top.attached .bar {
- border-radius: 0;
-}
-
-/* Coupling */
-
-.ui.segment > .ui.attached.progress,
-.ui.card > .ui.attached.progress {
- position: absolute;
- top: auto;
- left: 0;
- bottom: 100%;
- width: 100%;
-}
-
-.ui.segment > .ui.bottom.attached.progress,
-.ui.card > .ui.bottom.attached.progress {
- top: 100%;
- bottom: auto;
-}
-
-/*--------------
- Colors
----------------*/
-
-.ui.indeterminate.primary.progress .bar::before,
-.ui.primary.progress .bar,
-.ui.progress .primary.bar {
- background-color: #2185D0;
-}
-
-.ui.inverted.indeterminate.primary.progress .bar::before,
-.ui.primary.inverted.progress .bar,
-.ui.inverted.progress .primary.bar {
- background-color: #54C8FF;
-}
-
-.ui.indeterminate.secondary.progress .bar::before,
-.ui.secondary.progress .bar,
-.ui.progress .secondary.bar {
- background-color: #1B1C1D;
-}
-
-.ui.inverted.indeterminate.secondary.progress .bar::before,
-.ui.secondary.inverted.progress .bar,
-.ui.inverted.progress .secondary.bar {
- background-color: #545454;
-}
-
-.ui.indeterminate.red.progress .bar::before,
-.ui.red.progress .bar,
-.ui.progress .red.bar {
- background-color: #DB2828;
-}
-
-.ui.inverted.indeterminate.red.progress .bar::before,
-.ui.red.inverted.progress .bar,
-.ui.inverted.progress .red.bar {
- background-color: #FF695E;
-}
-
-.ui.indeterminate.orange.progress .bar::before,
-.ui.orange.progress .bar,
-.ui.progress .orange.bar {
- background-color: #F2711C;
-}
-
-.ui.inverted.indeterminate.orange.progress .bar::before,
-.ui.orange.inverted.progress .bar,
-.ui.inverted.progress .orange.bar {
- background-color: #FF851B;
-}
-
-.ui.indeterminate.yellow.progress .bar::before,
-.ui.yellow.progress .bar,
-.ui.progress .yellow.bar {
- background-color: #FBBD08;
-}
-
-.ui.inverted.indeterminate.yellow.progress .bar::before,
-.ui.yellow.inverted.progress .bar,
-.ui.inverted.progress .yellow.bar {
- background-color: #FFE21F;
-}
-
-.ui.indeterminate.olive.progress .bar::before,
-.ui.olive.progress .bar,
-.ui.progress .olive.bar {
- background-color: #B5CC18;
-}
-
-.ui.inverted.indeterminate.olive.progress .bar::before,
-.ui.olive.inverted.progress .bar,
-.ui.inverted.progress .olive.bar {
- background-color: #D9E778;
-}
-
-.ui.indeterminate.green.progress .bar::before,
-.ui.green.progress .bar,
-.ui.progress .green.bar {
- background-color: #21BA45;
-}
-
-.ui.inverted.indeterminate.green.progress .bar::before,
-.ui.green.inverted.progress .bar,
-.ui.inverted.progress .green.bar {
- background-color: #2ECC40;
-}
-
-.ui.indeterminate.teal.progress .bar::before,
-.ui.teal.progress .bar,
-.ui.progress .teal.bar {
- background-color: #00B5AD;
-}
-
-.ui.inverted.indeterminate.teal.progress .bar::before,
-.ui.teal.inverted.progress .bar,
-.ui.inverted.progress .teal.bar {
- background-color: #6DFFFF;
-}
-
-.ui.indeterminate.blue.progress .bar::before,
-.ui.blue.progress .bar,
-.ui.progress .blue.bar {
- background-color: #2185D0;
-}
-
-.ui.inverted.indeterminate.blue.progress .bar::before,
-.ui.blue.inverted.progress .bar,
-.ui.inverted.progress .blue.bar {
- background-color: #54C8FF;
-}
-
-.ui.indeterminate.violet.progress .bar::before,
-.ui.violet.progress .bar,
-.ui.progress .violet.bar {
- background-color: #6435C9;
-}
-
-.ui.inverted.indeterminate.violet.progress .bar::before,
-.ui.violet.inverted.progress .bar,
-.ui.inverted.progress .violet.bar {
- background-color: #A291FB;
-}
-
-.ui.indeterminate.purple.progress .bar::before,
-.ui.purple.progress .bar,
-.ui.progress .purple.bar {
- background-color: #A333C8;
-}
-
-.ui.inverted.indeterminate.purple.progress .bar::before,
-.ui.purple.inverted.progress .bar,
-.ui.inverted.progress .purple.bar {
- background-color: #DC73FF;
-}
-
-.ui.indeterminate.pink.progress .bar::before,
-.ui.pink.progress .bar,
-.ui.progress .pink.bar {
- background-color: #E03997;
-}
-
-.ui.inverted.indeterminate.pink.progress .bar::before,
-.ui.pink.inverted.progress .bar,
-.ui.inverted.progress .pink.bar {
- background-color: #FF8EDF;
-}
-
-.ui.indeterminate.brown.progress .bar::before,
-.ui.brown.progress .bar,
-.ui.progress .brown.bar {
- background-color: #A5673F;
-}
-
-.ui.inverted.indeterminate.brown.progress .bar::before,
-.ui.brown.inverted.progress .bar,
-.ui.inverted.progress .brown.bar {
- background-color: #D67C1C;
-}
-
-.ui.indeterminate.grey.progress .bar::before,
-.ui.grey.progress .bar,
-.ui.progress .grey.bar {
- background-color: #767676;
-}
-
-.ui.inverted.indeterminate.grey.progress .bar::before,
-.ui.grey.inverted.progress .bar,
-.ui.inverted.progress .grey.bar {
- background-color: #DCDDDE;
-}
-
-.ui.indeterminate.black.progress .bar::before,
-.ui.black.progress .bar,
-.ui.progress .black.bar {
- background-color: #1B1C1D;
-}
-
-.ui.inverted.indeterminate.black.progress .bar::before,
-.ui.black.inverted.progress .bar,
-.ui.inverted.progress .black.bar {
- background-color: #545454;
-}
-
-/*--------------
- Sizes
----------------*/
-
-.ui.progress {
- font-size: 1rem;
-}
-
-.ui.progress .bar {
- height: 1.75em;
-}
-
-.ui.mini.progress {
- font-size: 0.78571429rem;
-}
-
-.ui.mini.progress .bar {
- height: 0.3em;
-}
-
-.ui.tiny.progress {
- font-size: 0.85714286rem;
-}
-
-.ui.tiny.progress .bar {
- height: 0.5em;
-}
-
-.ui.small.progress {
- font-size: 0.92857143rem;
-}
-
-.ui.small.progress .bar {
- height: 1em;
-}
-
-.ui.large.progress {
- font-size: 1.14285714rem;
-}
-
-.ui.large.progress .bar {
- height: 2.5em;
-}
-
-.ui.big.progress {
- font-size: 1.28571429rem;
-}
-
-.ui.big.progress .bar {
- height: 3.5em;
-}
-
-.ui.huge.progress {
- font-size: 1.42857143rem;
-}
-
-.ui.huge.progress .bar {
- height: 4em;
-}
-
-.ui.massive.progress {
- font-size: 1.71428571rem;
-}
-
-.ui.massive.progress .bar {
- height: 5em;
-}
-
-/*---------------
- Indeterminate
- ----------------*/
-
-.ui.indeterminate.progress .bar {
- width: 100%;
-}
-
-.ui.indeterminate.progress .bar .progress,
-.ui.progress .bar .centered.progress {
- text-align: center;
- position: relative;
-}
-
-.ui.indeterminate.progress .bar::before {
- content: '';
- position: absolute;
- top: 0;
- bottom: 0;
- border-radius: 0.28571429rem;
- -webkit-animation: progress-pulsating 2s ease infinite;
- animation: progress-pulsating 2s ease infinite;
- -webkit-transform-origin: center;
- transform-origin: center;
- width: 100%;
-}
-
-.ui.slow.indeterminate.progress .bar::before {
- -webkit-animation-duration: 4s;
- animation-duration: 4s;
-}
-
-.ui.fast.indeterminate.progress .bar::before {
- -webkit-animation-duration: 1s;
- animation-duration: 1s;
-}
-
-.ui.swinging.indeterminate.progress .bar::before {
- -webkit-transform-origin: left;
- transform-origin: left;
- -webkit-animation-name: progress-swinging;
- animation-name: progress-swinging;
-}
-
-.ui.sliding.indeterminate.progress .bar::before {
- -webkit-transform-origin: left;
- transform-origin: left;
- -webkit-animation-name: progress-sliding;
- animation-name: progress-sliding;
-}
-
-.ui.filling.indeterminate.progress .bar::before {
- -webkit-animation-name: progress-filling;
- animation-name: progress-filling;
-}
-
-.ui.indeterminate.progress:not(.sliding):not(.filling):not(.swinging) .bar::before {
- background: #FFFFFF;
-}
-
-.ui.sliding.indeterminate.progress .bar,
-.ui.swinging.indeterminate.progress .bar,
-.ui.filling.indeterminate.progress .bar {
- background: rgba(0, 0, 0, 0.1);
-}
-
-.ui.sliding.indeterminate.progress .bar .progress,
-.ui.swinging.indeterminate.progress .bar .progress {
- color: #1B1C1D;
-}
-
-.ui.inverted.sliding.indeterminate.progress .bar,
-.ui.inverted.swinging.indeterminate.progress .bar,
-.ui.inverted.filling.indeterminate.progress .bar {
- background: rgba(255, 255, 255, 0.08);
-}
-
-.ui.inverted.sliding.indeterminate.progress .bar .progress,
-.ui.inverted.swinging.indeterminate.progress .bar .progress {
- color: rgba(255, 255, 255, 0.7);
-}
-
-@-webkit-keyframes progress-swinging {
- 0%, 100% {
- width: 10%;
- left: -25%;
- }
-
- 25%, 65% {
- width: 70%;
- }
-
- 50% {
- width: 10%;
- left: 100%;
- }
-}
-
-@keyframes progress-swinging {
- 0%, 100% {
- width: 10%;
- left: -25%;
- }
-
- 25%, 65% {
- width: 70%;
- }
-
- 50% {
- width: 10%;
- left: 100%;
- }
-}
-
-@-webkit-keyframes progress-sliding {
- 0% {
- width: 10%;
- left: -25%;
- }
-
- 50% {
- width: 70%;
- }
-
- 100% {
- width: 10%;
- left: 100%;
- }
-}
-
-@keyframes progress-sliding {
- 0% {
- width: 10%;
- left: -25%;
- }
-
- 50% {
- width: 70%;
- }
-
- 100% {
- width: 10%;
- left: 100%;
- }
-}
-
-@-webkit-keyframes progress-filling {
- 0% {
- -webkit-transform: scale(0, 1);
- transform: scale(0, 1);
- }
-
- 80% {
- -webkit-transform: scale(1);
- transform: scale(1);
- opacity: 1;
- }
-
- 100% {
- opacity: 0;
- }
-}
-
-@keyframes progress-filling {
- 0% {
- -webkit-transform: scale(0, 1);
- transform: scale(0, 1);
- }
-
- 80% {
- -webkit-transform: scale(1);
- transform: scale(1);
- opacity: 1;
- }
-
- 100% {
- opacity: 0;
- }
-}
-
-@-webkit-keyframes progress-pulsating {
- 0% {
- -webkit-transform: scale(0, 1);
- transform: scale(0, 1);
- opacity: 0.7;
- }
-
- 100% {
- -webkit-transform: scale(1);
- transform: scale(1);
- opacity: 0;
- }
-}
-
-@keyframes progress-pulsating {
- 0% {
- -webkit-transform: scale(0, 1);
- transform: scale(0, 1);
- opacity: 0.7;
- }
-
- 100% {
- -webkit-transform: scale(1);
- transform: scale(1);
- opacity: 0;
- }
-}
-
-/*******************************
- Progress
-*******************************/
-
-/*******************************
- Site Overrides
-*******************************/
-/*******************************
- Theme
- *******************************/
-
-.ui.slider:not(.vertical):not(.checkbox) {
- width: 100%;
- padding: 1em 0.5em;
-}
-
-.ui.slider:not(.checkbox) {
- position: relative;
-}
-
-.ui.slider:not(.checkbox):focus {
- outline: 0;
-}
-
-.ui.slider .inner {
- position: relative;
- z-index: 2;
-}
-
-.ui.slider:not(.vertical) .inner {
- height: 1.5em;
-}
-
-.ui.slider .inner:hover {
- cursor: auto;
-}
-
-.ui.slider .inner .track {
- position: absolute;
- border-radius: 4px;
- background-color: rgba(0, 0, 0, 0.05);
-}
-
-.ui.slider:not(.vertical) .inner .track {
- width: 100%;
- height: 0.4em;
- top: 0.55em;
- left: 0;
-}
-
-.ui.slider .inner .track-fill {
- position: absolute;
- border-radius: 4px;
- background-color: #1B1C1D;
-}
-
-.ui.slider:not(.vertical) .inner .track-fill {
- height: 0.4em;
- top: 0.55em;
- left: 0;
-}
-
-.ui.slider .inner .thumb {
- position: absolute;
- left: 0;
- top: 0;
- height: 1.5em;
- width: 1.5em;
- background: #FFFFFF -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
- background: #FFFFFF -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
- background: #FFFFFF linear-gradient(transparent, rgba(0, 0, 0, 0.05));
- border-radius: 100%;
- -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
- box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
- -webkit-transition: background 0.3s ease;
- transition: background 0.3s ease;
-}
-
-.ui.slider:not(.disabled) .inner .thumb:hover {
- cursor: pointer;
- background: #f2f2f2 -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
- background: #f2f2f2 -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
- background: #f2f2f2 linear-gradient(transparent, rgba(0, 0, 0, 0.05));
-}
-
-.ui.slider:not(.disabled):focus .inner .thumb {
- background: #f2f2f2 -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
- background: #f2f2f2 -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
- background: #f2f2f2 linear-gradient(transparent, rgba(0, 0, 0, 0.05));
-}
-
-/*******************************
- States
-*******************************/
-
-/*--------------
- Disabled
- ---------------*/
-
-.ui.disabled.slider:not(.checkbox) {
- opacity: 0.5;
-}
-
-.ui.disabled.slider .inner:hover {
- cursor: auto;
-}
-
-.ui.disabled.slider .inner .track-fill {
- background: #ccc;
-}
-
-/*--------------
- Reversed
- ---------------*/
-
-.ui.reversed.slider .inner .track-fill {
- left: auto;
- right: 0;
-}
-
-.ui.reversed.slider:not(.vertical) .inner .thumb {
- left: auto;
- right: 0;
-}
-
-.ui.reversed.vertical.slider .inner .thumb {
- left: 0.03em;
-}
-
-.ui.labeled.reversed.slider > .labels .label {
- -webkit-transform: translate(-100%, -100%);
- transform: translate(-100%, -100%);
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*--------------
- Vertical
- ---------------*/
-
-.ui.vertical.slider {
- height: 100%;
- width: 1.5em;
- padding: 0.5em 1em;
-}
-
-.ui.vertical.slider .inner {
- height: 100%;
-}
-
-.ui.vertical.slider .inner .track {
- height: 100%;
- width: 0.4em;
- left: 0.55em;
- top: 0;
-}
-
-.ui.vertical.slider .inner .track-fill {
- width: 0.4em;
- left: 0.55em;
- top: 0;
-}
-
-/* Vertical Reversed */
-
-.ui.vertical.reversed.slider .inner .thumb {
- top: auto;
- bottom: 0;
-}
-
-.ui.vertical.reversed.slider .inner .track-fill {
- top: auto;
- bottom: 0;
-}
-
-/*--------------
- Labeled
- ---------------*/
-
-.ui.labeled.slider > .labels {
- height: 1.5em;
- width: auto;
- margin: 0;
- padding: 0;
- position: absolute;
- top: 50%;
- left: 0;
- right: 0;
-}
-
-.ui.labeled.slider:not(.vertical) > .labels {
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
-}
-
-.ui.labeled.slider > .labels .label {
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
- position: absolute;
- -webkit-transform: translate(-50%, -100%);
- transform: translate(-50%, -100%);
-}
-
-.ui.labeled.ticked.slider > .labels .label:after {
- content: ' ';
- height: 1.5em;
- width: 1px;
- background: #ccc;
- position: absolute;
- top: 100%;
- left: 50%;
-}
-
-.ui.labeled.ticked.slider > .labels .halftick.label:after {
- height: 0.75em;
-}
-
-/* Vertical Labels */
-
-.ui.labeled.vertical.slider > .labels {
- width: 1.5em;
- height: auto;
- left: 50%;
- top: 0;
- bottom: 0;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
-}
-
-.ui.labeled.vertical.slider > .labels .label {
- -webkit-transform: translate(-100%, -50%);
- transform: translate(-100%, -50%);
-}
-
-.ui.labeled.vertical.slider > .labels .label:after {
- width: 1.5em;
- height: 1px;
- left: 100%;
- top: 50%;
-}
-
-.ui.labeled.vertical.slider > .labels .halftick.label:after {
- width: 0.75em;
- height: 1px;
-}
-
-/* Vertical Reversed Labels */
-
-.ui.labeled.vertical.reversed.slider > .labels .label {
- -webkit-transform: translate(-100%, 50%);
- transform: translate(-100%, 50%);
-}
-
-/*--------------
- Hover
----------------*/
-
-.ui.hover.slider .inner .thumb {
- opacity: 0;
- -webkit-transition: opacity 0.2s linear;
- transition: opacity 0.2s linear;
-}
-
-.ui.hover.slider:not(.disabled):hover .inner .thumb,
-.ui.hover.slider:not(.disabled):focus .inner .thumb {
- opacity: 1;
-}
-
-/*--------------
- Inverted
- ---------------*/
-
-.ui.inverted.slider .inner .track-fill {
- background-color: #545454;
-}
-
-.ui.inverted.slider .inner .track {
- background-color: rgba(255, 255, 255, 0.08);
-}
-
-/*--------------
- Colors
----------------*/
-
-/* Standard */
-
-.ui.primary.slider .inner .track-fill {
- background-color: #2185D0;
-}
-
-.ui.primary.inverted.slider .inner .track-fill {
- background-color: #54C8FF;
-}
-
-/* Basic */
-
-.ui.primary.slider.basic .inner .thumb {
- background-color: #2185D0;
-}
-
-.ui.primary.slider.basic .inner .thumb:hover,
-.ui.primary.slider.basic:focus .inner .thumb {
- background-color: #1678c2;
-}
-
-/* Basic Inverted */
-
-.ui.primary.inverted.slider.basic .inner .thumb {
- background-color: #54C8FF;
-}
-
-.ui.primary.inverted.slider.basic .inner .thumb:hover,
-.ui.primary.inverted.slider.basic:focus .inner .thumb {
- background-color: #21b8ff;
-}
-
-/* Standard */
-
-.ui.secondary.slider .inner .track-fill {
- background-color: #1B1C1D;
-}
-
-.ui.secondary.inverted.slider .inner .track-fill {
- background-color: #545454;
-}
-
-/* Basic */
-
-.ui.secondary.slider.basic .inner .thumb {
- background-color: #1B1C1D;
-}
-
-.ui.secondary.slider.basic .inner .thumb:hover,
-.ui.secondary.slider.basic:focus .inner .thumb {
- background-color: #27292a;
-}
-
-/* Basic Inverted */
-
-.ui.secondary.inverted.slider.basic .inner .thumb {
- background-color: #545454;
-}
-
-.ui.secondary.inverted.slider.basic .inner .thumb:hover,
-.ui.secondary.inverted.slider.basic:focus .inner .thumb {
- background-color: #6e6e6e;
-}
-
-/* Standard */
-
-.ui.red.slider .inner .track-fill {
- background-color: #DB2828;
-}
-
-.ui.red.inverted.slider .inner .track-fill {
- background-color: #FF695E;
-}
-
-/* Basic */
-
-.ui.red.slider.basic .inner .thumb {
- background-color: #DB2828;
-}
-
-.ui.red.slider.basic .inner .thumb:hover,
-.ui.red.slider.basic:focus .inner .thumb {
- background-color: #d01919;
-}
-
-/* Basic Inverted */
-
-.ui.red.inverted.slider.basic .inner .thumb {
- background-color: #FF695E;
-}
-
-.ui.red.inverted.slider.basic .inner .thumb:hover,
-.ui.red.inverted.slider.basic:focus .inner .thumb {
- background-color: #ff392b;
-}
-
-/* Standard */
-
-.ui.orange.slider .inner .track-fill {
- background-color: #F2711C;
-}
-
-.ui.orange.inverted.slider .inner .track-fill {
- background-color: #FF851B;
-}
-
-/* Basic */
-
-.ui.orange.slider.basic .inner .thumb {
- background-color: #F2711C;
-}
-
-.ui.orange.slider.basic .inner .thumb:hover,
-.ui.orange.slider.basic:focus .inner .thumb {
- background-color: #f26202;
-}
-
-/* Basic Inverted */
-
-.ui.orange.inverted.slider.basic .inner .thumb {
- background-color: #FF851B;
-}
-
-.ui.orange.inverted.slider.basic .inner .thumb:hover,
-.ui.orange.inverted.slider.basic:focus .inner .thumb {
- background-color: #e76b00;
-}
-
-/* Standard */
-
-.ui.yellow.slider .inner .track-fill {
- background-color: #FBBD08;
-}
-
-.ui.yellow.inverted.slider .inner .track-fill {
- background-color: #FFE21F;
-}
-
-/* Basic */
-
-.ui.yellow.slider.basic .inner .thumb {
- background-color: #FBBD08;
-}
-
-.ui.yellow.slider.basic .inner .thumb:hover,
-.ui.yellow.slider.basic:focus .inner .thumb {
- background-color: #eaae00;
-}
-
-/* Basic Inverted */
-
-.ui.yellow.inverted.slider.basic .inner .thumb {
- background-color: #FFE21F;
-}
-
-.ui.yellow.inverted.slider.basic .inner .thumb:hover,
-.ui.yellow.inverted.slider.basic:focus .inner .thumb {
- background-color: #ebcd00;
-}
-
-/* Standard */
-
-.ui.olive.slider .inner .track-fill {
- background-color: #B5CC18;
-}
-
-.ui.olive.inverted.slider .inner .track-fill {
- background-color: #D9E778;
-}
-
-/* Basic */
-
-.ui.olive.slider.basic .inner .thumb {
- background-color: #B5CC18;
-}
-
-.ui.olive.slider.basic .inner .thumb:hover,
-.ui.olive.slider.basic:focus .inner .thumb {
- background-color: #a7bd0d;
-}
-
-/* Basic Inverted */
-
-.ui.olive.inverted.slider.basic .inner .thumb {
- background-color: #D9E778;
-}
-
-.ui.olive.inverted.slider.basic .inner .thumb:hover,
-.ui.olive.inverted.slider.basic:focus .inner .thumb {
- background-color: #d2e745;
-}
-
-/* Standard */
-
-.ui.green.slider .inner .track-fill {
- background-color: #21BA45;
-}
-
-.ui.green.inverted.slider .inner .track-fill {
- background-color: #2ECC40;
-}
-
-/* Basic */
-
-.ui.green.slider.basic .inner .thumb {
- background-color: #21BA45;
-}
-
-.ui.green.slider.basic .inner .thumb:hover,
-.ui.green.slider.basic:focus .inner .thumb {
- background-color: #16ab39;
-}
-
-/* Basic Inverted */
-
-.ui.green.inverted.slider.basic .inner .thumb {
- background-color: #2ECC40;
-}
-
-.ui.green.inverted.slider.basic .inner .thumb:hover,
-.ui.green.inverted.slider.basic:focus .inner .thumb {
- background-color: #1ea92e;
-}
-
-/* Standard */
-
-.ui.teal.slider .inner .track-fill {
- background-color: #00B5AD;
-}
-
-.ui.teal.inverted.slider .inner .track-fill {
- background-color: #6DFFFF;
-}
-
-/* Basic */
-
-.ui.teal.slider.basic .inner .thumb {
- background-color: #00B5AD;
-}
-
-.ui.teal.slider.basic .inner .thumb:hover,
-.ui.teal.slider.basic:focus .inner .thumb {
- background-color: #009c95;
-}
-
-/* Basic Inverted */
-
-.ui.teal.inverted.slider.basic .inner .thumb {
- background-color: #6DFFFF;
-}
-
-.ui.teal.inverted.slider.basic .inner .thumb:hover,
-.ui.teal.inverted.slider.basic:focus .inner .thumb {
- background-color: #3affff;
-}
-
-/* Standard */
-
-.ui.blue.slider .inner .track-fill {
- background-color: #2185D0;
-}
-
-.ui.blue.inverted.slider .inner .track-fill {
- background-color: #54C8FF;
-}
-
-/* Basic */
-
-.ui.blue.slider.basic .inner .thumb {
- background-color: #2185D0;
-}
-
-.ui.blue.slider.basic .inner .thumb:hover,
-.ui.blue.slider.basic:focus .inner .thumb {
- background-color: #1678c2;
-}
-
-/* Basic Inverted */
-
-.ui.blue.inverted.slider.basic .inner .thumb {
- background-color: #54C8FF;
-}
-
-.ui.blue.inverted.slider.basic .inner .thumb:hover,
-.ui.blue.inverted.slider.basic:focus .inner .thumb {
- background-color: #21b8ff;
-}
-
-/* Standard */
-
-.ui.violet.slider .inner .track-fill {
- background-color: #6435C9;
-}
-
-.ui.violet.inverted.slider .inner .track-fill {
- background-color: #A291FB;
-}
-
-/* Basic */
-
-.ui.violet.slider.basic .inner .thumb {
- background-color: #6435C9;
-}
-
-.ui.violet.slider.basic .inner .thumb:hover,
-.ui.violet.slider.basic:focus .inner .thumb {
- background-color: #5829bb;
-}
-
-/* Basic Inverted */
-
-.ui.violet.inverted.slider.basic .inner .thumb {
- background-color: #A291FB;
-}
-
-.ui.violet.inverted.slider.basic .inner .thumb:hover,
-.ui.violet.inverted.slider.basic:focus .inner .thumb {
- background-color: #745aff;
-}
-
-/* Standard */
-
-.ui.purple.slider .inner .track-fill {
- background-color: #A333C8;
-}
-
-.ui.purple.inverted.slider .inner .track-fill {
- background-color: #DC73FF;
-}
-
-/* Basic */
-
-.ui.purple.slider.basic .inner .thumb {
- background-color: #A333C8;
-}
-
-.ui.purple.slider.basic .inner .thumb:hover,
-.ui.purple.slider.basic:focus .inner .thumb {
- background-color: #9627ba;
-}
-
-/* Basic Inverted */
-
-.ui.purple.inverted.slider.basic .inner .thumb {
- background-color: #DC73FF;
-}
-
-.ui.purple.inverted.slider.basic .inner .thumb:hover,
-.ui.purple.inverted.slider.basic:focus .inner .thumb {
- background-color: #cf40ff;
-}
-
-/* Standard */
-
-.ui.pink.slider .inner .track-fill {
- background-color: #E03997;
-}
-
-.ui.pink.inverted.slider .inner .track-fill {
- background-color: #FF8EDF;
-}
-
-/* Basic */
-
-.ui.pink.slider.basic .inner .thumb {
- background-color: #E03997;
-}
-
-.ui.pink.slider.basic .inner .thumb:hover,
-.ui.pink.slider.basic:focus .inner .thumb {
- background-color: #e61a8d;
-}
-
-/* Basic Inverted */
-
-.ui.pink.inverted.slider.basic .inner .thumb {
- background-color: #FF8EDF;
-}
-
-.ui.pink.inverted.slider.basic .inner .thumb:hover,
-.ui.pink.inverted.slider.basic:focus .inner .thumb {
- background-color: #ff5bd1;
-}
-
-/* Standard */
-
-.ui.brown.slider .inner .track-fill {
- background-color: #A5673F;
-}
-
-.ui.brown.inverted.slider .inner .track-fill {
- background-color: #D67C1C;
-}
-
-/* Basic */
-
-.ui.brown.slider.basic .inner .thumb {
- background-color: #A5673F;
-}
-
-.ui.brown.slider.basic .inner .thumb:hover,
-.ui.brown.slider.basic:focus .inner .thumb {
- background-color: #975b33;
-}
-
-/* Basic Inverted */
-
-.ui.brown.inverted.slider.basic .inner .thumb {
- background-color: #D67C1C;
-}
-
-.ui.brown.inverted.slider.basic .inner .thumb:hover,
-.ui.brown.inverted.slider.basic:focus .inner .thumb {
- background-color: #b0620f;
-}
-
-/* Standard */
-
-.ui.grey.slider .inner .track-fill {
- background-color: #767676;
-}
-
-.ui.grey.inverted.slider .inner .track-fill {
- background-color: #DCDDDE;
-}
-
-/* Basic */
-
-.ui.grey.slider.basic .inner .thumb {
- background-color: #767676;
-}
-
-.ui.grey.slider.basic .inner .thumb:hover,
-.ui.grey.slider.basic:focus .inner .thumb {
- background-color: #838383;
-}
-
-/* Basic Inverted */
-
-.ui.grey.inverted.slider.basic .inner .thumb {
- background-color: #DCDDDE;
-}
-
-.ui.grey.inverted.slider.basic .inner .thumb:hover,
-.ui.grey.inverted.slider.basic:focus .inner .thumb {
- background-color: #c2c4c5;
-}
-
-/* Standard */
-
-.ui.black.slider .inner .track-fill {
- background-color: #1B1C1D;
-}
-
-.ui.black.inverted.slider .inner .track-fill {
- background-color: #545454;
-}
-
-/* Basic */
-
-.ui.black.slider.basic .inner .thumb {
- background-color: #1B1C1D;
-}
-
-.ui.black.slider.basic .inner .thumb:hover,
-.ui.black.slider.basic:focus .inner .thumb {
- background-color: #27292a;
-}
-
-/* Basic Inverted */
-
-.ui.black.inverted.slider.basic .inner .thumb {
- background-color: #545454;
-}
-
-.ui.black.inverted.slider.basic .inner .thumb:hover,
-.ui.black.inverted.slider.basic:focus .inner .thumb {
- background-color: #000000;
-}
-
-/*--------------
- Basic
- ---------------*/
-
-/* Standard */
-
-.ui.slider.basic .inner .thumb {
- background-color: #1B1C1D;
-}
-
-.ui.slider.basic .inner .thumb:hover,
-.ui.slider.basic:focus .inner .thumb {
- background-color: #27292a;
-}
-
-/*--------------
- Basic Inverted
- ---------------*/
-
-/* Standard */
-
-.ui.inverted.slider.basic .inner .thumb {
- background-color: #545454;
-}
-
-.ui.inverted.slider.basic .inner .thumb:hover,
-.ui.inverted.slider.basic:focus .inner .thumb {
- background-color: #000000;
-}
-
-/*--------------
- Sizing
----------------*/
-
-.ui.slider.small .inner .thumb {
- height: 1em;
- width: 1em;
-}
-
-.ui.slider.small:not(.vertical) .inner {
- height: 1em;
-}
-
-.ui.slider.small:not(.vertical) .inner .track,
-.ui.slider.small:not(.vertical) .inner .track-fill {
- height: 0.3em;
- top: 0.35em;
-}
-
-.ui.small.labeled.slider:not(.vertical) > .labels,
-.ui.small.labeled.slider:not(.vertical) > .labels .label:after {
- height: 1em;
-}
-
-.ui.small.labeled.slider:not(.vertical) > .labels .halftick.label:after {
- height: 0.5em;
-}
-
-/* Small Vertical */
-
-.ui.slider.small.vertical .inner {
- width: 1em;
-}
-
-.ui.slider.small.vertical .inner .track,
-.ui.slider.small.vertical .inner .track-fill {
- width: 0.3em;
- left: 0.35em;
-}
-
-.ui.small.labeled.vertical.slider > .labels,
-.ui.small.labeled.vertical.slider > .labels .label:after {
- width: 1em;
-}
-
-.ui.small.labeled.vertical.slider > .labels .halftick.label:after {
- width: 0.5em;
-}
-
-.ui.slider.large .inner .thumb {
- height: 2em;
- width: 2em;
-}
-
-.ui.slider.large:not(.vertical) .inner {
- height: 2em;
-}
-
-.ui.slider.large:not(.vertical) .inner .track,
-.ui.slider.large:not(.vertical) .inner .track-fill {
- height: 0.5em;
- top: 0.75em;
-}
-
-.ui.large.labeled.slider:not(.vertical) > .labels,
-.ui.large.labeled.slider:not(.vertical) > .labels .label:after {
- height: 2em;
-}
-
-.ui.large.labeled.slider:not(.vertical) > .labels .halftick.label:after {
- height: 1em;
-}
-
-/* Small Vertical */
-
-.ui.slider.large.vertical .inner {
- width: 2em;
-}
-
-.ui.slider.large.vertical .inner .track,
-.ui.slider.large.vertical .inner .track-fill {
- width: 0.5em;
- left: 0.75em;
-}
-
-.ui.large.labeled.vertical.slider > .labels,
-.ui.large.labeled.vertical.slider > .labels .label:after {
- width: 2em;
-}
-
-.ui.large.labeled.vertical.slider > .labels .halftick.label:after {
- width: 1em;
-}
-
-.ui.slider.big .inner .thumb {
- height: 2.5em;
- width: 2.5em;
-}
-
-.ui.slider.big:not(.vertical) .inner {
- height: 2.5em;
-}
-
-.ui.slider.big:not(.vertical) .inner .track,
-.ui.slider.big:not(.vertical) .inner .track-fill {
- height: 0.6em;
- top: 0.95em;
-}
-
-.ui.big.labeled.slider:not(.vertical) > .labels,
-.ui.big.labeled.slider:not(.vertical) > .labels .label:after {
- height: 2.5em;
-}
-
-.ui.big.labeled.slider:not(.vertical) > .labels .halftick.label:after {
- height: 1.25em;
-}
-
-/* Small Vertical */
-
-.ui.slider.big.vertical .inner {
- width: 2.5em;
-}
-
-.ui.slider.big.vertical .inner .track,
-.ui.slider.big.vertical .inner .track-fill {
- width: 0.6em;
- left: 0.95em;
-}
-
-.ui.big.labeled.vertical.slider > .labels,
-.ui.big.labeled.vertical.slider > .labels .label:after {
- width: 2.5em;
-}
-
-.ui.big.labeled.vertical.slider > .labels .halftick.label:after {
- width: 1.25em;
-}
-
-/*******************************
- Slider Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Rating
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Rating
-*******************************/
-
-.ui.rating {
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
- display: inline-flex;
- white-space: nowrap;
- vertical-align: baseline;
-}
-
-.ui.rating:last-child {
- margin-right: 0;
-}
-
-/* Icon */
-
-.ui.rating .icon {
- padding: 0;
- margin: 0;
- text-align: center;
- font-weight: normal;
- font-style: normal;
- -webkit-box-flex: 1;
- -ms-flex: 1 0 auto;
- flex: 1 0 auto;
- cursor: pointer;
- width: 1.25em;
- height: auto;
- -webkit-transition: opacity 0.1s ease, background 0.1s ease, text-shadow 0.1s ease, color 0.1s ease;
- transition: opacity 0.1s ease, background 0.1s ease, text-shadow 0.1s ease, color 0.1s ease;
- line-height: 1;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
-}
-
-/*******************************
- Types
-*******************************/
-
-/*-------------------
- Standard
---------------------*/
-
-/* Inactive Icon */
-
-.ui.rating .icon {
- background: transparent;
- color: rgba(0, 0, 0, 0.15);
-}
-
-/* Active Icon */
-
-.ui.rating .active.icon {
- background: transparent;
- color: rgba(0, 0, 0, 0.85);
-}
-
-/* Partially Active Icon */
-
-.ui.rating .icon.partial.active {
- background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.85)), to(rgba(0, 0, 0, 0.15)));
- background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.85) 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- -webkit-background-clip: text;
- background-clip: text;
- color: transparent;
-}
-
-/* Selected Icon */
-
-.ui.rating .icon.selected,
-.ui.rating .icon.selected.active,
-.ui.rating .icon.selected.partial.active {
- background: transparent;
- color: rgba(0, 0, 0, 0.87);
- background-clip: unset;
-}
-
-/*--------------
- Colors
--------------- */
-
-.ui.primary.rating .active.icon {
- color: #54C8FF;
- text-shadow: 0px -1px 0px #2185D0, -1px 0px 0px #2185D0, 0px 1px 0px #2185D0, 1px 0px 0px #2185D0;
-}
-
-.ui.primary.rating .icon.selected,
-.ui.primary.rating .icon.selected.active,
-.ui.primary.rating .icon.selected.partial.active {
- background: inherit;
- color: #21b8ff;
- text-shadow: 0px -1px 0px #1678c2, -1px 0px 0px #1678c2, 0px 1px 0px #1678c2, 1px 0px 0px #1678c2;
- -webkit-text-stroke: unset;
- background-clip: unset;
-}
-
-.ui.primary.rating .icon.partial.active {
- background: -webkit-gradient(linear, left top, right top, from(#54C8FF), to(rgba(0, 0, 0, 0.15)));
- background: -webkit-linear-gradient(left, #54C8FF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- background: linear-gradient(to right, #54C8FF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- text-shadow: none;
- -webkit-text-stroke: #2185D0 0.78px;
- -webkit-background-clip: text;
- background-clip: text;
- color: transparent;
-}
-
-.ui.secondary.rating .active.icon {
- color: #545454;
- text-shadow: 0px -1px 0px #1B1C1D, -1px 0px 0px #1B1C1D, 0px 1px 0px #1B1C1D, 1px 0px 0px #1B1C1D;
-}
-
-.ui.secondary.rating .icon.selected,
-.ui.secondary.rating .icon.selected.active,
-.ui.secondary.rating .icon.selected.partial.active {
- background: inherit;
- color: #6e6e6e;
- text-shadow: 0px -1px 0px #27292a, -1px 0px 0px #27292a, 0px 1px 0px #27292a, 1px 0px 0px #27292a;
- -webkit-text-stroke: unset;
- background-clip: unset;
-}
-
-.ui.secondary.rating .icon.partial.active {
- background: -webkit-gradient(linear, left top, right top, from(#545454), to(rgba(0, 0, 0, 0.15)));
- background: -webkit-linear-gradient(left, #545454 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- background: linear-gradient(to right, #545454 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- text-shadow: none;
- -webkit-text-stroke: #1B1C1D 0.78px;
- -webkit-background-clip: text;
- background-clip: text;
- color: transparent;
-}
-
-.ui.red.rating .active.icon {
- color: #FF695E;
- text-shadow: 0px -1px 0px #DB2828, -1px 0px 0px #DB2828, 0px 1px 0px #DB2828, 1px 0px 0px #DB2828;
-}
-
-.ui.red.rating .icon.selected,
-.ui.red.rating .icon.selected.active,
-.ui.red.rating .icon.selected.partial.active {
- background: inherit;
- color: #ff392b;
- text-shadow: 0px -1px 0px #d01919, -1px 0px 0px #d01919, 0px 1px 0px #d01919, 1px 0px 0px #d01919;
- -webkit-text-stroke: unset;
- background-clip: unset;
-}
-
-.ui.red.rating .icon.partial.active {
- background: -webkit-gradient(linear, left top, right top, from(#FF695E), to(rgba(0, 0, 0, 0.15)));
- background: -webkit-linear-gradient(left, #FF695E 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- background: linear-gradient(to right, #FF695E 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- text-shadow: none;
- -webkit-text-stroke: #DB2828 0.78px;
- -webkit-background-clip: text;
- background-clip: text;
- color: transparent;
-}
-
-.ui.orange.rating .active.icon {
- color: #FF851B;
- text-shadow: 0px -1px 0px #F2711C, -1px 0px 0px #F2711C, 0px 1px 0px #F2711C, 1px 0px 0px #F2711C;
-}
-
-.ui.orange.rating .icon.selected,
-.ui.orange.rating .icon.selected.active,
-.ui.orange.rating .icon.selected.partial.active {
- background: inherit;
- color: #e76b00;
- text-shadow: 0px -1px 0px #f26202, -1px 0px 0px #f26202, 0px 1px 0px #f26202, 1px 0px 0px #f26202;
- -webkit-text-stroke: unset;
- background-clip: unset;
-}
-
-.ui.orange.rating .icon.partial.active {
- background: -webkit-gradient(linear, left top, right top, from(#FF851B), to(rgba(0, 0, 0, 0.15)));
- background: -webkit-linear-gradient(left, #FF851B 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- background: linear-gradient(to right, #FF851B 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- text-shadow: none;
- -webkit-text-stroke: #F2711C 0.78px;
- -webkit-background-clip: text;
- background-clip: text;
- color: transparent;
-}
-
-.ui.yellow.rating .active.icon {
- color: #FFE21F;
- text-shadow: 0px -1px 0px #FBBD08, -1px 0px 0px #FBBD08, 0px 1px 0px #FBBD08, 1px 0px 0px #FBBD08;
-}
-
-.ui.yellow.rating .icon.selected,
-.ui.yellow.rating .icon.selected.active,
-.ui.yellow.rating .icon.selected.partial.active {
- background: inherit;
- color: #ebcd00;
- text-shadow: 0px -1px 0px #eaae00, -1px 0px 0px #eaae00, 0px 1px 0px #eaae00, 1px 0px 0px #eaae00;
- -webkit-text-stroke: unset;
- background-clip: unset;
-}
-
-.ui.yellow.rating .icon.partial.active {
- background: -webkit-gradient(linear, left top, right top, from(#FFE21F), to(rgba(0, 0, 0, 0.15)));
- background: -webkit-linear-gradient(left, #FFE21F 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- background: linear-gradient(to right, #FFE21F 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- text-shadow: none;
- -webkit-text-stroke: #FBBD08 0.78px;
- -webkit-background-clip: text;
- background-clip: text;
- color: transparent;
-}
-
-.ui.olive.rating .active.icon {
- color: #D9E778;
- text-shadow: 0px -1px 0px #B5CC18, -1px 0px 0px #B5CC18, 0px 1px 0px #B5CC18, 1px 0px 0px #B5CC18;
-}
-
-.ui.olive.rating .icon.selected,
-.ui.olive.rating .icon.selected.active,
-.ui.olive.rating .icon.selected.partial.active {
- background: inherit;
- color: #d2e745;
- text-shadow: 0px -1px 0px #a7bd0d, -1px 0px 0px #a7bd0d, 0px 1px 0px #a7bd0d, 1px 0px 0px #a7bd0d;
- -webkit-text-stroke: unset;
- background-clip: unset;
-}
-
-.ui.olive.rating .icon.partial.active {
- background: -webkit-gradient(linear, left top, right top, from(#D9E778), to(rgba(0, 0, 0, 0.15)));
- background: -webkit-linear-gradient(left, #D9E778 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- background: linear-gradient(to right, #D9E778 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- text-shadow: none;
- -webkit-text-stroke: #B5CC18 0.78px;
- -webkit-background-clip: text;
- background-clip: text;
- color: transparent;
-}
-
-.ui.green.rating .active.icon {
- color: #2ECC40;
- text-shadow: 0px -1px 0px #21BA45, -1px 0px 0px #21BA45, 0px 1px 0px #21BA45, 1px 0px 0px #21BA45;
-}
-
-.ui.green.rating .icon.selected,
-.ui.green.rating .icon.selected.active,
-.ui.green.rating .icon.selected.partial.active {
- background: inherit;
- color: #1ea92e;
- text-shadow: 0px -1px 0px #16ab39, -1px 0px 0px #16ab39, 0px 1px 0px #16ab39, 1px 0px 0px #16ab39;
- -webkit-text-stroke: unset;
- background-clip: unset;
-}
-
-.ui.green.rating .icon.partial.active {
- background: -webkit-gradient(linear, left top, right top, from(#2ECC40), to(rgba(0, 0, 0, 0.15)));
- background: -webkit-linear-gradient(left, #2ECC40 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- background: linear-gradient(to right, #2ECC40 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- text-shadow: none;
- -webkit-text-stroke: #21BA45 0.78px;
- -webkit-background-clip: text;
- background-clip: text;
- color: transparent;
-}
-
-.ui.teal.rating .active.icon {
- color: #6DFFFF;
- text-shadow: 0px -1px 0px #00B5AD, -1px 0px 0px #00B5AD, 0px 1px 0px #00B5AD, 1px 0px 0px #00B5AD;
-}
-
-.ui.teal.rating .icon.selected,
-.ui.teal.rating .icon.selected.active,
-.ui.teal.rating .icon.selected.partial.active {
- background: inherit;
- color: #3affff;
- text-shadow: 0px -1px 0px #009c95, -1px 0px 0px #009c95, 0px 1px 0px #009c95, 1px 0px 0px #009c95;
- -webkit-text-stroke: unset;
- background-clip: unset;
-}
-
-.ui.teal.rating .icon.partial.active {
- background: -webkit-gradient(linear, left top, right top, from(#6DFFFF), to(rgba(0, 0, 0, 0.15)));
- background: -webkit-linear-gradient(left, #6DFFFF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- background: linear-gradient(to right, #6DFFFF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- text-shadow: none;
- -webkit-text-stroke: #00B5AD 0.78px;
- -webkit-background-clip: text;
- background-clip: text;
- color: transparent;
-}
-
-.ui.blue.rating .active.icon {
- color: #54C8FF;
- text-shadow: 0px -1px 0px #2185D0, -1px 0px 0px #2185D0, 0px 1px 0px #2185D0, 1px 0px 0px #2185D0;
-}
-
-.ui.blue.rating .icon.selected,
-.ui.blue.rating .icon.selected.active,
-.ui.blue.rating .icon.selected.partial.active {
- background: inherit;
- color: #21b8ff;
- text-shadow: 0px -1px 0px #1678c2, -1px 0px 0px #1678c2, 0px 1px 0px #1678c2, 1px 0px 0px #1678c2;
- -webkit-text-stroke: unset;
- background-clip: unset;
-}
-
-.ui.blue.rating .icon.partial.active {
- background: -webkit-gradient(linear, left top, right top, from(#54C8FF), to(rgba(0, 0, 0, 0.15)));
- background: -webkit-linear-gradient(left, #54C8FF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- background: linear-gradient(to right, #54C8FF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- text-shadow: none;
- -webkit-text-stroke: #2185D0 0.78px;
- -webkit-background-clip: text;
- background-clip: text;
- color: transparent;
-}
-
-.ui.violet.rating .active.icon {
- color: #A291FB;
- text-shadow: 0px -1px 0px #6435C9, -1px 0px 0px #6435C9, 0px 1px 0px #6435C9, 1px 0px 0px #6435C9;
-}
-
-.ui.violet.rating .icon.selected,
-.ui.violet.rating .icon.selected.active,
-.ui.violet.rating .icon.selected.partial.active {
- background: inherit;
- color: #745aff;
- text-shadow: 0px -1px 0px #5829bb, -1px 0px 0px #5829bb, 0px 1px 0px #5829bb, 1px 0px 0px #5829bb;
- -webkit-text-stroke: unset;
- background-clip: unset;
-}
-
-.ui.violet.rating .icon.partial.active {
- background: -webkit-gradient(linear, left top, right top, from(#A291FB), to(rgba(0, 0, 0, 0.15)));
- background: -webkit-linear-gradient(left, #A291FB 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- background: linear-gradient(to right, #A291FB 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- text-shadow: none;
- -webkit-text-stroke: #6435C9 0.78px;
- -webkit-background-clip: text;
- background-clip: text;
- color: transparent;
-}
-
-.ui.purple.rating .active.icon {
- color: #DC73FF;
- text-shadow: 0px -1px 0px #A333C8, -1px 0px 0px #A333C8, 0px 1px 0px #A333C8, 1px 0px 0px #A333C8;
-}
-
-.ui.purple.rating .icon.selected,
-.ui.purple.rating .icon.selected.active,
-.ui.purple.rating .icon.selected.partial.active {
- background: inherit;
- color: #cf40ff;
- text-shadow: 0px -1px 0px #9627ba, -1px 0px 0px #9627ba, 0px 1px 0px #9627ba, 1px 0px 0px #9627ba;
- -webkit-text-stroke: unset;
- background-clip: unset;
-}
-
-.ui.purple.rating .icon.partial.active {
- background: -webkit-gradient(linear, left top, right top, from(#DC73FF), to(rgba(0, 0, 0, 0.15)));
- background: -webkit-linear-gradient(left, #DC73FF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- background: linear-gradient(to right, #DC73FF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- text-shadow: none;
- -webkit-text-stroke: #A333C8 0.78px;
- -webkit-background-clip: text;
- background-clip: text;
- color: transparent;
-}
-
-.ui.pink.rating .active.icon {
- color: #FF8EDF;
- text-shadow: 0px -1px 0px #E03997, -1px 0px 0px #E03997, 0px 1px 0px #E03997, 1px 0px 0px #E03997;
-}
-
-.ui.pink.rating .icon.selected,
-.ui.pink.rating .icon.selected.active,
-.ui.pink.rating .icon.selected.partial.active {
- background: inherit;
- color: #ff5bd1;
- text-shadow: 0px -1px 0px #e61a8d, -1px 0px 0px #e61a8d, 0px 1px 0px #e61a8d, 1px 0px 0px #e61a8d;
- -webkit-text-stroke: unset;
- background-clip: unset;
-}
-
-.ui.pink.rating .icon.partial.active {
- background: -webkit-gradient(linear, left top, right top, from(#FF8EDF), to(rgba(0, 0, 0, 0.15)));
- background: -webkit-linear-gradient(left, #FF8EDF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- background: linear-gradient(to right, #FF8EDF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- text-shadow: none;
- -webkit-text-stroke: #E03997 0.78px;
- -webkit-background-clip: text;
- background-clip: text;
- color: transparent;
-}
-
-.ui.brown.rating .active.icon {
- color: #D67C1C;
- text-shadow: 0px -1px 0px #A5673F, -1px 0px 0px #A5673F, 0px 1px 0px #A5673F, 1px 0px 0px #A5673F;
-}
-
-.ui.brown.rating .icon.selected,
-.ui.brown.rating .icon.selected.active,
-.ui.brown.rating .icon.selected.partial.active {
- background: inherit;
- color: #b0620f;
- text-shadow: 0px -1px 0px #975b33, -1px 0px 0px #975b33, 0px 1px 0px #975b33, 1px 0px 0px #975b33;
- -webkit-text-stroke: unset;
- background-clip: unset;
-}
-
-.ui.brown.rating .icon.partial.active {
- background: -webkit-gradient(linear, left top, right top, from(#D67C1C), to(rgba(0, 0, 0, 0.15)));
- background: -webkit-linear-gradient(left, #D67C1C 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- background: linear-gradient(to right, #D67C1C 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- text-shadow: none;
- -webkit-text-stroke: #A5673F 0.78px;
- -webkit-background-clip: text;
- background-clip: text;
- color: transparent;
-}
-
-.ui.grey.rating .active.icon {
- color: #DCDDDE;
- text-shadow: 0px -1px 0px #767676, -1px 0px 0px #767676, 0px 1px 0px #767676, 1px 0px 0px #767676;
-}
-
-.ui.grey.rating .icon.selected,
-.ui.grey.rating .icon.selected.active,
-.ui.grey.rating .icon.selected.partial.active {
- background: inherit;
- color: #c2c4c5;
- text-shadow: 0px -1px 0px #838383, -1px 0px 0px #838383, 0px 1px 0px #838383, 1px 0px 0px #838383;
- -webkit-text-stroke: unset;
- background-clip: unset;
-}
-
-.ui.grey.rating .icon.partial.active {
- background: -webkit-gradient(linear, left top, right top, from(#DCDDDE), to(rgba(0, 0, 0, 0.15)));
- background: -webkit-linear-gradient(left, #DCDDDE 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- background: linear-gradient(to right, #DCDDDE 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- text-shadow: none;
- -webkit-text-stroke: #767676 0.78px;
- -webkit-background-clip: text;
- background-clip: text;
- color: transparent;
-}
-
-.ui.black.rating .active.icon {
- color: #545454;
- text-shadow: 0px -1px 0px #1B1C1D, -1px 0px 0px #1B1C1D, 0px 1px 0px #1B1C1D, 1px 0px 0px #1B1C1D;
-}
-
-.ui.black.rating .icon.selected,
-.ui.black.rating .icon.selected.active,
-.ui.black.rating .icon.selected.partial.active {
- background: inherit;
- color: #000000;
- text-shadow: 0px -1px 0px #27292a, -1px 0px 0px #27292a, 0px 1px 0px #27292a, 1px 0px 0px #27292a;
- -webkit-text-stroke: unset;
- background-clip: unset;
-}
-
-.ui.black.rating .icon.partial.active {
- background: -webkit-gradient(linear, left top, right top, from(#545454), to(rgba(0, 0, 0, 0.15)));
- background: -webkit-linear-gradient(left, #545454 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- background: linear-gradient(to right, #545454 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
- text-shadow: none;
- -webkit-text-stroke: #1B1C1D 0.78px;
- -webkit-background-clip: text;
- background-clip: text;
- color: transparent;
-}
-
-/*******************************
- States
-*******************************/
-
-/*-------------------
- Disabled
- --------------------*/
-
-/* disabled rating */
-
-.ui.disabled.rating .icon {
- cursor: default;
-}
-
-/*-------------------
- User Interactive
---------------------*/
-
-/* Selected Rating */
-
-.ui.rating.selected .active.icon {
- opacity: 1;
-}
-
-.ui.rating.selected .icon.selected,
-.ui.rating .icon.selected {
- opacity: 1;
-}
-
-/*******************************
- Variations
-*******************************/
-
-.ui.rating {
- font-size: 1rem;
-}
-
-.ui.mini.rating {
- font-size: 0.78571429rem;
-}
-
-.ui.tiny.rating {
- font-size: 0.85714286rem;
-}
-
-.ui.small.rating {
- font-size: 0.92857143rem;
-}
-
-.ui.large.rating {
- font-size: 1.14285714rem;
-}
-
-.ui.big.rating {
- font-size: 1.28571429rem;
-}
-
-.ui.huge.rating {
- font-size: 1.42857143rem;
-}
-
-.ui.massive.rating {
- font-size: 2rem;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Search
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Search
-*******************************/
-
-.ui.search {
- position: relative;
-}
-
-.ui.search > .prompt {
- margin: 0;
- outline: none;
- -webkit-appearance: none;
- -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
- text-shadow: none;
- font-style: normal;
- font-weight: normal;
- line-height: 1.21428571em;
- padding: 0.67857143em 1em;
- font-size: 1em;
- background: #FFFFFF;
- border: 1px solid rgba(34, 36, 38, 0.15);
- color: rgba(0, 0, 0, 0.87);
- -webkit-box-shadow: 0 0 0 0 transparent inset;
- box-shadow: 0 0 0 0 transparent inset;
- -webkit-transition: background-color 0.1s ease, color 0.1s ease, border-color 0.1s ease, -webkit-box-shadow 0.1s ease;
- transition: background-color 0.1s ease, color 0.1s ease, border-color 0.1s ease, -webkit-box-shadow 0.1s ease;
- transition: background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, border-color 0.1s ease;
- transition: background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, border-color 0.1s ease, -webkit-box-shadow 0.1s ease;
-}
-
-.ui.search .prompt {
- border-radius: 500rem;
-}
-
-/*--------------
- Icon
----------------*/
-
-.ui.search .prompt ~ .search.icon {
- cursor: pointer;
-}
-
-/*--------------
- Results
----------------*/
-
-.ui.search > .results {
- display: none;
- position: absolute;
- top: 100%;
- left: 0;
- -webkit-transform-origin: center top;
- transform-origin: center top;
- white-space: normal;
- text-align: left;
- text-transform: none;
- background: #FFFFFF;
- margin-top: 0.5em;
- width: 18em;
- border-radius: 0.28571429rem;
- -webkit-box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- border: 1px solid #D4D4D5;
- z-index: 998;
-}
-
-.ui.search > .results > :first-child {
- border-radius: 0.28571429rem 0.28571429rem 0 0;
-}
-
-.ui.search > .results > :last-child {
- border-radius: 0 0 0.28571429rem 0.28571429rem;
-}
-
-/*--------------
- Result
----------------*/
-
-.ui.search > .results .result {
- cursor: pointer;
- display: block;
- overflow: hidden;
- font-size: 1em;
- padding: 0.85714286em 1.14285714em;
- color: rgba(0, 0, 0, 0.87);
- line-height: 1.33;
- border-bottom: 1px solid rgba(34, 36, 38, 0.1);
-}
-
-.ui.search > .results .result:last-child {
- border-bottom: none !important;
-}
-
-/* Image */
-
-.ui.search > .results .result .image {
- float: right;
- overflow: hidden;
- background: none;
- width: 5em;
- height: 3em;
- border-radius: 0.25em;
-}
-
-.ui.search > .results .result .image img {
- display: block;
- width: auto;
- height: 100%;
-}
-
-/*--------------
- Info
----------------*/
-
-.ui.search > .results .result .image + .content {
- margin: 0 6em 0 0;
-}
-
-.ui.search > .results .result .title {
- margin: -0.14285714em 0 0;
- font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
- font-weight: bold;
- font-size: 1em;
- color: rgba(0, 0, 0, 0.85);
-}
-
-.ui.search > .results .result .description {
- margin-top: 0;
- font-size: 0.92857143em;
- color: rgba(0, 0, 0, 0.4);
-}
-
-.ui.search > .results .result .price {
- float: right;
- color: #21BA45;
-}
-
-/*--------------
- Message
----------------*/
-
-.ui.search > .results > .message {
- padding: 1em 1em;
-}
-
-.ui.search > .results > .message .header {
- font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
- font-size: 1rem;
- font-weight: bold;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.search > .results > .message .description {
- margin-top: 0.25rem;
- font-size: 1em;
- color: rgba(0, 0, 0, 0.87);
-}
-
-/* View All Results */
-
-.ui.search > .results > .action {
- display: block;
- border-top: none;
- background: #F3F4F5;
- padding: 0.92857143em 1em;
- color: rgba(0, 0, 0, 0.87);
- font-weight: bold;
- text-align: center;
-}
-
-/*******************************
- States
-*******************************/
-
-/*--------------------
- Focus
----------------------*/
-
-.ui.search > .prompt:focus {
- border-color: rgba(34, 36, 38, 0.35);
- background: #FFFFFF;
- color: rgba(0, 0, 0, 0.95);
-}
-
-/*--------------------
- Loading
- ---------------------*/
-
-.ui.loading.search .input > i.icon:before {
- position: absolute;
- content: '';
- top: 50%;
- left: 50%;
- margin: -0.64285714em 0 0 -0.64285714em;
- width: 1.28571429em;
- height: 1.28571429em;
- border-radius: 500rem;
- border: 0.2em solid rgba(0, 0, 0, 0.1);
-}
-
-.ui.loading.search .input > i.icon:after {
- position: absolute;
- content: '';
- top: 50%;
- left: 50%;
- margin: -0.64285714em 0 0 -0.64285714em;
- width: 1.28571429em;
- height: 1.28571429em;
- -webkit-animation: loader 0.6s infinite linear;
- animation: loader 0.6s infinite linear;
- border: 0.2em solid #767676;
- border-radius: 500rem;
- -webkit-box-shadow: 0 0 0 1px transparent;
- box-shadow: 0 0 0 1px transparent;
-}
-
-/*--------------
- Hover
----------------*/
-
-.ui.search > .results .result:hover,
-.ui.category.search > .results .category .result:hover {
- background: #F9FAFB;
-}
-
-.ui.search .action:hover:not(div) {
- background: #E0E0E0;
-}
-
-/*--------------
- Active
----------------*/
-
-.ui.category.search > .results .category.active {
- background: #F3F4F5;
-}
-
-.ui.category.search > .results .category.active > .name {
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.search > .results .result.active,
-.ui.category.search > .results .category .result.active {
- position: relative;
- border-left-color: rgba(34, 36, 38, 0.1);
- background: #F3F4F5;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.ui.search > .results .result.active .title {
- color: rgba(0, 0, 0, 0.85);
-}
-
-.ui.search > .results .result.active .description {
- color: rgba(0, 0, 0, 0.85);
-}
-
-/*--------------------
- Disabled
- ----------------------*/
-
-/* Disabled */
-
-.ui.disabled.search {
- cursor: default;
- pointer-events: none;
- opacity: 0.45;
-}
-
-/*******************************
- Types
-*******************************/
-
-/*--------------
- Selection
- ---------------*/
-
-.ui.search.selection .prompt {
- border-radius: 0.28571429rem;
-}
-
-/* Remove input */
-
-.ui.search.selection > .icon.input > .remove.icon {
- pointer-events: none;
- position: absolute;
- left: auto;
- opacity: 0;
- color: '';
- top: 0;
- right: 0;
- -webkit-transition: color 0.1s ease, opacity 0.1s ease;
- transition: color 0.1s ease, opacity 0.1s ease;
-}
-
-.ui.search.selection > .icon.input > .active.remove.icon {
- cursor: pointer;
- opacity: 0.8;
- pointer-events: auto;
-}
-
-.ui.search.selection > .icon.input:not([class*="left icon"]) > .icon ~ .remove.icon {
- right: 1.85714em;
-}
-
-.ui.search.selection > .icon.input > .remove.icon:hover {
- opacity: 1;
- color: #DB2828;
-}
-
-/*--------------
- Category
- ---------------*/
-
-.ui.category.search .results {
- width: 28em;
-}
-
-.ui.category.search .results.animating,
-.ui.category.search .results.visible {
- display: table;
-}
-
-/* Category */
-
-.ui.category.search > .results .category {
- display: table-row;
- background: #F3F4F5;
- -webkit-box-shadow: none;
- box-shadow: none;
- -webkit-transition: background 0.1s ease, border-color 0.1s ease;
- transition: background 0.1s ease, border-color 0.1s ease;
-}
-
-/* Last Category */
-
-.ui.category.search > .results .category:last-child {
- border-bottom: none;
-}
-
-/* First / Last */
-
-.ui.category.search > .results .category:first-child .name + .result {
- border-radius: 0 0.28571429rem 0 0;
-}
-
-.ui.category.search > .results .category:last-child .result:last-child {
- border-radius: 0 0 0.28571429rem 0;
-}
-
-/* Category Result Name */
-
-.ui.category.search > .results .category > .name {
- display: table-cell;
- text-overflow: ellipsis;
- width: 100px;
- white-space: nowrap;
- background: transparent;
- font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
- font-size: 1em;
- padding: 0.4em 1em;
- font-weight: bold;
- color: rgba(0, 0, 0, 0.4);
- border-bottom: 1px solid rgba(34, 36, 38, 0.1);
-}
-
-/* Category Result */
-
-.ui.category.search > .results .category .results {
- display: table-cell;
- background: #FFFFFF;
- border-left: 1px solid rgba(34, 36, 38, 0.15);
- border-bottom: 1px solid rgba(34, 36, 38, 0.1);
-}
-
-.ui.category.search > .results .category .result {
- border-bottom: 1px solid rgba(34, 36, 38, 0.1);
- -webkit-transition: background 0.1s ease, border-color 0.1s ease;
- transition: background 0.1s ease, border-color 0.1s ease;
- padding: 0.85714286em 1.14285714em;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*-------------------
- Left / Right
- --------------------*/
-
-.ui[class*="left aligned"].search > .results {
- right: auto;
- left: 0;
-}
-
-.ui[class*="right aligned"].search > .results {
- right: 0;
- left: auto;
-}
-
-/*--------------
- Fluid
----------------*/
-
-.ui.fluid.search .results {
- width: 100%;
-}
-
-/*--------------
- Sizes
----------------*/
-
-.ui.search {
- font-size: 1em;
-}
-
-.ui.mini.search {
- font-size: 0.78571429em;
-}
-
-.ui.tiny.search {
- font-size: 0.85714286em;
-}
-
-.ui.small.search {
- font-size: 0.92857143em;
-}
-
-.ui.large.search {
- font-size: 1.14285714em;
-}
-
-.ui.big.search {
- font-size: 1.28571429em;
-}
-
-.ui.huge.search {
- font-size: 1.42857143em;
-}
-
-.ui.massive.search {
- font-size: 1.71428571em;
-}
-
-/*--------------
- Mobile
----------------*/
-
-@media only screen and (max-width: 767.98px) {
- .ui.search .results {
- max-width: calc(100vw - 2rem);
- }
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Shape
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Shape
-*******************************/
-
-.ui.shape {
- position: relative;
- vertical-align: top;
- display: inline-block;
- -webkit-perspective: 2000px;
- perspective: 2000px;
- -webkit-transition: left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
- transition: left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
- transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out;
- transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
-}
-
-.ui.shape .sides {
- -webkit-transform-style: preserve-3d;
- transform-style: preserve-3d;
-}
-
-.ui.shape .side {
- display: none;
- opacity: 1;
- width: 100%;
- margin: 0 !important;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
-}
-
-.ui.shape .side * {
- -webkit-backface-visibility: visible !important;
- backface-visibility: visible !important;
-}
-
-/*******************************
- Types
-*******************************/
-
-.ui.cube.shape .side {
- min-width: 15em;
- height: 15em;
- padding: 2em;
- background-color: #E6E6E6;
- color: rgba(0, 0, 0, 0.87);
- -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
- box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
-}
-
-.ui.cube.shape .side > .content {
- width: 100%;
- height: 100%;
- display: table;
- text-align: center;
- -webkit-user-select: text;
- -moz-user-select: text;
- -ms-user-select: text;
- user-select: text;
-}
-
-.ui.cube.shape .side > .content > div {
- display: table-cell;
- vertical-align: middle;
- font-size: 2em;
-}
-
-/*******************************
- Variations
-*******************************/
-
-.ui.text.shape.animating .sides {
- position: static;
-}
-
-.ui.text.shape .side {
- white-space: nowrap;
-}
-
-.ui.text.shape .side > * {
- white-space: normal;
-}
-
-/*******************************
- States
-*******************************/
-
-/*--------------
- Loading
- ---------------*/
-
-.ui.loading.shape {
- position: absolute;
- top: -9999px;
- left: -9999px;
-}
-
-/*--------------
- Animating
----------------*/
-
-.ui.shape .animating.side {
- position: absolute;
- top: 0;
- left: 0;
- display: block;
- z-index: 100;
-}
-
-.ui.shape .hidden.side {
- opacity: 0.6;
-}
-
-/*--------------
- CSS
----------------*/
-
-.ui.shape.animating .sides {
- position: absolute;
- -webkit-transition: left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
- transition: left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
- transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out;
- transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
-}
-
-.ui.shape.animating .side {
- -webkit-transition: opacity 0.6s ease-in-out;
- transition: opacity 0.6s ease-in-out;
-}
-
-.ui.shape .animating.side *,
-.ui.shape.animating .side * {
- -webkit-transition: none;
- transition: none;
-}
-
-/*--------------
- Active
----------------*/
-
-.ui.shape .active.side {
- display: block;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- User Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Sidebar
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Sidebar
-*******************************/
-
-/* Sidebar Menu */
-
-.ui.sidebar {
- position: fixed;
- top: 0;
- left: 0;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- -webkit-transition: none;
- transition: none;
- will-change: transform;
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- visibility: hidden;
- -webkit-overflow-scrolling: touch;
- height: 100% !important;
- max-height: 100%;
- border-radius: 0 !important;
- margin: 0 !important;
- overflow-y: auto !important;
- z-index: 102;
-}
-
-/* GPU Layers for Child Elements */
-
-.ui.sidebar > * {
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
-}
-
-/*--------------
- Direction
----------------*/
-
-.ui.left.sidebar {
- right: auto;
- left: 0;
- -webkit-transform: translate3d(-100%, 0, 0);
- transform: translate3d(-100%, 0, 0);
-}
-
-.ui.right.sidebar {
- right: 0 !important;
- left: auto !important;
- -webkit-transform: translate3d(100%, 0, 0);
- transform: translate3d(100%, 0, 0);
-}
-
-.ui.top.sidebar,
-.ui.bottom.sidebar {
- width: 100% !important;
- height: auto !important;
-}
-
-.ui.top.sidebar {
- top: 0 !important;
- bottom: auto !important;
- -webkit-transform: translate3d(0, -100%, 0);
- transform: translate3d(0, -100%, 0);
-}
-
-.ui.bottom.sidebar {
- top: auto !important;
- bottom: 0 !important;
- -webkit-transform: translate3d(0, 100%, 0);
- transform: translate3d(0, 100%, 0);
-}
-
-/*--------------
- Pushable
----------------*/
-
-.pushable {
- height: 100%;
- overflow-x: hidden;
- padding: 0 !important;
-}
-
-/* Whole Page */
-
-body.pushable {
- background: #545454;
-}
-
-body.pushable.dimmed {
- background: inherit;
-}
-
-/* Page Context */
-
-.pushable:not(body) {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
-}
-
-.pushable:not(body) > .ui.sidebar,
-.pushable:not(body) > .fixed,
-.pushable:not(body) > .pusher:after {
- position: absolute;
-}
-
-/*--------------
- Fixed
----------------*/
-
-.pushable > .fixed {
- position: fixed;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- -webkit-transition: -webkit-transform 500ms ease;
- transition: -webkit-transform 500ms ease;
- transition: transform 500ms ease;
- transition: transform 500ms ease, -webkit-transform 500ms ease;
- will-change: transform;
- z-index: 101;
-}
-
-/*--------------
- Page
----------------*/
-
-.pushable > .pusher {
- position: relative;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- overflow: hidden;
- min-height: 100%;
- -webkit-transition: -webkit-transform 500ms ease;
- transition: -webkit-transform 500ms ease;
- transition: transform 500ms ease;
- transition: transform 500ms ease, -webkit-transform 500ms ease;
- z-index: 2;
- /* Pusher should inherit background from context */
- background: inherit;
-}
-
-body.pushable > .pusher {
- background: #FFFFFF;
-}
-
-/*--------------
- Dimmer
----------------*/
-
-.pushable > .pusher:after {
- position: fixed;
- top: 0;
- right: 0;
- content: '';
- background-color: rgba(0, 0, 0, 0.4);
- overflow: hidden;
- opacity: 0;
- -webkit-transition: opacity 500ms;
- transition: opacity 500ms;
- will-change: opacity;
- z-index: 1000;
-}
-
-/*--------------
- Coupling
----------------*/
-
-.ui.sidebar.menu .item {
- border-radius: 0 !important;
-}
-
-/*******************************
- States
-*******************************/
-
-/*--------------
- Dimmed
----------------*/
-
-.pushable > .pusher.dimmed:after {
- width: 100% !important;
- height: 100% !important;
- opacity: 1 !important;
-}
-
-/*--------------
- Animating
----------------*/
-
-.ui.animating.sidebar {
- visibility: visible;
-}
-
-/*--------------
- Visible
----------------*/
-
-.ui.visible.sidebar {
- visibility: visible;
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
-}
-
-/* Shadow Direction */
-
-.ui.left.visible.sidebar,
-.ui.right.visible.sidebar {
- -webkit-box-shadow: 0 0 20px rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 20px rgba(34, 36, 38, 0.15);
-}
-
-.ui.top.visible.sidebar,
-.ui.bottom.visible.sidebar {
- -webkit-box-shadow: 0 0 20px rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 20px rgba(34, 36, 38, 0.15);
-}
-
-/* Visible On Load */
-
-.ui.visible.left.sidebar ~ .fixed,
-.ui.visible.left.sidebar ~ .pusher {
- -webkit-transform: translate3d(260px, 0, 0);
- transform: translate3d(260px, 0, 0);
-}
-
-.ui.visible.right.sidebar ~ .fixed,
-.ui.visible.right.sidebar ~ .pusher {
- -webkit-transform: translate3d(-260px, 0, 0);
- transform: translate3d(-260px, 0, 0);
-}
-
-.ui.visible.top.sidebar ~ .fixed,
-.ui.visible.top.sidebar ~ .pusher {
- -webkit-transform: translate3d(0, 36px, 0);
- transform: translate3d(0, 36px, 0);
-}
-
-.ui.visible.bottom.sidebar ~ .fixed,
-.ui.visible.bottom.sidebar ~ .pusher {
- -webkit-transform: translate3d(0, -36px, 0);
- transform: translate3d(0, -36px, 0);
-}
-
-/* opposite sides visible forces content overlay */
-
-.ui.visible.left.sidebar ~ .ui.visible.right.sidebar ~ .fixed,
-.ui.visible.left.sidebar ~ .ui.visible.right.sidebar ~ .pusher,
-.ui.visible.right.sidebar ~ .ui.visible.left.sidebar ~ .fixed,
-.ui.visible.right.sidebar ~ .ui.visible.left.sidebar ~ .pusher {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
-}
-
-/*--------------
- iOS
----------------*/
-
-/*******************************
- Variations
-*******************************/
-
-/*--------------
- Width
----------------*/
-
-/* Left / Right */
-
-.ui.thin.left.sidebar,
-.ui.thin.right.sidebar {
- width: 150px;
-}
-
-.ui[class*="very thin"].left.sidebar,
-.ui[class*="very thin"].right.sidebar {
- width: 60px;
-}
-
-.ui.left.sidebar,
-.ui.right.sidebar {
- width: 260px;
-}
-
-.ui.wide.left.sidebar,
-.ui.wide.right.sidebar {
- width: 350px;
-}
-
-.ui[class*="very wide"].left.sidebar,
-.ui[class*="very wide"].right.sidebar {
- width: 475px;
-}
-
-/* Left Visible */
-
-.ui.visible.thin.left.sidebar ~ .fixed,
-.ui.visible.thin.left.sidebar ~ .pusher {
- -webkit-transform: translate3d(150px, 0, 0);
- transform: translate3d(150px, 0, 0);
-}
-
-.ui.visible[class*="very thin"].left.sidebar ~ .fixed,
-.ui.visible[class*="very thin"].left.sidebar ~ .pusher {
- -webkit-transform: translate3d(60px, 0, 0);
- transform: translate3d(60px, 0, 0);
-}
-
-.ui.visible.wide.left.sidebar ~ .fixed,
-.ui.visible.wide.left.sidebar ~ .pusher {
- -webkit-transform: translate3d(350px, 0, 0);
- transform: translate3d(350px, 0, 0);
-}
-
-.ui.visible[class*="very wide"].left.sidebar ~ .fixed,
-.ui.visible[class*="very wide"].left.sidebar ~ .pusher {
- -webkit-transform: translate3d(475px, 0, 0);
- transform: translate3d(475px, 0, 0);
-}
-
-/* Right Visible */
-
-.ui.visible.thin.right.sidebar ~ .fixed,
-.ui.visible.thin.right.sidebar ~ .pusher {
- -webkit-transform: translate3d(-150px, 0, 0);
- transform: translate3d(-150px, 0, 0);
-}
-
-.ui.visible[class*="very thin"].right.sidebar ~ .fixed,
-.ui.visible[class*="very thin"].right.sidebar ~ .pusher {
- -webkit-transform: translate3d(-60px, 0, 0);
- transform: translate3d(-60px, 0, 0);
-}
-
-.ui.visible.wide.right.sidebar ~ .fixed,
-.ui.visible.wide.right.sidebar ~ .pusher {
- -webkit-transform: translate3d(-350px, 0, 0);
- transform: translate3d(-350px, 0, 0);
-}
-
-.ui.visible[class*="very wide"].right.sidebar ~ .fixed,
-.ui.visible[class*="very wide"].right.sidebar ~ .pusher {
- -webkit-transform: translate3d(-475px, 0, 0);
- transform: translate3d(-475px, 0, 0);
-}
-
-/*******************************
- Animations
-*******************************/
-
-/*--------------
- Overlay
- ---------------*/
-
-/* Set-up */
-
-.ui.overlay.sidebar {
- z-index: 102;
-}
-
-/* Initial */
-
-.ui.left.overlay.sidebar {
- -webkit-transform: translate3d(-100%, 0, 0);
- transform: translate3d(-100%, 0, 0);
-}
-
-.ui.right.overlay.sidebar {
- -webkit-transform: translate3d(100%, 0, 0);
- transform: translate3d(100%, 0, 0);
-}
-
-.ui.top.overlay.sidebar {
- -webkit-transform: translate3d(0%, -100%, 0);
- transform: translate3d(0%, -100%, 0);
-}
-
-.ui.bottom.overlay.sidebar {
- -webkit-transform: translate3d(0%, 100%, 0);
- transform: translate3d(0%, 100%, 0);
-}
-
-/* Animation */
-
-.animating.ui.overlay.sidebar,
-.ui.visible.overlay.sidebar {
- -webkit-transition: -webkit-transform 500ms ease;
- transition: -webkit-transform 500ms ease;
- transition: transform 500ms ease;
- transition: transform 500ms ease, -webkit-transform 500ms ease;
-}
-
-/* End - Sidebar */
-
-.ui.visible.left.overlay.sidebar {
- -webkit-transform: translate3d(0%, 0, 0);
- transform: translate3d(0%, 0, 0);
-}
-
-.ui.visible.right.overlay.sidebar {
- -webkit-transform: translate3d(0%, 0, 0);
- transform: translate3d(0%, 0, 0);
-}
-
-.ui.visible.top.overlay.sidebar {
- -webkit-transform: translate3d(0%, 0, 0);
- transform: translate3d(0%, 0, 0);
-}
-
-.ui.visible.bottom.overlay.sidebar {
- -webkit-transform: translate3d(0%, 0, 0);
- transform: translate3d(0%, 0, 0);
-}
-
-/* End - Pusher */
-
-.ui.visible.overlay.sidebar ~ .fixed,
-.ui.visible.overlay.sidebar ~ .pusher {
- -webkit-transform: none !important;
- transform: none !important;
-}
-
-/*--------------
- Push
- ---------------*/
-
-/* Initial */
-
-.ui.push.sidebar {
- -webkit-transition: -webkit-transform 500ms ease;
- transition: -webkit-transform 500ms ease;
- transition: transform 500ms ease;
- transition: transform 500ms ease, -webkit-transform 500ms ease;
- z-index: 102;
-}
-
-/* Sidebar - Initial */
-
-.ui.left.push.sidebar {
- -webkit-transform: translate3d(-100%, 0, 0);
- transform: translate3d(-100%, 0, 0);
-}
-
-.ui.right.push.sidebar {
- -webkit-transform: translate3d(100%, 0, 0);
- transform: translate3d(100%, 0, 0);
-}
-
-.ui.top.push.sidebar {
- -webkit-transform: translate3d(0%, -100%, 0);
- transform: translate3d(0%, -100%, 0);
-}
-
-.ui.bottom.push.sidebar {
- -webkit-transform: translate3d(0%, 100%, 0);
- transform: translate3d(0%, 100%, 0);
-}
-
-/* End */
-
-.ui.visible.push.sidebar {
- -webkit-transform: translate3d(0%, 0, 0);
- transform: translate3d(0%, 0, 0);
-}
-
-/*--------------
- Uncover
- ---------------*/
-
-/* Initial */
-
-.ui.uncover.sidebar {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- z-index: 1;
-}
-
-/* End */
-
-.ui.visible.uncover.sidebar {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- -webkit-transition: -webkit-transform 500ms ease;
- transition: -webkit-transform 500ms ease;
- transition: transform 500ms ease;
- transition: transform 500ms ease, -webkit-transform 500ms ease;
-}
-
-/*--------------
- Slide Along
- ---------------*/
-
-/* Initial */
-
-.ui.slide.along.sidebar {
- z-index: 1;
-}
-
-/* Sidebar - Initial */
-
-.ui.left.slide.along.sidebar {
- -webkit-transform: translate3d(-50%, 0, 0);
- transform: translate3d(-50%, 0, 0);
-}
-
-.ui.right.slide.along.sidebar {
- -webkit-transform: translate3d(50%, 0, 0);
- transform: translate3d(50%, 0, 0);
-}
-
-.ui.top.slide.along.sidebar {
- -webkit-transform: translate3d(0, -50%, 0);
- transform: translate3d(0, -50%, 0);
-}
-
-.ui.bottom.slide.along.sidebar {
- -webkit-transform: translate3d(0%, 50%, 0);
- transform: translate3d(0%, 50%, 0);
-}
-
-/* Animation */
-
-.ui.animating.slide.along.sidebar {
- -webkit-transition: -webkit-transform 500ms ease;
- transition: -webkit-transform 500ms ease;
- transition: transform 500ms ease;
- transition: transform 500ms ease, -webkit-transform 500ms ease;
-}
-
-/* End */
-
-.ui.visible.slide.along.sidebar {
- -webkit-transform: translate3d(0%, 0, 0);
- transform: translate3d(0%, 0, 0);
-}
-
-/*--------------
- Slide Out
- ---------------*/
-
-/* Initial */
-
-.ui.slide.out.sidebar {
- z-index: 1;
-}
-
-/* Sidebar - Initial */
-
-.ui.left.slide.out.sidebar {
- -webkit-transform: translate3d(50%, 0, 0);
- transform: translate3d(50%, 0, 0);
-}
-
-.ui.right.slide.out.sidebar {
- -webkit-transform: translate3d(-50%, 0, 0);
- transform: translate3d(-50%, 0, 0);
-}
-
-.ui.top.slide.out.sidebar {
- -webkit-transform: translate3d(0%, 50%, 0);
- transform: translate3d(0%, 50%, 0);
-}
-
-.ui.bottom.slide.out.sidebar {
- -webkit-transform: translate3d(0%, -50%, 0);
- transform: translate3d(0%, -50%, 0);
-}
-
-/* Animation */
-
-.ui.animating.slide.out.sidebar {
- -webkit-transition: -webkit-transform 500ms ease;
- transition: -webkit-transform 500ms ease;
- transition: transform 500ms ease;
- transition: transform 500ms ease, -webkit-transform 500ms ease;
-}
-
-/* End */
-
-.ui.visible.slide.out.sidebar {
- -webkit-transform: translate3d(0%, 0, 0);
- transform: translate3d(0%, 0, 0);
-}
-
-/*--------------
- Scale Down
- ---------------*/
-
-/* Initial */
-
-.ui.scale.down.sidebar {
- -webkit-transition: -webkit-transform 500ms ease;
- transition: -webkit-transform 500ms ease;
- transition: transform 500ms ease;
- transition: transform 500ms ease, -webkit-transform 500ms ease;
- z-index: 102;
-}
-
-.ui.left.scale.down.sidebar {
- -webkit-transform: translate3d(-100%, 0, 0);
- transform: translate3d(-100%, 0, 0);
-}
-
-.ui.right.scale.down.sidebar {
- -webkit-transform: translate3d(100%, 0, 0);
- transform: translate3d(100%, 0, 0);
-}
-
-.ui.top.scale.down.sidebar {
- -webkit-transform: translate3d(0%, -100%, 0);
- transform: translate3d(0%, -100%, 0);
-}
-
-.ui.bottom.scale.down.sidebar {
- -webkit-transform: translate3d(0%, 100%, 0);
- transform: translate3d(0%, 100%, 0);
-}
-
-/* Pusher - Initial */
-
-.ui.scale.down.left.sidebar ~ .pusher {
- -webkit-transform-origin: 75% 50%;
- transform-origin: 75% 50%;
-}
-
-.ui.scale.down.right.sidebar ~ .pusher {
- -webkit-transform-origin: 25% 50%;
- transform-origin: 25% 50%;
-}
-
-.ui.scale.down.top.sidebar ~ .pusher {
- -webkit-transform-origin: 50% 75%;
- transform-origin: 50% 75%;
-}
-
-.ui.scale.down.bottom.sidebar ~ .pusher {
- -webkit-transform-origin: 50% 25%;
- transform-origin: 50% 25%;
-}
-
-/* Animation */
-
-.ui.animating.scale.down > .visible.ui.sidebar {
- -webkit-transition: -webkit-transform 500ms ease;
- transition: -webkit-transform 500ms ease;
- transition: transform 500ms ease;
- transition: transform 500ms ease, -webkit-transform 500ms ease;
-}
-
-.ui.visible.scale.down.sidebar ~ .pusher,
-.ui.animating.scale.down.sidebar ~ .pusher {
- display: block !important;
- width: 100%;
- height: 100%;
- overflow: hidden !important;
-}
-
-/* End */
-
-.ui.visible.scale.down.sidebar {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
-}
-
-.ui.visible.scale.down.sidebar ~ .pusher {
- -webkit-transform: scale(0.75);
- transform: scale(0.75);
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Sticky
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Sticky
-*******************************/
-
-.ui.sticky {
- position: static;
- -webkit-transition: none;
- transition: none;
- z-index: 800;
-}
-
-/*******************************
- States
-*******************************/
-
-/* Bound */
-
-.ui.sticky.bound {
- position: absolute;
- left: auto;
- right: auto;
-}
-
-/* Fixed */
-
-.ui.sticky.fixed {
- position: fixed;
- left: auto;
- right: auto;
-}
-
-/* Bound/Fixed Position */
-
-.ui.sticky.bound.top,
-.ui.sticky.fixed.top {
- top: 0;
- bottom: auto;
-}
-
-.ui.sticky.bound.bottom,
-.ui.sticky.fixed.bottom {
- top: auto;
- bottom: 0;
-}
-
-/*******************************
- Types
-*******************************/
-
-.ui.native.sticky {
- position: -webkit-sticky;
- position: -moz-sticky;
- position: -ms-sticky;
- position: -o-sticky;
- position: sticky;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-
-/*******************************
- Site Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Tab
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- UI Tabs
-*******************************/
-
-.ui.tab {
- display: none;
-}
-
-/*******************************
- States
-*******************************/
-
-/*--------------------
- Active
----------------------*/
-
-.ui.tab.active,
-.ui.tab.open {
- display: block;
-}
-
-/*--------------------
- Loading
- ---------------------*/
-
-.ui.tab.loading {
- position: relative;
- overflow: hidden;
- display: block;
- min-height: 250px;
-}
-
-.ui.tab.loading * {
- position: relative !important;
- left: -10000px !important;
-}
-
-.ui.tab.loading:before,
-.ui.tab.loading.segment:before {
- position: absolute;
- content: '';
- top: 50%;
- left: 50%;
- margin: -1.25em 0 0 -1.25em;
- width: 2.5em;
- height: 2.5em;
- border-radius: 500rem;
- border: 0.2em solid rgba(0, 0, 0, 0.1);
-}
-
-.ui.tab.loading:after,
-.ui.tab.loading.segment:after {
- position: absolute;
- content: '';
- top: 50%;
- left: 50%;
- margin: -1.25em 0 0 -1.25em;
- width: 2.5em;
- height: 2.5em;
- -webkit-animation: loader 0.6s infinite linear;
- animation: loader 0.6s infinite linear;
- border: 0.2em solid #767676;
- border-radius: 500rem;
- -webkit-box-shadow: 0 0 0 1px transparent;
- box-shadow: 0 0 0 1px transparent;
-}
-
-/*******************************
- Tab Overrides
-*******************************/
-
-/*******************************
- User Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Text
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * https://github.com/fomantic/Fomantic-UI/blob/master/LICENSE.md
- *
- */
-
-/*******************************
- Text
-*******************************/
-
-span.ui.primary.text {
- color: #2185D0;
-}
-
-span.ui.inverted.primary.text {
- color: #54C8FF;
-}
-
-span.ui.secondary.text {
- color: #1B1C1D;
-}
-
-span.ui.inverted.secondary.text {
- color: #545454;
-}
-
-span.ui.red.text {
- color: #DB2828;
-}
-
-span.ui.inverted.red.text {
- color: #FF695E;
-}
-
-span.ui.orange.text {
- color: #F2711C;
-}
-
-span.ui.inverted.orange.text {
- color: #FF851B;
-}
-
-span.ui.yellow.text {
- color: #FBBD08;
-}
-
-span.ui.inverted.yellow.text {
- color: #FFE21F;
-}
-
-span.ui.olive.text {
- color: #B5CC18;
-}
-
-span.ui.inverted.olive.text {
- color: #D9E778;
-}
-
-span.ui.green.text {
- color: #21BA45;
-}
-
-span.ui.inverted.green.text {
- color: #2ECC40;
-}
-
-span.ui.teal.text {
- color: #00B5AD;
-}
-
-span.ui.inverted.teal.text {
- color: #6DFFFF;
-}
-
-span.ui.blue.text {
- color: #2185D0;
-}
-
-span.ui.inverted.blue.text {
- color: #54C8FF;
-}
-
-span.ui.violet.text {
- color: #6435C9;
-}
-
-span.ui.inverted.violet.text {
- color: #A291FB;
-}
-
-span.ui.purple.text {
- color: #A333C8;
-}
-
-span.ui.inverted.purple.text {
- color: #DC73FF;
-}
-
-span.ui.pink.text {
- color: #E03997;
-}
-
-span.ui.inverted.pink.text {
- color: #FF8EDF;
-}
-
-span.ui.brown.text {
- color: #A5673F;
-}
-
-span.ui.inverted.brown.text {
- color: #D67C1C;
-}
-
-span.ui.grey.text {
- color: #767676;
-}
-
-span.ui.inverted.grey.text {
- color: #DCDDDE;
-}
-
-span.ui.black.text {
- color: #1B1C1D;
-}
-
-span.ui.inverted.black.text {
- color: #545454;
-}
-
-span.ui.disabled.text {
- opacity: 0.45;
-}
-
-/* Sizes */
-
-span.ui.medium.text {
- font-size: 1em;
-}
-
-span.ui.mini.text {
- font-size: 0.4em;
-}
-
-span.ui.tiny.text {
- font-size: 0.5em;
-}
-
-span.ui.small.text {
- font-size: 0.75em;
-}
-
-span.ui.large.text {
- font-size: 1.5em;
-}
-
-span.ui.big.text {
- font-size: 2em;
-}
-
-span.ui.huge.text {
- font-size: 4em;
-}
-
-span.ui.massive.text {
- font-size: 8em;
-}
-
-/*******************************
- Theme Overrides
-*******************************/
-/*!
- * # Fomantic-UI - Toast
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Toast container
-*******************************/
-
-.ui.toast-container {
- position: fixed;
- z-index: 9999;
-}
-
-.ui.toast-container.top.right {
- top: 0.85714286em;
- right: 0.85714286em;
- margin-left: 0.85714286em;
-}
-
-.ui.toast-container.top.left {
- top: 0.85714286em;
- left: 0.85714286em;
- margin-right: 0.85714286em;
-}
-
-.ui.toast-container.top.center {
- left: 50%;
- -webkit-transform: translate(-50%, 0);
- transform: translate(-50%, 0);
- top: 0.85714286em;
-}
-
-.ui.toast-container.bottom.right {
- bottom: 0.85714286em;
- right: 0.85714286em;
- margin-left: 0.85714286em;
-}
-
-.ui.toast-container.bottom.left {
- bottom: 0.85714286em;
- left: 0.85714286em;
- margin-right: 0.85714286em;
-}
-
-.ui.toast-container.bottom.center {
- left: 50%;
- -webkit-transform: translate(-50%, 0);
- transform: translate(-50%, 0);
- bottom: 0.85714286em;
-}
-
-.ui.toast-container .visible.toast-box,
-.ui.toast-container .animating.toast-box,
-.ui.toast-container .toast-box {
- display: table !important;
-}
-
-.ui.toast-container .toast-box {
- margin-bottom: 0.5em;
- border-radius: 0.28571429rem;
- cursor: default;
-}
-
-.ui.toast-container .toast-box:hover {
- opacity: 1;
-}
-
-.ui.toast-container .toast-box:not(.unclickable):hover {
- cursor: pointer;
-}
-
-.ui.toast-container .toast-box.floating,
-.ui.toast-container .toast-box.hoverfloating:hover {
- -webkit-box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- border: 1px solid rgba(34, 36, 38, 0.12);
-}
-
-.ui.toast-container .toast-box.compact,
-.ui.toast-container .toast-box > .compact {
- width: 350px;
-}
-
-.ui.toast-container .toast-box > .ui.toast,
-.ui.toast-container .toast-box > .ui.message {
- margin: 0 -1px -0.01em;
- position: relative;
-}
-
-.ui.toast-container .toast-box > .attached.progress {
- z-index: 1;
-}
-
-.ui.toast-container .toast-box > .attached.progress.bottom {
- margin: -0.2em -1px -0.01em;
-}
-
-.ui.toast-container .toast-box > .attached.progress.top {
- margin: -0.01em -1px -0.2em;
-}
-
-.ui.toast-container .toast-box > .attached.progress .bar {
- min-width: 0;
-}
-
-.ui.toast-container .toast-box > .attached.progress.info .bar.bar.bar {
- background: #12a1bf;
-}
-
-.ui.toast-container .toast-box > .attached.progress.warning .bar.bar.bar {
- background: #cf9b0d;
-}
-
-.ui.toast-container .toast-box > .attached.progress.success .bar.bar.bar {
- background: #15792d;
-}
-
-.ui.toast-container .toast-box > .attached.progress .error .bar.bar.bar {
- background: #9c1a1a;
-}
-
-.ui.toast-container .toast-box > .attached.progress.neutral .bar.bar.bar {
- background: #d9d9d9;
-}
-
-.ui.toast-container .toast-box > .ui.message > .close.icon {
- top: 0.3em;
- right: 0.3em;
-}
-
-.ui.toast-container .toast-box > .ui.message > .actions:last-child {
- margin-bottom: -1em;
-}
-
-.ui.toast-container .toast-box > .ui.message.icon {
- -webkit-box-align: inherit;
- -ms-flex-align: inherit;
- align-items: inherit;
-}
-
-.ui.toast-container .toast-box > .ui.message.icon > :not(.icon):not(.actions) {
- padding-left: 5rem;
-}
-
-.ui.toast-container .toast-box > .ui.message.icon > .icon:not(.close) {
- display: inline-block;
- position: absolute;
- width: 4rem;
- top: 50%;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
-}
-
-.ui.toast-container .toast-box > .ui.message.icon:not(.vertical).actions > .icon:not(.close) {
- top: calc(50% - 1.2em);
- -webkit-transform: none;
- transform: none;
-}
-
-.ui.toast-container .toast-box > .ui.message.icon:not(.vertical).icon.icon.icon {
- display: block;
-}
-
-.ui.toast-container .toast-box .ui.toast > .close.icon {
- cursor: pointer;
- margin: 0;
- opacity: 0.7;
- -webkit-transition: opacity 0.1s ease;
- transition: opacity 0.1s ease;
-}
-
-.ui.toast-container .toast-box .ui.toast > .close.icon:hover {
- opacity: 1;
-}
-
-.ui.toast-container .toast-box .ui.toast.vertical > .close.icon {
- margin-top: -0.3em;
- margin-right: -0.3em;
-}
-
-.ui.toast-container .toast-box .ui.toast:not(.vertical) > .close.icon {
- position: absolute;
- top: 0.3em;
-}
-
-.ui.toast-container .toast-box .ui.toast:not(.vertical) > .close.icon:not(.left) {
- right: 0.3em;
-}
-
-.ui.toast-container .toast-box .ui.toast:not(.vertical) > .close.icon.left {
- margin-left: -0.3em;
-}
-
-.ui.toast-container .toast-box .ui.card {
- margin: 0;
-}
-
-.ui.toast-container .toast-box .ui.card.attached:not(.vertical).bottom {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
-}
-
-.ui.toast-container .toast-box .ui.card.attached:not(.vertical).bottom.horizontal > .image > img {
- border-top-left-radius: 0;
-}
-
-.ui.toast-container .toast-box .ui.card.attached:not(.vertical).bottom.horizontal > .image:last-child > img {
- border-top-right-radius: 0;
-}
-
-.ui.toast-container .toast-box .ui.card.attached:not(.vertical).top {
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
-}
-
-.ui.toast-container .toast-box .ui.card.attached:not(.vertical).top.horizontal > .image > img {
- border-bottom-left-radius: 0;
-}
-
-.ui.toast-container .toast-box .ui.card.attached:not(.vertical).top.horizontal > .image:last-child > img {
- border-bottom-right-radius: 0;
-}
-
-.ui.toast-container .toast-box .ui.card.horizontal.actions > .image > img {
- border-bottom-left-radius: 0;
-}
-
-.ui.toast-container .toast-box .ui.card.horizontal.actions > .image:last-child > img {
- border-bottom-right-radius: 0;
-}
-
-.ui.toast-container .toast-box .progressing {
- -webkit-animation-iteration-count: 1;
- animation-iteration-count: 1;
- -webkit-animation-timing-function: linear;
- animation-timing-function: linear;
-}
-
-.ui.toast-container .toast-box .progressing.up {
- -webkit-animation-name: progressUp;
- animation-name: progressUp;
-}
-
-.ui.toast-container .toast-box .progressing.down {
- -webkit-animation-name: progressDown;
- animation-name: progressDown;
-}
-
-.ui.toast-container .toast-box .progressing.wait {
- -webkit-animation-name: progressWait;
- animation-name: progressWait;
-}
-
-.ui.toast-container .toast-box:hover .pausable.progressing {
- -webkit-animation-play-state: paused;
- animation-play-state: paused;
-}
-
-.ui.toast-container .toast-box .ui.toast:not(.vertical) {
- display: block;
-}
-
-.ui.toast-container .toast-box :not(.comment):not(.card) .actions {
- margin: 0.5em -1em -1em -1em;
-}
-
-.ui.toast-container .toast-box :not(.comment) .actions {
- padding: 0.5em 0.5em 0.75em 0.5em;
- text-align: right;
-}
-
-.ui.toast-container .toast-box :not(.comment) .actions.attached:not(.vertical) {
- margin-right: 1px;
-}
-
-.ui.toast-container .toast-box :not(.comment) .actions:not(.basic):not(.attached) {
- background: rgba(255, 255, 255, 0.25);
- border-top: 1px solid rgba(0, 0, 0, 0.2);
-}
-
-.ui.toast-container .toast-box :not(.comment) .actions.left {
- text-align: left;
-}
-
-.ui.toast-container .toast-box .vertical.actions > .button,
-.ui.toast-container .toast-box > .vertical > .vertical.vertical,
-.ui.toast-container .toast-box > .vertical.vertical.vertical {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
-}
-
-.ui.toast-container .toast-box :not(.comment) .vertical.actions {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
-}
-
-.ui.toast-container .toast-box :not(.comment) .vertical.actions > .button {
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
-}
-
-.ui.toast-container .toast-box :not(.comment) .vertical.actions.attached > .button {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
-}
-
-.ui.toast-container .toast-box :not(.comment) .vertical.actions:not(.attached) {
- border-top: 0;
- margin-top: -0.75em;
- margin-bottom: -0.75em;
- margin-left: 1em;
- -ms-flex-pack: distribute;
- justify-content: space-around;
-}
-
-.ui.toast-container .toast-box :not(.comment) .vertical.actions:not(.attached):not(.basic) {
- border-left: 1px solid rgba(0, 0, 0, 0.2);
-}
-
-.ui.toast-container .toast-box :not(.comment) .vertical.actions:not(.attached) > .button:not(:last-child) {
- margin-bottom: 0.3em;
-}
-
-.ui.toast-container .toast-box :not(.comment) .vertical.actions:not(.attached).top {
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
-}
-
-.ui.toast-container .toast-box :not(.comment) .vertical.actions:not(.attached).bottom {
- -webkit-box-pack: end;
- -ms-flex-pack: end;
- justify-content: flex-end;
-}
-
-.ui.vertical.attached:not(.left).card > .image > img {
- border-top-right-radius: 0;
-}
-
-.ui.vertical.attached:not(.left).card.horizontal > .image:last-child > img {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
-}
-
-.ui.vertical.attached:not(.left).card,
-.ui.vertical.attached:not(.left).toast {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
-}
-
-.ui.vertical.attached:not(.left).actions {
- border-top-right-radius: 0.28571429rem;
- border-bottom-right-radius: 0.28571429rem;
-}
-
-.ui.vertical.attached:not(.left).actions .button:first-child,
-.ui.vertical.attached:not(.left).actions .button:last-child {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
-}
-
-.ui.vertical.attached:not(.left).message {
- border-top-right-radius: 0;
- border-bottom-left-radius: 0.28571429rem;
-}
-
-.ui.vertical.attached.left.card > .image > img {
- border-top-left-radius: 0;
-}
-
-.ui.vertical.attached.left.card.horizontal > .image > img {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
-}
-
-.ui.vertical.attached.left.card,
-.ui.vertical.attached.left.toast {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
-}
-
-.ui.vertical.attached.left.actions {
- border-top-left-radius: 0.28571429rem;
- border-bottom-left-radius: 0.28571429rem;
-}
-
-.ui.vertical.attached.left.actions .button:first-child,
-.ui.vertical.attached.left.actions .button:last-child {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
-}
-
-.ui.vertical.attached.left.actions .button:not(:first-child):not(:last-child) {
- margin-left: -1px;
-}
-
-.ui.vertical.attached.left.message.message.message {
- border-top-right-radius: 0.28571429rem;
- border-bottom-right-radius: 0.28571429rem;
-}
-
-.ui.attached:not(.vertical):not(.top).actions {
- border-bottom-left-radius: 0.28571429rem;
- border-bottom-right-radius: 0.28571429rem;
-}
-
-.ui.attached:not(.vertical):not(.top).actions .button:first-child {
- border-bottom-left-radius: 0.28571429rem;
-}
-
-.ui.attached:not(.vertical):not(.top).actions .button:last-child {
- border-bottom-right-radius: 0.28571429rem;
-}
-
-.ui.attached:not(.vertical).top.actions {
- border-top-left-radius: 0.28571429rem;
- border-top-right-radius: 0.28571429rem;
-}
-
-.ui.attached:not(.vertical).top.actions .button:first-child {
- border-top-left-radius: 0.28571429rem;
-}
-
-.ui.attached:not(.vertical).top.actions .button:last-child {
- border-top-right-radius: 0.28571429rem;
-}
-
-/*******************************
- Toast
-*******************************/
-
-.ui.toast {
- display: none;
- border-radius: 0.28571429rem;
- padding: 0.78571429em 1em;
- margin: 0 -1px -0.01em;
- color: rgba(0, 0, 0, 0.87);
- background-color: #FFFFFF;
-}
-
-.ui.toast > .content > .header {
- font-weight: bold;
- color: inherit;
- margin: 0;
-}
-
-.ui.toast.info {
- background-color: #31CCEC;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.toast.warning {
- background-color: #F2C037;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.toast.success {
- background-color: #21BA45;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.toast.error {
- background-color: #DB2828;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.toast.neutral {
- background-color: #FFFFFF;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.toast > .icon:not(.close) {
- font-size: 1.5em;
-}
-
-.ui.toast:not(.vertical) > .icon:not(.close) {
- position: absolute;
-}
-
-.ui.toast:not(.vertical) > .icon:not(.close) + .content {
- padding-left: 3em;
-}
-
-.ui.toast:not(.vertical) > .close.icon + .content {
- padding-left: 1.5em;
-}
-
-.ui.toast:not(.vertical) > .ui.image {
- position: absolute;
-}
-
-.ui.toast:not(.vertical) > .ui.image.avatar + .content {
- padding-left: 3em;
- min-height: 2em;
-}
-
-.ui.toast:not(.vertical) > .ui.image.mini + .content {
- padding-left: 3.4em;
- min-height: 35px;
-}
-
-.ui.toast:not(.vertical) > .ui.image.tiny + .content {
- padding-left: 7em;
- min-height: 80px;
-}
-
-.ui.toast:not(.vertical) > .ui.image.small + .content {
- padding-left: 12em;
- min-height: 150px;
-}
-
-.ui.toast:not(.vertical) > .centered.image,
-.ui.toast:not(.vertical) > .centered.icon {
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- top: 50%;
-}
-
-.ui.toast:not(.vertical).actions > .centered.image {
- top: calc(50% - 2em);
-}
-
-.ui.toast:not(.vertical).actions > .centered.icon {
- top: calc(50% - 1.2em);
-}
-
-.ui.toast.vertical > .close.icon + .content {
- padding-left: 1em;
-}
-
-.ui.toast.vertical > .ui.image + .content,
-.ui.toast.vertical > .icon:not(.close) + .content {
- padding-left: 1em;
-}
-
-.ui.toast.vertical > .ui.image {
- -ms-flex-item-align: start;
- align-self: flex-start;
- -ms-flex-negative: 0;
- flex-shrink: 0;
- /* IE11 fix */
-}
-
-.ui.toast.vertical > .centered.image,
-.ui.toast.vertical > .centered.icon {
- -ms-flex-item-align: center;
- align-self: center;
-}
-
-.ui.toast.attached.bottom {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
-}
-
-.ui.toast.attached.top {
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
-}
-
-.ui.hoverfloating.message:hover {
- -webkit-box-shadow: 0 0 0 1px inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
- box-shadow: 0 0 0 1px inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
-}
-
-.ui.center.toast-container .toast-box,
-.ui.right.toast-container .toast-box {
- margin-left: auto;
-}
-
-.ui.center.toast-container .toast-box {
- margin-right: auto;
-}
-
-/*--------------
- Colors
--------------- */
-
-.ui.primary.toast {
- background-color: #2185D0;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.primary.toast,
-.ui.toast-container .toast-box > .inverted.primary.attached.progress .bar {
- background-color: #54C8FF;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.secondary.toast {
- background-color: #1B1C1D;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.secondary.toast,
-.ui.toast-container .toast-box > .inverted.secondary.attached.progress .bar {
- background-color: #545454;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.red.toast {
- background-color: #DB2828;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.red.toast,
-.ui.toast-container .toast-box > .inverted.red.attached.progress .bar {
- background-color: #FF695E;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.orange.toast {
- background-color: #F2711C;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.orange.toast,
-.ui.toast-container .toast-box > .inverted.orange.attached.progress .bar {
- background-color: #FF851B;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.yellow.toast {
- background-color: #FBBD08;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.yellow.toast,
-.ui.toast-container .toast-box > .inverted.yellow.attached.progress .bar {
- background-color: #FFE21F;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.olive.toast {
- background-color: #B5CC18;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.olive.toast,
-.ui.toast-container .toast-box > .inverted.olive.attached.progress .bar {
- background-color: #D9E778;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.green.toast {
- background-color: #21BA45;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.green.toast,
-.ui.toast-container .toast-box > .inverted.green.attached.progress .bar {
- background-color: #2ECC40;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.teal.toast {
- background-color: #00B5AD;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.teal.toast,
-.ui.toast-container .toast-box > .inverted.teal.attached.progress .bar {
- background-color: #6DFFFF;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.blue.toast {
- background-color: #2185D0;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.blue.toast,
-.ui.toast-container .toast-box > .inverted.blue.attached.progress .bar {
- background-color: #54C8FF;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.violet.toast {
- background-color: #6435C9;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.violet.toast,
-.ui.toast-container .toast-box > .inverted.violet.attached.progress .bar {
- background-color: #A291FB;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.purple.toast {
- background-color: #A333C8;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.purple.toast,
-.ui.toast-container .toast-box > .inverted.purple.attached.progress .bar {
- background-color: #DC73FF;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.pink.toast {
- background-color: #E03997;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.pink.toast,
-.ui.toast-container .toast-box > .inverted.pink.attached.progress .bar {
- background-color: #FF8EDF;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.brown.toast {
- background-color: #A5673F;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.brown.toast,
-.ui.toast-container .toast-box > .inverted.brown.attached.progress .bar {
- background-color: #D67C1C;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.grey.toast {
- background-color: #767676;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.grey.toast,
-.ui.toast-container .toast-box > .inverted.grey.attached.progress .bar {
- background-color: #DCDDDE;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.black.toast {
- background-color: #1B1C1D;
- color: rgba(255, 255, 255, 0.9);
-}
-
-.ui.inverted.black.toast,
-.ui.toast-container .toast-box > .inverted.black.attached.progress .bar {
- background-color: #545454;
- color: rgba(0, 0, 0, 0.87);
-}
-
-.ui.inverted.toast {
- color: rgba(255, 255, 255, 0.9);
- background-color: #1B1C1D;
-}
-
-@media only screen and (max-width: 420px) {
- .ui.toast-container .toast-box.toast-box,
- .ui.toast-container .toast-box > .compact,
- .ui.toast-container .toast-box > .vertical > *,
- .ui.toast-container .toast-box > * {
- width: auto;
- max-width: 100%;
- }
-
- .ui.toast-container .toast-box > *:not(.vertical) {
- min-width: 280px;
- }
-
- .ui.toast-container .toast-box > .ui.card.horizontal,
- .ui.toast-container .toast-box > .vertical > .ui.horizontal.card {
- min-width: initial;
- }
-}
-
-/*---------------
- Progress Bar
- ----------------*/
-
-@-webkit-keyframes progressDown {
- 0% {
- width: 100%;
- }
-
- 100% {
- width: 0;
- }
-}
-
-@keyframes progressDown {
- 0% {
- width: 100%;
- }
-
- 100% {
- width: 0;
- }
-}
-
-@-webkit-keyframes progressUp {
- 0% {
- width: 0;
- }
-
- 100% {
- width: 100%;
- }
-}
-
-@keyframes progressUp {
- 0% {
- width: 0;
- }
-
- 100% {
- width: 100%;
- }
-}
-
-@-webkit-keyframes progressWait {
- 0% {
- opacity: 1;
- }
-
- 100% {
- opacity: 0;
- }
-}
-
-@keyframes progressWait {
- 0% {
- opacity: 1;
- }
-
- 100% {
- opacity: 0;
- }
-}
-/*!
- * # Fomantic-UI - Transition
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Transitions
-*******************************/
-
-.transition {
- -webkit-animation-iteration-count: 1;
- animation-iteration-count: 1;
- -webkit-animation-duration: 300ms;
- animation-duration: 300ms;
- -webkit-animation-timing-function: ease;
- animation-timing-function: ease;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
-}
-
-/*******************************
- States
-*******************************/
-
-/* Animating */
-
-.animating.transition {
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- visibility: visible !important;
-}
-
-/* Loading */
-
-.loading.transition {
- position: absolute;
- top: -99999px;
- left: -99999px;
-}
-
-/* Hidden */
-
-.hidden.transition {
- display: none;
- visibility: hidden;
-}
-
-/* Visible */
-
-.visible.transition {
- display: block !important;
- visibility: visible !important;
- /* backface-visibility: @backfaceVisibility;
- transform: @use3DAcceleration;*/
-}
-
-/* Disabled */
-
-.disabled.transition {
- -webkit-animation-play-state: paused;
- animation-play-state: paused;
-}
-
-/*******************************
- Variations
-*******************************/
-
-.looping.transition {
- -webkit-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
-}
-
-/*******************************
- Transitions
-*******************************/
-
-/*
- Some transitions adapted from Animate CSS
- https://github.com/daneden/animate.css
-
- Additional transitions adapted from Glide
- by Nick Pettit - https://github.com/nickpettit/glide
-*/
-
-/*--------------
- Browse
----------------*/
-
-.transition.browse {
- -webkit-animation-duration: 500ms;
- animation-duration: 500ms;
-}
-
-.transition.browse.in {
- -webkit-animation-name: browseIn;
- animation-name: browseIn;
-}
-
-.transition.browse.out,
-.transition.browse.left.out {
- -webkit-animation-name: browseOutLeft;
- animation-name: browseOutLeft;
-}
-
-.transition.browse.right.out {
- -webkit-animation-name: browseOutRight;
- animation-name: browseOutRight;
-}
-
-/* In */
-
-@-webkit-keyframes browseIn {
- 0% {
- -webkit-transform: scale(0.8) translateZ(0px);
- transform: scale(0.8) translateZ(0px);
- z-index: -1;
- }
-
- 10% {
- -webkit-transform: scale(0.8) translateZ(0px);
- transform: scale(0.8) translateZ(0px);
- z-index: -1;
- opacity: 0.7;
- }
-
- 80% {
- -webkit-transform: scale(1.05) translateZ(0px);
- transform: scale(1.05) translateZ(0px);
- opacity: 1;
- z-index: 999;
- }
-
- 100% {
- -webkit-transform: scale(1) translateZ(0px);
- transform: scale(1) translateZ(0px);
- z-index: 999;
- }
-}
-
-@keyframes browseIn {
- 0% {
- -webkit-transform: scale(0.8) translateZ(0px);
- transform: scale(0.8) translateZ(0px);
- z-index: -1;
- }
-
- 10% {
- -webkit-transform: scale(0.8) translateZ(0px);
- transform: scale(0.8) translateZ(0px);
- z-index: -1;
- opacity: 0.7;
- }
-
- 80% {
- -webkit-transform: scale(1.05) translateZ(0px);
- transform: scale(1.05) translateZ(0px);
- opacity: 1;
- z-index: 999;
- }
-
- 100% {
- -webkit-transform: scale(1) translateZ(0px);
- transform: scale(1) translateZ(0px);
- z-index: 999;
- }
-}
-
-/* Out */
-
-@-webkit-keyframes browseOutLeft {
- 0% {
- z-index: 999;
- -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg);
- transform: translateX(0%) rotateY(0deg) rotateX(0deg);
- }
-
- 50% {
- z-index: -1;
- -webkit-transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
- transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
- }
-
- 80% {
- opacity: 1;
- }
-
- 100% {
- z-index: -1;
- -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
- transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
- opacity: 0;
- }
-}
-
-@keyframes browseOutLeft {
- 0% {
- z-index: 999;
- -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg);
- transform: translateX(0%) rotateY(0deg) rotateX(0deg);
- }
-
- 50% {
- z-index: -1;
- -webkit-transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
- transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
- }
-
- 80% {
- opacity: 1;
- }
-
- 100% {
- z-index: -1;
- -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
- transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
- opacity: 0;
- }
-}
-
-@-webkit-keyframes browseOutRight {
- 0% {
- z-index: 999;
- -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg);
- transform: translateX(0%) rotateY(0deg) rotateX(0deg);
- }
-
- 50% {
- z-index: 1;
- -webkit-transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
- transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
- }
-
- 80% {
- opacity: 1;
- }
-
- 100% {
- z-index: 1;
- -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
- transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
- opacity: 0;
- }
-}
-
-@keyframes browseOutRight {
- 0% {
- z-index: 999;
- -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg);
- transform: translateX(0%) rotateY(0deg) rotateX(0deg);
- }
-
- 50% {
- z-index: 1;
- -webkit-transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
- transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
- }
-
- 80% {
- opacity: 1;
- }
-
- 100% {
- z-index: 1;
- -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
- transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
- opacity: 0;
- }
-}
-
-/*--------------
- Drop
----------------*/
-
-.drop.transition {
- -webkit-transform-origin: top center;
- transform-origin: top center;
- -webkit-animation-duration: 400ms;
- animation-duration: 400ms;
- -webkit-animation-timing-function: cubic-bezier(0.34, 1.61, 0.7, 1);
- animation-timing-function: cubic-bezier(0.34, 1.61, 0.7, 1);
-}
-
-.drop.transition.in {
- -webkit-animation-name: dropIn;
- animation-name: dropIn;
-}
-
-.drop.transition.out {
- -webkit-animation-name: dropOut;
- animation-name: dropOut;
-}
-
-/* Drop */
-
-@-webkit-keyframes dropIn {
- 0% {
- opacity: 0;
- -webkit-transform: scale(0);
- transform: scale(0);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-}
-
-@keyframes dropIn {
- 0% {
- opacity: 0;
- -webkit-transform: scale(0);
- transform: scale(0);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-}
-
-@-webkit-keyframes dropOut {
- 0% {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: scale(0);
- transform: scale(0);
- }
-}
-
-@keyframes dropOut {
- 0% {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: scale(0);
- transform: scale(0);
- }
-}
-
-/*--------------
- Fade
----------------*/
-
-.transition.fade.in {
- -webkit-animation-name: fadeIn;
- animation-name: fadeIn;
-}
-
-.transition[class*="fade up"].in {
- -webkit-animation-name: fadeInUp;
- animation-name: fadeInUp;
-}
-
-.transition[class*="fade down"].in {
- -webkit-animation-name: fadeInDown;
- animation-name: fadeInDown;
-}
-
-.transition[class*="fade left"].in {
- -webkit-animation-name: fadeInLeft;
- animation-name: fadeInLeft;
-}
-
-.transition[class*="fade right"].in {
- -webkit-animation-name: fadeInRight;
- animation-name: fadeInRight;
-}
-
-.transition.fade.out {
- -webkit-animation-name: fadeOut;
- animation-name: fadeOut;
-}
-
-.transition[class*="fade up"].out {
- -webkit-animation-name: fadeOutUp;
- animation-name: fadeOutUp;
-}
-
-.transition[class*="fade down"].out {
- -webkit-animation-name: fadeOutDown;
- animation-name: fadeOutDown;
-}
-
-.transition[class*="fade left"].out {
- -webkit-animation-name: fadeOutLeft;
- animation-name: fadeOutLeft;
-}
-
-.transition[class*="fade right"].out {
- -webkit-animation-name: fadeOutRight;
- animation-name: fadeOutRight;
-}
-
-/* In */
-
-@-webkit-keyframes fadeIn {
- 0% {
- opacity: 0;
- }
-
- 100% {
- opacity: 1;
- }
-}
-
-@keyframes fadeIn {
- 0% {
- opacity: 0;
- }
-
- 100% {
- opacity: 1;
- }
-}
-
-@-webkit-keyframes fadeInUp {
- 0% {
- opacity: 0;
- -webkit-transform: translateY(10%);
- transform: translateY(10%);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: translateY(0%);
- transform: translateY(0%);
- }
-}
-
-@keyframes fadeInUp {
- 0% {
- opacity: 0;
- -webkit-transform: translateY(10%);
- transform: translateY(10%);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: translateY(0%);
- transform: translateY(0%);
- }
-}
-
-@-webkit-keyframes fadeInDown {
- 0% {
- opacity: 0;
- -webkit-transform: translateY(-10%);
- transform: translateY(-10%);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: translateY(0%);
- transform: translateY(0%);
- }
-}
-
-@keyframes fadeInDown {
- 0% {
- opacity: 0;
- -webkit-transform: translateY(-10%);
- transform: translateY(-10%);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: translateY(0%);
- transform: translateY(0%);
- }
-}
-
-@-webkit-keyframes fadeInLeft {
- 0% {
- opacity: 0;
- -webkit-transform: translateX(10%);
- transform: translateX(10%);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: translateX(0%);
- transform: translateX(0%);
- }
-}
-
-@keyframes fadeInLeft {
- 0% {
- opacity: 0;
- -webkit-transform: translateX(10%);
- transform: translateX(10%);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: translateX(0%);
- transform: translateX(0%);
- }
-}
-
-@-webkit-keyframes fadeInRight {
- 0% {
- opacity: 0;
- -webkit-transform: translateX(-10%);
- transform: translateX(-10%);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: translateX(0%);
- transform: translateX(0%);
- }
-}
-
-@keyframes fadeInRight {
- 0% {
- opacity: 0;
- -webkit-transform: translateX(-10%);
- transform: translateX(-10%);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: translateX(0%);
- transform: translateX(0%);
- }
-}
-
-/* Out */
-
-@-webkit-keyframes fadeOut {
- 0% {
- opacity: 1;
- }
-
- 100% {
- opacity: 0;
- }
-}
-
-@keyframes fadeOut {
- 0% {
- opacity: 1;
- }
-
- 100% {
- opacity: 0;
- }
-}
-
-@-webkit-keyframes fadeOutUp {
- 0% {
- opacity: 1;
- -webkit-transform: translateY(0%);
- transform: translateY(0%);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translateY(5%);
- transform: translateY(5%);
- }
-}
-
-@keyframes fadeOutUp {
- 0% {
- opacity: 1;
- -webkit-transform: translateY(0%);
- transform: translateY(0%);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translateY(5%);
- transform: translateY(5%);
- }
-}
-
-@-webkit-keyframes fadeOutDown {
- 0% {
- opacity: 1;
- -webkit-transform: translateY(0%);
- transform: translateY(0%);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translateY(-5%);
- transform: translateY(-5%);
- }
-}
-
-@keyframes fadeOutDown {
- 0% {
- opacity: 1;
- -webkit-transform: translateY(0%);
- transform: translateY(0%);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translateY(-5%);
- transform: translateY(-5%);
- }
-}
-
-@-webkit-keyframes fadeOutLeft {
- 0% {
- opacity: 1;
- -webkit-transform: translateX(0%);
- transform: translateX(0%);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translateX(5%);
- transform: translateX(5%);
- }
-}
-
-@keyframes fadeOutLeft {
- 0% {
- opacity: 1;
- -webkit-transform: translateX(0%);
- transform: translateX(0%);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translateX(5%);
- transform: translateX(5%);
- }
-}
-
-@-webkit-keyframes fadeOutRight {
- 0% {
- opacity: 1;
- -webkit-transform: translateX(0%);
- transform: translateX(0%);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translateX(-5%);
- transform: translateX(-5%);
- }
-}
-
-@keyframes fadeOutRight {
- 0% {
- opacity: 1;
- -webkit-transform: translateX(0%);
- transform: translateX(0%);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translateX(-5%);
- transform: translateX(-5%);
- }
-}
-
-/*--------------
- Flips
----------------*/
-
-.flip.transition.in,
-.flip.transition.out {
- -webkit-animation-duration: 600ms;
- animation-duration: 600ms;
-}
-
-.horizontal.flip.transition.in {
- -webkit-animation-name: horizontalFlipIn;
- animation-name: horizontalFlipIn;
-}
-
-.horizontal.flip.transition.out {
- -webkit-animation-name: horizontalFlipOut;
- animation-name: horizontalFlipOut;
-}
-
-.vertical.flip.transition.in {
- -webkit-animation-name: verticalFlipIn;
- animation-name: verticalFlipIn;
-}
-
-.vertical.flip.transition.out {
- -webkit-animation-name: verticalFlipOut;
- animation-name: verticalFlipOut;
-}
-
-/* In */
-
-@-webkit-keyframes horizontalFlipIn {
- 0% {
- -webkit-transform: perspective(2000px) rotateY(-90deg);
- transform: perspective(2000px) rotateY(-90deg);
- opacity: 0;
- }
-
- 100% {
- -webkit-transform: perspective(2000px) rotateY(0deg);
- transform: perspective(2000px) rotateY(0deg);
- opacity: 1;
- }
-}
-
-@keyframes horizontalFlipIn {
- 0% {
- -webkit-transform: perspective(2000px) rotateY(-90deg);
- transform: perspective(2000px) rotateY(-90deg);
- opacity: 0;
- }
-
- 100% {
- -webkit-transform: perspective(2000px) rotateY(0deg);
- transform: perspective(2000px) rotateY(0deg);
- opacity: 1;
- }
-}
-
-@-webkit-keyframes verticalFlipIn {
- 0% {
- -webkit-transform: perspective(2000px) rotateX(-90deg);
- transform: perspective(2000px) rotateX(-90deg);
- opacity: 0;
- }
-
- 100% {
- -webkit-transform: perspective(2000px) rotateX(0deg);
- transform: perspective(2000px) rotateX(0deg);
- opacity: 1;
- }
-}
-
-@keyframes verticalFlipIn {
- 0% {
- -webkit-transform: perspective(2000px) rotateX(-90deg);
- transform: perspective(2000px) rotateX(-90deg);
- opacity: 0;
- }
-
- 100% {
- -webkit-transform: perspective(2000px) rotateX(0deg);
- transform: perspective(2000px) rotateX(0deg);
- opacity: 1;
- }
-}
-
-/* Out */
-
-@-webkit-keyframes horizontalFlipOut {
- 0% {
- -webkit-transform: perspective(2000px) rotateY(0deg);
- transform: perspective(2000px) rotateY(0deg);
- opacity: 1;
- }
-
- 100% {
- -webkit-transform: perspective(2000px) rotateY(90deg);
- transform: perspective(2000px) rotateY(90deg);
- opacity: 0;
- }
-}
-
-@keyframes horizontalFlipOut {
- 0% {
- -webkit-transform: perspective(2000px) rotateY(0deg);
- transform: perspective(2000px) rotateY(0deg);
- opacity: 1;
- }
-
- 100% {
- -webkit-transform: perspective(2000px) rotateY(90deg);
- transform: perspective(2000px) rotateY(90deg);
- opacity: 0;
- }
-}
-
-@-webkit-keyframes verticalFlipOut {
- 0% {
- -webkit-transform: perspective(2000px) rotateX(0deg);
- transform: perspective(2000px) rotateX(0deg);
- opacity: 1;
- }
-
- 100% {
- -webkit-transform: perspective(2000px) rotateX(-90deg);
- transform: perspective(2000px) rotateX(-90deg);
- opacity: 0;
- }
-}
-
-@keyframes verticalFlipOut {
- 0% {
- -webkit-transform: perspective(2000px) rotateX(0deg);
- transform: perspective(2000px) rotateX(0deg);
- opacity: 1;
- }
-
- 100% {
- -webkit-transform: perspective(2000px) rotateX(-90deg);
- transform: perspective(2000px) rotateX(-90deg);
- opacity: 0;
- }
-}
-
-/*--------------
- Scale
----------------*/
-
-.scale.transition.in {
- -webkit-animation-name: scaleIn;
- animation-name: scaleIn;
-}
-
-.scale.transition.out {
- -webkit-animation-name: scaleOut;
- animation-name: scaleOut;
-}
-
-@-webkit-keyframes scaleIn {
- 0% {
- opacity: 0;
- -webkit-transform: scale(0.8);
- transform: scale(0.8);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-}
-
-@keyframes scaleIn {
- 0% {
- opacity: 0;
- -webkit-transform: scale(0.8);
- transform: scale(0.8);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-}
-
-/* Out */
-
-@-webkit-keyframes scaleOut {
- 0% {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: scale(0.9);
- transform: scale(0.9);
- }
-}
-
-@keyframes scaleOut {
- 0% {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: scale(0.9);
- transform: scale(0.9);
- }
-}
-
-/*--------------
- Fly
----------------*/
-
-/* Inward */
-
-.transition.fly {
- -webkit-animation-duration: 0.6s;
- animation-duration: 0.6s;
- -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
- transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
-}
-
-.transition.fly.in {
- -webkit-animation-name: flyIn;
- animation-name: flyIn;
-}
-
-.transition[class*="fly up"].in {
- -webkit-animation-name: flyInUp;
- animation-name: flyInUp;
-}
-
-.transition[class*="fly down"].in {
- -webkit-animation-name: flyInDown;
- animation-name: flyInDown;
-}
-
-.transition[class*="fly left"].in {
- -webkit-animation-name: flyInLeft;
- animation-name: flyInLeft;
-}
-
-.transition[class*="fly right"].in {
- -webkit-animation-name: flyInRight;
- animation-name: flyInRight;
-}
-
-/* Outward */
-
-.transition.fly.out {
- -webkit-animation-name: flyOut;
- animation-name: flyOut;
-}
-
-.transition[class*="fly up"].out {
- -webkit-animation-name: flyOutUp;
- animation-name: flyOutUp;
-}
-
-.transition[class*="fly down"].out {
- -webkit-animation-name: flyOutDown;
- animation-name: flyOutDown;
-}
-
-.transition[class*="fly left"].out {
- -webkit-animation-name: flyOutLeft;
- animation-name: flyOutLeft;
-}
-
-.transition[class*="fly right"].out {
- -webkit-animation-name: flyOutRight;
- animation-name: flyOutRight;
-}
-
-/* In */
-
-@-webkit-keyframes flyIn {
- 0% {
- opacity: 0;
- -webkit-transform: scale3d(0.3, 0.3, 0.3);
- transform: scale3d(0.3, 0.3, 0.3);
- }
-
- 20% {
- -webkit-transform: scale3d(1.1, 1.1, 1.1);
- transform: scale3d(1.1, 1.1, 1.1);
- }
-
- 40% {
- -webkit-transform: scale3d(0.9, 0.9, 0.9);
- transform: scale3d(0.9, 0.9, 0.9);
- }
-
- 60% {
- opacity: 1;
- -webkit-transform: scale3d(1.03, 1.03, 1.03);
- transform: scale3d(1.03, 1.03, 1.03);
- }
-
- 80% {
- -webkit-transform: scale3d(0.97, 0.97, 0.97);
- transform: scale3d(0.97, 0.97, 0.97);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: scale3d(1, 1, 1);
- transform: scale3d(1, 1, 1);
- }
-}
-
-@keyframes flyIn {
- 0% {
- opacity: 0;
- -webkit-transform: scale3d(0.3, 0.3, 0.3);
- transform: scale3d(0.3, 0.3, 0.3);
- }
-
- 20% {
- -webkit-transform: scale3d(1.1, 1.1, 1.1);
- transform: scale3d(1.1, 1.1, 1.1);
- }
-
- 40% {
- -webkit-transform: scale3d(0.9, 0.9, 0.9);
- transform: scale3d(0.9, 0.9, 0.9);
- }
-
- 60% {
- opacity: 1;
- -webkit-transform: scale3d(1.03, 1.03, 1.03);
- transform: scale3d(1.03, 1.03, 1.03);
- }
-
- 80% {
- -webkit-transform: scale3d(0.97, 0.97, 0.97);
- transform: scale3d(0.97, 0.97, 0.97);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: scale3d(1, 1, 1);
- transform: scale3d(1, 1, 1);
- }
-}
-
-@-webkit-keyframes flyInUp {
- 0% {
- opacity: 0;
- -webkit-transform: translate3d(0, 1500px, 0);
- transform: translate3d(0, 1500px, 0);
- }
-
- 60% {
- opacity: 1;
- -webkit-transform: translate3d(0, -20px, 0);
- transform: translate3d(0, -20px, 0);
- }
-
- 75% {
- -webkit-transform: translate3d(0, 10px, 0);
- transform: translate3d(0, 10px, 0);
- }
-
- 90% {
- -webkit-transform: translate3d(0, -5px, 0);
- transform: translate3d(0, -5px, 0);
- }
-
- 100% {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- }
-}
-
-@keyframes flyInUp {
- 0% {
- opacity: 0;
- -webkit-transform: translate3d(0, 1500px, 0);
- transform: translate3d(0, 1500px, 0);
- }
-
- 60% {
- opacity: 1;
- -webkit-transform: translate3d(0, -20px, 0);
- transform: translate3d(0, -20px, 0);
- }
-
- 75% {
- -webkit-transform: translate3d(0, 10px, 0);
- transform: translate3d(0, 10px, 0);
- }
-
- 90% {
- -webkit-transform: translate3d(0, -5px, 0);
- transform: translate3d(0, -5px, 0);
- }
-
- 100% {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- }
-}
-
-@-webkit-keyframes flyInDown {
- 0% {
- opacity: 0;
- -webkit-transform: translate3d(0, -1500px, 0);
- transform: translate3d(0, -1500px, 0);
- }
-
- 60% {
- opacity: 1;
- -webkit-transform: translate3d(0, 25px, 0);
- transform: translate3d(0, 25px, 0);
- }
-
- 75% {
- -webkit-transform: translate3d(0, -10px, 0);
- transform: translate3d(0, -10px, 0);
- }
-
- 90% {
- -webkit-transform: translate3d(0, 5px, 0);
- transform: translate3d(0, 5px, 0);
- }
-
- 100% {
- -webkit-transform: none;
- transform: none;
- }
-}
-
-@keyframes flyInDown {
- 0% {
- opacity: 0;
- -webkit-transform: translate3d(0, -1500px, 0);
- transform: translate3d(0, -1500px, 0);
- }
-
- 60% {
- opacity: 1;
- -webkit-transform: translate3d(0, 25px, 0);
- transform: translate3d(0, 25px, 0);
- }
-
- 75% {
- -webkit-transform: translate3d(0, -10px, 0);
- transform: translate3d(0, -10px, 0);
- }
-
- 90% {
- -webkit-transform: translate3d(0, 5px, 0);
- transform: translate3d(0, 5px, 0);
- }
-
- 100% {
- -webkit-transform: none;
- transform: none;
- }
-}
-
-@-webkit-keyframes flyInLeft {
- 0% {
- opacity: 0;
- -webkit-transform: translate3d(1500px, 0, 0);
- transform: translate3d(1500px, 0, 0);
- }
-
- 60% {
- opacity: 1;
- -webkit-transform: translate3d(-25px, 0, 0);
- transform: translate3d(-25px, 0, 0);
- }
-
- 75% {
- -webkit-transform: translate3d(10px, 0, 0);
- transform: translate3d(10px, 0, 0);
- }
-
- 90% {
- -webkit-transform: translate3d(-5px, 0, 0);
- transform: translate3d(-5px, 0, 0);
- }
-
- 100% {
- -webkit-transform: none;
- transform: none;
- }
-}
-
-@keyframes flyInLeft {
- 0% {
- opacity: 0;
- -webkit-transform: translate3d(1500px, 0, 0);
- transform: translate3d(1500px, 0, 0);
- }
-
- 60% {
- opacity: 1;
- -webkit-transform: translate3d(-25px, 0, 0);
- transform: translate3d(-25px, 0, 0);
- }
-
- 75% {
- -webkit-transform: translate3d(10px, 0, 0);
- transform: translate3d(10px, 0, 0);
- }
-
- 90% {
- -webkit-transform: translate3d(-5px, 0, 0);
- transform: translate3d(-5px, 0, 0);
- }
-
- 100% {
- -webkit-transform: none;
- transform: none;
- }
-}
-
-@-webkit-keyframes flyInRight {
- 0% {
- opacity: 0;
- -webkit-transform: translate3d(-1500px, 0, 0);
- transform: translate3d(-1500px, 0, 0);
- }
-
- 60% {
- opacity: 1;
- -webkit-transform: translate3d(25px, 0, 0);
- transform: translate3d(25px, 0, 0);
- }
-
- 75% {
- -webkit-transform: translate3d(-10px, 0, 0);
- transform: translate3d(-10px, 0, 0);
- }
-
- 90% {
- -webkit-transform: translate3d(5px, 0, 0);
- transform: translate3d(5px, 0, 0);
- }
-
- 100% {
- -webkit-transform: none;
- transform: none;
- }
-}
-
-@keyframes flyInRight {
- 0% {
- opacity: 0;
- -webkit-transform: translate3d(-1500px, 0, 0);
- transform: translate3d(-1500px, 0, 0);
- }
-
- 60% {
- opacity: 1;
- -webkit-transform: translate3d(25px, 0, 0);
- transform: translate3d(25px, 0, 0);
- }
-
- 75% {
- -webkit-transform: translate3d(-10px, 0, 0);
- transform: translate3d(-10px, 0, 0);
- }
-
- 90% {
- -webkit-transform: translate3d(5px, 0, 0);
- transform: translate3d(5px, 0, 0);
- }
-
- 100% {
- -webkit-transform: none;
- transform: none;
- }
-}
-
-/* Out */
-
-@-webkit-keyframes flyOut {
- 20% {
- -webkit-transform: scale3d(0.9, 0.9, 0.9);
- transform: scale3d(0.9, 0.9, 0.9);
- }
-
- 50%, 55% {
- opacity: 1;
- -webkit-transform: scale3d(1.1, 1.1, 1.1);
- transform: scale3d(1.1, 1.1, 1.1);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: scale3d(0.3, 0.3, 0.3);
- transform: scale3d(0.3, 0.3, 0.3);
- }
-}
-
-@keyframes flyOut {
- 20% {
- -webkit-transform: scale3d(0.9, 0.9, 0.9);
- transform: scale3d(0.9, 0.9, 0.9);
- }
-
- 50%, 55% {
- opacity: 1;
- -webkit-transform: scale3d(1.1, 1.1, 1.1);
- transform: scale3d(1.1, 1.1, 1.1);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: scale3d(0.3, 0.3, 0.3);
- transform: scale3d(0.3, 0.3, 0.3);
- }
-}
-
-@-webkit-keyframes flyOutUp {
- 20% {
- -webkit-transform: translate3d(0, 10px, 0);
- transform: translate3d(0, 10px, 0);
- }
-
- 40%, 45% {
- opacity: 1;
- -webkit-transform: translate3d(0, -20px, 0);
- transform: translate3d(0, -20px, 0);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translate3d(0, 2000px, 0);
- transform: translate3d(0, 2000px, 0);
- }
-}
-
-@keyframes flyOutUp {
- 20% {
- -webkit-transform: translate3d(0, 10px, 0);
- transform: translate3d(0, 10px, 0);
- }
-
- 40%, 45% {
- opacity: 1;
- -webkit-transform: translate3d(0, -20px, 0);
- transform: translate3d(0, -20px, 0);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translate3d(0, 2000px, 0);
- transform: translate3d(0, 2000px, 0);
- }
-}
-
-@-webkit-keyframes flyOutDown {
- 20% {
- -webkit-transform: translate3d(0, -10px, 0);
- transform: translate3d(0, -10px, 0);
- }
-
- 40%, 45% {
- opacity: 1;
- -webkit-transform: translate3d(0, 20px, 0);
- transform: translate3d(0, 20px, 0);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translate3d(0, -2000px, 0);
- transform: translate3d(0, -2000px, 0);
- }
-}
-
-@keyframes flyOutDown {
- 20% {
- -webkit-transform: translate3d(0, -10px, 0);
- transform: translate3d(0, -10px, 0);
- }
-
- 40%, 45% {
- opacity: 1;
- -webkit-transform: translate3d(0, 20px, 0);
- transform: translate3d(0, 20px, 0);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translate3d(0, -2000px, 0);
- transform: translate3d(0, -2000px, 0);
- }
-}
-
-@-webkit-keyframes flyOutRight {
- 20% {
- opacity: 1;
- -webkit-transform: translate3d(20px, 0, 0);
- transform: translate3d(20px, 0, 0);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translate3d(-2000px, 0, 0);
- transform: translate3d(-2000px, 0, 0);
- }
-}
-
-@keyframes flyOutRight {
- 20% {
- opacity: 1;
- -webkit-transform: translate3d(20px, 0, 0);
- transform: translate3d(20px, 0, 0);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translate3d(-2000px, 0, 0);
- transform: translate3d(-2000px, 0, 0);
- }
-}
-
-@-webkit-keyframes flyOutLeft {
- 20% {
- opacity: 1;
- -webkit-transform: translate3d(-20px, 0, 0);
- transform: translate3d(-20px, 0, 0);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translate3d(2000px, 0, 0);
- transform: translate3d(2000px, 0, 0);
- }
-}
-
-@keyframes flyOutLeft {
- 20% {
- opacity: 1;
- -webkit-transform: translate3d(-20px, 0, 0);
- transform: translate3d(-20px, 0, 0);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translate3d(2000px, 0, 0);
- transform: translate3d(2000px, 0, 0);
- }
-}
-
-/*--------------
- Slide
----------------*/
-
-.transition.slide.in,
-.transition[class*="slide down"].in {
- -webkit-animation-name: slideInY;
- animation-name: slideInY;
- -webkit-transform-origin: top center;
- transform-origin: top center;
-}
-
-.transition[class*="slide up"].in {
- -webkit-animation-name: slideInY;
- animation-name: slideInY;
- -webkit-transform-origin: bottom center;
- transform-origin: bottom center;
-}
-
-.transition[class*="slide left"].in {
- -webkit-animation-name: slideInX;
- animation-name: slideInX;
- -webkit-transform-origin: center right;
- transform-origin: center right;
-}
-
-.transition[class*="slide right"].in {
- -webkit-animation-name: slideInX;
- animation-name: slideInX;
- -webkit-transform-origin: center left;
- transform-origin: center left;
-}
-
-.transition.slide.out,
-.transition[class*="slide down"].out {
- -webkit-animation-name: slideOutY;
- animation-name: slideOutY;
- -webkit-transform-origin: top center;
- transform-origin: top center;
-}
-
-.transition[class*="slide up"].out {
- -webkit-animation-name: slideOutY;
- animation-name: slideOutY;
- -webkit-transform-origin: bottom center;
- transform-origin: bottom center;
-}
-
-.transition[class*="slide left"].out {
- -webkit-animation-name: slideOutX;
- animation-name: slideOutX;
- -webkit-transform-origin: center right;
- transform-origin: center right;
-}
-
-.transition[class*="slide right"].out {
- -webkit-animation-name: slideOutX;
- animation-name: slideOutX;
- -webkit-transform-origin: center left;
- transform-origin: center left;
-}
-
-/* In */
-
-@-webkit-keyframes slideInY {
- 0% {
- opacity: 0;
- -webkit-transform: scaleY(0);
- transform: scaleY(0);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: scaleY(1);
- transform: scaleY(1);
- }
-}
-
-@keyframes slideInY {
- 0% {
- opacity: 0;
- -webkit-transform: scaleY(0);
- transform: scaleY(0);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: scaleY(1);
- transform: scaleY(1);
- }
-}
-
-@-webkit-keyframes slideInX {
- 0% {
- opacity: 0;
- -webkit-transform: scaleX(0);
- transform: scaleX(0);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: scaleX(1);
- transform: scaleX(1);
- }
-}
-
-@keyframes slideInX {
- 0% {
- opacity: 0;
- -webkit-transform: scaleX(0);
- transform: scaleX(0);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: scaleX(1);
- transform: scaleX(1);
- }
-}
-
-/* Out */
-
-@-webkit-keyframes slideOutY {
- 0% {
- opacity: 1;
- -webkit-transform: scaleY(1);
- transform: scaleY(1);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: scaleY(0);
- transform: scaleY(0);
- }
-}
-
-@keyframes slideOutY {
- 0% {
- opacity: 1;
- -webkit-transform: scaleY(1);
- transform: scaleY(1);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: scaleY(0);
- transform: scaleY(0);
- }
-}
-
-@-webkit-keyframes slideOutX {
- 0% {
- opacity: 1;
- -webkit-transform: scaleX(1);
- transform: scaleX(1);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: scaleX(0);
- transform: scaleX(0);
- }
-}
-
-@keyframes slideOutX {
- 0% {
- opacity: 1;
- -webkit-transform: scaleX(1);
- transform: scaleX(1);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: scaleX(0);
- transform: scaleX(0);
- }
-}
-
-/*--------------
- Swing
----------------*/
-
-.transition.swing {
- -webkit-animation-duration: 800ms;
- animation-duration: 800ms;
-}
-
-.transition[class*="swing down"].in {
- -webkit-animation-name: swingInX;
- animation-name: swingInX;
- -webkit-transform-origin: top center;
- transform-origin: top center;
-}
-
-.transition[class*="swing up"].in {
- -webkit-animation-name: swingInX;
- animation-name: swingInX;
- -webkit-transform-origin: bottom center;
- transform-origin: bottom center;
-}
-
-.transition[class*="swing left"].in {
- -webkit-animation-name: swingInY;
- animation-name: swingInY;
- -webkit-transform-origin: center right;
- transform-origin: center right;
-}
-
-.transition[class*="swing right"].in {
- -webkit-animation-name: swingInY;
- animation-name: swingInY;
- -webkit-transform-origin: center left;
- transform-origin: center left;
-}
-
-.transition.swing.out,
-.transition[class*="swing down"].out {
- -webkit-animation-name: swingOutX;
- animation-name: swingOutX;
- -webkit-transform-origin: top center;
- transform-origin: top center;
-}
-
-.transition[class*="swing up"].out {
- -webkit-animation-name: swingOutX;
- animation-name: swingOutX;
- -webkit-transform-origin: bottom center;
- transform-origin: bottom center;
-}
-
-.transition[class*="swing left"].out {
- -webkit-animation-name: swingOutY;
- animation-name: swingOutY;
- -webkit-transform-origin: center right;
- transform-origin: center right;
-}
-
-.transition[class*="swing right"].out {
- -webkit-animation-name: swingOutY;
- animation-name: swingOutY;
- -webkit-transform-origin: center left;
- transform-origin: center left;
-}
-
-/* In */
-
-@-webkit-keyframes swingInX {
- 0% {
- -webkit-transform: perspective(1000px) rotateX(90deg);
- transform: perspective(1000px) rotateX(90deg);
- opacity: 0;
- }
-
- 40% {
- -webkit-transform: perspective(1000px) rotateX(-30deg);
- transform: perspective(1000px) rotateX(-30deg);
- opacity: 1;
- }
-
- 60% {
- -webkit-transform: perspective(1000px) rotateX(15deg);
- transform: perspective(1000px) rotateX(15deg);
- }
-
- 80% {
- -webkit-transform: perspective(1000px) rotateX(-7.5deg);
- transform: perspective(1000px) rotateX(-7.5deg);
- }
-
- 100% {
- -webkit-transform: perspective(1000px) rotateX(0deg);
- transform: perspective(1000px) rotateX(0deg);
- }
-}
-
-@keyframes swingInX {
- 0% {
- -webkit-transform: perspective(1000px) rotateX(90deg);
- transform: perspective(1000px) rotateX(90deg);
- opacity: 0;
- }
-
- 40% {
- -webkit-transform: perspective(1000px) rotateX(-30deg);
- transform: perspective(1000px) rotateX(-30deg);
- opacity: 1;
- }
-
- 60% {
- -webkit-transform: perspective(1000px) rotateX(15deg);
- transform: perspective(1000px) rotateX(15deg);
- }
-
- 80% {
- -webkit-transform: perspective(1000px) rotateX(-7.5deg);
- transform: perspective(1000px) rotateX(-7.5deg);
- }
-
- 100% {
- -webkit-transform: perspective(1000px) rotateX(0deg);
- transform: perspective(1000px) rotateX(0deg);
- }
-}
-
-@-webkit-keyframes swingInY {
- 0% {
- -webkit-transform: perspective(1000px) rotateY(-90deg);
- transform: perspective(1000px) rotateY(-90deg);
- opacity: 0;
- }
-
- 40% {
- -webkit-transform: perspective(1000px) rotateY(30deg);
- transform: perspective(1000px) rotateY(30deg);
- opacity: 1;
- }
-
- 60% {
- -webkit-transform: perspective(1000px) rotateY(-17.5deg);
- transform: perspective(1000px) rotateY(-17.5deg);
- }
-
- 80% {
- -webkit-transform: perspective(1000px) rotateY(7.5deg);
- transform: perspective(1000px) rotateY(7.5deg);
- }
-
- 100% {
- -webkit-transform: perspective(1000px) rotateY(0deg);
- transform: perspective(1000px) rotateY(0deg);
- }
-}
-
-@keyframes swingInY {
- 0% {
- -webkit-transform: perspective(1000px) rotateY(-90deg);
- transform: perspective(1000px) rotateY(-90deg);
- opacity: 0;
- }
-
- 40% {
- -webkit-transform: perspective(1000px) rotateY(30deg);
- transform: perspective(1000px) rotateY(30deg);
- opacity: 1;
- }
-
- 60% {
- -webkit-transform: perspective(1000px) rotateY(-17.5deg);
- transform: perspective(1000px) rotateY(-17.5deg);
- }
-
- 80% {
- -webkit-transform: perspective(1000px) rotateY(7.5deg);
- transform: perspective(1000px) rotateY(7.5deg);
- }
-
- 100% {
- -webkit-transform: perspective(1000px) rotateY(0deg);
- transform: perspective(1000px) rotateY(0deg);
- }
-}
-
-/* Out */
-
-@-webkit-keyframes swingOutX {
- 0% {
- -webkit-transform: perspective(1000px) rotateX(0deg);
- transform: perspective(1000px) rotateX(0deg);
- }
-
- 40% {
- -webkit-transform: perspective(1000px) rotateX(-7.5deg);
- transform: perspective(1000px) rotateX(-7.5deg);
- }
-
- 60% {
- -webkit-transform: perspective(1000px) rotateX(17.5deg);
- transform: perspective(1000px) rotateX(17.5deg);
- }
-
- 80% {
- -webkit-transform: perspective(1000px) rotateX(-30deg);
- transform: perspective(1000px) rotateX(-30deg);
- opacity: 1;
- }
-
- 100% {
- -webkit-transform: perspective(1000px) rotateX(90deg);
- transform: perspective(1000px) rotateX(90deg);
- opacity: 0;
- }
-}
-
-@keyframes swingOutX {
- 0% {
- -webkit-transform: perspective(1000px) rotateX(0deg);
- transform: perspective(1000px) rotateX(0deg);
- }
-
- 40% {
- -webkit-transform: perspective(1000px) rotateX(-7.5deg);
- transform: perspective(1000px) rotateX(-7.5deg);
- }
-
- 60% {
- -webkit-transform: perspective(1000px) rotateX(17.5deg);
- transform: perspective(1000px) rotateX(17.5deg);
- }
-
- 80% {
- -webkit-transform: perspective(1000px) rotateX(-30deg);
- transform: perspective(1000px) rotateX(-30deg);
- opacity: 1;
- }
-
- 100% {
- -webkit-transform: perspective(1000px) rotateX(90deg);
- transform: perspective(1000px) rotateX(90deg);
- opacity: 0;
- }
-}
-
-@-webkit-keyframes swingOutY {
- 0% {
- -webkit-transform: perspective(1000px) rotateY(0deg);
- transform: perspective(1000px) rotateY(0deg);
- }
-
- 40% {
- -webkit-transform: perspective(1000px) rotateY(7.5deg);
- transform: perspective(1000px) rotateY(7.5deg);
- }
-
- 60% {
- -webkit-transform: perspective(1000px) rotateY(-10deg);
- transform: perspective(1000px) rotateY(-10deg);
- }
-
- 80% {
- -webkit-transform: perspective(1000px) rotateY(30deg);
- transform: perspective(1000px) rotateY(30deg);
- opacity: 1;
- }
-
- 100% {
- -webkit-transform: perspective(1000px) rotateY(-90deg);
- transform: perspective(1000px) rotateY(-90deg);
- opacity: 0;
- }
-}
-
-@keyframes swingOutY {
- 0% {
- -webkit-transform: perspective(1000px) rotateY(0deg);
- transform: perspective(1000px) rotateY(0deg);
- }
-
- 40% {
- -webkit-transform: perspective(1000px) rotateY(7.5deg);
- transform: perspective(1000px) rotateY(7.5deg);
- }
-
- 60% {
- -webkit-transform: perspective(1000px) rotateY(-10deg);
- transform: perspective(1000px) rotateY(-10deg);
- }
-
- 80% {
- -webkit-transform: perspective(1000px) rotateY(30deg);
- transform: perspective(1000px) rotateY(30deg);
- opacity: 1;
- }
-
- 100% {
- -webkit-transform: perspective(1000px) rotateY(-90deg);
- transform: perspective(1000px) rotateY(-90deg);
- opacity: 0;
- }
-}
-
-/*--------------
- Zoom
----------------*/
-
-.transition.zoom.in {
- -webkit-animation-name: zoomIn;
- animation-name: zoomIn;
-}
-
-.transition.zoom.out {
- -webkit-animation-name: zoomOut;
- animation-name: zoomOut;
-}
-
-@-webkit-keyframes zoomIn {
- 0% {
- opacity: 1;
- -webkit-transform: scale(0);
- transform: scale(0);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-}
-
-@keyframes zoomIn {
- 0% {
- opacity: 1;
- -webkit-transform: scale(0);
- transform: scale(0);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-}
-
-@-webkit-keyframes zoomOut {
- 0% {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: scale(0);
- transform: scale(0);
- }
-}
-
-@keyframes zoomOut {
- 0% {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: scale(0);
- transform: scale(0);
- }
-}
-
-/*******************************
- Static Animations
-*******************************/
-
-/*--------------
- Emphasis
----------------*/
-
-.flash.transition {
- -webkit-animation-duration: 750ms;
- animation-duration: 750ms;
- -webkit-animation-name: flash;
- animation-name: flash;
-}
-
-.shake.transition {
- -webkit-animation-duration: 750ms;
- animation-duration: 750ms;
- -webkit-animation-name: shake;
- animation-name: shake;
-}
-
-.bounce.transition {
- -webkit-animation-duration: 750ms;
- animation-duration: 750ms;
- -webkit-animation-name: bounce;
- animation-name: bounce;
-}
-
-.tada.transition {
- -webkit-animation-duration: 750ms;
- animation-duration: 750ms;
- -webkit-animation-name: tada;
- animation-name: tada;
-}
-
-.pulse.transition {
- -webkit-animation-duration: 500ms;
- animation-duration: 500ms;
- -webkit-animation-name: pulse;
- animation-name: pulse;
-}
-
-.jiggle.transition {
- -webkit-animation-duration: 750ms;
- animation-duration: 750ms;
- -webkit-animation-name: jiggle;
- animation-name: jiggle;
-}
-
-.transition.glow {
- -webkit-animation-duration: 2000ms;
- animation-duration: 2000ms;
- -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
- animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
-}
-
-.transition.glow {
- -webkit-animation-name: glow;
- animation-name: glow;
-}
-
-/* Flash */
-
-@-webkit-keyframes flash {
- 0%, 50%, 100% {
- opacity: 1;
- }
-
- 25%, 75% {
- opacity: 0;
- }
-}
-
-@keyframes flash {
- 0%, 50%, 100% {
- opacity: 1;
- }
-
- 25%, 75% {
- opacity: 0;
- }
-}
-
-/* Shake */
-
-@-webkit-keyframes shake {
- 0%, 100% {
- -webkit-transform: translateX(0);
- transform: translateX(0);
- }
-
- 10%, 30%, 50%, 70%, 90% {
- -webkit-transform: translateX(-10px);
- transform: translateX(-10px);
- }
-
- 20%, 40%, 60%, 80% {
- -webkit-transform: translateX(10px);
- transform: translateX(10px);
- }
-}
-
-@keyframes shake {
- 0%, 100% {
- -webkit-transform: translateX(0);
- transform: translateX(0);
- }
-
- 10%, 30%, 50%, 70%, 90% {
- -webkit-transform: translateX(-10px);
- transform: translateX(-10px);
- }
-
- 20%, 40%, 60%, 80% {
- -webkit-transform: translateX(10px);
- transform: translateX(10px);
- }
-}
-
-/* Bounce */
-
-@-webkit-keyframes bounce {
- 0%, 20%, 50%, 80%, 100% {
- -webkit-transform: translateY(0);
- transform: translateY(0);
- }
-
- 40% {
- -webkit-transform: translateY(-30px);
- transform: translateY(-30px);
- }
-
- 60% {
- -webkit-transform: translateY(-15px);
- transform: translateY(-15px);
- }
-}
-
-@keyframes bounce {
- 0%, 20%, 50%, 80%, 100% {
- -webkit-transform: translateY(0);
- transform: translateY(0);
- }
-
- 40% {
- -webkit-transform: translateY(-30px);
- transform: translateY(-30px);
- }
-
- 60% {
- -webkit-transform: translateY(-15px);
- transform: translateY(-15px);
- }
-}
-
-/* Tada */
-
-@-webkit-keyframes tada {
- 0% {
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-
- 10%, 20% {
- -webkit-transform: scale(0.9) rotate(-3deg);
- transform: scale(0.9) rotate(-3deg);
- }
-
- 30%, 50%, 70%, 90% {
- -webkit-transform: scale(1.1) rotate(3deg);
- transform: scale(1.1) rotate(3deg);
- }
-
- 40%, 60%, 80% {
- -webkit-transform: scale(1.1) rotate(-3deg);
- transform: scale(1.1) rotate(-3deg);
- }
-
- 100% {
- -webkit-transform: scale(1) rotate(0);
- transform: scale(1) rotate(0);
- }
-}
-
-@keyframes tada {
- 0% {
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-
- 10%, 20% {
- -webkit-transform: scale(0.9) rotate(-3deg);
- transform: scale(0.9) rotate(-3deg);
- }
-
- 30%, 50%, 70%, 90% {
- -webkit-transform: scale(1.1) rotate(3deg);
- transform: scale(1.1) rotate(3deg);
- }
-
- 40%, 60%, 80% {
- -webkit-transform: scale(1.1) rotate(-3deg);
- transform: scale(1.1) rotate(-3deg);
- }
-
- 100% {
- -webkit-transform: scale(1) rotate(0);
- transform: scale(1) rotate(0);
- }
-}
-
-/* Pulse */
-
-@-webkit-keyframes pulse {
- 0% {
- -webkit-transform: scale(1);
- transform: scale(1);
- opacity: 1;
- }
-
- 50% {
- -webkit-transform: scale(0.9);
- transform: scale(0.9);
- opacity: 0.7;
- }
-
- 100% {
- -webkit-transform: scale(1);
- transform: scale(1);
- opacity: 1;
- }
-}
-
-@keyframes pulse {
- 0% {
- -webkit-transform: scale(1);
- transform: scale(1);
- opacity: 1;
- }
-
- 50% {
- -webkit-transform: scale(0.9);
- transform: scale(0.9);
- opacity: 0.7;
- }
-
- 100% {
- -webkit-transform: scale(1);
- transform: scale(1);
- opacity: 1;
- }
-}
-
-/* Jiggle */
-
-@-webkit-keyframes jiggle {
- 0% {
- -webkit-transform: scale3d(1, 1, 1);
- transform: scale3d(1, 1, 1);
- }
-
- 30% {
- -webkit-transform: scale3d(1.25, 0.75, 1);
- transform: scale3d(1.25, 0.75, 1);
- }
-
- 40% {
- -webkit-transform: scale3d(0.75, 1.25, 1);
- transform: scale3d(0.75, 1.25, 1);
- }
-
- 50% {
- -webkit-transform: scale3d(1.15, 0.85, 1);
- transform: scale3d(1.15, 0.85, 1);
- }
-
- 65% {
- -webkit-transform: scale3d(0.95, 1.05, 1);
- transform: scale3d(0.95, 1.05, 1);
- }
-
- 75% {
- -webkit-transform: scale3d(1.05, 0.95, 1);
- transform: scale3d(1.05, 0.95, 1);
- }
-
- 100% {
- -webkit-transform: scale3d(1, 1, 1);
- transform: scale3d(1, 1, 1);
- }
-}
-
-@keyframes jiggle {
- 0% {
- -webkit-transform: scale3d(1, 1, 1);
- transform: scale3d(1, 1, 1);
- }
-
- 30% {
- -webkit-transform: scale3d(1.25, 0.75, 1);
- transform: scale3d(1.25, 0.75, 1);
- }
-
- 40% {
- -webkit-transform: scale3d(0.75, 1.25, 1);
- transform: scale3d(0.75, 1.25, 1);
- }
-
- 50% {
- -webkit-transform: scale3d(1.15, 0.85, 1);
- transform: scale3d(1.15, 0.85, 1);
- }
-
- 65% {
- -webkit-transform: scale3d(0.95, 1.05, 1);
- transform: scale3d(0.95, 1.05, 1);
- }
-
- 75% {
- -webkit-transform: scale3d(1.05, 0.95, 1);
- transform: scale3d(1.05, 0.95, 1);
- }
-
- 100% {
- -webkit-transform: scale3d(1, 1, 1);
- transform: scale3d(1, 1, 1);
- }
-}
-
-/* Glow */
-
-@-webkit-keyframes glow {
- 0% {
- background-color: #FCFCFD;
- }
-
- 30% {
- background-color: #FFF6CD;
- }
-
- 100% {
- background-color: #FCFCFD;
- }
-}
-
-@keyframes glow {
- 0% {
- background-color: #FCFCFD;
- }
-
- 30% {
- background-color: #FFF6CD;
- }
-
- 100% {
- background-color: #FCFCFD;
- }
-}
-
-/*******************************
- Site Overrides
-*******************************/
\ No newline at end of file
diff --git a/src-angular/assets/semantic/dist/semantic.js b/src-angular/assets/semantic/dist/semantic.js
deleted file mode 100644
index 82c5193..0000000
--- a/src-angular/assets/semantic/dist/semantic.js
+++ /dev/null
@@ -1,27945 +0,0 @@
- /*
- * # Fomantic UI - 2.8.3
- * https://github.com/fomantic/Fomantic-UI
- * http://fomantic-ui.com/
- *
- * Copyright 2014 Contributors
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-/*!
- * # Fomantic-UI - Site
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-;(function ($, window, document, undefined) {
-
-$.isFunction = $.isFunction || function(obj) {
- return typeof obj === "function" && typeof obj.nodeType !== "number";
-};
-
-$.site = $.fn.site = function(parameters) {
- var
- time = new Date().getTime(),
- performance = [],
-
- query = arguments[0],
- methodInvoked = (typeof query == 'string'),
- queryArguments = [].slice.call(arguments, 1),
-
- settings = ( $.isPlainObject(parameters) )
- ? $.extend(true, {}, $.site.settings, parameters)
- : $.extend({}, $.site.settings),
-
- namespace = settings.namespace,
- error = settings.error,
-
- moduleNamespace = 'module-' + namespace,
-
- $document = $(document),
- $module = $document,
- element = this,
- instance = $module.data(moduleNamespace),
-
- module,
- returnedValue
- ;
- module = {
-
- initialize: function() {
- module.instantiate();
- },
-
- instantiate: function() {
- module.verbose('Storing instance of site', module);
- instance = module;
- $module
- .data(moduleNamespace, module)
- ;
- },
-
- normalize: function() {
- module.fix.console();
- module.fix.requestAnimationFrame();
- },
-
- fix: {
- console: function() {
- module.debug('Normalizing window.console');
- if (console === undefined || console.log === undefined) {
- module.verbose('Console not available, normalizing events');
- module.disable.console();
- }
- if (typeof console.group == 'undefined' || typeof console.groupEnd == 'undefined' || typeof console.groupCollapsed == 'undefined') {
- module.verbose('Console group not available, normalizing events');
- window.console.group = function() {};
- window.console.groupEnd = function() {};
- window.console.groupCollapsed = function() {};
- }
- if (typeof console.markTimeline == 'undefined') {
- module.verbose('Mark timeline not available, normalizing events');
- window.console.markTimeline = function() {};
- }
- },
- consoleClear: function() {
- module.debug('Disabling programmatic console clearing');
- window.console.clear = function() {};
- },
- requestAnimationFrame: function() {
- module.debug('Normalizing requestAnimationFrame');
- if(window.requestAnimationFrame === undefined) {
- module.debug('RequestAnimationFrame not available, normalizing event');
- window.requestAnimationFrame = window.requestAnimationFrame
- || window.mozRequestAnimationFrame
- || window.webkitRequestAnimationFrame
- || window.msRequestAnimationFrame
- || function(callback) { setTimeout(callback, 0); }
- ;
- }
- }
- },
-
- moduleExists: function(name) {
- return ($.fn[name] !== undefined && $.fn[name].settings !== undefined);
- },
-
- enabled: {
- modules: function(modules) {
- var
- enabledModules = []
- ;
- modules = modules || settings.modules;
- $.each(modules, function(index, name) {
- if(module.moduleExists(name)) {
- enabledModules.push(name);
- }
- });
- return enabledModules;
- }
- },
-
- disabled: {
- modules: function(modules) {
- var
- disabledModules = []
- ;
- modules = modules || settings.modules;
- $.each(modules, function(index, name) {
- if(!module.moduleExists(name)) {
- disabledModules.push(name);
- }
- });
- return disabledModules;
- }
- },
-
- change: {
- setting: function(setting, value, modules, modifyExisting) {
- modules = (typeof modules === 'string')
- ? (modules === 'all')
- ? settings.modules
- : [modules]
- : modules || settings.modules
- ;
- modifyExisting = (modifyExisting !== undefined)
- ? modifyExisting
- : true
- ;
- $.each(modules, function(index, name) {
- var
- namespace = (module.moduleExists(name))
- ? $.fn[name].settings.namespace || false
- : true,
- $existingModules
- ;
- if(module.moduleExists(name)) {
- module.verbose('Changing default setting', setting, value, name);
- $.fn[name].settings[setting] = value;
- if(modifyExisting && namespace) {
- $existingModules = $(':data(module-' + namespace + ')');
- if($existingModules.length > 0) {
- module.verbose('Modifying existing settings', $existingModules);
- $existingModules[name]('setting', setting, value);
- }
- }
- }
- });
- },
- settings: function(newSettings, modules, modifyExisting) {
- modules = (typeof modules === 'string')
- ? [modules]
- : modules || settings.modules
- ;
- modifyExisting = (modifyExisting !== undefined)
- ? modifyExisting
- : true
- ;
- $.each(modules, function(index, name) {
- var
- $existingModules
- ;
- if(module.moduleExists(name)) {
- module.verbose('Changing default setting', newSettings, name);
- $.extend(true, $.fn[name].settings, newSettings);
- if(modifyExisting && namespace) {
- $existingModules = $(':data(module-' + namespace + ')');
- if($existingModules.length > 0) {
- module.verbose('Modifying existing settings', $existingModules);
- $existingModules[name]('setting', newSettings);
- }
- }
- }
- });
- }
- },
-
- enable: {
- console: function() {
- module.console(true);
- },
- debug: function(modules, modifyExisting) {
- modules = modules || settings.modules;
- module.debug('Enabling debug for modules', modules);
- module.change.setting('debug', true, modules, modifyExisting);
- },
- verbose: function(modules, modifyExisting) {
- modules = modules || settings.modules;
- module.debug('Enabling verbose debug for modules', modules);
- module.change.setting('verbose', true, modules, modifyExisting);
- }
- },
- disable: {
- console: function() {
- module.console(false);
- },
- debug: function(modules, modifyExisting) {
- modules = modules || settings.modules;
- module.debug('Disabling debug for modules', modules);
- module.change.setting('debug', false, modules, modifyExisting);
- },
- verbose: function(modules, modifyExisting) {
- modules = modules || settings.modules;
- module.debug('Disabling verbose debug for modules', modules);
- module.change.setting('verbose', false, modules, modifyExisting);
- }
- },
-
- console: function(enable) {
- if(enable) {
- if(instance.cache.console === undefined) {
- module.error(error.console);
- return;
- }
- module.debug('Restoring console function');
- window.console = instance.cache.console;
- }
- else {
- module.debug('Disabling console function');
- instance.cache.console = window.console;
- window.console = {
- clear : function(){},
- error : function(){},
- group : function(){},
- groupCollapsed : function(){},
- groupEnd : function(){},
- info : function(){},
- log : function(){},
- markTimeline : function(){},
- warn : function(){}
- };
- }
- },
-
- destroy: function() {
- module.verbose('Destroying previous site for', $module);
- $module
- .removeData(moduleNamespace)
- ;
- },
-
- cache: {},
-
- setting: function(name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, settings, name);
- }
- else if(value !== undefined) {
- settings[name] = value;
- }
- else {
- return settings[name];
- }
- },
- internal: function(name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, module, name);
- }
- else if(value !== undefined) {
- module[name] = value;
- }
- else {
- return module[name];
- }
- },
- debug: function() {
- if(settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.debug.apply(console, arguments);
- }
- }
- },
- verbose: function() {
- if(settings.verbose && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.verbose.apply(console, arguments);
- }
- }
- },
- error: function() {
- module.error = Function.prototype.bind.call(console.error, console, settings.name + ':');
- module.error.apply(console, arguments);
- },
- performance: {
- log: function(message) {
- var
- currentTime,
- executionTime,
- previousTime
- ;
- if(settings.performance) {
- currentTime = new Date().getTime();
- previousTime = time || currentTime;
- executionTime = currentTime - previousTime;
- time = currentTime;
- performance.push({
- 'Element' : element,
- 'Name' : message[0],
- 'Arguments' : [].slice.call(message, 1) || '',
- 'Execution Time' : executionTime
- });
- }
- clearTimeout(module.performance.timer);
- module.performance.timer = setTimeout(module.performance.display, 500);
- },
- display: function() {
- var
- title = settings.name + ':',
- totalTime = 0
- ;
- time = false;
- clearTimeout(module.performance.timer);
- $.each(performance, function(index, data) {
- totalTime += data['Execution Time'];
- });
- title += ' ' + totalTime + 'ms';
- if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) {
- console.groupCollapsed(title);
- if(console.table) {
- console.table(performance);
- }
- else {
- $.each(performance, function(index, data) {
- console.log(data['Name'] + ': ' + data['Execution Time']+'ms');
- });
- }
- console.groupEnd();
- }
- performance = [];
- }
- },
- invoke: function(query, passedArguments, context) {
- var
- object = instance,
- maxDepth,
- found,
- response
- ;
- passedArguments = passedArguments || queryArguments;
- context = element || context;
- if(typeof query == 'string' && object !== undefined) {
- query = query.split(/[\. ]/);
- maxDepth = query.length - 1;
- $.each(query, function(depth, value) {
- var camelCaseValue = (depth != maxDepth)
- ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
- : query
- ;
- if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
- object = object[camelCaseValue];
- }
- else if( object[camelCaseValue] !== undefined ) {
- found = object[camelCaseValue];
- return false;
- }
- else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
- object = object[value];
- }
- else if( object[value] !== undefined ) {
- found = object[value];
- return false;
- }
- else {
- module.error(error.method, query);
- return false;
- }
- });
- }
- if ( $.isFunction( found ) ) {
- response = found.apply(context, passedArguments);
- }
- else if(found !== undefined) {
- response = found;
- }
- if(Array.isArray(returnedValue)) {
- returnedValue.push(response);
- }
- else if(returnedValue !== undefined) {
- returnedValue = [returnedValue, response];
- }
- else if(response !== undefined) {
- returnedValue = response;
- }
- return found;
- }
- };
-
- if(methodInvoked) {
- if(instance === undefined) {
- module.initialize();
- }
- module.invoke(query);
- }
- else {
- if(instance !== undefined) {
- module.destroy();
- }
- module.initialize();
- }
- return (returnedValue !== undefined)
- ? returnedValue
- : this
- ;
-};
-
-$.site.settings = {
-
- name : 'Site',
- namespace : 'site',
-
- error : {
- console : 'Console cannot be restored, most likely it was overwritten outside of module',
- method : 'The method you called is not defined.'
- },
-
- debug : false,
- verbose : false,
- performance : true,
-
- modules: [
- 'accordion',
- 'api',
- 'calendar',
- 'checkbox',
- 'dimmer',
- 'dropdown',
- 'embed',
- 'form',
- 'modal',
- 'nag',
- 'popup',
- 'slider',
- 'rating',
- 'shape',
- 'sidebar',
- 'state',
- 'sticky',
- 'tab',
- 'toast',
- 'transition',
- 'visibility',
- 'visit'
- ],
-
- siteNamespace : 'site',
- namespaceStub : {
- cache : {},
- config : {},
- sections : {},
- section : {},
- utilities : {}
- }
-
-};
-
-// allows for selection of elements with data attributes
-$.extend($.expr[ ":" ], {
- data: ($.expr.createPseudo)
- ? $.expr.createPseudo(function(dataName) {
- return function(elem) {
- return !!$.data(elem, dataName);
- };
- })
- : function(elem, i, match) {
- // support: jQuery < 1.8
- return !!$.data(elem, match[ 3 ]);
- }
-});
-
-
-})( jQuery, window, document );
-
-/*!
- * # Fomantic-UI - Form Validation
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-;(function ($, window, document, undefined) {
-
-'use strict';
-
-$.isFunction = $.isFunction || function(obj) {
- return typeof obj === "function" && typeof obj.nodeType !== "number";
-};
-
-window = (typeof window != 'undefined' && window.Math == Math)
- ? window
- : (typeof self != 'undefined' && self.Math == Math)
- ? self
- : Function('return this')()
-;
-
-$.fn.form = function(parameters) {
- var
- $allModules = $(this),
- moduleSelector = $allModules.selector || '',
-
- time = new Date().getTime(),
- performance = [],
-
- query = arguments[0],
- legacyParameters = arguments[1],
- methodInvoked = (typeof query == 'string'),
- queryArguments = [].slice.call(arguments, 1),
- returnedValue
- ;
- $allModules
- .each(function() {
- var
- $module = $(this),
- element = this,
-
- formErrors = [],
- keyHeldDown = false,
-
- // set at run-time
- $field,
- $group,
- $message,
- $prompt,
- $submit,
- $clear,
- $reset,
-
- settings,
- validation,
-
- metadata,
- selector,
- className,
- regExp,
- error,
-
- namespace,
- moduleNamespace,
- eventNamespace,
-
- submitting = false,
- dirty = false,
- history = ['clean', 'clean'],
-
- instance,
- module
- ;
-
- module = {
-
- initialize: function() {
-
- // settings grabbed at run time
- module.get.settings();
- if(methodInvoked) {
- if(instance === undefined) {
- module.instantiate();
- }
- module.invoke(query);
- }
- else {
- if(instance !== undefined) {
- instance.invoke('destroy');
- }
- module.verbose('Initializing form validation', $module, settings);
- module.bindEvents();
- module.set.defaults();
- module.instantiate();
- }
- },
-
- instantiate: function() {
- module.verbose('Storing instance of module', module);
- instance = module;
- $module
- .data(moduleNamespace, module)
- ;
- },
-
- destroy: function() {
- module.verbose('Destroying previous module', instance);
- module.removeEvents();
- $module
- .removeData(moduleNamespace)
- ;
- },
-
- refresh: function() {
- module.verbose('Refreshing selector cache');
- $field = $module.find(selector.field);
- $group = $module.find(selector.group);
- $message = $module.find(selector.message);
- $prompt = $module.find(selector.prompt);
-
- $submit = $module.find(selector.submit);
- $clear = $module.find(selector.clear);
- $reset = $module.find(selector.reset);
- },
-
- submit: function() {
- module.verbose('Submitting form', $module);
- submitting = true;
- $module.submit();
- },
-
- attachEvents: function(selector, action) {
- action = action || 'submit';
- $(selector).on('click' + eventNamespace, function(event) {
- module[action]();
- event.preventDefault();
- });
- },
-
- bindEvents: function() {
- module.verbose('Attaching form events');
- $module
- .on('submit' + eventNamespace, module.validate.form)
- .on('blur' + eventNamespace, selector.field, module.event.field.blur)
- .on('click' + eventNamespace, selector.submit, module.submit)
- .on('click' + eventNamespace, selector.reset, module.reset)
- .on('click' + eventNamespace, selector.clear, module.clear)
- ;
- if(settings.keyboardShortcuts) {
- $module.on('keydown' + eventNamespace, selector.field, module.event.field.keydown);
- }
- $field.each(function(index, el) {
- var
- $input = $(el),
- type = $input.prop('type'),
- inputEvent = module.get.changeEvent(type, $input)
- ;
- $input.on(inputEvent + eventNamespace, module.event.field.change);
- });
-
- // Dirty events
- if (settings.preventLeaving) {
- $(window).on('beforeunload' + eventNamespace, module.event.beforeUnload);
- }
-
- $field.on('change click keyup keydown blur', function(e) {
- $(this).triggerHandler(e.type + ".dirty");
- });
-
- $field.on('change.dirty click.dirty keyup.dirty keydown.dirty blur.dirty', module.determine.isDirty);
-
- $module.on('dirty' + eventNamespace, function(e) {
- settings.onDirty.call();
- });
-
- $module.on('clean' + eventNamespace, function(e) {
- settings.onClean.call();
- })
- },
-
- clear: function() {
- $field.each(function (index, el) {
- var
- $field = $(el),
- $element = $field.parent(),
- $fieldGroup = $field.closest($group),
- $prompt = $fieldGroup.find(selector.prompt),
- $calendar = $field.closest(selector.uiCalendar),
- defaultValue = $field.data(metadata.defaultValue) || '',
- isCheckbox = $element.is(selector.uiCheckbox),
- isDropdown = $element.is(selector.uiDropdown) && module.can.useElement('dropdown'),
- isCalendar = ($calendar.length > 0 && module.can.useElement('calendar')),
- isErrored = $fieldGroup.hasClass(className.error)
- ;
- if(isErrored) {
- module.verbose('Resetting error on field', $fieldGroup);
- $fieldGroup.removeClass(className.error);
- $prompt.remove();
- }
- if(isDropdown) {
- module.verbose('Resetting dropdown value', $element, defaultValue);
- $element.dropdown('clear', true);
- }
- else if(isCheckbox) {
- $field.prop('checked', false);
- }
- else if (isCalendar) {
- $calendar.calendar('clear');
- }
- else {
- module.verbose('Resetting field value', $field, defaultValue);
- $field.val('');
- }
- });
- },
-
- reset: function() {
- $field.each(function (index, el) {
- var
- $field = $(el),
- $element = $field.parent(),
- $fieldGroup = $field.closest($group),
- $calendar = $field.closest(selector.uiCalendar),
- $prompt = $fieldGroup.find(selector.prompt),
- defaultValue = $field.data(metadata.defaultValue),
- isCheckbox = $element.is(selector.uiCheckbox),
- isDropdown = $element.is(selector.uiDropdown) && module.can.useElement('dropdown'),
- isCalendar = ($calendar.length > 0 && module.can.useElement('calendar')),
- isErrored = $fieldGroup.hasClass(className.error)
- ;
- if(defaultValue === undefined) {
- return;
- }
- if(isErrored) {
- module.verbose('Resetting error on field', $fieldGroup);
- $fieldGroup.removeClass(className.error);
- $prompt.remove();
- }
- if(isDropdown) {
- module.verbose('Resetting dropdown value', $element, defaultValue);
- $element.dropdown('restore defaults', true);
- }
- else if(isCheckbox) {
- module.verbose('Resetting checkbox value', $element, defaultValue);
- $field.prop('checked', defaultValue);
- }
- else if (isCalendar) {
- $calendar.calendar('set date', defaultValue);
- }
- else {
- module.verbose('Resetting field value', $field, defaultValue);
- $field.val(defaultValue);
- }
- });
-
- module.determine.isDirty();
- },
-
- determine: {
- isValid: function() {
- var
- allValid = true
- ;
- $.each(validation, function(fieldName, field) {
- if( !( module.validate.field(field, fieldName, true) ) ) {
- allValid = false;
- }
- });
- return allValid;
- },
- isDirty: function(e) {
- var formIsDirty = false;
-
- $field.each(function(index, el) {
- var
- $el = $(el),
- isCheckbox = ($el.filter(selector.checkbox).length > 0),
- isDirty
- ;
-
- if (isCheckbox) {
- isDirty = module.is.checkboxDirty($el);
- } else {
- isDirty = module.is.fieldDirty($el);
- }
-
- $el.data(settings.metadata.isDirty, isDirty);
-
- formIsDirty |= isDirty;
- });
-
- if (formIsDirty) {
- module.set.dirty();
- } else {
- module.set.clean();
- }
-
- if (e && e.namespace === 'dirty') {
- e.stopImmediatePropagation();
- e.preventDefault();
- }
- }
- },
-
- is: {
- bracketedRule: function(rule) {
- return (rule.type && rule.type.match(settings.regExp.bracket));
- },
- shorthandFields: function(fields) {
- var
- fieldKeys = Object.keys(fields),
- firstRule = fields[fieldKeys[0]]
- ;
- return module.is.shorthandRules(firstRule);
- },
- // duck type rule test
- shorthandRules: function(rules) {
- return (typeof rules == 'string' || Array.isArray(rules));
- },
- empty: function($field) {
- if(!$field || $field.length === 0) {
- return true;
- }
- else if($field.is(selector.checkbox)) {
- return !$field.is(':checked');
- }
- else {
- return module.is.blank($field);
- }
- },
- blank: function($field) {
- return $.trim($field.val()) === '';
- },
- valid: function(field) {
- var
- allValid = true
- ;
- if(field) {
- module.verbose('Checking if field is valid', field);
- return module.validate.field(validation[field], field, false);
- }
- else {
- module.verbose('Checking if form is valid');
- $.each(validation, function(fieldName, field) {
- if( !module.is.valid(fieldName) ) {
- allValid = false;
- }
- });
- return allValid;
- }
- },
- dirty: function() {
- return dirty;
- },
- clean: function() {
- return !dirty;
- },
- fieldDirty: function($el) {
- var initialValue = $el.data(metadata.defaultValue);
- // Explicitly check for null/undefined here as value may be `false`, so ($el.data(dataInitialValue) || '') would not work
- if (initialValue == null) { initialValue = ''; }
- var currentValue = $el.val();
- if (currentValue == null) { currentValue = ''; }
-
- // Boolean values can be encoded as "true/false" or "True/False" depending on underlying frameworks so we need a case insensitive comparison
- var boolRegex = /^(true|false)$/i;
- var isBoolValue = boolRegex.test(initialValue) && boolRegex.test(currentValue);
- if (isBoolValue) {
- var regex = new RegExp("^" + initialValue + "$", "i");
- return !regex.test(currentValue);
- }
-
- return currentValue !== initialValue;
- },
- checkboxDirty: function($el) {
- var initialValue = $el.data(metadata.defaultValue);
- var currentValue = $el.is(":checked");
-
- return initialValue !== currentValue;
- },
- justDirty: function() {
- return (history[0] === 'dirty');
- },
- justClean: function() {
- return (history[0] === 'clean');
- }
- },
-
- removeEvents: function() {
- $module.off(eventNamespace);
- $field.off(eventNamespace);
- $submit.off(eventNamespace);
- $field.off(eventNamespace);
- },
-
- event: {
- field: {
- keydown: function(event) {
- var
- $field = $(this),
- key = event.which,
- isInput = $field.is(selector.input),
- isCheckbox = $field.is(selector.checkbox),
- isInDropdown = ($field.closest(selector.uiDropdown).length > 0),
- keyCode = {
- enter : 13,
- escape : 27
- }
- ;
- if( key == keyCode.escape) {
- module.verbose('Escape key pressed blurring field');
- $field
- .blur()
- ;
- }
- if(!event.ctrlKey && key == keyCode.enter && isInput && !isInDropdown && !isCheckbox) {
- if(!keyHeldDown) {
- $field.one('keyup' + eventNamespace, module.event.field.keyup);
- module.submit();
- module.debug('Enter pressed on input submitting form');
- }
- keyHeldDown = true;
- }
- },
- keyup: function() {
- keyHeldDown = false;
- },
- blur: function(event) {
- var
- $field = $(this),
- $fieldGroup = $field.closest($group),
- validationRules = module.get.validation($field)
- ;
- if( $fieldGroup.hasClass(className.error) ) {
- module.debug('Revalidating field', $field, validationRules);
- if(validationRules) {
- module.validate.field( validationRules );
- }
- }
- else if(settings.on == 'blur') {
- if(validationRules) {
- module.validate.field( validationRules );
- }
- }
- },
- change: function(event) {
- var
- $field = $(this),
- $fieldGroup = $field.closest($group),
- validationRules = module.get.validation($field)
- ;
- if(validationRules && (settings.on == 'change' || ( $fieldGroup.hasClass(className.error) && settings.revalidate) )) {
- clearTimeout(module.timer);
- module.timer = setTimeout(function() {
- module.debug('Revalidating field', $field, module.get.validation($field));
- module.validate.field( validationRules );
- }, settings.delay);
- }
- }
- },
- beforeUnload: function(event) {
- if (module.is.dirty() && !submitting) {
- var event = event || window.event;
-
- // For modern browsers
- if (event) {
- event.returnValue = settings.text.leavingMessage;
- }
-
- // For olders...
- return settings.text.leavingMessage;
- }
- }
-
- },
-
- get: {
- ancillaryValue: function(rule) {
- if(!rule.type || (!rule.value && !module.is.bracketedRule(rule))) {
- return false;
- }
- return (rule.value !== undefined)
- ? rule.value
- : rule.type.match(settings.regExp.bracket)[1] + ''
- ;
- },
- ruleName: function(rule) {
- if( module.is.bracketedRule(rule) ) {
- return rule.type.replace(rule.type.match(settings.regExp.bracket)[0], '');
- }
- return rule.type;
- },
- changeEvent: function(type, $input) {
- if(type == 'checkbox' || type == 'radio' || type == 'hidden' || $input.is('select')) {
- return 'change';
- }
- else {
- return module.get.inputEvent();
- }
- },
- inputEvent: function() {
- return (document.createElement('input').oninput !== undefined)
- ? 'input'
- : (document.createElement('input').onpropertychange !== undefined)
- ? 'propertychange'
- : 'keyup'
- ;
- },
- fieldsFromShorthand: function(fields) {
- var
- fullFields = {}
- ;
- $.each(fields, function(name, rules) {
- if(typeof rules == 'string') {
- rules = [rules];
- }
- fullFields[name] = {
- rules: []
- };
- $.each(rules, function(index, rule) {
- fullFields[name].rules.push({ type: rule });
- });
- });
- return fullFields;
- },
- prompt: function(rule, field) {
- var
- ruleName = module.get.ruleName(rule),
- ancillary = module.get.ancillaryValue(rule),
- $field = module.get.field(field.identifier),
- value = $field.val(),
- prompt = $.isFunction(rule.prompt)
- ? rule.prompt(value)
- : rule.prompt || settings.prompt[ruleName] || settings.text.unspecifiedRule,
- requiresValue = (prompt.search('{value}') !== -1),
- requiresName = (prompt.search('{name}') !== -1),
- $label,
- name
- ;
- if(requiresValue) {
- prompt = prompt.replace('{value}', $field.val());
- }
- if(requiresName) {
- $label = $field.closest(selector.group).find('label').eq(0);
- name = ($label.length == 1)
- ? $label.text()
- : $field.prop('placeholder') || settings.text.unspecifiedField
- ;
- prompt = prompt.replace('{name}', name);
- }
- prompt = prompt.replace('{identifier}', field.identifier);
- prompt = prompt.replace('{ruleValue}', ancillary);
- if(!rule.prompt) {
- module.verbose('Using default validation prompt for type', prompt, ruleName);
- }
- return prompt;
- },
- settings: function() {
- if($.isPlainObject(parameters)) {
- var
- keys = Object.keys(parameters),
- isLegacySettings = (keys.length > 0)
- ? (parameters[keys[0]].identifier !== undefined && parameters[keys[0]].rules !== undefined)
- : false
- ;
- if(isLegacySettings) {
- // 1.x (ducktyped)
- settings = $.extend(true, {}, $.fn.form.settings, legacyParameters);
- validation = $.extend({}, $.fn.form.settings.defaults, parameters);
- module.error(settings.error.oldSyntax, element);
- module.verbose('Extending settings from legacy parameters', validation, settings);
- }
- else {
- // 2.x
- if(parameters.fields && module.is.shorthandFields(parameters.fields)) {
- parameters.fields = module.get.fieldsFromShorthand(parameters.fields);
- }
- settings = $.extend(true, {}, $.fn.form.settings, parameters);
- validation = $.extend({}, $.fn.form.settings.defaults, settings.fields);
- module.verbose('Extending settings', validation, settings);
- }
- }
- else {
- settings = $.fn.form.settings;
- validation = $.fn.form.settings.defaults;
- module.verbose('Using default form validation', validation, settings);
- }
-
- // shorthand
- namespace = settings.namespace;
- metadata = settings.metadata;
- selector = settings.selector;
- className = settings.className;
- regExp = settings.regExp;
- error = settings.error;
- moduleNamespace = 'module-' + namespace;
- eventNamespace = '.' + namespace;
-
- // grab instance
- instance = $module.data(moduleNamespace);
-
- // refresh selector cache
- module.refresh();
- },
- field: function(identifier) {
- module.verbose('Finding field with identifier', identifier);
- identifier = module.escape.string(identifier);
- var t;
- if((t=$field.filter('#' + identifier)).length > 0 ) {
- return t;
- }
- if((t=$field.filter('[name="' + identifier +'"]')).length > 0 ) {
- return t;
- }
- if((t=$field.filter('[name="' + identifier +'[]"]')).length > 0 ) {
- return t;
- }
- if((t=$field.filter('[data-' + metadata.validate + '="'+ identifier +'"]')).length > 0 ) {
- return t;
- }
- return $('');
- },
- fields: function(fields) {
- var
- $fields = $()
- ;
- $.each(fields, function(index, name) {
- $fields = $fields.add( module.get.field(name) );
- });
- return $fields;
- },
- validation: function($field) {
- var
- fieldValidation,
- identifier
- ;
- if(!validation) {
- return false;
- }
- $.each(validation, function(fieldName, field) {
- identifier = field.identifier || fieldName;
- $.each(module.get.field(identifier), function(index, groupField) {
- if(groupField == $field[0]) {
- field.identifier = identifier;
- fieldValidation = field;
- return false;
- }
- });
- });
- return fieldValidation || false;
- },
- value: function (field) {
- var
- fields = [],
- results
- ;
- fields.push(field);
- results = module.get.values.call(element, fields);
- return results[field];
- },
- values: function (fields) {
- var
- $fields = Array.isArray(fields)
- ? module.get.fields(fields)
- : $field,
- values = {}
- ;
- $fields.each(function(index, field) {
- var
- $field = $(field),
- $calendar = $field.closest(selector.uiCalendar),
- name = $field.prop('name'),
- value = $field.val(),
- isCheckbox = $field.is(selector.checkbox),
- isRadio = $field.is(selector.radio),
- isMultiple = (name.indexOf('[]') !== -1),
- isCalendar = ($calendar.length > 0 && module.can.useElement('calendar')),
- isChecked = (isCheckbox)
- ? $field.is(':checked')
- : false
- ;
- if(name) {
- if(isMultiple) {
- name = name.replace('[]', '');
- if(!values[name]) {
- values[name] = [];
- }
- if(isCheckbox) {
- if(isChecked) {
- values[name].push(value || true);
- }
- else {
- values[name].push(false);
- }
- }
- else {
- values[name].push(value);
- }
- }
- else {
- if(isRadio) {
- if(values[name] === undefined || values[name] == false) {
- values[name] = (isChecked)
- ? value || true
- : false
- ;
- }
- }
- else if(isCheckbox) {
- if(isChecked) {
- values[name] = value || true;
- }
- else {
- values[name] = false;
- }
- }
- else if(isCalendar) {
- var date = $calendar.calendar('get date');
-
- if (date !== null) {
- if (settings.dateHandling == 'date') {
- values[name] = date;
- } else if(settings.dateHandling == 'input') {
- values[name] = $calendar.calendar('get input date')
- } else if (settings.dateHandling == 'formatter') {
- var type = $calendar.calendar('setting', 'type');
-
- switch(type) {
- case 'date':
- values[name] = settings.formatter.date(date);
- break;
-
- case 'datetime':
- values[name] = settings.formatter.datetime(date);
- break;
-
- case 'time':
- values[name] = settings.formatter.time(date);
- break;
-
- case 'month':
- values[name] = settings.formatter.month(date);
- break;
-
- case 'year':
- values[name] = settings.formatter.year(date);
- break;
-
- default:
- module.debug('Wrong calendar mode', $calendar, type);
- values[name] = '';
- }
- }
- } else {
- values[name] = '';
- }
- } else {
- values[name] = value;
- }
- }
- }
- });
- return values;
- },
- dirtyFields: function() {
- return $field.filter(function(index, e) {
- return $(e).data(metadata.isDirty);
- });
- }
- },
-
- has: {
-
- field: function(identifier) {
- module.verbose('Checking for existence of a field with identifier', identifier);
- identifier = module.escape.string(identifier);
- if(typeof identifier !== 'string') {
- module.error(error.identifier, identifier);
- }
- if($field.filter('#' + identifier).length > 0 ) {
- return true;
- }
- else if( $field.filter('[name="' + identifier +'"]').length > 0 ) {
- return true;
- }
- else if( $field.filter('[data-' + metadata.validate + '="'+ identifier +'"]').length > 0 ) {
- return true;
- }
- return false;
- }
-
- },
-
- can: {
- useElement: function(element){
- if ($.fn[element] !== undefined) {
- return true;
- }
- module.error(error.noElement.replace('{element}',element));
- return false;
- }
- },
-
- escape: {
- string: function(text) {
- text = String(text);
- return text.replace(regExp.escape, '\\$&');
- }
- },
-
- add: {
- // alias
- rule: function(name, rules) {
- module.add.field(name, rules);
- },
- field: function(name, rules) {
- // Validation should have at least a standard format
- if(validation[name] === undefined || validation[name].rules === undefined) {
- validation[name] = {
- rules: []
- };
- }
- var
- newValidation = {
- rules: []
- }
- ;
- if(module.is.shorthandRules(rules)) {
- rules = Array.isArray(rules)
- ? rules
- : [rules]
- ;
- $.each(rules, function(_index, rule) {
- newValidation.rules.push({ type: rule });
- });
- }
- else {
- newValidation.rules = rules.rules;
- }
- // For each new rule, check if there's not already one with the same type
- $.each(newValidation.rules, function (_index, rule) {
- if ($.grep(validation[name].rules, function(item){ return item.type == rule.type; }).length == 0) {
- validation[name].rules.push(rule);
- }
- });
- module.debug('Adding rules', newValidation.rules, validation);
- },
- fields: function(fields) {
- var
- newValidation
- ;
- if(fields && module.is.shorthandFields(fields)) {
- newValidation = module.get.fieldsFromShorthand(fields);
- }
- else {
- newValidation = fields;
- }
- validation = $.extend({}, validation, newValidation);
- },
- prompt: function(identifier, errors, internal) {
- var
- $field = module.get.field(identifier),
- $fieldGroup = $field.closest($group),
- $prompt = $fieldGroup.children(selector.prompt),
- promptExists = ($prompt.length !== 0)
- ;
- errors = (typeof errors == 'string')
- ? [errors]
- : errors
- ;
- module.verbose('Adding field error state', identifier);
- if(!internal) {
- $fieldGroup
- .addClass(className.error)
- ;
- }
- if(settings.inline) {
- if(!promptExists) {
- $prompt = settings.templates.prompt(errors, className.label);
- $prompt
- .appendTo($fieldGroup)
- ;
- }
- $prompt
- .html(errors[0])
- ;
- if(!promptExists) {
- if(settings.transition && module.can.useElement('transition') && $module.transition('is supported')) {
- module.verbose('Displaying error with css transition', settings.transition);
- $prompt.transition(settings.transition + ' in', settings.duration);
- }
- else {
- module.verbose('Displaying error with fallback javascript animation');
- $prompt
- .fadeIn(settings.duration)
- ;
- }
- }
- else {
- module.verbose('Inline errors are disabled, no inline error added', identifier);
- }
- }
- },
- errors: function(errors) {
- module.debug('Adding form error messages', errors);
- module.set.error();
- $message
- .html( settings.templates.error(errors) )
- ;
- }
- },
-
- remove: {
- rule: function(field, rule) {
- var
- rules = Array.isArray(rule)
- ? rule
- : [rule]
- ;
- if(validation[field] === undefined || !Array.isArray(validation[field].rules)) {
- return;
- }
- if(rule === undefined) {
- module.debug('Removed all rules');
- validation[field].rules = [];
- return;
- }
- $.each(validation[field].rules, function(index, rule) {
- if(rule && rules.indexOf(rule.type) !== -1) {
- module.debug('Removed rule', rule.type);
- validation[field].rules.splice(index, 1);
- }
- });
- },
- field: function(field) {
- var
- fields = Array.isArray(field)
- ? field
- : [field]
- ;
- $.each(fields, function(index, field) {
- module.remove.rule(field);
- });
- },
- // alias
- rules: function(field, rules) {
- if(Array.isArray(field)) {
- $.each(field, function(index, field) {
- module.remove.rule(field, rules);
- });
- }
- else {
- module.remove.rule(field, rules);
- }
- },
- fields: function(fields) {
- module.remove.field(fields);
- },
- prompt: function(identifier) {
- var
- $field = module.get.field(identifier),
- $fieldGroup = $field.closest($group),
- $prompt = $fieldGroup.children(selector.prompt)
- ;
- $fieldGroup
- .removeClass(className.error)
- ;
- if(settings.inline && $prompt.is(':visible')) {
- module.verbose('Removing prompt for field', identifier);
- if(settings.transition && module.can.useElement('transition') && $module.transition('is supported')) {
- $prompt.transition(settings.transition + ' out', settings.duration, function() {
- $prompt.remove();
- });
- }
- else {
- $prompt
- .fadeOut(settings.duration, function(){
- $prompt.remove();
- })
- ;
- }
- }
- }
- },
-
- set: {
- success: function() {
- $module
- .removeClass(className.error)
- .addClass(className.success)
- ;
- },
- defaults: function () {
- $field.each(function (index, el) {
- var
- $el = $(el),
- $parent = $el.parent(),
- isCheckbox = ($el.filter(selector.checkbox).length > 0),
- isDropdown = $parent.is(selector.uiDropdown) && module.can.useElement('dropdown'),
- $calendar = $el.closest(selector.uiCalendar),
- isCalendar = ($calendar.length > 0 && module.can.useElement('calendar')),
- value = (isCheckbox)
- ? $el.is(':checked')
- : $el.val()
- ;
- if (isDropdown) {
- $parent.dropdown('save defaults');
- }
- else if (isCalendar) {
- $calendar.calendar('refresh');
- }
- $el.data(metadata.defaultValue, value);
- $el.data(metadata.isDirty, false);
- });
- },
- error: function() {
- $module
- .removeClass(className.success)
- .addClass(className.error)
- ;
- },
- value: function (field, value) {
- var
- fields = {}
- ;
- fields[field] = value;
- return module.set.values.call(element, fields);
- },
- values: function (fields) {
- if($.isEmptyObject(fields)) {
- return;
- }
- $.each(fields, function(key, value) {
- var
- $field = module.get.field(key),
- $element = $field.parent(),
- $calendar = $field.closest(selector.uiCalendar),
- isMultiple = Array.isArray(value),
- isCheckbox = $element.is(selector.uiCheckbox) && module.can.useElement('checkbox'),
- isDropdown = $element.is(selector.uiDropdown) && module.can.useElement('dropdown'),
- isRadio = ($field.is(selector.radio) && isCheckbox),
- isCalendar = ($calendar.length > 0 && module.can.useElement('calendar')),
- fieldExists = ($field.length > 0),
- $multipleField
- ;
- if(fieldExists) {
- if(isMultiple && isCheckbox) {
- module.verbose('Selecting multiple', value, $field);
- $element.checkbox('uncheck');
- $.each(value, function(index, value) {
- $multipleField = $field.filter('[value="' + value + '"]');
- $element = $multipleField.parent();
- if($multipleField.length > 0) {
- $element.checkbox('check');
- }
- });
- }
- else if(isRadio) {
- module.verbose('Selecting radio value', value, $field);
- $field.filter('[value="' + value + '"]')
- .parent(selector.uiCheckbox)
- .checkbox('check')
- ;
- }
- else if(isCheckbox) {
- module.verbose('Setting checkbox value', value, $element);
- if(value === true || value === 1) {
- $element.checkbox('check');
- }
- else {
- $element.checkbox('uncheck');
- }
- }
- else if(isDropdown) {
- module.verbose('Setting dropdown value', value, $element);
- $element.dropdown('set selected', value);
- }
- else if (isCalendar) {
- $calendar.calendar('set date',value);
- }
- else {
- module.verbose('Setting field value', value, $field);
- $field.val(value);
- }
- }
- });
- },
- dirty: function() {
- module.verbose('Setting state dirty');
- dirty = true;
- history[0] = history[1];
- history[1] = 'dirty';
-
- if (module.is.justClean()) {
- $module.trigger('dirty');
- }
- },
- clean: function() {
- module.verbose('Setting state clean');
- dirty = false;
- history[0] = history[1];
- history[1] = 'clean';
-
- if (module.is.justDirty()) {
- $module.trigger('clean');
- }
- },
- asClean: function() {
- module.set.defaults();
- module.set.clean();
- },
- asDirty: function() {
- module.set.defaults();
- module.set.dirty();
- }
- },
-
- validate: {
-
- form: function(event, ignoreCallbacks) {
- var values = module.get.values();
-
- // input keydown event will fire submit repeatedly by browser default
- if(keyHeldDown) {
- return false;
- }
-
- // reset errors
- formErrors = [];
- if( module.determine.isValid() ) {
- module.debug('Form has no validation errors, submitting');
- module.set.success();
- if(ignoreCallbacks !== true) {
- return settings.onSuccess.call(element, event, values);
- }
- }
- else {
- module.debug('Form has errors');
- module.set.error();
- if(!settings.inline) {
- module.add.errors(formErrors);
- }
- // prevent ajax submit
- if(event && $module.data('moduleApi') !== undefined) {
- event.stopImmediatePropagation();
- }
- if(ignoreCallbacks !== true) {
- return settings.onFailure.call(element, formErrors, values);
- }
- }
- },
-
- // takes a validation object and returns whether field passes validation
- field: function(field, fieldName, showErrors) {
- showErrors = (showErrors !== undefined)
- ? showErrors
- : true
- ;
- if(typeof field == 'string') {
- module.verbose('Validating field', field);
- fieldName = field;
- field = validation[field];
- }
- var
- identifier = field.identifier || fieldName,
- $field = module.get.field(identifier),
- $dependsField = (field.depends)
- ? module.get.field(field.depends)
- : false,
- fieldValid = true,
- fieldErrors = []
- ;
- if(!field.identifier) {
- module.debug('Using field name as identifier', identifier);
- field.identifier = identifier;
- }
- var isDisabled = true;
- $.each($field, function(){
- if(!$(this).prop('disabled')) {
- isDisabled = false;
- return false;
- }
- });
- if(isDisabled) {
- module.debug('Field is disabled. Skipping', identifier);
- }
- else if(field.optional && module.is.blank($field)){
- module.debug('Field is optional and blank. Skipping', identifier);
- }
- else if(field.depends && module.is.empty($dependsField)) {
- module.debug('Field depends on another value that is not present or empty. Skipping', $dependsField);
- }
- else if(field.rules !== undefined) {
- $field.closest($group).removeClass(className.error);
- $.each(field.rules, function(index, rule) {
- if( module.has.field(identifier)) {
- var invalidFields = module.validate.rule(field, rule,true) || [];
- if (invalidFields.length>0){
- module.debug('Field is invalid', identifier, rule.type);
- fieldErrors.push(module.get.prompt(rule, field));
- fieldValid = false;
- if(showErrors){
- $(invalidFields).closest($group).addClass(className.error);
- }
- }
- }
- });
- }
- if(fieldValid) {
- if(showErrors) {
- module.remove.prompt(identifier, fieldErrors);
- settings.onValid.call($field);
- }
- }
- else {
- if(showErrors) {
- formErrors = formErrors.concat(fieldErrors);
- module.add.prompt(identifier, fieldErrors, true);
- settings.onInvalid.call($field, fieldErrors);
- }
- return false;
- }
- return true;
- },
-
- // takes validation rule and returns whether field passes rule
- rule: function(field, rule, internal) {
- var
- $field = module.get.field(field.identifier),
- ancillary = module.get.ancillaryValue(rule),
- ruleName = module.get.ruleName(rule),
- ruleFunction = settings.rules[ruleName],
- invalidFields = [],
- isCheckbox = $field.is(selector.checkbox),
- isValid = function(field){
- var value = (isCheckbox ? $(field).filter(':checked').val() : $(field).val());
- // cast to string avoiding encoding special values
- value = (value === undefined || value === '' || value === null)
- ? ''
- : (settings.shouldTrim) ? $.trim(value + '') : String(value + '')
- ;
- return ruleFunction.call(field, value, ancillary, $module);
- }
- ;
- if( !$.isFunction(ruleFunction) ) {
- module.error(error.noRule, ruleName);
- return;
- }
- if(isCheckbox) {
- if (!isValid($field)) {
- invalidFields = $field;
- }
- } else {
- $.each($field, function (index, field) {
- if (!isValid(field)) {
- invalidFields.push(field);
- }
- });
- }
- return internal ? invalidFields : !(invalidFields.length>0);
- }
- },
-
- setting: function(name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, settings, name);
- }
- else if(value !== undefined) {
- settings[name] = value;
- }
- else {
- return settings[name];
- }
- },
- internal: function(name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, module, name);
- }
- else if(value !== undefined) {
- module[name] = value;
- }
- else {
- return module[name];
- }
- },
- debug: function() {
- if(!settings.silent && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.debug.apply(console, arguments);
- }
- }
- },
- verbose: function() {
- if(!settings.silent && settings.verbose && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.verbose.apply(console, arguments);
- }
- }
- },
- error: function() {
- if(!settings.silent) {
- module.error = Function.prototype.bind.call(console.error, console, settings.name + ':');
- module.error.apply(console, arguments);
- }
- },
- performance: {
- log: function(message) {
- var
- currentTime,
- executionTime,
- previousTime
- ;
- if(settings.performance) {
- currentTime = new Date().getTime();
- previousTime = time || currentTime;
- executionTime = currentTime - previousTime;
- time = currentTime;
- performance.push({
- 'Name' : message[0],
- 'Arguments' : [].slice.call(message, 1) || '',
- 'Element' : element,
- 'Execution Time' : executionTime
- });
- }
- clearTimeout(module.performance.timer);
- module.performance.timer = setTimeout(module.performance.display, 500);
- },
- display: function() {
- var
- title = settings.name + ':',
- totalTime = 0
- ;
- time = false;
- clearTimeout(module.performance.timer);
- $.each(performance, function(index, data) {
- totalTime += data['Execution Time'];
- });
- title += ' ' + totalTime + 'ms';
- if(moduleSelector) {
- title += ' \'' + moduleSelector + '\'';
- }
- if($allModules.length > 1) {
- title += ' ' + '(' + $allModules.length + ')';
- }
- if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) {
- console.groupCollapsed(title);
- if(console.table) {
- console.table(performance);
- }
- else {
- $.each(performance, function(index, data) {
- console.log(data['Name'] + ': ' + data['Execution Time']+'ms');
- });
- }
- console.groupEnd();
- }
- performance = [];
- }
- },
- invoke: function(query, passedArguments, context) {
- var
- object = instance,
- maxDepth,
- found,
- response
- ;
- passedArguments = passedArguments || queryArguments;
- context = element || context;
- if(typeof query == 'string' && object !== undefined) {
- query = query.split(/[\. ]/);
- maxDepth = query.length - 1;
- $.each(query, function(depth, value) {
- var camelCaseValue = (depth != maxDepth)
- ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
- : query
- ;
- if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
- object = object[camelCaseValue];
- }
- else if( object[camelCaseValue] !== undefined ) {
- found = object[camelCaseValue];
- return false;
- }
- else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
- object = object[value];
- }
- else if( object[value] !== undefined ) {
- found = object[value];
- return false;
- }
- else {
- return false;
- }
- });
- }
- if( $.isFunction( found ) ) {
- response = found.apply(context, passedArguments);
- }
- else if(found !== undefined) {
- response = found;
- }
- if(Array.isArray(returnedValue)) {
- returnedValue.push(response);
- }
- else if(returnedValue !== undefined) {
- returnedValue = [returnedValue, response];
- }
- else if(response !== undefined) {
- returnedValue = response;
- }
- return found;
- }
- };
- module.initialize();
- })
- ;
-
- return (returnedValue !== undefined)
- ? returnedValue
- : this
- ;
-};
-
-$.fn.form.settings = {
-
- name : 'Form',
- namespace : 'form',
-
- debug : false,
- verbose : false,
- performance : true,
-
- fields : false,
-
- keyboardShortcuts : true,
- on : 'submit',
- inline : false,
-
- delay : 200,
- revalidate : true,
- shouldTrim : true,
-
- transition : 'scale',
- duration : 200,
-
- preventLeaving : false,
- dateHandling : 'date', // 'date', 'input', 'formatter'
-
- onValid : function() {},
- onInvalid : function() {},
- onSuccess : function() { return true; },
- onFailure : function() { return false; },
- onDirty : function() {},
- onClean : function() {},
-
- metadata : {
- defaultValue : 'default',
- validate : 'validate',
- isDirty : 'isDirty'
- },
-
- regExp: {
- htmlID : /^[a-zA-Z][\w:.-]*$/g,
- bracket : /\[(.*)\]/i,
- decimal : /^\d+\.?\d*$/,
- email : /^[a-z0-9!#$%&'*+\/=?^_`{|}~.-]+@[a-z0-9]([a-z0-9-]*[a-z0-9])?(\.[a-z0-9]([a-z0-9-]*[a-z0-9])?)*$/i,
- escape : /[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|:,=@]/g,
- flags : /^\/(.*)\/(.*)?/,
- integer : /^\-?\d+$/,
- number : /^\-?\d*(\.\d+)?$/,
- url : /(https?:\/\/(?:www\.|(?!www))[^\s\.]+\.[^\s]{2,}|www\.[^\s]+\.[^\s]{2,})/i
- },
-
- text: {
- unspecifiedRule : 'Please enter a valid value',
- unspecifiedField : 'This field',
- leavingMessage : 'There are unsaved changes on this page which will be discarded if you continue.'
- },
-
- prompt: {
- empty : '{name} must have a value',
- checked : '{name} must be checked',
- email : '{name} must be a valid e-mail',
- url : '{name} must be a valid url',
- regExp : '{name} is not formatted correctly',
- integer : '{name} must be an integer',
- decimal : '{name} must be a decimal number',
- number : '{name} must be set to a number',
- is : '{name} must be "{ruleValue}"',
- isExactly : '{name} must be exactly "{ruleValue}"',
- not : '{name} cannot be set to "{ruleValue}"',
- notExactly : '{name} cannot be set to exactly "{ruleValue}"',
- contain : '{name} must contain "{ruleValue}"',
- containExactly : '{name} must contain exactly "{ruleValue}"',
- doesntContain : '{name} cannot contain "{ruleValue}"',
- doesntContainExactly : '{name} cannot contain exactly "{ruleValue}"',
- minLength : '{name} must be at least {ruleValue} characters',
- length : '{name} must be at least {ruleValue} characters',
- exactLength : '{name} must be exactly {ruleValue} characters',
- maxLength : '{name} cannot be longer than {ruleValue} characters',
- match : '{name} must match {ruleValue} field',
- different : '{name} must have a different value than {ruleValue} field',
- creditCard : '{name} must be a valid credit card number',
- minCount : '{name} must have at least {ruleValue} choices',
- exactCount : '{name} must have exactly {ruleValue} choices',
- maxCount : '{name} must have {ruleValue} or less choices'
- },
-
- selector : {
- checkbox : 'input[type="checkbox"], input[type="radio"]',
- clear : '.clear',
- field : 'input, textarea, select',
- group : '.field',
- input : 'input',
- message : '.error.message',
- prompt : '.prompt.label',
- radio : 'input[type="radio"]',
- reset : '.reset:not([type="reset"])',
- submit : '.submit:not([type="submit"])',
- uiCheckbox : '.ui.checkbox',
- uiDropdown : '.ui.dropdown',
- uiCalendar : '.ui.calendar'
- },
-
- className : {
- error : 'error',
- label : 'ui basic red pointing prompt label',
- pressed : 'down',
- success : 'success'
- },
-
- error: {
- identifier : 'You must specify a string identifier for each field',
- method : 'The method you called is not defined.',
- noRule : 'There is no rule matching the one you specified',
- oldSyntax : 'Starting in 2.0 forms now only take a single settings object. Validation settings converted to new syntax automatically.',
- noElement : 'This module requires ui {element}'
- },
-
- templates: {
-
- // template that produces error message
- error: function(errors) {
- var
- html = ''
- ;
- $.each(errors, function(index, value) {
- html += '- ' + value + '
';
- });
- html += '
';
- return $(html);
- },
-
- // template that produces label
- prompt: function(errors, labelClasses) {
- return $('')
- .addClass(labelClasses)
- .html(errors[0])
- ;
- }
- },
-
- formatter: {
- date: function(date) {
- return Intl.DateTimeFormat('en-GB').format(date);
- },
- datetime: function(date) {
- return Intl.DateTimeFormat('en-GB', {
- year: "numeric",
- month: "2-digit",
- day: "2-digit",
- hour: '2-digit',
- minute: '2-digit',
- second: '2-digit'
- }).format(date);
- },
- time: function(date) {
- return Intl.DateTimeFormat('en-GB', {
- hour: '2-digit',
- minute: '2-digit',
- second: '2-digit'
- }).format(date);
- },
- month: function(date) {
- return Intl.DateTimeFormat('en-GB', {
- month: '2-digit',
- year: 'numeric'
- }).format(date);
- },
- year: function(date) {
- return Intl.DateTimeFormat('en-GB', {
- year: 'numeric'
- }).format(date);
- }
- },
-
- rules: {
-
- // is not empty or blank string
- empty: function(value) {
- return !(value === undefined || '' === value || Array.isArray(value) && value.length === 0);
- },
-
- // checkbox checked
- checked: function() {
- return ($(this).filter(':checked').length > 0);
- },
-
- // is most likely an email
- email: function(value){
- return $.fn.form.settings.regExp.email.test(value);
- },
-
- // value is most likely url
- url: function(value) {
- return $.fn.form.settings.regExp.url.test(value);
- },
-
- // matches specified regExp
- regExp: function(value, regExp) {
- if(regExp instanceof RegExp) {
- return value.match(regExp);
- }
- var
- regExpParts = regExp.match($.fn.form.settings.regExp.flags),
- flags
- ;
- // regular expression specified as /baz/gi (flags)
- if(regExpParts) {
- regExp = (regExpParts.length >= 2)
- ? regExpParts[1]
- : regExp
- ;
- flags = (regExpParts.length >= 3)
- ? regExpParts[2]
- : ''
- ;
- }
- return value.match( new RegExp(regExp, flags) );
- },
-
- // is valid integer or matches range
- integer: function(value, range) {
- var
- intRegExp = $.fn.form.settings.regExp.integer,
- min,
- max,
- parts
- ;
- if( !range || ['', '..'].indexOf(range) !== -1) {
- // do nothing
- }
- else if(range.indexOf('..') == -1) {
- if(intRegExp.test(range)) {
- min = max = range - 0;
- }
- }
- else {
- parts = range.split('..', 2);
- if(intRegExp.test(parts[0])) {
- min = parts[0] - 0;
- }
- if(intRegExp.test(parts[1])) {
- max = parts[1] - 0;
- }
- }
- return (
- intRegExp.test(value) &&
- (min === undefined || value >= min) &&
- (max === undefined || value <= max)
- );
- },
-
- // is valid number (with decimal)
- decimal: function(value) {
- return $.fn.form.settings.regExp.decimal.test(value);
- },
-
- // is valid number
- number: function(value) {
- return $.fn.form.settings.regExp.number.test(value);
- },
-
- // is value (case insensitive)
- is: function(value, text) {
- text = (typeof text == 'string')
- ? text.toLowerCase()
- : text
- ;
- value = (typeof value == 'string')
- ? value.toLowerCase()
- : value
- ;
- return (value == text);
- },
-
- // is value
- isExactly: function(value, text) {
- return (value == text);
- },
-
- // value is not another value (case insensitive)
- not: function(value, notValue) {
- value = (typeof value == 'string')
- ? value.toLowerCase()
- : value
- ;
- notValue = (typeof notValue == 'string')
- ? notValue.toLowerCase()
- : notValue
- ;
- return (value != notValue);
- },
-
- // value is not another value (case sensitive)
- notExactly: function(value, notValue) {
- return (value != notValue);
- },
-
- // value contains text (insensitive)
- contains: function(value, text) {
- // escape regex characters
- text = text.replace($.fn.form.settings.regExp.escape, "\\$&");
- return (value.search( new RegExp(text, 'i') ) !== -1);
- },
-
- // value contains text (case sensitive)
- containsExactly: function(value, text) {
- // escape regex characters
- text = text.replace($.fn.form.settings.regExp.escape, "\\$&");
- return (value.search( new RegExp(text) ) !== -1);
- },
-
- // value contains text (insensitive)
- doesntContain: function(value, text) {
- // escape regex characters
- text = text.replace($.fn.form.settings.regExp.escape, "\\$&");
- return (value.search( new RegExp(text, 'i') ) === -1);
- },
-
- // value contains text (case sensitive)
- doesntContainExactly: function(value, text) {
- // escape regex characters
- text = text.replace($.fn.form.settings.regExp.escape, "\\$&");
- return (value.search( new RegExp(text) ) === -1);
- },
-
- // is at least string length
- minLength: function(value, requiredLength) {
- return (value !== undefined)
- ? (value.length >= requiredLength)
- : false
- ;
- },
-
- // see rls notes for 2.0.6 (this is a duplicate of minLength)
- length: function(value, requiredLength) {
- return (value !== undefined)
- ? (value.length >= requiredLength)
- : false
- ;
- },
-
- // is exactly length
- exactLength: function(value, requiredLength) {
- return (value !== undefined)
- ? (value.length == requiredLength)
- : false
- ;
- },
-
- // is less than length
- maxLength: function(value, maxLength) {
- return (value !== undefined)
- ? (value.length <= maxLength)
- : false
- ;
- },
-
- // matches another field
- match: function(value, identifier, $module) {
- var
- matchingValue,
- matchingElement
- ;
- if((matchingElement = $module.find('[data-validate="'+ identifier +'"]')).length > 0 ) {
- matchingValue = matchingElement.val();
- }
- else if((matchingElement = $module.find('#' + identifier)).length > 0) {
- matchingValue = matchingElement.val();
- }
- else if((matchingElement = $module.find('[name="' + identifier +'"]')).length > 0) {
- matchingValue = matchingElement.val();
- }
- else if((matchingElement = $module.find('[name="' + identifier +'[]"]')).length > 0 ) {
- matchingValue = matchingElement;
- }
- return (matchingValue !== undefined)
- ? ( value.toString() == matchingValue.toString() )
- : false
- ;
- },
-
- // different than another field
- different: function(value, identifier, $module) {
- // use either id or name of field
- var
- matchingValue,
- matchingElement
- ;
- if((matchingElement = $module.find('[data-validate="'+ identifier +'"]')).length > 0 ) {
- matchingValue = matchingElement.val();
- }
- else if((matchingElement = $module.find('#' + identifier)).length > 0) {
- matchingValue = matchingElement.val();
- }
- else if((matchingElement = $module.find('[name="' + identifier +'"]')).length > 0) {
- matchingValue = matchingElement.val();
- }
- else if((matchingElement = $module.find('[name="' + identifier +'[]"]')).length > 0 ) {
- matchingValue = matchingElement;
- }
- return (matchingValue !== undefined)
- ? ( value.toString() !== matchingValue.toString() )
- : false
- ;
- },
-
- creditCard: function(cardNumber, cardTypes) {
- var
- cards = {
- visa: {
- pattern : /^4/,
- length : [16]
- },
- amex: {
- pattern : /^3[47]/,
- length : [15]
- },
- mastercard: {
- pattern : /^5[1-5]/,
- length : [16]
- },
- discover: {
- pattern : /^(6011|622(12[6-9]|1[3-9][0-9]|[2-8][0-9]{2}|9[0-1][0-9]|92[0-5]|64[4-9])|65)/,
- length : [16]
- },
- unionPay: {
- pattern : /^(62|88)/,
- length : [16, 17, 18, 19]
- },
- jcb: {
- pattern : /^35(2[89]|[3-8][0-9])/,
- length : [16]
- },
- maestro: {
- pattern : /^(5018|5020|5038|6304|6759|676[1-3])/,
- length : [12, 13, 14, 15, 16, 17, 18, 19]
- },
- dinersClub: {
- pattern : /^(30[0-5]|^36)/,
- length : [14]
- },
- laser: {
- pattern : /^(6304|670[69]|6771)/,
- length : [16, 17, 18, 19]
- },
- visaElectron: {
- pattern : /^(4026|417500|4508|4844|491(3|7))/,
- length : [16]
- }
- },
- valid = {},
- validCard = false,
- requiredTypes = (typeof cardTypes == 'string')
- ? cardTypes.split(',')
- : false,
- unionPay,
- validation
- ;
-
- if(typeof cardNumber !== 'string' || cardNumber.length === 0) {
- return;
- }
-
- // allow dashes in card
- cardNumber = cardNumber.replace(/[\-]/g, '');
-
- // verify card types
- if(requiredTypes) {
- $.each(requiredTypes, function(index, type){
- // verify each card type
- validation = cards[type];
- if(validation) {
- valid = {
- length : ($.inArray(cardNumber.length, validation.length) !== -1),
- pattern : (cardNumber.search(validation.pattern) !== -1)
- };
- if(valid.length && valid.pattern) {
- validCard = true;
- }
- }
- });
-
- if(!validCard) {
- return false;
- }
- }
-
- // skip luhn for UnionPay
- unionPay = {
- number : ($.inArray(cardNumber.length, cards.unionPay.length) !== -1),
- pattern : (cardNumber.search(cards.unionPay.pattern) !== -1)
- };
- if(unionPay.number && unionPay.pattern) {
- return true;
- }
-
- // verify luhn, adapted from
- var
- length = cardNumber.length,
- multiple = 0,
- producedValue = [
- [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
- [0, 2, 4, 6, 8, 1, 3, 5, 7, 9]
- ],
- sum = 0
- ;
- while (length--) {
- sum += producedValue[multiple][parseInt(cardNumber.charAt(length), 10)];
- multiple ^= 1;
- }
- return (sum % 10 === 0 && sum > 0);
- },
-
- minCount: function(value, minCount) {
- if(minCount == 0) {
- return true;
- }
- if(minCount == 1) {
- return (value !== '');
- }
- return (value.split(',').length >= minCount);
- },
-
- exactCount: function(value, exactCount) {
- if(exactCount == 0) {
- return (value === '');
- }
- if(exactCount == 1) {
- return (value !== '' && value.search(',') === -1);
- }
- return (value.split(',').length == exactCount);
- },
-
- maxCount: function(value, maxCount) {
- if(maxCount == 0) {
- return false;
- }
- if(maxCount == 1) {
- return (value.search(',') === -1);
- }
- return (value.split(',').length <= maxCount);
- }
- }
-
-};
-
-})( jQuery, window, document );
-
-/*!
- * # Fomantic-UI - Accordion
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-;(function ($, window, document, undefined) {
-
-'use strict';
-
-$.isFunction = $.isFunction || function(obj) {
- return typeof obj === "function" && typeof obj.nodeType !== "number";
-};
-
-window = (typeof window != 'undefined' && window.Math == Math)
- ? window
- : (typeof self != 'undefined' && self.Math == Math)
- ? self
- : Function('return this')()
-;
-
-$.fn.accordion = function(parameters) {
- var
- $allModules = $(this),
-
- time = new Date().getTime(),
- performance = [],
-
- query = arguments[0],
- methodInvoked = (typeof query == 'string'),
- queryArguments = [].slice.call(arguments, 1),
-
- returnedValue
- ;
- $allModules
- .each(function() {
- var
- settings = ( $.isPlainObject(parameters) )
- ? $.extend(true, {}, $.fn.accordion.settings, parameters)
- : $.extend({}, $.fn.accordion.settings),
-
- className = settings.className,
- namespace = settings.namespace,
- selector = settings.selector,
- error = settings.error,
-
- eventNamespace = '.' + namespace,
- moduleNamespace = 'module-' + namespace,
- moduleSelector = $allModules.selector || '',
-
- $module = $(this),
- $title = $module.find(selector.title),
- $content = $module.find(selector.content),
-
- element = this,
- instance = $module.data(moduleNamespace),
- observer,
- module
- ;
-
- module = {
-
- initialize: function() {
- module.debug('Initializing', $module);
- module.bind.events();
- if(settings.observeChanges) {
- module.observeChanges();
- }
- module.instantiate();
- },
-
- instantiate: function() {
- instance = module;
- $module
- .data(moduleNamespace, module)
- ;
- },
-
- destroy: function() {
- module.debug('Destroying previous instance', $module);
- $module
- .off(eventNamespace)
- .removeData(moduleNamespace)
- ;
- },
-
- refresh: function() {
- $title = $module.find(selector.title);
- $content = $module.find(selector.content);
- },
-
- observeChanges: function() {
- if('MutationObserver' in window) {
- observer = new MutationObserver(function(mutations) {
- module.debug('DOM tree modified, updating selector cache');
- module.refresh();
- });
- observer.observe(element, {
- childList : true,
- subtree : true
- });
- module.debug('Setting up mutation observer', observer);
- }
- },
-
- bind: {
- events: function() {
- module.debug('Binding delegated events');
- $module
- .on(settings.on + eventNamespace, selector.trigger, module.event.click)
- ;
- }
- },
-
- event: {
- click: function() {
- module.toggle.call(this);
- }
- },
-
- toggle: function(query) {
- var
- $activeTitle = (query !== undefined)
- ? (typeof query === 'number')
- ? $title.eq(query)
- : $(query).closest(selector.title)
- : $(this).closest(selector.title),
- $activeContent = $activeTitle.next($content),
- isAnimating = $activeContent.hasClass(className.animating),
- isActive = $activeContent.hasClass(className.active),
- isOpen = (isActive && !isAnimating),
- isOpening = (!isActive && isAnimating)
- ;
- module.debug('Toggling visibility of content', $activeTitle);
- if(isOpen || isOpening) {
- if(settings.collapsible) {
- module.close.call($activeTitle);
- }
- else {
- module.debug('Cannot close accordion content collapsing is disabled');
- }
- }
- else {
- module.open.call($activeTitle);
- }
- },
-
- open: function(query) {
- var
- $activeTitle = (query !== undefined)
- ? (typeof query === 'number')
- ? $title.eq(query)
- : $(query).closest(selector.title)
- : $(this).closest(selector.title),
- $activeContent = $activeTitle.next($content),
- isAnimating = $activeContent.hasClass(className.animating),
- isActive = $activeContent.hasClass(className.active),
- isOpen = (isActive || isAnimating)
- ;
- if(isOpen) {
- module.debug('Accordion already open, skipping', $activeContent);
- return;
- }
- module.debug('Opening accordion content', $activeTitle);
- settings.onOpening.call($activeContent);
- settings.onChanging.call($activeContent);
- if(settings.exclusive) {
- module.closeOthers.call($activeTitle);
- }
- $activeTitle
- .addClass(className.active)
- ;
- $activeContent
- .stop(true, true)
- .addClass(className.animating)
- ;
- if(settings.animateChildren) {
- if($.fn.transition !== undefined && $module.transition('is supported')) {
- $activeContent
- .children()
- .transition({
- animation : 'fade in',
- queue : false,
- useFailSafe : true,
- debug : settings.debug,
- verbose : settings.verbose,
- duration : settings.duration,
- skipInlineHidden : true,
- onComplete: function() {
- $activeContent.children().removeClass(className.transition);
- }
- })
- ;
- }
- else {
- $activeContent
- .children()
- .stop(true, true)
- .animate({
- opacity: 1
- }, settings.duration, module.resetOpacity)
- ;
- }
- }
- $activeContent
- .slideDown(settings.duration, settings.easing, function() {
- $activeContent
- .removeClass(className.animating)
- .addClass(className.active)
- ;
- module.reset.display.call(this);
- settings.onOpen.call(this);
- settings.onChange.call(this);
- })
- ;
- },
-
- close: function(query) {
- var
- $activeTitle = (query !== undefined)
- ? (typeof query === 'number')
- ? $title.eq(query)
- : $(query).closest(selector.title)
- : $(this).closest(selector.title),
- $activeContent = $activeTitle.next($content),
- isAnimating = $activeContent.hasClass(className.animating),
- isActive = $activeContent.hasClass(className.active),
- isOpening = (!isActive && isAnimating),
- isClosing = (isActive && isAnimating)
- ;
- if((isActive || isOpening) && !isClosing) {
- module.debug('Closing accordion content', $activeContent);
- settings.onClosing.call($activeContent);
- settings.onChanging.call($activeContent);
- $activeTitle
- .removeClass(className.active)
- ;
- $activeContent
- .stop(true, true)
- .addClass(className.animating)
- ;
- if(settings.animateChildren) {
- if($.fn.transition !== undefined && $module.transition('is supported')) {
- $activeContent
- .children()
- .transition({
- animation : 'fade out',
- queue : false,
- useFailSafe : true,
- debug : settings.debug,
- verbose : settings.verbose,
- duration : settings.duration,
- skipInlineHidden : true
- })
- ;
- }
- else {
- $activeContent
- .children()
- .stop(true, true)
- .animate({
- opacity: 0
- }, settings.duration, module.resetOpacity)
- ;
- }
- }
- $activeContent
- .slideUp(settings.duration, settings.easing, function() {
- $activeContent
- .removeClass(className.animating)
- .removeClass(className.active)
- ;
- module.reset.display.call(this);
- settings.onClose.call(this);
- settings.onChange.call(this);
- })
- ;
- }
- },
-
- closeOthers: function(index) {
- var
- $activeTitle = (index !== undefined)
- ? $title.eq(index)
- : $(this).closest(selector.title),
- $parentTitles = $activeTitle.parents(selector.content).prev(selector.title),
- $activeAccordion = $activeTitle.closest(selector.accordion),
- activeSelector = selector.title + '.' + className.active + ':visible',
- activeContent = selector.content + '.' + className.active + ':visible',
- $openTitles,
- $nestedTitles,
- $openContents
- ;
- if(settings.closeNested) {
- $openTitles = $activeAccordion.find(activeSelector).not($parentTitles);
- $openContents = $openTitles.next($content);
- }
- else {
- $openTitles = $activeAccordion.find(activeSelector).not($parentTitles);
- $nestedTitles = $activeAccordion.find(activeContent).find(activeSelector).not($parentTitles);
- $openTitles = $openTitles.not($nestedTitles);
- $openContents = $openTitles.next($content);
- }
- if( ($openTitles.length > 0) ) {
- module.debug('Exclusive enabled, closing other content', $openTitles);
- $openTitles
- .removeClass(className.active)
- ;
- $openContents
- .removeClass(className.animating)
- .stop(true, true)
- ;
- if(settings.animateChildren) {
- if($.fn.transition !== undefined && $module.transition('is supported')) {
- $openContents
- .children()
- .transition({
- animation : 'fade out',
- useFailSafe : true,
- debug : settings.debug,
- verbose : settings.verbose,
- duration : settings.duration,
- skipInlineHidden : true
- })
- ;
- }
- else {
- $openContents
- .children()
- .stop(true, true)
- .animate({
- opacity: 0
- }, settings.duration, module.resetOpacity)
- ;
- }
- }
- $openContents
- .slideUp(settings.duration , settings.easing, function() {
- $(this).removeClass(className.active);
- module.reset.display.call(this);
- })
- ;
- }
- },
-
- reset: {
-
- display: function() {
- module.verbose('Removing inline display from element', this);
- $(this).css('display', '');
- if( $(this).attr('style') === '') {
- $(this)
- .attr('style', '')
- .removeAttr('style')
- ;
- }
- },
-
- opacity: function() {
- module.verbose('Removing inline opacity from element', this);
- $(this).css('opacity', '');
- if( $(this).attr('style') === '') {
- $(this)
- .attr('style', '')
- .removeAttr('style')
- ;
- }
- },
-
- },
-
- setting: function(name, value) {
- module.debug('Changing setting', name, value);
- if( $.isPlainObject(name) ) {
- $.extend(true, settings, name);
- }
- else if(value !== undefined) {
- if($.isPlainObject(settings[name])) {
- $.extend(true, settings[name], value);
- }
- else {
- settings[name] = value;
- }
- }
- else {
- return settings[name];
- }
- },
- internal: function(name, value) {
- module.debug('Changing internal', name, value);
- if(value !== undefined) {
- if( $.isPlainObject(name) ) {
- $.extend(true, module, name);
- }
- else {
- module[name] = value;
- }
- }
- else {
- return module[name];
- }
- },
- debug: function() {
- if(!settings.silent && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.debug.apply(console, arguments);
- }
- }
- },
- verbose: function() {
- if(!settings.silent && settings.verbose && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.verbose.apply(console, arguments);
- }
- }
- },
- error: function() {
- if(!settings.silent) {
- module.error = Function.prototype.bind.call(console.error, console, settings.name + ':');
- module.error.apply(console, arguments);
- }
- },
- performance: {
- log: function(message) {
- var
- currentTime,
- executionTime,
- previousTime
- ;
- if(settings.performance) {
- currentTime = new Date().getTime();
- previousTime = time || currentTime;
- executionTime = currentTime - previousTime;
- time = currentTime;
- performance.push({
- 'Name' : message[0],
- 'Arguments' : [].slice.call(message, 1) || '',
- 'Element' : element,
- 'Execution Time' : executionTime
- });
- }
- clearTimeout(module.performance.timer);
- module.performance.timer = setTimeout(module.performance.display, 500);
- },
- display: function() {
- var
- title = settings.name + ':',
- totalTime = 0
- ;
- time = false;
- clearTimeout(module.performance.timer);
- $.each(performance, function(index, data) {
- totalTime += data['Execution Time'];
- });
- title += ' ' + totalTime + 'ms';
- if(moduleSelector) {
- title += ' \'' + moduleSelector + '\'';
- }
- if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) {
- console.groupCollapsed(title);
- if(console.table) {
- console.table(performance);
- }
- else {
- $.each(performance, function(index, data) {
- console.log(data['Name'] + ': ' + data['Execution Time']+'ms');
- });
- }
- console.groupEnd();
- }
- performance = [];
- }
- },
- invoke: function(query, passedArguments, context) {
- var
- object = instance,
- maxDepth,
- found,
- response
- ;
- passedArguments = passedArguments || queryArguments;
- context = element || context;
- if(typeof query == 'string' && object !== undefined) {
- query = query.split(/[\. ]/);
- maxDepth = query.length - 1;
- $.each(query, function(depth, value) {
- var camelCaseValue = (depth != maxDepth)
- ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
- : query
- ;
- if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
- object = object[camelCaseValue];
- }
- else if( object[camelCaseValue] !== undefined ) {
- found = object[camelCaseValue];
- return false;
- }
- else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
- object = object[value];
- }
- else if( object[value] !== undefined ) {
- found = object[value];
- return false;
- }
- else {
- module.error(error.method, query);
- return false;
- }
- });
- }
- if ( $.isFunction( found ) ) {
- response = found.apply(context, passedArguments);
- }
- else if(found !== undefined) {
- response = found;
- }
- if(Array.isArray(returnedValue)) {
- returnedValue.push(response);
- }
- else if(returnedValue !== undefined) {
- returnedValue = [returnedValue, response];
- }
- else if(response !== undefined) {
- returnedValue = response;
- }
- return found;
- }
- };
- if(methodInvoked) {
- if(instance === undefined) {
- module.initialize();
- }
- module.invoke(query);
- }
- else {
- if(instance !== undefined) {
- instance.invoke('destroy');
- }
- module.initialize();
- }
- })
- ;
- return (returnedValue !== undefined)
- ? returnedValue
- : this
- ;
-};
-
-$.fn.accordion.settings = {
-
- name : 'Accordion',
- namespace : 'accordion',
-
- silent : false,
- debug : false,
- verbose : false,
- performance : true,
-
- on : 'click', // event on title that opens accordion
-
- observeChanges : true, // whether accordion should automatically refresh on DOM insertion
-
- exclusive : true, // whether a single accordion content panel should be open at once
- collapsible : true, // whether accordion content can be closed
- closeNested : false, // whether nested content should be closed when a panel is closed
- animateChildren : true, // whether children opacity should be animated
-
- duration : 350, // duration of animation
- easing : 'easeOutQuad', // easing equation for animation
-
- onOpening : function(){}, // callback before open animation
- onClosing : function(){}, // callback before closing animation
- onChanging : function(){}, // callback before closing or opening animation
-
- onOpen : function(){}, // callback after open animation
- onClose : function(){}, // callback after closing animation
- onChange : function(){}, // callback after closing or opening animation
-
- error: {
- method : 'The method you called is not defined'
- },
-
- className : {
- active : 'active',
- animating : 'animating',
- transition: 'transition'
- },
-
- selector : {
- accordion : '.accordion',
- title : '.title',
- trigger : '.title',
- content : '.content'
- }
-
-};
-
-// Adds easing
-$.extend( $.easing, {
- easeOutQuad: function (x, t, b, c, d) {
- return -c *(t/=d)*(t-2) + b;
- }
-});
-
-})( jQuery, window, document );
-
-
-/*!
- * # Fomantic-UI - Calendar
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-;(function ($, window, document, undefined) {
-
-'use strict';
-
-$.isFunction = $.isFunction || function(obj) {
- return typeof obj === "function" && typeof obj.nodeType !== "number";
-};
-
-window = (typeof window != 'undefined' && window.Math == Math)
- ? window
- : (typeof self != 'undefined' && self.Math == Math)
- ? self
- : Function('return this')()
-;
-
-$.fn.calendar = function(parameters) {
- var
- $allModules = $(this),
-
- moduleSelector = $allModules.selector || '',
-
- time = new Date().getTime(),
- performance = [],
-
- query = arguments[0],
- methodInvoked = (typeof query == 'string'),
- queryArguments = [].slice.call(arguments, 1),
- returnedValue,
- timeGapTable = {
- '5': {'row': 4, 'column': 3 },
- '10': {'row': 3, 'column': 2 },
- '15': {'row': 2, 'column': 2 },
- '20': {'row': 3, 'column': 1 },
- '30': {'row': 2, 'column': 1 }
- }
- ;
-
- $allModules
- .each(function () {
- var
- settings = ( $.isPlainObject(parameters) )
- ? $.extend(true, {}, $.fn.calendar.settings, parameters)
- : $.extend({}, $.fn.calendar.settings),
-
- className = settings.className,
- namespace = settings.namespace,
- selector = settings.selector,
- formatter = settings.formatter,
- parser = settings.parser,
- metadata = settings.metadata,
- timeGap = timeGapTable[settings.minTimeGap],
- error = settings.error,
-
- eventNamespace = '.' + namespace,
- moduleNamespace = 'module-' + namespace,
-
- $module = $(this),
- $input = $module.find(selector.input),
- $container = $module.find(selector.popup),
- $activator = $module.find(selector.activator),
-
- element = this,
- instance = $module.data(moduleNamespace),
-
- isTouch,
- isTouchDown = false,
- focusDateUsedForRange = false,
- module
- ;
-
- module = {
-
- initialize: function () {
- module.debug('Initializing calendar for', element, $module);
-
- isTouch = module.get.isTouch();
- module.setup.config();
- module.setup.popup();
- module.setup.inline();
- module.setup.input();
- module.setup.date();
- module.create.calendar();
-
- module.bind.events();
- module.instantiate();
- },
-
- instantiate: function () {
- module.verbose('Storing instance of calendar');
- instance = module;
- $module.data(moduleNamespace, instance);
- },
-
- destroy: function () {
- module.verbose('Destroying previous calendar for', element);
- $module.removeData(moduleNamespace);
- module.unbind.events();
- },
-
- setup: {
- config: function () {
- if (module.get.minDate() !== null) {
- module.set.minDate($module.data(metadata.minDate));
- }
- if (module.get.maxDate() !== null) {
- module.set.maxDate($module.data(metadata.maxDate));
- }
- module.setting('type', module.get.type());
- },
- popup: function () {
- if (settings.inline) {
- return;
- }
- if (!$activator.length) {
- $activator = $module.children().first();
- if (!$activator.length) {
- return;
- }
- }
- if ($.fn.popup === undefined) {
- module.error(error.popup);
- return;
- }
- if (!$container.length) {
- //prepend the popup element to the activator's parent so that it has less chance of messing with
- //the styling (eg input action button needs to be the last child to have correct border radius)
- var $activatorParent = $activator.parent(),
- domPositionFunction = $activatorParent.closest(selector.append).length !== 0 ? 'appendTo' : 'prependTo';
- $container = $('').addClass(className.popup)[domPositionFunction]($activatorParent);
- }
- $container.addClass(className.calendar);
- var onVisible = settings.onVisible;
- var onHidden = settings.onHidden;
- if (!$input.length) {
- //no input, $container has to handle focus/blur
- $container.attr('tabindex', '0');
- onVisible = function () {
- module.focus();
- return settings.onVisible.apply($container, arguments);
- };
- onHidden = function () {
- module.blur();
- return settings.onHidden.apply($container, arguments);
- };
- }
- var onShow = function () {
- //reset the focus date onShow
- module.set.focusDate(module.get.date());
- module.set.mode(settings.startMode);
- return settings.onShow.apply($container, arguments);
- };
- var on = settings.on || ($input.length ? 'focus' : 'click');
- var options = $.extend({}, settings.popupOptions, {
- popup: $container,
- on: on,
- hoverable: on === 'hover',
- onShow: onShow,
- onVisible: onVisible,
- onHide: settings.onHide,
- onHidden: onHidden
- });
- module.popup(options);
- },
- inline: function () {
- if ($activator.length && !settings.inline) {
- return;
- }
- $container = $('').addClass(className.calendar).appendTo($module);
- if (!$input.length) {
- $container.attr('tabindex', '0');
- }
- },
- input: function () {
- if (settings.touchReadonly && $input.length && isTouch) {
- $input.prop('readonly', true);
- }
- },
- date: function () {
- var date;
- if (settings.initialDate) {
- date = parser.date(settings.initialDate, settings);
- } else if ($module.data(metadata.date) !== undefined) {
- date = parser.date($module.data(metadata.date), settings);
- } else if ($input.length) {
- date = parser.date($input.val(), settings);
- }
- module.set.date(date, settings.formatInput, false);
- }
- },
-
- create: {
- calendar: function () {
- var i, r, c, p, row, cell, pageGrid;
-
- var mode = module.get.mode();
- var today = new Date();
- var date = module.get.date();
- var focusDate = module.get.focusDate();
- var display = focusDate || date || settings.initialDate || today;
- display = module.helper.dateInRange(display);
-
- if (!focusDate) {
- focusDate = display;
- module.set.focusDate(focusDate, false, false);
- }
-
- var isYear = mode === 'year';
- var isMonth = mode === 'month';
- var isDay = mode === 'day';
- var isHour = mode === 'hour';
- var isMinute = mode === 'minute';
- var isTimeOnly = settings.type === 'time';
-
- var multiMonth = Math.max(settings.multiMonth, 1);
- var monthOffset = !isDay ? 0 : module.get.monthOffset();
-
- var minute = display.getMinutes();
- var hour = display.getHours();
- var day = display.getDate();
- var startMonth = display.getMonth() + monthOffset;
- var year = display.getFullYear();
-
- var columns = isDay ? settings.showWeekNumbers ? 8 : 7 : isHour ? 4 : timeGap['column'];
- var rows = isDay || isHour ? 6 : timeGap['row'];
- var pages = isDay ? multiMonth : 1;
-
- var container = $container;
- var tooltipPosition = container.hasClass("left") ? "right center" : "left center";
- container.empty();
- if (pages > 1) {
- pageGrid = $('').addClass(className.grid).appendTo(container);
- }
-
- for (p = 0; p < pages; p++) {
- if (pages > 1) {
- var pageColumn = $('').addClass(className.column).appendTo(pageGrid);
- container = pageColumn;
- }
-
- var month = startMonth + p;
- var firstMonthDayColumn = (new Date(year, month, 1).getDay() - settings.firstDayOfWeek % 7 + 7) % 7;
- if (!settings.constantHeight && isDay) {
- var requiredCells = new Date(year, month + 1, 0).getDate() + firstMonthDayColumn;
- rows = Math.ceil(requiredCells / 7);
- }
-
- var yearChange = isYear ? 10 : isMonth ? 1 : 0;
- var monthChange = isDay ? 1 : 0;
- var dayChange = isHour || isMinute ? 1 : 0;
- var prevNextDay = isHour || isMinute ? day : 1;
- var prevDate = new Date(year - yearChange, month - monthChange, prevNextDay - dayChange, hour);
- var nextDate = new Date(year + yearChange, month + monthChange, prevNextDay + dayChange, hour);
-
- var prevLast = isYear ? new Date(Math.ceil(year / 10) * 10 - 9, 0, 0) :
- isMonth ? new Date(year, 0, 0) : isDay ? new Date(year, month, 0) : new Date(year, month, day, -1);
- var nextFirst = isYear ? new Date(Math.ceil(year / 10) * 10 + 1, 0, 1) :
- isMonth ? new Date(year + 1, 0, 1) : isDay ? new Date(year, month + 1, 1) : new Date(year, month, day + 1);
-
- var tempMode = mode;
- if (isDay && settings.showWeekNumbers){
- tempMode += ' andweek';
- }
- var table = $('').addClass(className.table).addClass(tempMode).appendTo(container);
- var textColumns = columns;
- //no header for time-only mode
- if (!isTimeOnly) {
- var thead = $('').appendTo(table);
-
- row = $('
').appendTo(thead);
- cell = $(' | ').attr('colspan', '' + columns).appendTo(row);
-
- var headerDate = isYear || isMonth ? new Date(year, 0, 1) :
- isDay ? new Date(year, month, 1) : new Date(year, month, day, hour, minute);
- var headerText = $('').addClass(className.link).appendTo(cell);
- headerText.text(formatter.header(headerDate, mode, settings));
- var newMode = isMonth ? (settings.disableYear ? 'day' : 'year') :
- isDay ? (settings.disableMonth ? 'year' : 'month') : 'day';
- headerText.data(metadata.mode, newMode);
-
- if (p === 0) {
- var prev = $('').addClass(className.prev).appendTo(cell);
- prev.data(metadata.focusDate, prevDate);
- prev.toggleClass(className.disabledCell, !module.helper.isDateInRange(prevLast, mode));
- $('').addClass(className.prevIcon).appendTo(prev);
- }
-
- if (p === pages - 1) {
- var next = $('').addClass(className.next).appendTo(cell);
- next.data(metadata.focusDate, nextDate);
- next.toggleClass(className.disabledCell, !module.helper.isDateInRange(nextFirst, mode));
- $('').addClass(className.nextIcon).appendTo(next);
- }
- if (isDay) {
- row = $('
').appendTo(thead);
- if(settings.showWeekNumbers) {
- cell = $(' | ').appendTo(row);
- cell.text(settings.text.weekNo);
- cell.addClass(className.weekCell);
- textColumns--;
- }
- for (i = 0; i < textColumns; i++) {
- cell = $(' | ').appendTo(row);
- cell.text(formatter.dayColumnHeader((i + settings.firstDayOfWeek) % 7, settings));
- }
- }
- }
-
- var tbody = $('').appendTo(table);
- i = isYear ? Math.ceil(year / 10) * 10 - 9 : isDay ? 1 - firstMonthDayColumn : 0;
- for (r = 0; r < rows; r++) {
- row = $('
').appendTo(tbody);
- if(isDay && settings.showWeekNumbers){
- cell = $(' | ').appendTo(row);
- cell.text(module.get.weekOfYear(year,month,i+1-settings.firstDayOfWeek));
- cell.addClass(className.weekCell);
- }
- for (c = 0; c < textColumns; c++, i++) {
- var cellDate = isYear ? new Date(i, month, 1, hour, minute) :
- isMonth ? new Date(year, i, 1, hour, minute) : isDay ? new Date(year, month, i, hour, minute) :
- isHour ? new Date(year, month, day, i) : new Date(year, month, day, hour, i * settings.minTimeGap);
- var cellText = isYear ? i :
- isMonth ? settings.text.monthsShort[i] : isDay ? cellDate.getDate() :
- formatter.time(cellDate, settings, true);
- cell = $(' | ').addClass(className.cell).appendTo(row);
- cell.text(cellText);
- cell.data(metadata.date, cellDate);
- var adjacent = isDay && cellDate.getMonth() !== ((month + 12) % 12);
- var disabled = (!settings.selectAdjacentDays && adjacent) || !module.helper.isDateInRange(cellDate, mode) || settings.isDisabled(cellDate, mode) || module.helper.isDisabled(cellDate, mode) || !module.helper.isEnabled(cellDate, mode);
- if (disabled) {
- var disabledDate = module.helper.findDayAsObject(cellDate, mode, settings.disabledDates);
- if (disabledDate !== null && disabledDate[metadata.message]) {
- cell.attr("data-tooltip", disabledDate[metadata.message]);
- cell.attr("data-position", tooltipPosition);
- }
- } else {
- var eventDate = module.helper.findDayAsObject(cellDate, mode, settings.eventDates);
- if (eventDate !== null) {
- cell.addClass(eventDate[metadata.class] || settings.eventClass);
- if (eventDate[metadata.message]) {
- cell.attr("data-tooltip", eventDate[metadata.message]);
- cell.attr("data-position", tooltipPosition);
- }
- }
- }
- var active = module.helper.dateEqual(cellDate, date, mode);
- var isToday = module.helper.dateEqual(cellDate, today, mode);
- cell.toggleClass(className.adjacentCell, adjacent);
- cell.toggleClass(className.disabledCell, disabled);
- cell.toggleClass(className.activeCell, active && !adjacent);
- if (!isHour && !isMinute) {
- cell.toggleClass(className.todayCell, !adjacent && isToday);
- }
-
- // Allow for external modifications of each cell
- var cellOptions = {
- mode: mode,
- adjacent: adjacent,
- disabled: disabled,
- active: active,
- today: isToday
- };
- formatter.cell(cell, cellDate, cellOptions);
-
- if (module.helper.dateEqual(cellDate, focusDate, mode)) {
- //ensure that the focus date is exactly equal to the cell date
- //so that, if selected, the correct value is set
- module.set.focusDate(cellDate, false, false);
- }
- }
- }
-
- if (settings.today) {
- var todayRow = $('
').appendTo(tbody);
- var todayButton = $(' | ').attr('colspan', '' + columns).addClass(className.today).appendTo(todayRow);
- todayButton.text(formatter.today(settings));
- todayButton.data(metadata.date, today);
- }
-
- module.update.focus(false, table);
- }
- }
- },
-
- update: {
- focus: function (updateRange, container) {
- container = container || $container;
- var mode = module.get.mode();
- var date = module.get.date();
- var focusDate = module.get.focusDate();
- var startDate = module.get.startDate();
- var endDate = module.get.endDate();
- var rangeDate = (updateRange ? focusDate : null) || date || (!isTouch ? focusDate : null);
-
- container.find('td').each(function () {
- var cell = $(this);
- var cellDate = cell.data(metadata.date);
- if (!cellDate) {
- return;
- }
- var disabled = cell.hasClass(className.disabledCell);
- var active = cell.hasClass(className.activeCell);
- var adjacent = cell.hasClass(className.adjacentCell);
- var focused = module.helper.dateEqual(cellDate, focusDate, mode);
- var inRange = !rangeDate ? false :
- ((!!startDate && module.helper.isDateInRange(cellDate, mode, startDate, rangeDate)) ||
- (!!endDate && module.helper.isDateInRange(cellDate, mode, rangeDate, endDate)));
- cell.toggleClass(className.focusCell, focused && (!isTouch || isTouchDown) && (!adjacent || (settings.selectAdjacentDays && adjacent)) && !disabled);
-
- if (module.helper.isTodayButton(cell)) {
- return;
- }
- cell.toggleClass(className.rangeCell, inRange && !active && !disabled);
- });
- }
- },
-
- refresh: function () {
- module.create.calendar();
- },
-
- bind: {
- events: function () {
- module.debug('Binding events');
- $container.on('mousedown' + eventNamespace, module.event.mousedown);
- $container.on('touchstart' + eventNamespace, module.event.mousedown);
- $container.on('mouseup' + eventNamespace, module.event.mouseup);
- $container.on('touchend' + eventNamespace, module.event.mouseup);
- $container.on('mouseover' + eventNamespace, module.event.mouseover);
- if ($input.length) {
- $input.on('input' + eventNamespace, module.event.inputChange);
- $input.on('focus' + eventNamespace, module.event.inputFocus);
- $input.on('blur' + eventNamespace, module.event.inputBlur);
- $input.on('click' + eventNamespace, module.event.inputClick);
- $input.on('keydown' + eventNamespace, module.event.keydown);
- } else {
- $container.on('keydown' + eventNamespace, module.event.keydown);
- }
- }
- },
-
- unbind: {
- events: function () {
- module.debug('Unbinding events');
- $container.off(eventNamespace);
- if ($input.length) {
- $input.off(eventNamespace);
- }
- }
- },
-
- event: {
- mouseover: function (event) {
- var target = $(event.target);
- var date = target.data(metadata.date);
- var mousedown = event.buttons === 1;
- if (date) {
- module.set.focusDate(date, false, true, mousedown);
- }
- },
- mousedown: function (event) {
- if ($input.length) {
- //prevent the mousedown on the calendar causing the input to lose focus
- event.preventDefault();
- }
- isTouchDown = event.type.indexOf('touch') >= 0;
- var target = $(event.target);
- var date = target.data(metadata.date);
- if (date) {
- module.set.focusDate(date, false, true, true);
- }
- },
- mouseup: function (event) {
- //ensure input has focus so that it receives keydown events for calendar navigation
- module.focus();
- event.preventDefault();
- event.stopPropagation();
- isTouchDown = false;
- var target = $(event.target);
- if (target.hasClass("disabled")) {
- return;
- }
- var parent = target.parent();
- if (parent.data(metadata.date) || parent.data(metadata.focusDate) || parent.data(metadata.mode)) {
- //clicked on a child element, switch to parent (used when clicking directly on prev/next icon element)
- target = parent;
- }
- var date = target.data(metadata.date);
- var focusDate = target.data(metadata.focusDate);
- var mode = target.data(metadata.mode);
- if (date && settings.onSelect.call(element, date, module.get.mode()) !== false) {
- var forceSet = target.hasClass(className.today);
- module.selectDate(date, forceSet);
- }
- else if (focusDate) {
- module.set.focusDate(focusDate);
- }
- else if (mode) {
- module.set.mode(mode);
- }
- },
- keydown: function (event) {
- var keyCode = event.which;
- if (keyCode === 27 || keyCode === 9) {
- //esc || tab
- module.popup('hide');
- }
-
- if (module.popup('is visible')) {
- if (keyCode === 37 || keyCode === 38 || keyCode === 39 || keyCode === 40) {
- //arrow keys
- var mode = module.get.mode();
- var bigIncrement = mode === 'day' ? 7 : mode === 'hour' ? 4 : mode === 'minute' ? timeGap['column'] : 3;
- var increment = keyCode === 37 ? -1 : keyCode === 38 ? -bigIncrement : keyCode == 39 ? 1 : bigIncrement;
- increment *= mode === 'minute' ? settings.minTimeGap : 1;
- var focusDate = module.get.focusDate() || module.get.date() || new Date();
- var year = focusDate.getFullYear() + (mode === 'year' ? increment : 0);
- var month = focusDate.getMonth() + (mode === 'month' ? increment : 0);
- var day = focusDate.getDate() + (mode === 'day' ? increment : 0);
- var hour = focusDate.getHours() + (mode === 'hour' ? increment : 0);
- var minute = focusDate.getMinutes() + (mode === 'minute' ? increment : 0);
- var newFocusDate = new Date(year, month, day, hour, minute);
- if (settings.type === 'time') {
- newFocusDate = module.helper.mergeDateTime(focusDate, newFocusDate);
- }
- if (module.helper.isDateInRange(newFocusDate, mode)) {
- module.set.focusDate(newFocusDate);
- }
- } else if (keyCode === 13) {
- //enter
- var mode = module.get.mode();
- var date = module.get.focusDate();
- if (date && !settings.isDisabled(date, mode) && !module.helper.isDisabled(date, mode) && module.helper.isEnabled(date, mode)) {
- module.selectDate(date);
- }
- //disable form submission:
- event.preventDefault();
- event.stopPropagation();
- }
- }
-
- if (keyCode === 38 || keyCode === 40) {
- //arrow-up || arrow-down
- event.preventDefault(); //don't scroll
- module.popup('show');
- }
- },
- inputChange: function () {
- var val = $input.val();
- var date = parser.date(val, settings);
- module.set.date(date, false);
- },
- inputFocus: function () {
- $container.addClass(className.active);
- },
- inputBlur: function () {
- $container.removeClass(className.active);
- if (settings.formatInput) {
- var date = module.get.date();
- var text = formatter.datetime(date, settings);
- $input.val(text);
- }
- },
- inputClick: function () {
- module.popup('show');
- }
- },
-
- get: {
- weekOfYear: function(weekYear,weekMonth,weekDay) {
- // adapted from http://www.merlyn.demon.co.uk/weekcalc.htm
- var ms1d = 864e5, // milliseconds in a day
- ms7d = 7 * ms1d; // milliseconds in a week
-
- return function() { // return a closure so constants get calculated only once
- var DC3 = Date.UTC(weekYear, weekMonth, weekDay + 3) / ms1d, // an Absolute Day Number
- AWN = Math.floor(DC3 / 7), // an Absolute Week Number
- Wyr = new Date(AWN * ms7d).getUTCFullYear();
-
- return AWN - Math.floor(Date.UTC(Wyr, 0, 7) / ms7d) + 1;
- }();
- },
- date: function () {
- return module.helper.sanitiseDate($module.data(metadata.date)) || null;
- },
- inputDate: function() {
- return $input.val();
- },
- focusDate: function () {
- return $module.data(metadata.focusDate) || null;
- },
- startDate: function () {
- var startModule = module.get.calendarModule(settings.startCalendar);
- return (startModule ? startModule.get.date() : $module.data(metadata.startDate)) || null;
- },
- endDate: function () {
- var endModule = module.get.calendarModule(settings.endCalendar);
- return (endModule ? endModule.get.date() : $module.data(metadata.endDate)) || null;
- },
- minDate: function() {
- return $module.data(metadata.minDate) || null;
- },
- maxDate: function() {
- return $module.data(metadata.maxDate) || null;
- },
- monthOffset: function () {
- return $module.data(metadata.monthOffset) || 0;
- },
- mode: function () {
- //only returns valid modes for the current settings
- var mode = $module.data(metadata.mode) || settings.startMode;
- var validModes = module.get.validModes();
- if ($.inArray(mode, validModes) >= 0) {
- return mode;
- }
- return settings.type === 'time' ? 'hour' :
- settings.type === 'month' ? 'month' :
- settings.type === 'year' ? 'year' : 'day';
- },
- type: function() {
- return $module.data(metadata.type) || settings.type;
- },
- validModes: function () {
- var validModes = [];
- if (settings.type !== 'time') {
- if (!settings.disableYear || settings.type === 'year') {
- validModes.push('year');
- }
- if (!(settings.disableMonth || settings.type === 'year') || settings.type === 'month') {
- validModes.push('month');
- }
- if (settings.type.indexOf('date') >= 0) {
- validModes.push('day');
- }
- }
- if (settings.type.indexOf('time') >= 0) {
- validModes.push('hour');
- if (!settings.disableMinute) {
- validModes.push('minute');
- }
- }
- return validModes;
- },
- isTouch: function () {
- try {
- document.createEvent('TouchEvent');
- return true;
- }
- catch (e) {
- return false;
- }
- },
- calendarModule: function (selector) {
- if (!selector) {
- return null;
- }
- if (!(selector instanceof $)) {
- selector = $(selector).first();
- }
- //assume range related calendars are using the same namespace
- return selector.data(moduleNamespace);
- }
- },
-
- set: {
- date: function (date, updateInput, fireChange) {
- updateInput = updateInput !== false;
- fireChange = fireChange !== false;
- date = module.helper.sanitiseDate(date);
- date = module.helper.dateInRange(date);
-
- var mode = module.get.mode();
- var text = formatter.datetime(date, settings);
-
- if (fireChange && settings.onBeforeChange.call(element, date, text, mode) === false) {
- return false;
- }
-
- module.set.focusDate(date);
-
- if (settings.isDisabled(date, mode)) {
- return false;
- }
-
- var endDate = module.get.endDate();
- if (!!endDate && !!date && date > endDate) {
- //selected date is greater than end date in range, so clear end date
- module.set.endDate(undefined);
- }
- module.set.dataKeyValue(metadata.date, date);
-
- if (updateInput && $input.length) {
- $input.val(text);
- }
-
- if (fireChange) {
- settings.onChange.call(element, date, text, mode);
- }
- },
- startDate: function (date, refreshCalendar) {
- date = module.helper.sanitiseDate(date);
- var startModule = module.get.calendarModule(settings.startCalendar);
- if (startModule) {
- startModule.set.date(date);
- }
- module.set.dataKeyValue(metadata.startDate, date, refreshCalendar);
- },
- endDate: function (date, refreshCalendar) {
- date = module.helper.sanitiseDate(date);
- var endModule = module.get.calendarModule(settings.endCalendar);
- if (endModule) {
- endModule.set.date(date);
- }
- module.set.dataKeyValue(metadata.endDate, date, refreshCalendar);
- },
- focusDate: function (date, refreshCalendar, updateFocus, updateRange) {
- date = module.helper.sanitiseDate(date);
- date = module.helper.dateInRange(date);
- var isDay = module.get.mode() === 'day';
- var oldFocusDate = module.get.focusDate();
- if (isDay && date && oldFocusDate) {
- var yearDelta = date.getFullYear() - oldFocusDate.getFullYear();
- var monthDelta = yearDelta * 12 + date.getMonth() - oldFocusDate.getMonth();
- if (monthDelta) {
- var monthOffset = module.get.monthOffset() - monthDelta;
- module.set.monthOffset(monthOffset, false);
- }
- }
- var changed = module.set.dataKeyValue(metadata.focusDate, date, refreshCalendar);
- updateFocus = (updateFocus !== false && changed && refreshCalendar === false) || focusDateUsedForRange != updateRange;
- focusDateUsedForRange = updateRange;
- if (updateFocus) {
- module.update.focus(updateRange);
- }
- },
- minDate: function (date) {
- date = module.helper.sanitiseDate(date);
- if (settings.maxDate !== null && settings.maxDate <= date) {
- module.verbose('Unable to set minDate variable bigger that maxDate variable', date, settings.maxDate);
- } else {
- module.setting('minDate', date);
- module.set.dataKeyValue(metadata.minDate, date);
- }
- },
- maxDate: function (date) {
- date = module.helper.sanitiseDate(date);
- if (settings.minDate !== null && settings.minDate >= date) {
- module.verbose('Unable to set maxDate variable lower that minDate variable', date, settings.minDate);
- } else {
- module.setting('maxDate', date);
- module.set.dataKeyValue(metadata.maxDate, date);
- }
- },
- monthOffset: function (monthOffset, refreshCalendar) {
- var multiMonth = Math.max(settings.multiMonth, 1);
- monthOffset = Math.max(1 - multiMonth, Math.min(0, monthOffset));
- module.set.dataKeyValue(metadata.monthOffset, monthOffset, refreshCalendar);
- },
- mode: function (mode, refreshCalendar) {
- module.set.dataKeyValue(metadata.mode, mode, refreshCalendar);
- },
- dataKeyValue: function (key, value, refreshCalendar) {
- var oldValue = $module.data(key);
- var equal = oldValue === value || (oldValue <= value && oldValue >= value); //equality test for dates and string objects
- if (value) {
- $module.data(key, value);
- } else {
- $module.removeData(key);
- }
- refreshCalendar = refreshCalendar !== false && !equal;
- if (refreshCalendar) {
- module.refresh();
- }
- return !equal;
- }
- },
-
- selectDate: function (date, forceSet) {
- module.verbose('New date selection', date);
- var mode = module.get.mode();
- var complete = forceSet || mode === 'minute' ||
- (settings.disableMinute && mode === 'hour') ||
- (settings.type === 'date' && mode === 'day') ||
- (settings.type === 'month' && mode === 'month') ||
- (settings.type === 'year' && mode === 'year');
- if (complete) {
- var canceled = module.set.date(date) === false;
- if (!canceled && settings.closable) {
- module.popup('hide');
- //if this is a range calendar, show the end date calendar popup and focus the input
- var endModule = module.get.calendarModule(settings.endCalendar);
- if (endModule) {
- endModule.popup('show');
- endModule.focus();
- }
- }
- } else {
- var newMode = mode === 'year' ? (!settings.disableMonth ? 'month' : 'day') :
- mode === 'month' ? 'day' : mode === 'day' ? 'hour' : 'minute';
- module.set.mode(newMode);
- if (mode === 'hour' || (mode === 'day' && module.get.date())) {
- //the user has chosen enough to consider a valid date/time has been chosen
- module.set.date(date);
- } else {
- module.set.focusDate(date);
- }
- }
- },
-
- changeDate: function (date) {
- module.set.date(date);
- },
-
- clear: function () {
- module.set.date(undefined);
- },
-
- popup: function () {
- return $activator.popup.apply($activator, arguments);
- },
-
- focus: function () {
- if ($input.length) {
- $input.focus();
- } else {
- $container.focus();
- }
- },
- blur: function () {
- if ($input.length) {
- $input.blur();
- } else {
- $container.blur();
- }
- },
-
- helper: {
- isDisabled: function(date, mode) {
- return mode === 'day' && ((settings.disabledDaysOfWeek.indexOf(date.getDay()) !== -1) || settings.disabledDates.some(function(d){
- if(typeof d === 'string') {
- d = module.helper.sanitiseDate(d);
- }
- if (d instanceof Date) {
- return module.helper.dateEqual(date, d, mode);
- }
- if (d !== null && typeof d === 'object' && d[metadata.date]) {
- return module.helper.dateEqual(date, module.helper.sanitiseDate(d[metadata.date]), mode);
- }
- }));
- },
- isEnabled: function(date, mode) {
- if (mode === 'day') {
- return settings.enabledDates.length === 0 || settings.enabledDates.some(function(d){
- if(typeof d === 'string') {
- d = module.helper.sanitiseDate(d);
- }
- if (d instanceof Date) {
- return module.helper.dateEqual(date, d, mode);
- }
- if (d !== null && typeof d === 'object' && d[metadata.date]) {
- return module.helper.dateEqual(date, module.helper.sanitiseDate(d[metadata.date]), mode);
- }
- });
- } else {
- return true;
- }
- },
- findDayAsObject: function(date, mode, dates) {
- if (mode === 'day') {
- var i = 0, il = dates.length;
- var d;
- for (; i < il; i++) {
- d = dates[i];
- if(typeof d === 'string') {
- d = module.helper.sanitiseDate(d);
- }
- if (d instanceof Date && module.helper.dateEqual(date, d, mode)) {
- var dateObject = {};
- dateObject[metadata.date] = d;
- return dateObject;
- }
- else if (d !== null && typeof d === 'object' && d[metadata.date] && module.helper.dateEqual(date,module.helper.sanitiseDate(d[metadata.date]), mode) ) {
- return d;
- }
- }
- }
- return null;
- },
- sanitiseDate: function (date) {
- if (!date) {
- return undefined;
- }
- if (!(date instanceof Date)) {
- date = parser.date('' + date, settings);
- }
- if (!date || date === null || isNaN(date.getTime())) {
- return undefined;
- }
- return date;
- },
- dateDiff: function (date1, date2, mode) {
- mode = mode || 'day';
- var isTimeOnly = settings.type === 'time';
- var isYear = mode === 'year';
- var isYearOrMonth = isYear || mode === 'month';
- var isMinute = mode === 'minute';
- var isHourOrMinute = isMinute || mode === 'hour';
- //only care about a minute accuracy of settings.minTimeGap
- date1 = new Date(
- isTimeOnly ? 2000 : date1.getFullYear(),
- isTimeOnly ? 0 : isYear ? 0 : date1.getMonth(),
- isTimeOnly ? 1 : isYearOrMonth ? 1 : date1.getDate(),
- !isHourOrMinute ? 0 : date1.getHours(),
- !isMinute ? 0 : settings.minTimeGap * Math.floor(date1.getMinutes() / settings.minTimeGap));
- date2 = new Date(
- isTimeOnly ? 2000 : date2.getFullYear(),
- isTimeOnly ? 0 : isYear ? 0 : date2.getMonth(),
- isTimeOnly ? 1 : isYearOrMonth ? 1 : date2.getDate(),
- !isHourOrMinute ? 0 : date2.getHours(),
- !isMinute ? 0 : settings.minTimeGap * Math.floor(date2.getMinutes() / settings.minTimeGap));
- return date2.getTime() - date1.getTime();
- },
- dateEqual: function (date1, date2, mode) {
- return !!date1 && !!date2 && module.helper.dateDiff(date1, date2, mode) === 0;
- },
- isDateInRange: function (date, mode, minDate, maxDate) {
- if (!minDate && !maxDate) {
- var startDate = module.get.startDate();
- minDate = startDate && settings.minDate ? new Date(Math.max(startDate, settings.minDate)) : startDate || settings.minDate;
- maxDate = settings.maxDate;
- }
- minDate = minDate && new Date(minDate.getFullYear(), minDate.getMonth(), minDate.getDate(), minDate.getHours(), settings.minTimeGap * Math.ceil(minDate.getMinutes() / settings.minTimeGap));
- return !(!date ||
- (minDate && module.helper.dateDiff(date, minDate, mode) > 0) ||
- (maxDate && module.helper.dateDiff(maxDate, date, mode) > 0));
- },
- dateInRange: function (date, minDate, maxDate) {
- if (!minDate && !maxDate) {
- var startDate = module.get.startDate();
- minDate = startDate && settings.minDate ? new Date(Math.max(startDate, settings.minDate)) : startDate || settings.minDate;
- maxDate = settings.maxDate;
- }
- minDate = minDate && new Date(minDate.getFullYear(), minDate.getMonth(), minDate.getDate(), minDate.getHours(), settings.minTimeGap * Math.ceil(minDate.getMinutes() / settings.minTimeGap));
- var isTimeOnly = settings.type === 'time';
- return !date ? date :
- (minDate && module.helper.dateDiff(date, minDate, 'minute') > 0) ?
- (isTimeOnly ? module.helper.mergeDateTime(date, minDate) : minDate) :
- (maxDate && module.helper.dateDiff(maxDate, date, 'minute') > 0) ?
- (isTimeOnly ? module.helper.mergeDateTime(date, maxDate) : maxDate) :
- date;
- },
- mergeDateTime: function (date, time) {
- return (!date || !time) ? time :
- new Date(date.getFullYear(), date.getMonth(), date.getDate(), time.getHours(), time.getMinutes());
- },
- isTodayButton: function(element) {
- return element.text() === settings.text.today;
- }
- },
-
- setting: function (name, value) {
- module.debug('Changing setting', name, value);
- if ($.isPlainObject(name)) {
- $.extend(true, settings, name);
- }
- else if (value !== undefined) {
- if ($.isPlainObject(settings[name])) {
- $.extend(true, settings[name], value);
- }
- else {
- settings[name] = value;
- }
- }
- else {
- return settings[name];
- }
- },
- internal: function (name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, module, name);
- }
- else if(value !== undefined) {
- module[name] = value;
- }
- else {
- return module[name];
- }
- },
- debug: function () {
- if (!settings.silent && settings.debug) {
- if (settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.debug.apply(console, arguments);
- }
- }
- },
- verbose: function () {
- if (!settings.silent && settings.verbose && settings.debug) {
- if (settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.verbose.apply(console, arguments);
- }
- }
- },
- error: function () {
- if (!settings.silent) {
- module.error = Function.prototype.bind.call(console.error, console, settings.name + ':');
- module.error.apply(console, arguments);
- }
- },
- performance: {
- log: function (message) {
- var
- currentTime,
- executionTime,
- previousTime
- ;
- if (settings.performance) {
- currentTime = new Date().getTime();
- previousTime = time || currentTime;
- executionTime = currentTime - previousTime;
- time = currentTime;
- performance.push({
- 'Name': message[0],
- 'Arguments': [].slice.call(message, 1) || '',
- 'Element': element,
- 'Execution Time': executionTime
- });
- }
- clearTimeout(module.performance.timer);
- module.performance.timer = setTimeout(module.performance.display, 500);
- },
- display: function () {
- var
- title = settings.name + ':',
- totalTime = 0
- ;
- time = false;
- clearTimeout(module.performance.timer);
- $.each(performance, function (index, data) {
- totalTime += data['Execution Time'];
- });
- title += ' ' + totalTime + 'ms';
- if (moduleSelector) {
- title += ' \'' + moduleSelector + '\'';
- }
- if ((console.group !== undefined || console.table !== undefined) && performance.length > 0) {
- console.groupCollapsed(title);
- if (console.table) {
- console.table(performance);
- }
- else {
- $.each(performance, function (index, data) {
- console.log(data['Name'] + ': ' + data['Execution Time'] + 'ms');
- });
- }
- console.groupEnd();
- }
- performance = [];
- }
- },
- invoke: function (query, passedArguments, context) {
- var
- object = instance,
- maxDepth,
- found,
- response
- ;
- passedArguments = passedArguments || queryArguments;
- context = element || context;
- if (typeof query == 'string' && object !== undefined) {
- query = query.split(/[\. ]/);
- maxDepth = query.length - 1;
- $.each(query, function (depth, value) {
- var camelCaseValue = (depth != maxDepth)
- ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
- : query
- ;
- if ($.isPlainObject(object[camelCaseValue]) && (depth != maxDepth)) {
- object = object[camelCaseValue];
- }
- else if (object[camelCaseValue] !== undefined) {
- found = object[camelCaseValue];
- return false;
- }
- else if ($.isPlainObject(object[value]) && (depth != maxDepth)) {
- object = object[value];
- }
- else if (object[value] !== undefined) {
- found = object[value];
- return false;
- }
- else {
- module.error(error.method, query);
- return false;
- }
- });
- }
- if ($.isFunction(found)) {
- response = found.apply(context, passedArguments);
- }
- else if (found !== undefined) {
- response = found;
- }
- if (Array.isArray(returnedValue)) {
- returnedValue.push(response);
- }
- else if (returnedValue !== undefined) {
- returnedValue = [returnedValue, response];
- }
- else if (response !== undefined) {
- returnedValue = response;
- }
- return found;
- }
- };
-
- if (methodInvoked) {
- if (instance === undefined) {
- module.initialize();
- }
- module.invoke(query);
- }
- else {
- if (instance !== undefined) {
- instance.invoke('destroy');
- }
- module.initialize();
- }
- })
- ;
- return (returnedValue !== undefined)
- ? returnedValue
- : this
- ;
-};
-
-$.fn.calendar.settings = {
-
- name : 'Calendar',
- namespace : 'calendar',
-
- silent: false,
- debug: false,
- verbose: false,
- performance: false,
-
- type : 'datetime', // picker type, can be 'datetime', 'date', 'time', 'month', or 'year'
- firstDayOfWeek : 0, // day for first day column (0 = Sunday)
- constantHeight : true, // add rows to shorter months to keep day calendar height consistent (6 rows)
- today : false, // show a 'today/now' button at the bottom of the calendar
- closable : true, // close the popup after selecting a date/time
- monthFirst : true, // month before day when parsing/converting date from/to text
- touchReadonly : true, // set input to readonly on touch devices
- inline : false, // create the calendar inline instead of inside a popup
- on : null, // when to show the popup (defaults to 'focus' for input, 'click' for others)
- initialDate : null, // date to display initially when no date is selected (null = now)
- startMode : false, // display mode to start in, can be 'year', 'month', 'day', 'hour', 'minute' (false = 'day')
- minDate : null, // minimum date/time that can be selected, dates/times before are disabled
- maxDate : null, // maximum date/time that can be selected, dates/times after are disabled
- ampm : true, // show am/pm in time mode
- disableYear : false, // disable year selection mode
- disableMonth : false, // disable month selection mode
- disableMinute : false, // disable minute selection mode
- formatInput : true, // format the input text upon input blur and module creation
- startCalendar : null, // jquery object or selector for another calendar that represents the start date of a date range
- endCalendar : null, // jquery object or selector for another calendar that represents the end date of a date range
- multiMonth : 1, // show multiple months when in 'day' mode
- minTimeGap : 5,
- showWeekNumbers : null, // show Number of Week at the very first column of a dayView
- disabledDates : [], // specific day(s) which won't be selectable and contain additional information.
- disabledDaysOfWeek : [], // day(s) which won't be selectable(s) (0 = Sunday)
- enabledDates : [], // specific day(s) which will be selectable, all other days will be disabled
- eventDates : [], // specific day(s) which will be shown in a different color and using tooltips
- centuryBreak : 60, // starting short year until 99 where it will be assumed to belong to the last century
- currentCentury : 2000, // century to be added to 2-digit years (00 to {centuryBreak}-1)
- selectAdjacentDays : false, // The calendar can show dates from adjacent month. These adjacent month dates can also be made selectable.
- // popup options ('popup', 'on', 'hoverable', and show/hide callbacks are overridden)
- popupOptions: {
- position: 'bottom left',
- lastResort: 'bottom left',
- prefer: 'opposite',
- hideOnScroll: false
- },
-
- text: {
- days: ['S', 'M', 'T', 'W', 'T', 'F', 'S'],
- months: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
- monthsShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
- today: 'Today',
- now: 'Now',
- am: 'AM',
- pm: 'PM',
- weekNo: 'Week'
- },
-
- formatter: {
- header: function (date, mode, settings) {
- return mode === 'year' ? settings.formatter.yearHeader(date, settings) :
- mode === 'month' ? settings.formatter.monthHeader(date, settings) :
- mode === 'day' ? settings.formatter.dayHeader(date, settings) :
- mode === 'hour' ? settings.formatter.hourHeader(date, settings) :
- settings.formatter.minuteHeader(date, settings);
- },
- yearHeader: function (date, settings) {
- var decadeYear = Math.ceil(date.getFullYear() / 10) * 10;
- return (decadeYear - 9) + ' - ' + (decadeYear + 2);
- },
- monthHeader: function (date, settings) {
- return date.getFullYear();
- },
- dayHeader: function (date, settings) {
- var month = settings.text.months[date.getMonth()];
- var year = date.getFullYear();
- return month + ' ' + year;
- },
- hourHeader: function (date, settings) {
- return settings.formatter.date(date, settings);
- },
- minuteHeader: function (date, settings) {
- return settings.formatter.date(date, settings);
- },
- dayColumnHeader: function (day, settings) {
- return settings.text.days[day];
- },
- datetime: function (date, settings) {
- if (!date) {
- return '';
- }
- var day = settings.type === 'time' ? '' : settings.formatter.date(date, settings);
- var time = settings.type.indexOf('time') < 0 ? '' : settings.formatter.time(date, settings, false);
- var separator = settings.type === 'datetime' ? ' ' : '';
- return day + separator + time;
- },
- date: function (date, settings) {
- if (!date) {
- return '';
- }
- var day = date.getDate();
- var month = settings.text.months[date.getMonth()];
- var year = date.getFullYear();
- return settings.type === 'year' ? year :
- settings.type === 'month' ? month + ' ' + year :
- (settings.monthFirst ? month + ' ' + day : day + ' ' + month) + ', ' + year;
- },
- time: function (date, settings, forCalendar) {
- if (!date) {
- return '';
- }
- var hour = date.getHours();
- var minute = date.getMinutes();
- var ampm = '';
- if (settings.ampm) {
- ampm = ' ' + (hour < 12 ? settings.text.am : settings.text.pm);
- hour = hour === 0 ? 12 : hour > 12 ? hour - 12 : hour;
- }
- return hour + ':' + (minute < 10 ? '0' : '') + minute + ampm;
- },
- today: function (settings) {
- return settings.type === 'date' ? settings.text.today : settings.text.now;
- },
- cell: function (cell, date, cellOptions) {
- }
- },
-
- parser: {
- date: function (text, settings) {
- if (text instanceof Date) {
- return text;
- }
- if (!text) {
- return null;
- }
- text = ('' + text).trim().toLowerCase();
- if (text.length === 0) {
- return null;
- }
- // Reverse date and month in some cases
- text = settings.monthFirst ? text : text.replace(/[\/\-\.]/g,'/').replace(/([0-9]+)\/([0-9]+)/,'$2/$1');
- var textDate = new Date(text);
- if(!isNaN(textDate.getDate())) {
- return textDate;
- }
-
- var i, j, k;
- var minute = -1, hour = -1, day = -1, month = -1, year = -1;
- var isAm = undefined;
-
- var isTimeOnly = settings.type === 'time';
- var isDateOnly = settings.type.indexOf('time') < 0;
-
- var words = text.split(settings.regExp.dateWords), word;
- var numbers = text.split(settings.regExp.dateNumbers), number;
-
- var parts;
- var monthString;
-
- if (!isDateOnly) {
- //am/pm
- isAm = $.inArray(settings.text.am.toLowerCase(), words) >= 0 ? true :
- $.inArray(settings.text.pm.toLowerCase(), words) >= 0 ? false : undefined;
-
- //time with ':'
- for (i = 0; i < numbers.length; i++) {
- number = numbers[i];
- if (number.indexOf(':') >= 0) {
- if (hour < 0 || minute < 0) {
- parts = number.split(':');
- for (k = 0; k < Math.min(2, parts.length); k++) {
- j = parseInt(parts[k]);
- if (isNaN(j)) {
- j = 0;
- }
- if (k === 0) {
- hour = j % 24;
- } else {
- minute = j % 60;
- }
- }
- }
- numbers.splice(i, 1);
- }
- }
- }
-
- if (!isTimeOnly) {
- //textual month
- for (i = 0; i < words.length; i++) {
- word = words[i];
- if (word.length <= 0) {
- continue;
- }
- for (j = 0; j < settings.text.months.length; j++) {
- monthString = settings.text.months[j];
- monthString = monthString.substring(0, word.length).toLowerCase();
- if (monthString === word) {
- month = j + 1;
- break;
- }
- }
- if (month >= 0) {
- break;
- }
- }
-
- //year > settings.centuryBreak
- for (i = 0; i < numbers.length; i++) {
- j = parseInt(numbers[i]);
- if (isNaN(j)) {
- continue;
- }
- if (j >= settings.centuryBreak && i === numbers.length-1) {
- if (j <= 99) {
- j += settings.currentCentury - 100;
- }
- year = j;
- numbers.splice(i, 1);
- break;
- }
- }
-
- //numeric month
- if (month < 0) {
- for (i = 0; i < numbers.length; i++) {
- k = i > 1 || settings.monthFirst ? i : i === 1 ? 0 : 1;
- j = parseInt(numbers[k]);
- if (isNaN(j)) {
- continue;
- }
- if (1 <= j && j <= 12) {
- month = j;
- numbers.splice(k, 1);
- break;
- }
- }
- }
-
- //day
- for (i = 0; i < numbers.length; i++) {
- j = parseInt(numbers[i]);
- if (isNaN(j)) {
- continue;
- }
- if (1 <= j && j <= 31) {
- day = j;
- numbers.splice(i, 1);
- break;
- }
- }
-
- //year <= settings.centuryBreak
- if (year < 0) {
- for (i = numbers.length - 1; i >= 0; i--) {
- j = parseInt(numbers[i]);
- if (isNaN(j)) {
- continue;
- }
- if (j <= 99) {
- j += settings.currentCentury;
- }
- year = j;
- numbers.splice(i, 1);
- break;
- }
- }
- }
-
- if (!isDateOnly) {
- //hour
- if (hour < 0) {
- for (i = 0; i < numbers.length; i++) {
- j = parseInt(numbers[i]);
- if (isNaN(j)) {
- continue;
- }
- if (0 <= j && j <= 23) {
- hour = j;
- numbers.splice(i, 1);
- break;
- }
- }
- }
-
- //minute
- if (minute < 0) {
- for (i = 0; i < numbers.length; i++) {
- j = parseInt(numbers[i]);
- if (isNaN(j)) {
- continue;
- }
- if (0 <= j && j <= 59) {
- minute = j;
- numbers.splice(i, 1);
- break;
- }
- }
- }
- }
-
- if (minute < 0 && hour < 0 && day < 0 && month < 0 && year < 0) {
- return null;
- }
-
- if (minute < 0) {
- minute = 0;
- }
- if (hour < 0) {
- hour = 0;
- }
- if (day < 0) {
- day = 1;
- }
- if (month < 0) {
- month = 1;
- }
- if (year < 0) {
- year = new Date().getFullYear();
- }
-
- if (isAm !== undefined) {
- if (isAm) {
- if (hour === 12) {
- hour = 0;
- }
- } else if (hour < 12) {
- hour += 12;
- }
- }
-
- var date = new Date(year, month - 1, day, hour, minute);
- if (date.getMonth() !== month - 1 || date.getFullYear() !== year) {
- //month or year don't match up, switch to last day of the month
- date = new Date(year, month, 0, hour, minute);
- }
- return isNaN(date.getTime()) ? null : date;
- }
- },
-
- // callback before date is changed, return false to cancel the change
- onBeforeChange: function (date, text, mode) {
- return true;
- },
-
- // callback when date changes
- onChange: function (date, text, mode) {
- },
-
- // callback before show animation, return false to prevent show
- onShow: function () {
- },
-
- // callback after show animation
- onVisible: function () {
- },
-
- // callback before hide animation, return false to prevent hide
- onHide: function () {
- },
-
- // callback after hide animation
- onHidden: function () {
- },
-
- // callback before item is selected, return false to prevent selection
- onSelect: function (date, mode) {
- },
-
- // is the given date disabled?
- isDisabled: function (date, mode) {
- return false;
- },
-
- selector: {
- popup: '.ui.popup',
- input: 'input',
- activator: 'input',
- append: '.inline.field,.inline.fields'
- },
-
- regExp: {
- dateWords: /[^A-Za-z\u00C0-\u024F]+/g,
- dateNumbers: /[^\d:]+/g
- },
-
- error: {
- popup: 'UI Popup, a required component is not included in this page',
- method: 'The method you called is not defined.'
- },
-
- className: {
- calendar: 'calendar',
- active: 'active',
- popup: 'ui popup',
- grid: 'ui equal width grid',
- column: 'column',
- table: 'ui celled center aligned unstackable table',
- prev: 'prev link',
- next: 'next link',
- prevIcon: 'chevron left icon',
- nextIcon: 'chevron right icon',
- link: 'link',
- cell: 'link',
- disabledCell: 'disabled',
- weekCell: 'disabled',
- adjacentCell: 'adjacent',
- activeCell: 'active',
- rangeCell: 'range',
- focusCell: 'focus',
- todayCell: 'today',
- today: 'today link'
- },
-
- metadata: {
- date: 'date',
- focusDate: 'focusDate',
- startDate: 'startDate',
- endDate: 'endDate',
- minDate: 'minDate',
- maxDate: 'maxDate',
- mode: 'mode',
- type: 'type',
- monthOffset: 'monthOffset',
- message: 'message',
- class: 'class'
- },
-
- eventClass: 'blue'
-};
-
-})(jQuery, window, document);
-
-/*!
- * # Fomantic-UI - Checkbox
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-;(function ($, window, document, undefined) {
-
-'use strict';
-
-$.isFunction = $.isFunction || function(obj) {
- return typeof obj === "function" && typeof obj.nodeType !== "number";
-};
-
-window = (typeof window != 'undefined' && window.Math == Math)
- ? window
- : (typeof self != 'undefined' && self.Math == Math)
- ? self
- : Function('return this')()
-;
-
-$.fn.checkbox = function(parameters) {
- var
- $allModules = $(this),
- moduleSelector = $allModules.selector || '',
-
- time = new Date().getTime(),
- performance = [],
-
- query = arguments[0],
- methodInvoked = (typeof query == 'string'),
- queryArguments = [].slice.call(arguments, 1),
- returnedValue
- ;
-
- $allModules
- .each(function() {
- var
- settings = $.extend(true, {}, $.fn.checkbox.settings, parameters),
-
- className = settings.className,
- namespace = settings.namespace,
- selector = settings.selector,
- error = settings.error,
-
- eventNamespace = '.' + namespace,
- moduleNamespace = 'module-' + namespace,
-
- $module = $(this),
- $label = $(this).children(selector.label),
- $input = $(this).children(selector.input),
- input = $input[0],
-
- initialLoad = false,
- shortcutPressed = false,
- instance = $module.data(moduleNamespace),
-
- observer,
- element = this,
- module
- ;
-
- module = {
-
- initialize: function() {
- module.verbose('Initializing checkbox', settings);
-
- module.create.label();
- module.bind.events();
-
- module.set.tabbable();
- module.hide.input();
-
- module.observeChanges();
- module.instantiate();
- module.setup();
- },
-
- instantiate: function() {
- module.verbose('Storing instance of module', module);
- instance = module;
- $module
- .data(moduleNamespace, module)
- ;
- },
-
- destroy: function() {
- module.verbose('Destroying module');
- module.unbind.events();
- module.show.input();
- $module.removeData(moduleNamespace);
- },
-
- fix: {
- reference: function() {
- if( $module.is(selector.input) ) {
- module.debug('Behavior called on adjusting invoked element');
- $module = $module.closest(selector.checkbox);
- module.refresh();
- }
- }
- },
-
- setup: function() {
- module.set.initialLoad();
- if( module.is.indeterminate() ) {
- module.debug('Initial value is indeterminate');
- module.indeterminate();
- }
- else if( module.is.checked() ) {
- module.debug('Initial value is checked');
- module.check();
- }
- else {
- module.debug('Initial value is unchecked');
- module.uncheck();
- }
- module.remove.initialLoad();
- },
-
- refresh: function() {
- $label = $module.children(selector.label);
- $input = $module.children(selector.input);
- input = $input[0];
- },
-
- hide: {
- input: function() {
- module.verbose('Modifying z-index to be unselectable');
- $input.addClass(className.hidden);
- }
- },
- show: {
- input: function() {
- module.verbose('Modifying z-index to be selectable');
- $input.removeClass(className.hidden);
- }
- },
-
- observeChanges: function() {
- if('MutationObserver' in window) {
- observer = new MutationObserver(function(mutations) {
- module.debug('DOM tree modified, updating selector cache');
- module.refresh();
- });
- observer.observe(element, {
- childList : true,
- subtree : true
- });
- module.debug('Setting up mutation observer', observer);
- }
- },
-
- attachEvents: function(selector, event) {
- var
- $element = $(selector)
- ;
- event = $.isFunction(module[event])
- ? module[event]
- : module.toggle
- ;
- if($element.length > 0) {
- module.debug('Attaching checkbox events to element', selector, event);
- $element
- .on('click' + eventNamespace, event)
- ;
- }
- else {
- module.error(error.notFound);
- }
- },
-
- preventDefaultOnInputTarget: function() {
- if(typeof event !== 'undefined' && event !== null && $(event.target).is(selector.input)) {
- module.verbose('Preventing default check action after manual check action');
- event.preventDefault();
- }
- },
-
- event: {
- change: function(event) {
- if( !module.should.ignoreCallbacks() ) {
- settings.onChange.call(input);
- }
- },
- click: function(event) {
- var
- $target = $(event.target)
- ;
- if( $target.is(selector.input) ) {
- module.verbose('Using default check action on initialized checkbox');
- return;
- }
- if( $target.is(selector.link) ) {
- module.debug('Clicking link inside checkbox, skipping toggle');
- return;
- }
- module.toggle();
- $input.focus();
- event.preventDefault();
- },
- keydown: function(event) {
- var
- key = event.which,
- keyCode = {
- enter : 13,
- space : 32,
- escape : 27,
- left : 37,
- up : 38,
- right : 39,
- down : 40
- }
- ;
-
- var r = module.get.radios(),
- rIndex = r.index($module),
- rLen = r.length,
- checkIndex = false;
-
- if(key == keyCode.left || key == keyCode.up) {
- checkIndex = (rIndex === 0 ? rLen : rIndex) - 1;
- } else if(key == keyCode.right || key == keyCode.down) {
- checkIndex = rIndex === rLen-1 ? 0 : rIndex+1;
- }
-
- if (!module.should.ignoreCallbacks() && checkIndex !== false) {
- if(settings.beforeUnchecked.apply(input)===false) {
- module.verbose('Option not allowed to be unchecked, cancelling key navigation');
- return false;
- }
- if (settings.beforeChecked.apply($(r[checkIndex]).children(selector.input)[0])===false) {
- module.verbose('Next option should not allow check, cancelling key navigation');
- return false;
- }
- }
-
- if(key == keyCode.escape) {
- module.verbose('Escape key pressed blurring field');
- $input.blur();
- shortcutPressed = true;
- }
- else if(!event.ctrlKey && ( key == keyCode.space || (key == keyCode.enter && settings.enableEnterKey)) ) {
- module.verbose('Enter/space key pressed, toggling checkbox');
- module.toggle();
- shortcutPressed = true;
- }
- else {
- shortcutPressed = false;
- }
- },
- keyup: function(event) {
- if(shortcutPressed) {
- event.preventDefault();
- }
- }
- },
-
- check: function() {
- if( !module.should.allowCheck() ) {
- return;
- }
- module.debug('Checking checkbox', $input);
- module.set.checked();
- if( !module.should.ignoreCallbacks() ) {
- settings.onChecked.call(input);
- module.trigger.change();
- }
- module.preventDefaultOnInputTarget();
- },
-
- uncheck: function() {
- if( !module.should.allowUncheck() ) {
- return;
- }
- module.debug('Unchecking checkbox');
- module.set.unchecked();
- if( !module.should.ignoreCallbacks() ) {
- settings.onUnchecked.call(input);
- module.trigger.change();
- }
- module.preventDefaultOnInputTarget();
- },
-
- indeterminate: function() {
- if( module.should.allowIndeterminate() ) {
- module.debug('Checkbox is already indeterminate');
- return;
- }
- module.debug('Making checkbox indeterminate');
- module.set.indeterminate();
- if( !module.should.ignoreCallbacks() ) {
- settings.onIndeterminate.call(input);
- module.trigger.change();
- }
- },
-
- determinate: function() {
- if( module.should.allowDeterminate() ) {
- module.debug('Checkbox is already determinate');
- return;
- }
- module.debug('Making checkbox determinate');
- module.set.determinate();
- if( !module.should.ignoreCallbacks() ) {
- settings.onDeterminate.call(input);
- module.trigger.change();
- }
- },
-
- enable: function() {
- if( module.is.enabled() ) {
- module.debug('Checkbox is already enabled');
- return;
- }
- module.debug('Enabling checkbox');
- module.set.enabled();
- if( !module.should.ignoreCallbacks() ) {
- settings.onEnable.call(input);
- // preserve legacy callbacks
- settings.onEnabled.call(input);
- module.trigger.change();
- }
- },
-
- disable: function() {
- if( module.is.disabled() ) {
- module.debug('Checkbox is already disabled');
- return;
- }
- module.debug('Disabling checkbox');
- module.set.disabled();
- if( !module.should.ignoreCallbacks() ) {
- settings.onDisable.call(input);
- // preserve legacy callbacks
- settings.onDisabled.call(input);
- module.trigger.change();
- }
- },
-
- get: {
- radios: function() {
- var
- name = module.get.name()
- ;
- return $('input[name="' + name + '"]').closest(selector.checkbox);
- },
- otherRadios: function() {
- return module.get.radios().not($module);
- },
- name: function() {
- return $input.attr('name');
- }
- },
-
- is: {
- initialLoad: function() {
- return initialLoad;
- },
- radio: function() {
- return ($input.hasClass(className.radio) || $input.attr('type') == 'radio');
- },
- indeterminate: function() {
- return $input.prop('indeterminate') !== undefined && $input.prop('indeterminate');
- },
- checked: function() {
- return $input.prop('checked') !== undefined && $input.prop('checked');
- },
- disabled: function() {
- return $input.prop('disabled') !== undefined && $input.prop('disabled');
- },
- enabled: function() {
- return !module.is.disabled();
- },
- determinate: function() {
- return !module.is.indeterminate();
- },
- unchecked: function() {
- return !module.is.checked();
- }
- },
-
- should: {
- allowCheck: function() {
- if(module.is.determinate() && module.is.checked() && !module.is.initialLoad() ) {
- module.debug('Should not allow check, checkbox is already checked');
- return false;
- }
- if(!module.should.ignoreCallbacks() && settings.beforeChecked.apply(input) === false) {
- module.debug('Should not allow check, beforeChecked cancelled');
- return false;
- }
- return true;
- },
- allowUncheck: function() {
- if(module.is.determinate() && module.is.unchecked() && !module.is.initialLoad() ) {
- module.debug('Should not allow uncheck, checkbox is already unchecked');
- return false;
- }
- if(!module.should.ignoreCallbacks() && settings.beforeUnchecked.apply(input) === false) {
- module.debug('Should not allow uncheck, beforeUnchecked cancelled');
- return false;
- }
- return true;
- },
- allowIndeterminate: function() {
- if(module.is.indeterminate() && !module.is.initialLoad() ) {
- module.debug('Should not allow indeterminate, checkbox is already indeterminate');
- return false;
- }
- if(!module.should.ignoreCallbacks() && settings.beforeIndeterminate.apply(input) === false) {
- module.debug('Should not allow indeterminate, beforeIndeterminate cancelled');
- return false;
- }
- return true;
- },
- allowDeterminate: function() {
- if(module.is.determinate() && !module.is.initialLoad() ) {
- module.debug('Should not allow determinate, checkbox is already determinate');
- return false;
- }
- if(!module.should.ignoreCallbacks() && settings.beforeDeterminate.apply(input) === false) {
- module.debug('Should not allow determinate, beforeDeterminate cancelled');
- return false;
- }
- return true;
- },
- ignoreCallbacks: function() {
- return (initialLoad && !settings.fireOnInit);
- }
- },
-
- can: {
- change: function() {
- return !( $module.hasClass(className.disabled) || $module.hasClass(className.readOnly) || $input.prop('disabled') || $input.prop('readonly') );
- },
- uncheck: function() {
- return (typeof settings.uncheckable === 'boolean')
- ? settings.uncheckable
- : !module.is.radio()
- ;
- }
- },
-
- set: {
- initialLoad: function() {
- initialLoad = true;
- },
- checked: function() {
- module.verbose('Setting class to checked');
- $module
- .removeClass(className.indeterminate)
- .addClass(className.checked)
- ;
- if( module.is.radio() ) {
- module.uncheckOthers();
- }
- if(!module.is.indeterminate() && module.is.checked()) {
- module.debug('Input is already checked, skipping input property change');
- return;
- }
- module.verbose('Setting state to checked', input);
- $input
- .prop('indeterminate', false)
- .prop('checked', true)
- ;
- },
- unchecked: function() {
- module.verbose('Removing checked class');
- $module
- .removeClass(className.indeterminate)
- .removeClass(className.checked)
- ;
- if(!module.is.indeterminate() && module.is.unchecked() ) {
- module.debug('Input is already unchecked');
- return;
- }
- module.debug('Setting state to unchecked');
- $input
- .prop('indeterminate', false)
- .prop('checked', false)
- ;
- },
- indeterminate: function() {
- module.verbose('Setting class to indeterminate');
- $module
- .addClass(className.indeterminate)
- ;
- if( module.is.indeterminate() ) {
- module.debug('Input is already indeterminate, skipping input property change');
- return;
- }
- module.debug('Setting state to indeterminate');
- $input
- .prop('indeterminate', true)
- ;
- },
- determinate: function() {
- module.verbose('Removing indeterminate class');
- $module
- .removeClass(className.indeterminate)
- ;
- if( module.is.determinate() ) {
- module.debug('Input is already determinate, skipping input property change');
- return;
- }
- module.debug('Setting state to determinate');
- $input
- .prop('indeterminate', false)
- ;
- },
- disabled: function() {
- module.verbose('Setting class to disabled');
- $module
- .addClass(className.disabled)
- ;
- if( module.is.disabled() ) {
- module.debug('Input is already disabled, skipping input property change');
- return;
- }
- module.debug('Setting state to disabled');
- $input
- .prop('disabled', 'disabled')
- ;
- },
- enabled: function() {
- module.verbose('Removing disabled class');
- $module.removeClass(className.disabled);
- if( module.is.enabled() ) {
- module.debug('Input is already enabled, skipping input property change');
- return;
- }
- module.debug('Setting state to enabled');
- $input
- .prop('disabled', false)
- ;
- },
- tabbable: function() {
- module.verbose('Adding tabindex to checkbox');
- if( $input.attr('tabindex') === undefined) {
- $input.attr('tabindex', 0);
- }
- }
- },
-
- remove: {
- initialLoad: function() {
- initialLoad = false;
- }
- },
-
- trigger: {
- change: function() {
- var
- events = document.createEvent('HTMLEvents'),
- inputElement = $input[0]
- ;
- if(inputElement) {
- module.verbose('Triggering native change event');
- events.initEvent('change', true, false);
- inputElement.dispatchEvent(events);
- }
- }
- },
-
-
- create: {
- label: function() {
- if($input.prevAll(selector.label).length > 0) {
- $input.prev(selector.label).detach().insertAfter($input);
- module.debug('Moving existing label', $label);
- }
- else if( !module.has.label() ) {
- $label = $('',n++;return i}}}}(jQuery,window,void document),function(P,F,R,O){"use strict";P.isFunction=P.isFunction||function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},F=void 0!==F&&F.Math==Math?F:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")(),P.fn.search=function(x){var C,w=P(this),k=w.selector||"",T=(new Date).getTime(),S=[],D=x,A="string"==typeof D,E=[].slice.call(arguments,1);return P(this).each(function(){var f,u=P.isPlainObject(x)?P.extend(!0,{},P.fn.search.settings,x):P.extend({},P.fn.search.settings),m=u.className,c=u.metadata,i=u.regExp,a=u.fields,g=u.selector,d=u.error,e=u.namespace,o="."+e,t=e+"-module",p=P(this),h=p.find(g.prompt),n=p.find(g.searchButton),r=p.find(g.results),s=p.find(g.result),v=(p.find(g.category),this),l=p.data(t),b=!1,y=!1;f={initialize:function(){f.verbose("Initializing module"),f.get.settings(),f.determine.searchFields(),f.bind.events(),f.set.type(),f.create.results(),f.instantiate()},instantiate:function(){f.verbose("Storing instance of module",f),l=f,p.data(t,f)},destroy:function(){f.verbose("Destroying instance"),p.off(o).removeData(t)},refresh:function(){f.debug("Refreshing selector cache"),h=p.find(g.prompt),n=p.find(g.searchButton),p.find(g.category),r=p.find(g.results),s=p.find(g.result)},refreshResults:function(){r=p.find(g.results),s=p.find(g.result)},bind:{events:function(){f.verbose("Binding events to search"),u.automatic&&(p.on(f.get.inputEvent()+o,g.prompt,f.event.input),h.attr("autocomplete","off")),p.on("focus"+o,g.prompt,f.event.focus).on("blur"+o,g.prompt,f.event.blur).on("keydown"+o,g.prompt,f.handleKeyboard).on("click"+o,g.searchButton,f.query).on("mousedown"+o,g.results,f.event.result.mousedown).on("mouseup"+o,g.results,f.event.result.mouseup).on("click"+o,g.result,f.event.result.click)}},determine:{searchFields:function(){x&&x.searchFields!==O&&(u.searchFields=x.searchFields)}},event:{input:function(){u.searchDelay?(clearTimeout(f.timer),f.timer=setTimeout(function(){f.is.focused()&&f.query()},u.searchDelay)):f.query()},focus:function(){f.set.focus(),u.searchOnFocus&&f.has.minimumCharacters()&&f.query(function(){f.can.show()&&f.showResults()})},blur:function(e){function t(){f.cancel.query(),f.remove.focus(),f.timer=setTimeout(f.hideResults,u.hideDelay)}var n=R.activeElement===this;n||(y=!1,f.resultsClicked?(f.debug("Determining if user action caused search to close"),p.one("click.close"+o,g.results,function(e){f.is.inMessage(e)||b?h.focus():(b=!1,f.is.animating()||f.is.hidden()||t())})):(f.debug("Input blurred without user action, closing results"),t()))},result:{mousedown:function(){f.resultsClicked=!0},mouseup:function(){f.resultsClicked=!1},click:function(e){f.debug("Search result selected");var t=P(this),n=t.find(g.title).eq(0),i=t.is("a[href]")?t:t.find("a[href]").eq(0),o=i.attr("href")||!1,a=i.attr("target")||!1,r=0=u.minCharacters},results:function(){return 0!==r.length&&""!=r.html()}},clear:{cache:function(e){var t=p.data(c.cache);e?e&&t&&t[e]&&(f.debug("Removing value from cache",e),delete t[e],p.data(c.cache,t)):(f.debug("Clearing cache",e),p.removeData(c.cache))}},read:{cache:function(e){var t=p.data(c.cache);return!!u.cache&&(f.verbose("Checking cache for generated html for query",e),"object"==typeof t&&t[e]!==O&&t[e])}},create:{categoryResults:function(e){var n={};return P.each(e,function(e,t){t.category&&(n[t.category]===O?(f.verbose("Creating new category of results",t.category),n[t.category]={name:t.category,results:[t]}):n[t.category].results.push(t))}),n},id:function(e,t){var n,i=e+1;return t!==O?(n=String.fromCharCode(97+t)+i,f.verbose("Creating category result id",n)):(n=i,f.verbose("Creating result id",n)),n},results:function(){0===r.length&&(r=P("").addClass(m.results).appendTo(p))}},inject:{result:function(e,t,n){f.verbose("Injecting result into results");var i=n!==O?r.children().eq(n).children(g.results).first().children(g.result).eq(t):r.children(g.result).eq(t);f.verbose("Injecting results metadata",i),i.data(c.result,e)},id:function(e){f.debug("Injecting unique ids into results");var n=0,i=0;return"category"===u.type?P.each(e,function(e,t){0 as a polyfill.'},metadata:{cache:"cache",results:"results",result:"result"},regExp:{escape:/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,beginsWith:"(?:s|^)"},fields:{categories:"results",categoryName:"name",categoryResults:"results",description:"description",image:"image",price:"price",results:"results",title:"title",url:"url",action:"action",actionText:"text",actionURL:"url"},selector:{prompt:".prompt",searchButton:".search.button",results:".results",message:".results > .message",category:".category",result:".result",title:".title, .name"},templates:{escape:function(e,t){if(t)return e;var n={"<":"<",">":">",'"':""","'":"'","`":"`"};return/[&<>"'`]/.test(e)?(e=e.replace(/&(?![a-z0-9#]{1,6};)/,"&")).replace(/[<>"'`]/g,function(e){return n[e]}):e},message:function(e,t,n){var i="";return e!==O&&t!==O&&(i+='',n&&(i+='"),i+='
'+e+"
",i+="
"),i},category:function(e,n,i){var o="",a=P.fn.search.settings.templates.escape;return e[n.categoryResults]!==O&&(P.each(e[n.categoryResults],function(e,t){t[n.results]!==O&&0',t[n.categoryName]!==O&&(o+=''+a(t[n.categoryName],i)+"
"),o+='',P.each(t.results,function(e,t){t[n.url]?o+='
':o+='',t[n.image]!==O&&(o+=''),o+='',t[n.price]!==O&&(o+='
'+a(t[n.price],i)+"
"),t[n.title]!==O&&(o+='
'+a(t[n.title],i)+"
"),t[n.description]!==O&&(o+='
'+a(t[n.description],i)+"
"),o+="
",o+=""}),o+="
",o+="")}),e[n.action]&&(!1===n.actionURL?o+='
'+a(e[n.action][n.actionText],i)+"
":o+='
'+a(e[n.action][n.actionText],i)+""),o)},standard:function(e,n,i){var o="",a=P.fn.search.settings.templates.escape;return e[n.results]!==O&&(P.each(e[n.results],function(e,t){t[n.url]?o+='
':o+='',t[n.image]!==O&&(o+=''),o+='',t[n.price]!==O&&(o+='
'+a(t[n.price],i)+"
"),t[n.title]!==O&&(o+='
'+a(t[n.title],i)+"
"),t[n.description]!==O&&(o+='
'+a(t[n.description],i)+"
"),o+="
",o+=""}),e[n.action]&&(!1===n.actionURL?o+='
'+a(e[n.action][n.actionText],i)+"
":o+='
'+a(e[n.action][n.actionText],i)+""),o)}}}}(jQuery,window,document),function(A,e,E,P){"use strict";A.isFunction=A.isFunction||function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},e=void 0!==e&&e.Math==Math?e:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")(),A.fn.shape=function(b){var y,x=A(this),C=(new Date).getTime(),w=[],k=b,T="string"==typeof k,S=[].slice.call(arguments,1),D=e.requestAnimationFrame||e.mozRequestAnimationFrame||e.webkitRequestAnimationFrame||e.msRequestAnimationFrame||function(e){setTimeout(e,0)};return x.each(function(){var i,o,r,t=x.selector||"",s=A.isPlainObject(b)?A.extend(!0,{},A.fn.shape.settings,b):A.extend({},A.fn.shape.settings),e=s.namespace,l=s.selector,n=s.error,c=s.className,a="."+e,u="module-"+e,d=A(this),f=d.find(">"+l.sides),m=f.find(">"+l.side),g=!1,p=this,h=d.data(u);if(r={initialize:function(){r.verbose("Initializing module for",p),r.set.defaultSide(),r.instantiate()},instantiate:function(){r.verbose("Storing instance of module",r),h=r,d.data(u,h)},destroy:function(){r.verbose("Destroying previous module for",p),d.removeData(u).off(a)},refresh:function(){r.verbose("Refreshing selector cache for",p),d=A(p),f=A(this).find(l.sides),m=A(this).find(l.side)},repaint:function(){r.verbose("Forcing repaint event");(f[0]||E.createElement("div")).offsetWidth},animate:function(e,t){r.verbose("Animating box with properties",e),t=t||function(e){r.verbose("Executing animation callback"),e!==P&&e.stopPropagation(),r.reset(),r.set.active()},s.beforeChange.call(o[0]),r.get.transitionEvent()?(r.verbose("Starting CSS animation"),d.addClass(c.animating),f.css(e).one(r.get.transitionEvent(),t),r.set.duration(s.duration),D(function(){d.addClass(c.animating),i.addClass(c.hidden)})):t()},queue:function(e){r.debug("Queueing animation of",e),f.one(r.get.transitionEvent(),function(){r.debug("Executing queued animation"),setTimeout(function(){d.shape(e)},0)})},reset:function(){r.verbose("Animating states reset"),d.removeClass(c.animating).attr("style","").removeAttr("style"),f.attr("style","").removeAttr("style"),m.attr("style","").removeAttr("style").removeClass(c.hidden),o.removeClass(c.animating).attr("style","").removeAttr("style")},is:{complete:function(){return m.filter("."+c.active)[0]==o[0]},animating:function(){return d.hasClass(c.animating)},hidden:function(){return 0
"+l.sides+">"+l.side),n=t.filter("."+s.className.active),i=g?t.eq(g):0=b.scrollHeight&&(b.scrollTop=b.scrollHeight-b.offsetHeight-1)},scroll:function(e){0===M(e.target).closest(n.sidebar).length&&e.preventDefault()}},bind:{clickaway:function(){c.verbose("Adding clickaway events to context",p),p.on("click"+s,c.event.clickaway).on("touchend"+s,c.event.clickaway)},scrollLock:function(){u.scrollLock&&(c.debug("Disabling page scroll"),w.on("DOMMouseScroll"+s,c.event.scroll)),c.verbose("Adding events to contain sidebar scroll"),k.on("touchmove"+s,c.event.touch),g.on("scroll"+f,c.event.containScroll)}},unbind:{clickaway:function(){c.verbose("Removing clickaway events from context",p),p.off(s)},scrollLock:function(){c.verbose("Removing scroll lock from page"),k.off(s),w.off(s),g.off("scroll"+f)}},add:{inlineCSS:function(){var e,t=c.cache.width||g.outerWidth(),n=c.cache.height||g.outerHeight(),i=c.is.rtl(),o=c.get.direction(),a={left:t,right:-t,top:n,bottom:-n};i&&(c.verbose("RTL detected, flipping widths"),a.left=-t,a.right=t),e="").appendTo(S),c.debug("Adding sizing css to head",r)}},refresh:function(){c.verbose("Refreshing selector cache"),p=M(u.context),h=p.children(n.sidebar),v=p.children(n.pusher),p.children(n.fixed),c.clear.cache()},refreshSidebars:function(){c.verbose("Refreshing other sidebars"),h=p.children(n.sidebar)},repaint:function(){c.verbose("Forcing repaint event"),b.style.display="none";b.offsetHeight;b.scrollTop=b.scrollTop,b.style.display=""},setup:{cache:function(){c.cache={width:g.outerWidth(),height:g.outerHeight()}},layout:function(){0===p.children(n.pusher).length&&(c.debug("Adding wrapper element for sidebar"),c.error(d.pusher),v=M(''),p.children().not(n.omitted).not(h).wrapAll(v),c.refresh()),0!==g.nextAll(n.pusher).length&&g.nextAll(n.pusher)[0]===v[0]||(c.debug("Moved sidebar to correct parent element"),c.error(d.movedSidebar,b),g.detach().prependTo(p),c.refresh()),c.clear.cache(),c.set.pushable(),c.set.direction()}},attachEvents:function(e,t){var n=M(e);t=M.isFunction(c[t])?c[t]:c.toggle,0d.cache.context.height)return d.reset(),void d.error(r.elementSize,c)},bind:{events:function(){u.on("load"+s,d.event.load).on("resize"+s,d.event.resize),m.off("scroll"+s).on("scroll"+s,d.event.scroll).on("scrollchange"+s,d.event.scrollchange)}},event:{changed:function(e){clearTimeout(d.timer),d.timer=setTimeout(function(){d.verbose("DOM tree modified, updating sticky menu",e),d.refresh()},100)},documentChanged:function(e){[].forEach.call(e,function(e){e.removedNodes&&[].forEach.call(e.removedNodes,function(e){(e==h||0");return e.addClass(o.supported),e.css("position").match("sticky")}},save:{lastScroll:function(e){d.lastScroll=e},elementScroll:function(e){d.elementScroll=e},positions:function(){var e={height:m.height()},t={margin:{top:parseInt(c.css("margin-top"),10),bottom:parseInt(c.css("margin-bottom"),10)},offset:c.offset(),width:c.outerWidth(),height:c.outerHeight()},n={offset:i.offset(),height:i.outerHeight()};d.is.standardScroll()||(d.debug("Non-standard scroll. Removing scroll offset from element offset"),e.top=m.scrollTop(),e.left=m.scrollLeft(),t.offset.top+=e.top,n.offset.top+=e.top,t.offset.left+=e.left,n.offset.left+=e.left),d.cache={fits:t.height+f.offset<=e.height,sameHeight:t.height==n.height,scrollContext:{height:e.height},element:{margin:t.margin,top:t.offset.top-t.margin.top,left:t.offset.left,width:t.width,height:t.height,bottom:t.offset.top+t.height},context:{top:n.offset.top,height:n.height,bottom:n.offset.top+n.height}},d.set.containerSize(),d.stick(),d.debug("Caching element positions",d.cache)}},get:{direction:function(e){var t="down";return e=e||m.scrollTop(),d.lastScroll!==E&&(d.lastScrolle&&(t="up")),t},scrollChange:function(e){return e=e||m.scrollTop(),d.lastScroll?e-d.lastScroll:0},currentElementScroll:function(){return d.elementScroll?d.elementScroll:d.is.top()?Math.abs(parseInt(c.css("top"),10))||0:Math.abs(parseInt(c.css("bottom"),10))||0},elementScroll:function(e){e=e||m.scrollTop();var t=d.cache.element,n=d.cache.scrollContext,i=d.get.scrollChange(e),o=t.height-n.height+f.offset,a=d.get.currentElementScroll(),r=a+i;return a=d.cache.fits||r<0?0:of.jitter&&(d.debug("Context has padding, specifying exact height for container",d.cache.context.height),t.css({height:d.cache.context.height}))},minimumSize:function(){var e=d.cache.element;t.css("min-height",e.height)},scroll:function(e){d.debug("Setting scroll on element",e),d.elementScroll!=e&&(d.is.top()&&c.css("bottom","").css("top",-e),d.is.bottom()&&c.css("top","").css("bottom",e))},size:function(){0!==d.cache.element.height&&0!==d.cache.element.width&&(h.style.setProperty("width",d.cache.element.width+"px","important"),h.style.setProperty("height",d.cache.element.height+"px","important"))}},is:{standardScroll:function(){return m[0]==D},top:function(){return c.hasClass(o.top)},bottom:function(){return c.hasClass(o.bottom)},initialPosition:function(){return!d.is.fixed()&&!d.is.bound()},hidden:function(){return!c.is(":visible")},bound:function(){return c.hasClass(o.bound)},fixed:function(){return c.hasClass(o.fixed)}},stick:function(e){var t=e||m.scrollTop(),n=d.cache,i=n.fits,o=n.sameHeight,a=n.element,r=n.scrollContext,s=n.context,l=d.is.bottom()&&f.pushing?f.bottomOffset:f.offset,c=(e={top:t+l,bottom:t+l+r.height},i?0:d.get.elementScroll(e.top)),u=!i;0===a.height||o||(d.is.initialPosition()?e.top>=s.bottom?(d.debug("Initial element position is bottom of container"),d.bindBottom()):e.top>a.top&&(a.height+e.top-c>=s.bottom?(d.debug("Initial element position is bottom of container"),d.bindBottom()):(d.debug("Initial element position is fixed"),d.fixTop())):d.is.fixed()?d.is.top()?e.top<=a.top?(d.debug("Fixed element reached top of container"),d.setInitialPosition()):a.height+e.top-c>=s.bottom?(d.debug("Fixed element reached bottom of container"),d.bindBottom()):u&&(d.set.scroll(c),d.save.lastScroll(e.top),d.save.elementScroll(c)):d.is.bottom()&&(e.bottom-a.height<=a.top?(d.debug("Bottom fixed rail has reached top of container"),d.setInitialPosition()):e.bottom>=s.bottom?(d.debug("Bottom fixed rail has reached bottom of container"),d.bindBottom()):u&&(d.set.scroll(c),d.save.lastScroll(e.top),d.save.elementScroll(c))):d.is.bottom()&&(e.top<=a.top?(d.debug("Jumped from bottom fixed to top fixed, most likely used home/end button"),d.setInitialPosition()):f.pushing?d.is.bound()&&e.bottom<=s.bottom&&(d.debug("Fixing bottom attached element to bottom of browser."),d.fixBottom()):d.is.bound()&&e.top<=s.bottom-a.height&&(d.debug("Fixing bottom attached element to top of browser."),d.fixTop())))},bindTop:function(){d.debug("Binding element to top of parent container"),d.remove.offset(),c.css({left:"",top:"",marginBottom:""}).removeClass(o.fixed).removeClass(o.bottom).addClass(o.bound).addClass(o.top),f.onTop.call(h),f.onUnstick.call(h)},bindBottom:function(){d.debug("Binding element to bottom of parent container"),d.remove.offset(),c.css({left:"",top:""}).removeClass(o.fixed).removeClass(o.top).addClass(o.bound).addClass(o.bottom),f.onBottom.call(h),f.onUnstick.call(h)},setInitialPosition:function(){d.debug("Returning to initial position"),d.unfix(),d.unbind()},fixTop:function(){d.debug("Fixing element to top of page"),f.setSize&&d.set.size(),d.set.minimumSize(),d.set.offset(),c.css({left:d.cache.element.left,bottom:"",marginBottom:""}).removeClass(o.bound).removeClass(o.bottom).addClass(o.fixed).addClass(o.top),f.onStick.call(h)},fixBottom:function(){d.debug("Sticking element to bottom of page"),f.setSize&&d.set.size(),d.set.minimumSize(),d.set.offset(),c.css({left:d.cache.element.left,bottom:"",marginBottom:""}).removeClass(o.bound).removeClass(o.top).addClass(o.fixed).addClass(o.bottom),f.onStick.call(h)},unbind:function(){d.is.bound()&&(d.debug("Removing container bound position on element"),d.remove.offset(),c.removeClass(o.bound).removeClass(o.top).removeClass(o.bottom))},unfix:function(){d.is.fixed()&&(d.debug("Removing fixed position on element"),d.remove.minimumSize(),d.remove.offset(),c.removeClass(o.fixed).removeClass(o.top).removeClass(o.bottom),f.onUnstick.call(h))},reset:function(){d.debug("Resetting elements position"),d.unbind(),d.unfix(),d.resetCSS(),d.remove.offset(),d.remove.lastScroll()},resetCSS:function(){c.css({width:"",height:""}),t.css({height:""})},setting:function(e,t){if(S.isPlainObject(e))S.extend(!0,f,e);else{if(t===E)return f[e];f[e]=t}},internal:function(e,t){if(S.isPlainObject(e))S.extend(!0,d,e);else{if(t===E)return d[e];d[e]=t}},debug:function(){!f.silent&&f.debug&&(f.performance?d.performance.log(arguments):(d.debug=Function.prototype.bind.call(console.info,console,f.name+":"),d.debug.apply(console,arguments)))},verbose:function(){!f.silent&&f.verbose&&f.debug&&(f.performance?d.performance.log(arguments):(d.verbose=Function.prototype.bind.call(console.info,console,f.name+":"),d.verbose.apply(console,arguments)))},error:function(){f.silent||(d.error=Function.prototype.bind.call(console.error,console,f.name+":"),d.error.apply(console,arguments))},performance:{log:function(e){var t,n;f.performance&&(n=(t=(new Date).getTime())-(x||t),x=t,C.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:h,"Execution Time":n})),clearTimeout(d.performance.timer),d.performance.timer=setTimeout(d.performance.display,0)},display:function(){var e=f.name+":",n=0;x=!1,clearTimeout(d.performance.timer),S.each(C,function(e,t){n+=t["Execution Time"]}),e+=" "+n+"ms",y&&(e+=" '"+y+"'"),(console.group!==E||console.table!==E)&&0"},regExp:{escape:/[-[\]{}()*+?.,\\^$|#\s:=@]/g},metadata:{tab:"tab",loaded:"loaded",promise:"promise"},className:{loading:"loading",active:"active"},selector:{tabs:".ui.tab",ui:".ui"}}}(jQuery,window,document),function(P,e,F){"use strict";P.isFunction=P.isFunction||function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},e=void 0!==e&&e.Math==Math?e:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")(),P.fn.toast=function(C){var w,e=P(this),k=e.selector||"",T=(new Date).getTime(),S=[],D=C,A="string"==typeof D,E=[].slice.call(arguments,1);return e.each(function(){var i,o,a,r,s,l,c,u,d=P.isPlainObject(C)?P.extend(!0,{},P.fn.toast.settings,C):P.extend({},P.fn.toast.settings),f=d.className,e=d.selector,m=d.error,t=d.namespace,g=d.fields,n="."+t,p=t+"-module",h=P(this),v=d.context?P(d.context):P("body"),b=h.hasClass("toast")||h.hasClass("message")||h.hasClass("card"),y=this,x=b?h.data(p):F;u={initialize:function(){u.verbose("Initializing element"),u.has.container()||u.create.container(),(b||""!==d.message||""!==d.title||""!==u.get.iconClass()||d.showImage||u.has.configActions())&&("string"==typeof d.showProgress&&-1!==[f.top,f.bottom].indexOf(d.showProgress)||(d.showProgress=!1),u.create.toast(),d.closeOnClick&&(d.closeIcon||0",{class:d.position+" "+f.container}))},toast:function(){if(i=P("",{class:f.box}),b)o=d.cloneModule?h.clone().removeAttr("id"):h,c=o.find("> i"+u.helpers.toClass(f.close)),d.closeIcon=0");var e=P("",{class:f.content}),t=u.get.iconClass();""!==t&&o.append(P("",{class:t+" "+f.icon})),d.showImage&&o.append(P("
",{class:f.image+" "+d.classImage,src:d.showImage})),""!==d.title&&e.append(P("",{class:f.title,text:d.title})),e.append(P("",{html:u.helpers.escape(d.message,d.preserveHTML)})),o.addClass(d.class+" "+f.toast).append(e),o.css("opacity",d.opacity),d.closeIcon&&((c=P("",{class:f.close+" "+("string"==typeof d.closeIcon?d.closeIcon:"")})).hasClass(f.left)?o.prepend(c):o.append(c))}if(o.hasClass(f.compact)&&(d.compact=!0),o.hasClass("card")&&(d.compact=!1),a=o.find(".actions"),u.has.configActions()&&(0===a.length&&(a=P("",{class:f.actions+" "+(d.classActions||"")}).appendTo(o)),o.hasClass("card")&&!a.hasClass(f.attached)&&(a.addClass(f.extraContent),a.hasClass(f.vertical)&&(a.removeClass(f.vertical),u.error(m.verticalCard))),d.actions.forEach(function(e){var t=e[g.icon]?'':"",n=u.helpers.escape(e[g.text]||"",d.preserveHTML),i=u.helpers.deQuote(e[g.class]||""),o=e[g.click]&&P.isFunction(e[g.click])?e[g.click]:function(){};a.append(P("",{html:t+n,class:f.button+" "+i,click:function(){!1!==o.call(y,h)&&u.close()}}))})),a&&a.hasClass(f.vertical)&&o.addClass(f.vertical),0",{class:f.vertical+" "+f.attached+" "+(d.compact?f.compact:"")})),a.hasClass(f.left)?o.addClass(f.left).parent().addClass(f.left).prepend(a):o.parent().append(a)):a.hasClass(f.top)?(i.prepend(a),o.addClass(f.bottom)):(i.append(a),o.addClass(f.top))),h!==o&&(y=(h=o)[0]),0",{class:f.progress+" "+(d.classProgress||d.class),"data-percent":""}),d.classProgress||(o.hasClass("toast")&&!o.hasClass(f.inverted)?r.addClass(f.inverted):r.removeClass(f.inverted)),s=P("",{class:"bar "+(d.progressUp?"up ":"down ")+n}),r.addClass(d.showProgress).append(s),r.hasClass(f.top)?i.prepend(r):i.append(r),s.css("animation-duration",d.displayTime/1e3+"s")),(l=P("",{class:"wait "+n})).css("animation-duration",d.displayTime/1e3+"s"),l.appendTo(o)}d.compact&&(i.addClass(f.compact),o.addClass(f.compact),r&&r.addClass(f.compact)),d.newestOnTop?i.prependTo(u.get.container()):i.appendTo(u.get.container())}},bind:{events:function(){u.debug("Binding events to toast"),(d.closeOnClick||d.closeIcon)&&(d.closeIcon?c:o).on("click"+n,u.event.click),l&&l.on("animationend"+n,u.close),i.on("click"+n,e.approve,u.event.approve).on("click"+n,e.deny,u.event.deny)}},unbind:{events:function(){u.debug("Unbinding events to toast"),(d.closeOnClick||d.closeIcon)&&(d.closeIcon?c:o).off("click"+n),l&&l.off("animationend"+n),i.off("click"+n)}},animate:{show:function(e){e=P.isFunction(e)?e:function(){},d.transition&&u.can.useElement("transition")&&h.transition("is supported")&&(u.set.visible(),i.transition({animation:d.transition.showMethod+" in",queue:!1,debug:d.debug,verbose:d.verbose,duration:d.transition.showDuration,onComplete:function(){e.call(i,y),d.onVisible.call(i,y)}}))},close:function(e){e=P.isFunction(e)?e:function(){},u.debug("Closing toast"),!1!==d.onHide.call(i,y)?d.transition&&P.fn.transition!==F&&h.transition("is supported")?i.transition({animation:d.transition.hideMethod+" out",queue:!1,duration:d.transition.hideDuration,debug:d.debug,verbose:d.verbose,interval:50,onBeforeHide:function(e){e=P.isFunction(e)?e:function(){},""!==d.transition.closeEasing?(i.css("opacity",0),i.wrap("").parent().slideUp(500,d.transition.closeEasing,function(){i&&(i.parent().remove(),e.call(i))})):e.call(i)},onComplete:function(){e.call(i,y),d.onHidden.call(i,y),u.destroy()}}):u.error(m.noTransition):u.debug("onHide callback returned false, cancelling toast animation")},pause:function(){l.css("animationPlayState","paused"),s&&s.css("animationPlayState","paused")},continue:function(){l.css("animationPlayState","running"),s&&s.css("animationPlayState","running")}},has:{container:function(){return u.verbose("Determining if there is already a container"),0":">",'"':""","'":"'","`":"`"};return/[&<>"'`]/.test(e)?(e=e.replace(/&(?![a-z0-9#]{1,6};)/,"&")).replace(/[<>"'`]/g,function(e){return n[e]}):e}},can:{useElement:function(e){return P.fn[e]!==F||(u.error(m.noElement.replace("{element}",e)),!1)}},setting:function(e,t){if(u.debug("Changing setting",e,t),P.isPlainObject(e))P.extend(!0,d,e);else{if(t===F)return d[e];P.isPlainObject(d[e])?P.extend(!0,d[e],t):d[e]=t}},internal:function(e,t){if(P.isPlainObject(e))P.extend(!0,u,e);else{if(t===F)return u[e];u[e]=t}},debug:function(){!d.silent&&d.debug&&(d.performance?u.performance.log(arguments):(u.debug=Function.prototype.bind.call(console.info,console,d.name+":"),u.debug.apply(console,arguments)))},verbose:function(){!d.silent&&d.verbose&&d.debug&&(d.performance?u.performance.log(arguments):(u.verbose=Function.prototype.bind.call(console.info,console,d.name+":"),u.verbose.apply(console,arguments)))},error:function(){d.silent||(u.error=Function.prototype.bind.call(console.error,console,d.name+":"),u.error.apply(console,arguments))},performance:{log:function(e){var t,n;d.performance&&(n=(t=(new Date).getTime())-(T||t),T=t,S.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:y,"Execution Time":n})),clearTimeout(u.performance.timer),u.performance.timer=setTimeout(u.performance.display,500)},display:function(){var e=d.name+":",n=0;T=!1,clearTimeout(u.performance.timer),P.each(S,function(e,t){n+=t["Execution Time"]}),e+=" "+n+"ms",k&&(e+=" '"+k+"'"),(console.group!==F||console.table!==F)&&0").addClass(t).insertAfter(m)).addClass(s).removeClass(d.inward).removeClass(d.outward).addClass(d.animating).addClass(d.transition).css("animationName"),a=i.addClass(d.inward).css("animationName"),c||(c=i.attr("class",t).removeAttr("style").removeClass(d.hidden).removeClass(d.visible).show().css("display"),f.verbose("Determining final display state",c),f.save.displayType(c)),i.remove(),o!=a)f.debug("Direction exists for animation",s),r=!0;else{if("none"==o||!o)return void f.debug("No animation defined in css",s);f.debug("Static animation found",s,c),r=!1}f.save.transitionExists(s,r)}return l!==k?l:r},animate:function(){return f.can.transition()!==k}},is:{animating:function(){return m.hasClass(d.animating)},inward:function(){return m.hasClass(d.inward)},outward:function(){return m.hasClass(d.outward)},looping:function(){return m.hasClass(d.looping)},occurring:function(e){return e="."+(e=e||u.animation).replace(" ","."),0=e.length&&E.isFunction(t)&&t()};n--;)(a=F.createElement("img")).onload=r,a.onerror=r,a.src=e[n],o.push(a)},enableCallbacks:function(){s.debug("Allowing callbacks to occur"),v=!1},disableCallbacks:function(){s.debug("Disabling all callbacks temporarily"),v=!0},should:{trackChanges:function(){return T?(s.debug("One time query, no need to bind events"),!1):(s.debug("Callbacks being attached"),!0)}},setup:{cache:function(){s.cache={occurred:{},screen:{},element:{}}},image:function(){var e=f.data(r.src);e&&(s.verbose("Lazy loading image",e),o.once=!0,o.observeChanges=!1,o.onOnScreen=function(){s.debug("Image on screen",h),s.precache(e,function(){s.set.image(e,function(){++A==D&&o.onAllLoaded.call(this),o.onLoad.call(this)})})})},fixed:function(){s.debug("Setting up fixed"),o.once=!1,o.observeChanges=!1,o.initialCheck=!0,o.refreshOnLoad=!0,b.transition||(o.transition=!1),s.create.placeholder(),s.debug("Added placeholder",e),o.onTopPassed=function(){s.debug("Element passed, adding fixed position",f),s.show.placeholder(),s.set.fixed(),o.transition&&E.fn.transition!==R&&f.transition(o.transition,o.duration)},o.onTopPassedReverse=function(){s.debug("Element returned to position, removing fixed",f),s.hide.placeholder(),s.remove.fixed()}}},create:{placeholder:function(){s.verbose("Creating fixed position placeholder"),e=f.clone(!1).css("display","none").addClass(i.placeholder).insertAfter(f)}},show:{placeholder:function(){s.verbose("Showing placeholder"),e.css("display","block").css("visibility","hidden")}},hide:{placeholder:function(){s.verbose("Hiding placeholder"),e.css("display","none").css("visibility","")}},set:{fixed:function(){s.verbose("Setting element to fixed position"),f.addClass(i.fixed).css({position:"fixed",top:o.offset+"px",left:"auto",zIndex:o.zIndex}),o.onFixed.call(h)},image:function(e,t){if(f.attr("src",e),o.transition)if(E.fn.transition!==R){if(f.hasClass(i.visible))return void s.debug("Transition already occurred on this image, skipping animation");f.transition(o.transition,o.duration,t)}else f.fadeIn(o.duration,t);else f.show()}},is:{onScreen:function(){return s.get.elementCalculations().onScreen},offScreen:function(){return s.get.elementCalculations().offScreen},visible:function(){return!(!s.cache||!s.cache.element)&&!(0===s.cache.element.width&&0===s.cache.element.offset.top)},verticallyScrollableContext:function(){var e=m.get(0)!==P&&m.css("overflow-y");return"auto"==e||"scroll"==e},horizontallyScrollableContext:function(){var e=m.get(0)!==P&&m.css("overflow-x");return"auto"==e||"scroll"==e}},refresh:function(){s.debug("Refreshing constants (width/height)"),"fixed"==o.type&&s.resetFixed(),s.reset(),s.save.position(),o.checkOnRefresh&&s.checkVisibility(),o.onRefresh.call(h)},resetFixed:function(){s.remove.fixed(),s.remove.occurred()},reset:function(){s.verbose("Resetting all cached values"),E.isPlainObject(s.cache)&&(s.cache.screen={},s.cache.element={})},checkVisibility:function(e){s.verbose("Checking visibility of element",s.cache.element),!v&&s.is.visible()&&(s.save.scroll(e),s.save.calculations(),s.passed(),s.passingReverse(),s.topVisibleReverse(),s.bottomVisibleReverse(),s.topPassedReverse(),s.bottomPassedReverse(),s.onScreen(),s.offScreen(),s.passing(),s.topVisible(),s.bottomVisible(),s.topPassed(),s.bottomPassed(),o.onUpdate&&o.onUpdate.call(h,s.get.elementCalculations()))},passed:function(e,t){var n=s.get.elementCalculations();if(e&&t)o.onPassed[e]=t;else{if(e!==R)return s.get.pixelsPassed(e)>n.pixelsPassed;n.passing&&E.each(o.onPassed,function(e,t){n.bottomVisible||n.pixelsPassed>s.get.pixelsPassed(e)?s.execute(t,e):o.once||s.remove.occurred(t)})}},onScreen:function(e){var t=s.get.elementCalculations(),n=e||o.onOnScreen;if(e&&(s.debug("Adding callback for onScreen",e),o.onOnScreen=e),t.onScreen?s.execute(n,"onScreen"):o.once||s.remove.occurred("onScreen"),e!==R)return t.onOnScreen},offScreen:function(e){var t=s.get.elementCalculations(),n=e||o.onOffScreen;if(e&&(s.debug("Adding callback for offScreen",e),o.onOffScreen=e),t.offScreen?s.execute(n,"offScreen"):o.once||s.remove.occurred("offScreen"),e!==R)return t.onOffScreen},passing:function(e){var t=s.get.elementCalculations(),n=e||o.onPassing;if(e&&(s.debug("Adding callback for passing",e),o.onPassing=e),t.passing?s.execute(n,"passing"):o.once||s.remove.occurred("passing"),e!==R)return t.passing},topVisible:function(e){var t=s.get.elementCalculations(),n=e||o.onTopVisible,i="topVisible";if(e&&(s.debug("Adding callback for top visible",e),o.onTopVisible=e),t.topVisible?s.execute(n,i):o.once||s.remove.occurred(i),e===R)return t.topVisible},bottomVisible:function(e){var t=s.get.elementCalculations(),n=e||o.onBottomVisible,i="bottomVisible";if(e&&(s.debug("Adding callback for bottom visible",e),o.onBottomVisible=e),t.bottomVisible?s.execute(n,i):o.once||s.remove.occurred(i),e===R)return t.bottomVisible},topPassed:function(e){var t=s.get.elementCalculations(),n=e||o.onTopPassed;if(e&&(s.debug("Adding callback for top passed",e),o.onTopPassed=e),t.topPassed?s.execute(n,"topPassed"):o.once||s.remove.occurred("topPassed"),e===R)return t.topPassed},bottomPassed:function(e){var t=s.get.elementCalculations(),n=e||o.onBottomPassed,i="bottomPassed";if(e&&(s.debug("Adding callback for bottom passed",e),o.onBottomPassed=e),t.bottomPassed?s.execute(n,i):o.once||s.remove.occurred(i),e===R)return t.bottomPassed},passingReverse:function(e){var t=s.get.elementCalculations(),n=e||o.onPassingReverse,i="passingReverse";if(e&&(s.debug("Adding callback for passing reverse",e),o.onPassingReverse=e),t.passing?o.once||s.remove.occurred(i):s.get.occurred("passing")&&s.execute(n,i),e!==R)return!t.passing},topVisibleReverse:function(e){var t=s.get.elementCalculations(),n=e||o.onTopVisibleReverse,i="topVisibleReverse";if(e&&(s.debug("Adding callback for top visible reverse",e),o.onTopVisibleReverse=e),t.topVisible?o.once||s.remove.occurred(i):s.get.occurred("topVisible")&&s.execute(n,i),e===R)return!t.topVisible},bottomVisibleReverse:function(e){var t=s.get.elementCalculations(),n=e||o.onBottomVisibleReverse,i="bottomVisibleReverse";if(e&&(s.debug("Adding callback for bottom visible reverse",e),o.onBottomVisibleReverse=e),t.bottomVisible?o.once||s.remove.occurred(i):s.get.occurred("bottomVisible")&&s.execute(n,i),e===R)return!t.bottomVisible},topPassedReverse:function(e){var t=s.get.elementCalculations(),n=e||o.onTopPassedReverse,i="topPassedReverse";if(e&&(s.debug("Adding callback for top passed reverse",e),o.onTopPassedReverse=e),t.topPassed?o.once||s.remove.occurred(i):s.get.occurred("topPassed")&&s.execute(n,i),e===R)return!t.onTopPassed},bottomPassedReverse:function(e){var t=s.get.elementCalculations(),n=e||o.onBottomPassedReverse,i="bottomPassedReverse";if(e&&(s.debug("Adding callback for bottom passed reverse",e),o.onBottomPassedReverse=e),t.bottomPassed?o.once||s.remove.occurred(i):s.get.occurred("bottomPassed")&&s.execute(n,i),e===R)return!t.bottomPassed},execute:function(e,t){var n=s.get.elementCalculations(),i=s.get.screenCalculations();(e=e||!1)&&(o.continuous?(s.debug("Callback being called continuously",t,n),e.call(h,n,i)):s.get.occurred(t)||(s.debug("Conditions met",t,n),e.call(h,n,i))),s.save.occurred(t)},remove:{fixed:function(){s.debug("Removing fixed position"),f.removeClass(i.fixed).css({position:"",top:"",left:"",zIndex:""}),o.onUnfixed.call(h)},placeholder:function(){s.debug("Removing placeholder content"),e&&e.remove()},occurred:function(e){if(e){var t=s.cache.occurred;t[e]!==R&&!0===t[e]&&(s.debug("Callback can now be called again",e),s.cache.occurred[e]=!1)}else s.cache.occurred={}}},save:{calculations:function(){s.verbose("Saving all calculations necessary to determine positioning"),s.save.direction(),s.save.screenCalculations(),s.save.elementCalculations()},occurred:function(e){e&&(s.cache.occurred[e]!==R&&!0===s.cache.occurred[e]||(s.verbose("Saving callback occurred",e),s.cache.occurred[e]=!0))},scroll:function(e){e=e+o.offset||m.scrollTop()+o.offset,s.cache.scroll=e},direction:function(){var e,t=s.get.scroll(),n=s.get.lastScroll();return e=n=t.top,t.bottomPassed=e.top>=t.bottom,t.topVisible=e.bottom>=t.top&&!t.topPassed,t.bottomVisible=e.bottom>=t.bottom&&!t.bottomPassed,t.pixelsPassed=0,t.percentagePassed=0,t.onScreen=(t.topVisible||t.passing)&&!t.bottomPassed,t.passing=t.topPassed&&!t.bottomPassed,t.offScreen=!t.onScreen,t.passing&&(t.pixelsPassed=e.top-t.top,t.percentagePassed=(e.top-t.top)/t.height),s.cache.element=t,s.verbose("Updated element calculations",t),t},screenCalculations:function(){var e=s.get.scroll();return s.save.direction(),s.cache.screen.top=e,s.cache.screen.bottom=e+s.cache.screen.height,s.cache.screen},screenSize:function(){s.verbose("Saving window position"),s.cache.screen={height:m.height()}},position:function(){s.save.screenSize(),s.save.elementPosition()}},get:{pixelsPassed:function(e){var t=s.get.elementCalculations();return-1
-
-
diff --git a/src-angular/assets/semantic/dist/themes/basic/assets/fonts/icons.ttf b/src-angular/assets/semantic/dist/themes/basic/assets/fonts/icons.ttf
deleted file mode 100644
index 318a264..0000000
Binary files a/src-angular/assets/semantic/dist/themes/basic/assets/fonts/icons.ttf and /dev/null differ
diff --git a/src-angular/assets/semantic/dist/themes/basic/assets/fonts/icons.woff b/src-angular/assets/semantic/dist/themes/basic/assets/fonts/icons.woff
deleted file mode 100644
index baba1b5..0000000
Binary files a/src-angular/assets/semantic/dist/themes/basic/assets/fonts/icons.woff and /dev/null differ
diff --git a/src-angular/assets/semantic/dist/themes/default/assets/fonts/brand-icons.eot b/src-angular/assets/semantic/dist/themes/default/assets/fonts/brand-icons.eot
deleted file mode 100644
index baf4057..0000000
Binary files a/src-angular/assets/semantic/dist/themes/default/assets/fonts/brand-icons.eot and /dev/null differ
diff --git a/src-angular/assets/semantic/dist/themes/default/assets/fonts/brand-icons.svg b/src-angular/assets/semantic/dist/themes/default/assets/fonts/brand-icons.svg
deleted file mode 100644
index 843c1c7..0000000
--- a/src-angular/assets/semantic/dist/themes/default/assets/fonts/brand-icons.svg
+++ /dev/null
@@ -1,3535 +0,0 @@
-
-
-
-
diff --git a/src-angular/assets/semantic/dist/themes/default/assets/fonts/brand-icons.ttf b/src-angular/assets/semantic/dist/themes/default/assets/fonts/brand-icons.ttf
deleted file mode 100644
index 9916328..0000000
Binary files a/src-angular/assets/semantic/dist/themes/default/assets/fonts/brand-icons.ttf and /dev/null differ
diff --git a/src-angular/assets/semantic/dist/themes/default/assets/fonts/brand-icons.woff b/src-angular/assets/semantic/dist/themes/default/assets/fonts/brand-icons.woff
deleted file mode 100644
index f9e3bcd..0000000
Binary files a/src-angular/assets/semantic/dist/themes/default/assets/fonts/brand-icons.woff and /dev/null differ
diff --git a/src-angular/assets/semantic/dist/themes/default/assets/fonts/brand-icons.woff2 b/src-angular/assets/semantic/dist/themes/default/assets/fonts/brand-icons.woff2
deleted file mode 100644
index 51c07ae..0000000
Binary files a/src-angular/assets/semantic/dist/themes/default/assets/fonts/brand-icons.woff2 and /dev/null differ
diff --git a/src-angular/assets/semantic/dist/themes/default/assets/fonts/icons.eot b/src-angular/assets/semantic/dist/themes/default/assets/fonts/icons.eot
deleted file mode 100644
index 39716a7..0000000
Binary files a/src-angular/assets/semantic/dist/themes/default/assets/fonts/icons.eot and /dev/null differ
diff --git a/src-angular/assets/semantic/dist/themes/default/assets/fonts/icons.svg b/src-angular/assets/semantic/dist/themes/default/assets/fonts/icons.svg
deleted file mode 100644
index cfd0e2f..0000000
--- a/src-angular/assets/semantic/dist/themes/default/assets/fonts/icons.svg
+++ /dev/null
@@ -1,4700 +0,0 @@
-
-
-
-
diff --git a/src-angular/assets/semantic/dist/themes/default/assets/fonts/icons.ttf b/src-angular/assets/semantic/dist/themes/default/assets/fonts/icons.ttf
deleted file mode 100644
index ac4baa2..0000000
Binary files a/src-angular/assets/semantic/dist/themes/default/assets/fonts/icons.ttf and /dev/null differ
diff --git a/src-angular/assets/semantic/dist/themes/default/assets/fonts/icons.woff b/src-angular/assets/semantic/dist/themes/default/assets/fonts/icons.woff
deleted file mode 100644
index 23002f8..0000000
Binary files a/src-angular/assets/semantic/dist/themes/default/assets/fonts/icons.woff and /dev/null differ
diff --git a/src-angular/assets/semantic/dist/themes/default/assets/fonts/icons.woff2 b/src-angular/assets/semantic/dist/themes/default/assets/fonts/icons.woff2
deleted file mode 100644
index b37f209..0000000
Binary files a/src-angular/assets/semantic/dist/themes/default/assets/fonts/icons.woff2 and /dev/null differ
diff --git a/src-angular/assets/semantic/dist/themes/default/assets/fonts/outline-icons.eot b/src-angular/assets/semantic/dist/themes/default/assets/fonts/outline-icons.eot
deleted file mode 100644
index 04e25cb..0000000
Binary files a/src-angular/assets/semantic/dist/themes/default/assets/fonts/outline-icons.eot and /dev/null differ
diff --git a/src-angular/assets/semantic/dist/themes/default/assets/fonts/outline-icons.svg b/src-angular/assets/semantic/dist/themes/default/assets/fonts/outline-icons.svg
deleted file mode 100644
index f1f7e6c..0000000
--- a/src-angular/assets/semantic/dist/themes/default/assets/fonts/outline-icons.svg
+++ /dev/null
@@ -1,803 +0,0 @@
-
-
-
-
diff --git a/src-angular/assets/semantic/dist/themes/default/assets/fonts/outline-icons.ttf b/src-angular/assets/semantic/dist/themes/default/assets/fonts/outline-icons.ttf
deleted file mode 100644
index 9c6249c..0000000
Binary files a/src-angular/assets/semantic/dist/themes/default/assets/fonts/outline-icons.ttf and /dev/null differ
diff --git a/src-angular/assets/semantic/dist/themes/default/assets/fonts/outline-icons.woff b/src-angular/assets/semantic/dist/themes/default/assets/fonts/outline-icons.woff
deleted file mode 100644
index 2873e43..0000000
Binary files a/src-angular/assets/semantic/dist/themes/default/assets/fonts/outline-icons.woff and /dev/null differ
diff --git a/src-angular/assets/semantic/dist/themes/default/assets/fonts/outline-icons.woff2 b/src-angular/assets/semantic/dist/themes/default/assets/fonts/outline-icons.woff2
deleted file mode 100644
index a34bd65..0000000
Binary files a/src-angular/assets/semantic/dist/themes/default/assets/fonts/outline-icons.woff2 and /dev/null differ
diff --git a/src-angular/assets/semantic/dist/themes/default/assets/images/flags.png b/src-angular/assets/semantic/dist/themes/default/assets/images/flags.png
deleted file mode 100644
index cdd33c3..0000000
Binary files a/src-angular/assets/semantic/dist/themes/default/assets/images/flags.png and /dev/null differ
diff --git a/src-angular/assets/semantic/dist/themes/github/assets/fonts/octicons-local.ttf b/src-angular/assets/semantic/dist/themes/github/assets/fonts/octicons-local.ttf
deleted file mode 100644
index d5f4e2e..0000000
Binary files a/src-angular/assets/semantic/dist/themes/github/assets/fonts/octicons-local.ttf and /dev/null differ
diff --git a/src-angular/assets/semantic/dist/themes/github/assets/fonts/octicons.svg b/src-angular/assets/semantic/dist/themes/github/assets/fonts/octicons.svg
deleted file mode 100644
index d3116a6..0000000
--- a/src-angular/assets/semantic/dist/themes/github/assets/fonts/octicons.svg
+++ /dev/null
@@ -1,200 +0,0 @@
-
-
-
diff --git a/src-angular/assets/semantic/dist/themes/github/assets/fonts/octicons.ttf b/src-angular/assets/semantic/dist/themes/github/assets/fonts/octicons.ttf
deleted file mode 100644
index 9e09105..0000000
Binary files a/src-angular/assets/semantic/dist/themes/github/assets/fonts/octicons.ttf and /dev/null differ
diff --git a/src-angular/assets/semantic/dist/themes/github/assets/fonts/octicons.woff b/src-angular/assets/semantic/dist/themes/github/assets/fonts/octicons.woff
deleted file mode 100644
index cc3c19f..0000000
Binary files a/src-angular/assets/semantic/dist/themes/github/assets/fonts/octicons.woff and /dev/null differ
diff --git a/src-angular/assets/semantic/dist/themes/material/assets/fonts/icons.eot b/src-angular/assets/semantic/dist/themes/material/assets/fonts/icons.eot
deleted file mode 100644
index 70508eb..0000000
Binary files a/src-angular/assets/semantic/dist/themes/material/assets/fonts/icons.eot and /dev/null differ
diff --git a/src-angular/assets/semantic/dist/themes/material/assets/fonts/icons.svg b/src-angular/assets/semantic/dist/themes/material/assets/fonts/icons.svg
deleted file mode 100644
index a449327..0000000
--- a/src-angular/assets/semantic/dist/themes/material/assets/fonts/icons.svg
+++ /dev/null
@@ -1,2373 +0,0 @@
-
-
-
-
diff --git a/src-angular/assets/semantic/dist/themes/material/assets/fonts/icons.ttf b/src-angular/assets/semantic/dist/themes/material/assets/fonts/icons.ttf
deleted file mode 100644
index 7015564..0000000
Binary files a/src-angular/assets/semantic/dist/themes/material/assets/fonts/icons.ttf and /dev/null differ
diff --git a/src-angular/assets/semantic/dist/themes/material/assets/fonts/icons.woff b/src-angular/assets/semantic/dist/themes/material/assets/fonts/icons.woff
deleted file mode 100644
index b648a3e..0000000
Binary files a/src-angular/assets/semantic/dist/themes/material/assets/fonts/icons.woff and /dev/null differ
diff --git a/src-angular/assets/semantic/dist/themes/material/assets/fonts/icons.woff2 b/src-angular/assets/semantic/dist/themes/material/assets/fonts/icons.woff2
deleted file mode 100644
index 9fa2112..0000000
Binary files a/src-angular/assets/semantic/dist/themes/material/assets/fonts/icons.woff2 and /dev/null differ
diff --git a/src-angular/assets/semantic/gulpfile.js b/src-angular/assets/semantic/gulpfile.js
deleted file mode 100644
index 92de1c8..0000000
--- a/src-angular/assets/semantic/gulpfile.js
+++ /dev/null
@@ -1,34 +0,0 @@
-/*******************************
- * Set-up
- *******************************/
-
-var
- gulp = require('gulp'),
-
- // read user config to know what task to load
- config = require('./tasks/config/user')
-;
-
-
-/*******************************
- * Tasks
- *******************************/
-
-require('./tasks/collections/build')(gulp);
-require('./tasks/collections/install')(gulp);
-
-gulp.task('default', gulp.series('watch'));
-
-/*--------------
- Docs
----------------*/
-
-require('./tasks/collections/docs')(gulp);
-
-/*--------------
- RTL
----------------*/
-
-if (config.rtl) {
- require('./tasks/collections/rtl')(gulp);
-}
\ No newline at end of file
diff --git a/src-angular/assets/semantic/jqueryImport.js b/src-angular/assets/semantic/jqueryImport.js
deleted file mode 100644
index 8ad2112..0000000
--- a/src-angular/assets/semantic/jqueryImport.js
+++ /dev/null
@@ -1,2 +0,0 @@
-// @ts-nocheck BS that is required for semantic to work
-window.jQuery = $ = require('jquery')
\ No newline at end of file
diff --git a/src-angular/assets/semantic/src/definitions/behaviors/api.js b/src-angular/assets/semantic/src/definitions/behaviors/api.js
deleted file mode 100644
index 845046b..0000000
--- a/src-angular/assets/semantic/src/definitions/behaviors/api.js
+++ /dev/null
@@ -1,1177 +0,0 @@
-/*!
- * # Fomantic-UI - API
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-;(function ($, window, document, undefined) {
-
-'use strict';
-
-$.isWindow = $.isWindow || function(obj) {
- return obj != null && obj === obj.window;
-};
-
- window = (typeof window != 'undefined' && window.Math == Math)
- ? window
- : (typeof self != 'undefined' && self.Math == Math)
- ? self
- : Function('return this')()
-;
-
-$.api = $.fn.api = function(parameters) {
-
- var
- // use window context if none specified
- $allModules = $.isFunction(this)
- ? $(window)
- : $(this),
- moduleSelector = $allModules.selector || '',
- time = new Date().getTime(),
- performance = [],
-
- query = arguments[0],
- methodInvoked = (typeof query == 'string'),
- queryArguments = [].slice.call(arguments, 1),
-
- returnedValue
- ;
-
- $allModules
- .each(function() {
- var
- settings = ( $.isPlainObject(parameters) )
- ? $.extend(true, {}, $.fn.api.settings, parameters)
- : $.extend({}, $.fn.api.settings),
-
- // internal aliases
- namespace = settings.namespace,
- metadata = settings.metadata,
- selector = settings.selector,
- error = settings.error,
- className = settings.className,
-
- // define namespaces for modules
- eventNamespace = '.' + namespace,
- moduleNamespace = 'module-' + namespace,
-
- // element that creates request
- $module = $(this),
- $form = $module.closest(selector.form),
-
- // context used for state
- $context = (settings.stateContext)
- ? $(settings.stateContext)
- : $module,
-
- // request details
- ajaxSettings,
- requestSettings,
- url,
- data,
- requestStartTime,
-
- // standard module
- element = this,
- context = $context[0],
- instance = $module.data(moduleNamespace),
- module
- ;
-
- module = {
-
- initialize: function() {
- if(!methodInvoked) {
- module.bind.events();
- }
- module.instantiate();
- },
-
- instantiate: function() {
- module.verbose('Storing instance of module', module);
- instance = module;
- $module
- .data(moduleNamespace, instance)
- ;
- },
-
- destroy: function() {
- module.verbose('Destroying previous module for', element);
- $module
- .removeData(moduleNamespace)
- .off(eventNamespace)
- ;
- },
-
- bind: {
- events: function() {
- var
- triggerEvent = module.get.event()
- ;
- if( triggerEvent ) {
- module.verbose('Attaching API events to element', triggerEvent);
- $module
- .on(triggerEvent + eventNamespace, module.event.trigger)
- ;
- }
- else if(settings.on == 'now') {
- module.debug('Querying API endpoint immediately');
- module.query();
- }
- }
- },
-
- decode: {
- json: function(response) {
- if(response !== undefined && typeof response == 'string') {
- try {
- response = JSON.parse(response);
- }
- catch(e) {
- // isnt json string
- }
- }
- return response;
- }
- },
-
- read: {
- cachedResponse: function(url) {
- var
- response
- ;
- if(window.Storage === undefined) {
- module.error(error.noStorage);
- return;
- }
- response = sessionStorage.getItem(url);
- module.debug('Using cached response', url, response);
- response = module.decode.json(response);
- return response;
- }
- },
- write: {
- cachedResponse: function(url, response) {
- if(response && response === '') {
- module.debug('Response empty, not caching', response);
- return;
- }
- if(window.Storage === undefined) {
- module.error(error.noStorage);
- return;
- }
- if( $.isPlainObject(response) ) {
- response = JSON.stringify(response);
- }
- sessionStorage.setItem(url, response);
- module.verbose('Storing cached response for url', url, response);
- }
- },
-
- query: function() {
-
- if(module.is.disabled()) {
- module.debug('Element is disabled API request aborted');
- return;
- }
-
- if(module.is.loading()) {
- if(settings.interruptRequests) {
- module.debug('Interrupting previous request');
- module.abort();
- }
- else {
- module.debug('Cancelling request, previous request is still pending');
- return;
- }
- }
-
- // pass element metadata to url (value, text)
- if(settings.defaultData) {
- $.extend(true, settings.urlData, module.get.defaultData());
- }
-
- // Add form content
- if(settings.serializeForm) {
- settings.data = module.add.formData(settings.data);
- }
-
- // call beforesend and get any settings changes
- requestSettings = module.get.settings();
-
- // check if before send cancelled request
- if(requestSettings === false) {
- module.cancelled = true;
- module.error(error.beforeSend);
- return;
- }
- else {
- module.cancelled = false;
- }
-
- // get url
- url = module.get.templatedURL();
-
- if(!url && !module.is.mocked()) {
- module.error(error.missingURL);
- return;
- }
-
- // replace variables
- url = module.add.urlData( url );
- // missing url parameters
- if( !url && !module.is.mocked()) {
- return;
- }
-
- requestSettings.url = settings.base + url;
-
- // look for jQuery ajax parameters in settings
- ajaxSettings = $.extend(true, {}, settings, {
- type : settings.method || settings.type,
- data : data,
- url : settings.base + url,
- beforeSend : settings.beforeXHR,
- success : function() {},
- failure : function() {},
- complete : function() {}
- });
-
- module.debug('Querying URL', ajaxSettings.url);
- module.verbose('Using AJAX settings', ajaxSettings);
- if(settings.cache === 'local' && module.read.cachedResponse(url)) {
- module.debug('Response returned from local cache');
- module.request = module.create.request();
- module.request.resolveWith(context, [ module.read.cachedResponse(url) ]);
- return;
- }
-
- if( !settings.throttle ) {
- module.debug('Sending request', data, ajaxSettings.method);
- module.send.request();
- }
- else {
- if(!settings.throttleFirstRequest && !module.timer) {
- module.debug('Sending request', data, ajaxSettings.method);
- module.send.request();
- module.timer = setTimeout(function(){}, settings.throttle);
- }
- else {
- module.debug('Throttling request', settings.throttle);
- clearTimeout(module.timer);
- module.timer = setTimeout(function() {
- if(module.timer) {
- delete module.timer;
- }
- module.debug('Sending throttled request', data, ajaxSettings.method);
- module.send.request();
- }, settings.throttle);
- }
- }
-
- },
-
- should: {
- removeError: function() {
- return ( settings.hideError === true || (settings.hideError === 'auto' && !module.is.form()) );
- }
- },
-
- is: {
- disabled: function() {
- return ($module.filter(selector.disabled).length > 0);
- },
- expectingJSON: function() {
- return settings.dataType === 'json' || settings.dataType === 'jsonp';
- },
- form: function() {
- return $module.is('form') || $context.is('form');
- },
- mocked: function() {
- return (settings.mockResponse || settings.mockResponseAsync || settings.response || settings.responseAsync);
- },
- input: function() {
- return $module.is('input');
- },
- loading: function() {
- return (module.request)
- ? (module.request.state() == 'pending')
- : false
- ;
- },
- abortedRequest: function(xhr) {
- if(xhr && xhr.readyState !== undefined && xhr.readyState === 0) {
- module.verbose('XHR request determined to be aborted');
- return true;
- }
- else {
- module.verbose('XHR request was not aborted');
- return false;
- }
- },
- validResponse: function(response) {
- if( (!module.is.expectingJSON()) || !$.isFunction(settings.successTest) ) {
- module.verbose('Response is not JSON, skipping validation', settings.successTest, response);
- return true;
- }
- module.debug('Checking JSON returned success', settings.successTest, response);
- if( settings.successTest(response) ) {
- module.debug('Response passed success test', response);
- return true;
- }
- else {
- module.debug('Response failed success test', response);
- return false;
- }
- }
- },
-
- was: {
- cancelled: function() {
- return (module.cancelled || false);
- },
- succesful: function() {
- module.verbose('This behavior will be deleted due to typo. Use "was successful" instead.');
- return module.was.successful();
- },
- successful: function() {
- return (module.request && module.request.state() == 'resolved');
- },
- failure: function() {
- return (module.request && module.request.state() == 'rejected');
- },
- complete: function() {
- return (module.request && (module.request.state() == 'resolved' || module.request.state() == 'rejected') );
- }
- },
-
- add: {
- urlData: function(url, urlData) {
- var
- requiredVariables,
- optionalVariables
- ;
- if(url) {
- requiredVariables = url.match(settings.regExp.required);
- optionalVariables = url.match(settings.regExp.optional);
- urlData = urlData || settings.urlData;
- if(requiredVariables) {
- module.debug('Looking for required URL variables', requiredVariables);
- $.each(requiredVariables, function(index, templatedString) {
- var
- // allow legacy {$var} style
- variable = (templatedString.indexOf('$') !== -1)
- ? templatedString.substr(2, templatedString.length - 3)
- : templatedString.substr(1, templatedString.length - 2),
- value = ($.isPlainObject(urlData) && urlData[variable] !== undefined)
- ? urlData[variable]
- : ($module.data(variable) !== undefined)
- ? $module.data(variable)
- : ($context.data(variable) !== undefined)
- ? $context.data(variable)
- : urlData[variable]
- ;
- // remove value
- if(value === undefined) {
- module.error(error.requiredParameter, variable, url);
- url = false;
- return false;
- }
- else {
- module.verbose('Found required variable', variable, value);
- value = (settings.encodeParameters)
- ? module.get.urlEncodedValue(value)
- : value
- ;
- url = url.replace(templatedString, value);
- }
- });
- }
- if(optionalVariables) {
- module.debug('Looking for optional URL variables', requiredVariables);
- $.each(optionalVariables, function(index, templatedString) {
- var
- // allow legacy {/$var} style
- variable = (templatedString.indexOf('$') !== -1)
- ? templatedString.substr(3, templatedString.length - 4)
- : templatedString.substr(2, templatedString.length - 3),
- value = ($.isPlainObject(urlData) && urlData[variable] !== undefined)
- ? urlData[variable]
- : ($module.data(variable) !== undefined)
- ? $module.data(variable)
- : ($context.data(variable) !== undefined)
- ? $context.data(variable)
- : urlData[variable]
- ;
- // optional replacement
- if(value !== undefined) {
- module.verbose('Optional variable Found', variable, value);
- url = url.replace(templatedString, value);
- }
- else {
- module.verbose('Optional variable not found', variable);
- // remove preceding slash if set
- if(url.indexOf('/' + templatedString) !== -1) {
- url = url.replace('/' + templatedString, '');
- }
- else {
- url = url.replace(templatedString, '');
- }
- }
- });
- }
- }
- return url;
- },
- formData: function(data) {
- var
- canSerialize = ($.fn.serializeObject !== undefined),
- formData = (canSerialize)
- ? $form.serializeObject()
- : $form.serialize(),
- hasOtherData
- ;
- data = data || settings.data;
- hasOtherData = $.isPlainObject(data);
-
- if(hasOtherData) {
- if(canSerialize) {
- module.debug('Extending existing data with form data', data, formData);
- data = $.extend(true, {}, data, formData);
- }
- else {
- module.error(error.missingSerialize);
- module.debug('Cant extend data. Replacing data with form data', data, formData);
- data = formData;
- }
- }
- else {
- module.debug('Adding form data', formData);
- data = formData;
- }
- return data;
- }
- },
-
- send: {
- request: function() {
- module.set.loading();
- module.request = module.create.request();
- if( module.is.mocked() ) {
- module.mockedXHR = module.create.mockedXHR();
- }
- else {
- module.xhr = module.create.xhr();
- }
- settings.onRequest.call(context, module.request, module.xhr);
- }
- },
-
- event: {
- trigger: function(event) {
- module.query();
- if(event.type == 'submit' || event.type == 'click') {
- event.preventDefault();
- }
- },
- xhr: {
- always: function() {
- // nothing special
- },
- done: function(response, textStatus, xhr) {
- var
- context = this,
- elapsedTime = (new Date().getTime() - requestStartTime),
- timeLeft = (settings.loadingDuration - elapsedTime),
- translatedResponse = ( $.isFunction(settings.onResponse) )
- ? module.is.expectingJSON() && !settings.rawResponse
- ? settings.onResponse.call(context, $.extend(true, {}, response))
- : settings.onResponse.call(context, response)
- : false
- ;
- timeLeft = (timeLeft > 0)
- ? timeLeft
- : 0
- ;
- if(translatedResponse) {
- module.debug('Modified API response in onResponse callback', settings.onResponse, translatedResponse, response);
- response = translatedResponse;
- }
- if(timeLeft > 0) {
- module.debug('Response completed early delaying state change by', timeLeft);
- }
- setTimeout(function() {
- if( module.is.validResponse(response) ) {
- module.request.resolveWith(context, [response, xhr]);
- }
- else {
- module.request.rejectWith(context, [xhr, 'invalid']);
- }
- }, timeLeft);
- },
- fail: function(xhr, status, httpMessage) {
- var
- context = this,
- elapsedTime = (new Date().getTime() - requestStartTime),
- timeLeft = (settings.loadingDuration - elapsedTime)
- ;
- timeLeft = (timeLeft > 0)
- ? timeLeft
- : 0
- ;
- if(timeLeft > 0) {
- module.debug('Response completed early delaying state change by', timeLeft);
- }
- setTimeout(function() {
- if( module.is.abortedRequest(xhr) ) {
- module.request.rejectWith(context, [xhr, 'aborted', httpMessage]);
- }
- else {
- module.request.rejectWith(context, [xhr, 'error', status, httpMessage]);
- }
- }, timeLeft);
- }
- },
- request: {
- done: function(response, xhr) {
- module.debug('Successful API Response', response);
- if(settings.cache === 'local' && url) {
- module.write.cachedResponse(url, response);
- module.debug('Saving server response locally', module.cache);
- }
- settings.onSuccess.call(context, response, $module, xhr);
- },
- complete: function(firstParameter, secondParameter) {
- var
- xhr,
- response
- ;
- // have to guess callback parameters based on request success
- if( module.was.successful() ) {
- response = firstParameter;
- xhr = secondParameter;
- }
- else {
- xhr = firstParameter;
- response = module.get.responseFromXHR(xhr);
- }
- module.remove.loading();
- settings.onComplete.call(context, response, $module, xhr);
- },
- fail: function(xhr, status, httpMessage) {
- var
- // pull response from xhr if available
- response = module.get.responseFromXHR(xhr),
- errorMessage = module.get.errorFromRequest(response, status, httpMessage)
- ;
- if(status == 'aborted') {
- module.debug('XHR Aborted (Most likely caused by page navigation or CORS Policy)', status, httpMessage);
- settings.onAbort.call(context, status, $module, xhr);
- return true;
- }
- else if(status == 'invalid') {
- module.debug('JSON did not pass success test. A server-side error has most likely occurred', response);
- }
- else if(status == 'error') {
- if(xhr !== undefined) {
- module.debug('XHR produced a server error', status, httpMessage);
- // make sure we have an error to display to console
- if( (xhr.status < 200 || xhr.status >= 300) && httpMessage !== undefined && httpMessage !== '') {
- module.error(error.statusMessage + httpMessage, ajaxSettings.url);
- }
- settings.onError.call(context, errorMessage, $module, xhr);
- }
- }
-
- if(settings.errorDuration && status !== 'aborted') {
- module.debug('Adding error state');
- module.set.error();
- if( module.should.removeError() ) {
- setTimeout(module.remove.error, settings.errorDuration);
- }
- }
- module.debug('API Request failed', errorMessage, xhr);
- settings.onFailure.call(context, response, $module, xhr);
- }
- }
- },
-
- create: {
-
- request: function() {
- // api request promise
- return $.Deferred()
- .always(module.event.request.complete)
- .done(module.event.request.done)
- .fail(module.event.request.fail)
- ;
- },
-
- mockedXHR: function () {
- var
- // xhr does not simulate these properties of xhr but must return them
- textStatus = false,
- status = false,
- httpMessage = false,
- responder = settings.mockResponse || settings.response,
- asyncResponder = settings.mockResponseAsync || settings.responseAsync,
- asyncCallback,
- response,
- mockedXHR
- ;
-
- mockedXHR = $.Deferred()
- .always(module.event.xhr.complete)
- .done(module.event.xhr.done)
- .fail(module.event.xhr.fail)
- ;
-
- if(responder) {
- if( $.isFunction(responder) ) {
- module.debug('Using specified synchronous callback', responder);
- response = responder.call(context, requestSettings);
- }
- else {
- module.debug('Using settings specified response', responder);
- response = responder;
- }
- // simulating response
- mockedXHR.resolveWith(context, [ response, textStatus, { responseText: response }]);
- }
- else if( $.isFunction(asyncResponder) ) {
- asyncCallback = function(response) {
- module.debug('Async callback returned response', response);
-
- if(response) {
- mockedXHR.resolveWith(context, [ response, textStatus, { responseText: response }]);
- }
- else {
- mockedXHR.rejectWith(context, [{ responseText: response }, status, httpMessage]);
- }
- };
- module.debug('Using specified async response callback', asyncResponder);
- asyncResponder.call(context, requestSettings, asyncCallback);
- }
- return mockedXHR;
- },
-
- xhr: function() {
- var
- xhr
- ;
- // ajax request promise
- xhr = $.ajax(ajaxSettings)
- .always(module.event.xhr.always)
- .done(module.event.xhr.done)
- .fail(module.event.xhr.fail)
- ;
- module.verbose('Created server request', xhr, ajaxSettings);
- return xhr;
- }
- },
-
- set: {
- error: function() {
- module.verbose('Adding error state to element', $context);
- $context.addClass(className.error);
- },
- loading: function() {
- module.verbose('Adding loading state to element', $context);
- $context.addClass(className.loading);
- requestStartTime = new Date().getTime();
- }
- },
-
- remove: {
- error: function() {
- module.verbose('Removing error state from element', $context);
- $context.removeClass(className.error);
- },
- loading: function() {
- module.verbose('Removing loading state from element', $context);
- $context.removeClass(className.loading);
- }
- },
-
- get: {
- responseFromXHR: function(xhr) {
- return $.isPlainObject(xhr)
- ? (module.is.expectingJSON())
- ? module.decode.json(xhr.responseText)
- : xhr.responseText
- : false
- ;
- },
- errorFromRequest: function(response, status, httpMessage) {
- return ($.isPlainObject(response) && response.error !== undefined)
- ? response.error // use json error message
- : (settings.error[status] !== undefined) // use server error message
- ? settings.error[status]
- : httpMessage
- ;
- },
- request: function() {
- return module.request || false;
- },
- xhr: function() {
- return module.xhr || false;
- },
- settings: function() {
- var
- runSettings
- ;
- runSettings = settings.beforeSend.call($module, settings);
- if(runSettings) {
- if(runSettings.success !== undefined) {
- module.debug('Legacy success callback detected', runSettings);
- module.error(error.legacyParameters, runSettings.success);
- runSettings.onSuccess = runSettings.success;
- }
- if(runSettings.failure !== undefined) {
- module.debug('Legacy failure callback detected', runSettings);
- module.error(error.legacyParameters, runSettings.failure);
- runSettings.onFailure = runSettings.failure;
- }
- if(runSettings.complete !== undefined) {
- module.debug('Legacy complete callback detected', runSettings);
- module.error(error.legacyParameters, runSettings.complete);
- runSettings.onComplete = runSettings.complete;
- }
- }
- if(runSettings === undefined) {
- module.error(error.noReturnedValue);
- }
- if(runSettings === false) {
- return runSettings;
- }
- return (runSettings !== undefined)
- ? $.extend(true, {}, runSettings)
- : $.extend(true, {}, settings)
- ;
- },
- urlEncodedValue: function(value) {
- var
- decodedValue = window.decodeURIComponent(value),
- encodedValue = window.encodeURIComponent(value),
- alreadyEncoded = (decodedValue !== value)
- ;
- if(alreadyEncoded) {
- module.debug('URL value is already encoded, avoiding double encoding', value);
- return value;
- }
- module.verbose('Encoding value using encodeURIComponent', value, encodedValue);
- return encodedValue;
- },
- defaultData: function() {
- var
- data = {}
- ;
- if( !$.isWindow(element) ) {
- if( module.is.input() ) {
- data.value = $module.val();
- }
- else if( module.is.form() ) {
-
- }
- else {
- data.text = $module.text();
- }
- }
- return data;
- },
- event: function() {
- if( $.isWindow(element) || settings.on == 'now' ) {
- module.debug('API called without element, no events attached');
- return false;
- }
- else if(settings.on == 'auto') {
- if( $module.is('input') ) {
- return (element.oninput !== undefined)
- ? 'input'
- : (element.onpropertychange !== undefined)
- ? 'propertychange'
- : 'keyup'
- ;
- }
- else if( $module.is('form') ) {
- return 'submit';
- }
- else {
- return 'click';
- }
- }
- else {
- return settings.on;
- }
- },
- templatedURL: function(action) {
- action = action || $module.data(metadata.action) || settings.action || false;
- url = $module.data(metadata.url) || settings.url || false;
- if(url) {
- module.debug('Using specified url', url);
- return url;
- }
- if(action) {
- module.debug('Looking up url for action', action, settings.api);
- if(settings.api[action] === undefined && !module.is.mocked()) {
- module.error(error.missingAction, settings.action, settings.api);
- return;
- }
- url = settings.api[action];
- }
- else if( module.is.form() ) {
- url = $module.attr('action') || $context.attr('action') || false;
- module.debug('No url or action specified, defaulting to form action', url);
- }
- return url;
- }
- },
-
- abort: function() {
- var
- xhr = module.get.xhr()
- ;
- if( xhr && xhr.state() !== 'resolved') {
- module.debug('Cancelling API request');
- xhr.abort();
- }
- },
-
- // reset state
- reset: function() {
- module.remove.error();
- module.remove.loading();
- },
-
- setting: function(name, value) {
- module.debug('Changing setting', name, value);
- if( $.isPlainObject(name) ) {
- $.extend(true, settings, name);
- }
- else if(value !== undefined) {
- if($.isPlainObject(settings[name])) {
- $.extend(true, settings[name], value);
- }
- else {
- settings[name] = value;
- }
- }
- else {
- return settings[name];
- }
- },
- internal: function(name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, module, name);
- }
- else if(value !== undefined) {
- module[name] = value;
- }
- else {
- return module[name];
- }
- },
- debug: function() {
- if(!settings.silent && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.debug.apply(console, arguments);
- }
- }
- },
- verbose: function() {
- if(!settings.silent && settings.verbose && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.verbose.apply(console, arguments);
- }
- }
- },
- error: function() {
- if(!settings.silent) {
- module.error = Function.prototype.bind.call(console.error, console, settings.name + ':');
- module.error.apply(console, arguments);
- }
- },
- performance: {
- log: function(message) {
- var
- currentTime,
- executionTime,
- previousTime
- ;
- if(settings.performance) {
- currentTime = new Date().getTime();
- previousTime = time || currentTime;
- executionTime = currentTime - previousTime;
- time = currentTime;
- performance.push({
- 'Name' : message[0],
- 'Arguments' : [].slice.call(message, 1) || '',
- //'Element' : element,
- 'Execution Time' : executionTime
- });
- }
- clearTimeout(module.performance.timer);
- module.performance.timer = setTimeout(module.performance.display, 500);
- },
- display: function() {
- var
- title = settings.name + ':',
- totalTime = 0
- ;
- time = false;
- clearTimeout(module.performance.timer);
- $.each(performance, function(index, data) {
- totalTime += data['Execution Time'];
- });
- title += ' ' + totalTime + 'ms';
- if(moduleSelector) {
- title += ' \'' + moduleSelector + '\'';
- }
- if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) {
- console.groupCollapsed(title);
- if(console.table) {
- console.table(performance);
- }
- else {
- $.each(performance, function(index, data) {
- console.log(data['Name'] + ': ' + data['Execution Time']+'ms');
- });
- }
- console.groupEnd();
- }
- performance = [];
- }
- },
- invoke: function(query, passedArguments, context) {
- var
- object = instance,
- maxDepth,
- found,
- response
- ;
- passedArguments = passedArguments || queryArguments;
- context = element || context;
- if(typeof query == 'string' && object !== undefined) {
- query = query.split(/[\. ]/);
- maxDepth = query.length - 1;
- $.each(query, function(depth, value) {
- var camelCaseValue = (depth != maxDepth)
- ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
- : query
- ;
- if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
- object = object[camelCaseValue];
- }
- else if( object[camelCaseValue] !== undefined ) {
- found = object[camelCaseValue];
- return false;
- }
- else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
- object = object[value];
- }
- else if( object[value] !== undefined ) {
- found = object[value];
- return false;
- }
- else {
- module.error(error.method, query);
- return false;
- }
- });
- }
- if ( $.isFunction( found ) ) {
- response = found.apply(context, passedArguments);
- }
- else if(found !== undefined) {
- response = found;
- }
- if(Array.isArray(returnedValue)) {
- returnedValue.push(response);
- }
- else if(returnedValue !== undefined) {
- returnedValue = [returnedValue, response];
- }
- else if(response !== undefined) {
- returnedValue = response;
- }
- return found;
- }
- };
-
- if(methodInvoked) {
- if(instance === undefined) {
- module.initialize();
- }
- module.invoke(query);
- }
- else {
- if(instance !== undefined) {
- instance.invoke('destroy');
- }
- module.initialize();
- }
- })
- ;
-
- return (returnedValue !== undefined)
- ? returnedValue
- : this
- ;
-};
-
-$.api.settings = {
-
- name : 'API',
- namespace : 'api',
-
- debug : false,
- verbose : false,
- performance : true,
-
- // object containing all templates endpoints
- api : {},
-
- // whether to cache responses
- cache : true,
-
- // whether new requests should abort previous requests
- interruptRequests : true,
-
- // event binding
- on : 'auto',
-
- // context for applying state classes
- stateContext : false,
-
- // duration for loading state
- loadingDuration : 0,
-
- // whether to hide errors after a period of time
- hideError : 'auto',
-
- // duration for error state
- errorDuration : 2000,
-
- // whether parameters should be encoded with encodeURIComponent
- encodeParameters : true,
-
- // API action to use
- action : false,
-
- // templated URL to use
- url : false,
-
- // base URL to apply to all endpoints
- base : '',
-
- // data that will
- urlData : {},
-
- // whether to add default data to url data
- defaultData : true,
-
- // whether to serialize closest form
- serializeForm : false,
-
- // how long to wait before request should occur
- throttle : 0,
-
- // whether to throttle first request or only repeated
- throttleFirstRequest : true,
-
- // standard ajax settings
- method : 'get',
- data : {},
- dataType : 'json',
-
- // mock response
- mockResponse : false,
- mockResponseAsync : false,
-
- // aliases for mock
- response : false,
- responseAsync : false,
-
-// whether onResponse should work with response value without force converting into an object
- rawResponse : false,
-
- // callbacks before request
- beforeSend : function(settings) { return settings; },
- beforeXHR : function(xhr) {},
- onRequest : function(promise, xhr) {},
-
- // after request
- onResponse : false, // function(response) { },
-
- // response was successful, if JSON passed validation
- onSuccess : function(response, $module) {},
-
- // request finished without aborting
- onComplete : function(response, $module) {},
-
- // failed JSON success test
- onFailure : function(response, $module) {},
-
- // server error
- onError : function(errorMessage, $module) {},
-
- // request aborted
- onAbort : function(errorMessage, $module) {},
-
- successTest : false,
-
- // errors
- error : {
- beforeSend : 'The before send function has aborted the request',
- error : 'There was an error with your request',
- exitConditions : 'API Request Aborted. Exit conditions met',
- JSONParse : 'JSON could not be parsed during error handling',
- legacyParameters : 'You are using legacy API success callback names',
- method : 'The method you called is not defined',
- missingAction : 'API action used but no url was defined',
- missingSerialize : 'jquery-serialize-object is required to add form data to an existing data object',
- missingURL : 'No URL specified for api event',
- noReturnedValue : 'The beforeSend callback must return a settings object, beforeSend ignored.',
- noStorage : 'Caching responses locally requires session storage',
- parseError : 'There was an error parsing your request',
- requiredParameter : 'Missing a required URL parameter: ',
- statusMessage : 'Server gave an error: ',
- timeout : 'Your request timed out'
- },
-
- regExp : {
- required : /\{\$*[A-z0-9]+\}/g,
- optional : /\{\/\$*[A-z0-9]+\}/g,
- },
-
- className: {
- loading : 'loading',
- error : 'error'
- },
-
- selector: {
- disabled : '.disabled',
- form : 'form'
- },
-
- metadata: {
- action : 'action',
- url : 'url'
- }
-};
-
-
-
-})( jQuery, window, document );
diff --git a/src-angular/assets/semantic/src/definitions/behaviors/form.js b/src-angular/assets/semantic/src/definitions/behaviors/form.js
deleted file mode 100644
index b71df56..0000000
--- a/src-angular/assets/semantic/src/definitions/behaviors/form.js
+++ /dev/null
@@ -1,1981 +0,0 @@
-/*!
- * # Fomantic-UI - Form Validation
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-;(function ($, window, document, undefined) {
-
-'use strict';
-
-$.isFunction = $.isFunction || function(obj) {
- return typeof obj === "function" && typeof obj.nodeType !== "number";
-};
-
-window = (typeof window != 'undefined' && window.Math == Math)
- ? window
- : (typeof self != 'undefined' && self.Math == Math)
- ? self
- : Function('return this')()
-;
-
-$.fn.form = function(parameters) {
- var
- $allModules = $(this),
- moduleSelector = $allModules.selector || '',
-
- time = new Date().getTime(),
- performance = [],
-
- query = arguments[0],
- legacyParameters = arguments[1],
- methodInvoked = (typeof query == 'string'),
- queryArguments = [].slice.call(arguments, 1),
- returnedValue
- ;
- $allModules
- .each(function() {
- var
- $module = $(this),
- element = this,
-
- formErrors = [],
- keyHeldDown = false,
-
- // set at run-time
- $field,
- $group,
- $message,
- $prompt,
- $submit,
- $clear,
- $reset,
-
- settings,
- validation,
-
- metadata,
- selector,
- className,
- regExp,
- error,
-
- namespace,
- moduleNamespace,
- eventNamespace,
-
- submitting = false,
- dirty = false,
- history = ['clean', 'clean'],
-
- instance,
- module
- ;
-
- module = {
-
- initialize: function() {
-
- // settings grabbed at run time
- module.get.settings();
- if(methodInvoked) {
- if(instance === undefined) {
- module.instantiate();
- }
- module.invoke(query);
- }
- else {
- if(instance !== undefined) {
- instance.invoke('destroy');
- }
- module.verbose('Initializing form validation', $module, settings);
- module.bindEvents();
- module.set.defaults();
- module.instantiate();
- }
- },
-
- instantiate: function() {
- module.verbose('Storing instance of module', module);
- instance = module;
- $module
- .data(moduleNamespace, module)
- ;
- },
-
- destroy: function() {
- module.verbose('Destroying previous module', instance);
- module.removeEvents();
- $module
- .removeData(moduleNamespace)
- ;
- },
-
- refresh: function() {
- module.verbose('Refreshing selector cache');
- $field = $module.find(selector.field);
- $group = $module.find(selector.group);
- $message = $module.find(selector.message);
- $prompt = $module.find(selector.prompt);
-
- $submit = $module.find(selector.submit);
- $clear = $module.find(selector.clear);
- $reset = $module.find(selector.reset);
- },
-
- submit: function() {
- module.verbose('Submitting form', $module);
- submitting = true;
- $module.submit();
- },
-
- attachEvents: function(selector, action) {
- action = action || 'submit';
- $(selector).on('click' + eventNamespace, function(event) {
- module[action]();
- event.preventDefault();
- });
- },
-
- bindEvents: function() {
- module.verbose('Attaching form events');
- $module
- .on('submit' + eventNamespace, module.validate.form)
- .on('blur' + eventNamespace, selector.field, module.event.field.blur)
- .on('click' + eventNamespace, selector.submit, module.submit)
- .on('click' + eventNamespace, selector.reset, module.reset)
- .on('click' + eventNamespace, selector.clear, module.clear)
- ;
- if(settings.keyboardShortcuts) {
- $module.on('keydown' + eventNamespace, selector.field, module.event.field.keydown);
- }
- $field.each(function(index, el) {
- var
- $input = $(el),
- type = $input.prop('type'),
- inputEvent = module.get.changeEvent(type, $input)
- ;
- $input.on(inputEvent + eventNamespace, module.event.field.change);
- });
-
- // Dirty events
- if (settings.preventLeaving) {
- $(window).on('beforeunload' + eventNamespace, module.event.beforeUnload);
- }
-
- $field.on('change click keyup keydown blur', function(e) {
- $(this).triggerHandler(e.type + ".dirty");
- });
-
- $field.on('change.dirty click.dirty keyup.dirty keydown.dirty blur.dirty', module.determine.isDirty);
-
- $module.on('dirty' + eventNamespace, function(e) {
- settings.onDirty.call();
- });
-
- $module.on('clean' + eventNamespace, function(e) {
- settings.onClean.call();
- })
- },
-
- clear: function() {
- $field.each(function (index, el) {
- var
- $field = $(el),
- $element = $field.parent(),
- $fieldGroup = $field.closest($group),
- $prompt = $fieldGroup.find(selector.prompt),
- $calendar = $field.closest(selector.uiCalendar),
- defaultValue = $field.data(metadata.defaultValue) || '',
- isCheckbox = $element.is(selector.uiCheckbox),
- isDropdown = $element.is(selector.uiDropdown) && module.can.useElement('dropdown'),
- isCalendar = ($calendar.length > 0 && module.can.useElement('calendar')),
- isErrored = $fieldGroup.hasClass(className.error)
- ;
- if(isErrored) {
- module.verbose('Resetting error on field', $fieldGroup);
- $fieldGroup.removeClass(className.error);
- $prompt.remove();
- }
- if(isDropdown) {
- module.verbose('Resetting dropdown value', $element, defaultValue);
- $element.dropdown('clear', true);
- }
- else if(isCheckbox) {
- $field.prop('checked', false);
- }
- else if (isCalendar) {
- $calendar.calendar('clear');
- }
- else {
- module.verbose('Resetting field value', $field, defaultValue);
- $field.val('');
- }
- });
- },
-
- reset: function() {
- $field.each(function (index, el) {
- var
- $field = $(el),
- $element = $field.parent(),
- $fieldGroup = $field.closest($group),
- $calendar = $field.closest(selector.uiCalendar),
- $prompt = $fieldGroup.find(selector.prompt),
- defaultValue = $field.data(metadata.defaultValue),
- isCheckbox = $element.is(selector.uiCheckbox),
- isDropdown = $element.is(selector.uiDropdown) && module.can.useElement('dropdown'),
- isCalendar = ($calendar.length > 0 && module.can.useElement('calendar')),
- isErrored = $fieldGroup.hasClass(className.error)
- ;
- if(defaultValue === undefined) {
- return;
- }
- if(isErrored) {
- module.verbose('Resetting error on field', $fieldGroup);
- $fieldGroup.removeClass(className.error);
- $prompt.remove();
- }
- if(isDropdown) {
- module.verbose('Resetting dropdown value', $element, defaultValue);
- $element.dropdown('restore defaults', true);
- }
- else if(isCheckbox) {
- module.verbose('Resetting checkbox value', $element, defaultValue);
- $field.prop('checked', defaultValue);
- }
- else if (isCalendar) {
- $calendar.calendar('set date', defaultValue);
- }
- else {
- module.verbose('Resetting field value', $field, defaultValue);
- $field.val(defaultValue);
- }
- });
-
- module.determine.isDirty();
- },
-
- determine: {
- isValid: function() {
- var
- allValid = true
- ;
- $.each(validation, function(fieldName, field) {
- if( !( module.validate.field(field, fieldName, true) ) ) {
- allValid = false;
- }
- });
- return allValid;
- },
- isDirty: function(e) {
- var formIsDirty = false;
-
- $field.each(function(index, el) {
- var
- $el = $(el),
- isCheckbox = ($el.filter(selector.checkbox).length > 0),
- isDirty
- ;
-
- if (isCheckbox) {
- isDirty = module.is.checkboxDirty($el);
- } else {
- isDirty = module.is.fieldDirty($el);
- }
-
- $el.data(settings.metadata.isDirty, isDirty);
-
- formIsDirty |= isDirty;
- });
-
- if (formIsDirty) {
- module.set.dirty();
- } else {
- module.set.clean();
- }
-
- if (e && e.namespace === 'dirty') {
- e.stopImmediatePropagation();
- e.preventDefault();
- }
- }
- },
-
- is: {
- bracketedRule: function(rule) {
- return (rule.type && rule.type.match(settings.regExp.bracket));
- },
- shorthandFields: function(fields) {
- var
- fieldKeys = Object.keys(fields),
- firstRule = fields[fieldKeys[0]]
- ;
- return module.is.shorthandRules(firstRule);
- },
- // duck type rule test
- shorthandRules: function(rules) {
- return (typeof rules == 'string' || Array.isArray(rules));
- },
- empty: function($field) {
- if(!$field || $field.length === 0) {
- return true;
- }
- else if($field.is(selector.checkbox)) {
- return !$field.is(':checked');
- }
- else {
- return module.is.blank($field);
- }
- },
- blank: function($field) {
- return $.trim($field.val()) === '';
- },
- valid: function(field) {
- var
- allValid = true
- ;
- if(field) {
- module.verbose('Checking if field is valid', field);
- return module.validate.field(validation[field], field, false);
- }
- else {
- module.verbose('Checking if form is valid');
- $.each(validation, function(fieldName, field) {
- if( !module.is.valid(fieldName) ) {
- allValid = false;
- }
- });
- return allValid;
- }
- },
- dirty: function() {
- return dirty;
- },
- clean: function() {
- return !dirty;
- },
- fieldDirty: function($el) {
- var initialValue = $el.data(metadata.defaultValue);
- // Explicitly check for null/undefined here as value may be `false`, so ($el.data(dataInitialValue) || '') would not work
- if (initialValue == null) { initialValue = ''; }
- var currentValue = $el.val();
- if (currentValue == null) { currentValue = ''; }
-
- // Boolean values can be encoded as "true/false" or "True/False" depending on underlying frameworks so we need a case insensitive comparison
- var boolRegex = /^(true|false)$/i;
- var isBoolValue = boolRegex.test(initialValue) && boolRegex.test(currentValue);
- if (isBoolValue) {
- var regex = new RegExp("^" + initialValue + "$", "i");
- return !regex.test(currentValue);
- }
-
- return currentValue !== initialValue;
- },
- checkboxDirty: function($el) {
- var initialValue = $el.data(metadata.defaultValue);
- var currentValue = $el.is(":checked");
-
- return initialValue !== currentValue;
- },
- justDirty: function() {
- return (history[0] === 'dirty');
- },
- justClean: function() {
- return (history[0] === 'clean');
- }
- },
-
- removeEvents: function() {
- $module.off(eventNamespace);
- $field.off(eventNamespace);
- $submit.off(eventNamespace);
- $field.off(eventNamespace);
- },
-
- event: {
- field: {
- keydown: function(event) {
- var
- $field = $(this),
- key = event.which,
- isInput = $field.is(selector.input),
- isCheckbox = $field.is(selector.checkbox),
- isInDropdown = ($field.closest(selector.uiDropdown).length > 0),
- keyCode = {
- enter : 13,
- escape : 27
- }
- ;
- if( key == keyCode.escape) {
- module.verbose('Escape key pressed blurring field');
- $field
- .blur()
- ;
- }
- if(!event.ctrlKey && key == keyCode.enter && isInput && !isInDropdown && !isCheckbox) {
- if(!keyHeldDown) {
- $field.one('keyup' + eventNamespace, module.event.field.keyup);
- module.submit();
- module.debug('Enter pressed on input submitting form');
- }
- keyHeldDown = true;
- }
- },
- keyup: function() {
- keyHeldDown = false;
- },
- blur: function(event) {
- var
- $field = $(this),
- $fieldGroup = $field.closest($group),
- validationRules = module.get.validation($field)
- ;
- if( $fieldGroup.hasClass(className.error) ) {
- module.debug('Revalidating field', $field, validationRules);
- if(validationRules) {
- module.validate.field( validationRules );
- }
- }
- else if(settings.on == 'blur') {
- if(validationRules) {
- module.validate.field( validationRules );
- }
- }
- },
- change: function(event) {
- var
- $field = $(this),
- $fieldGroup = $field.closest($group),
- validationRules = module.get.validation($field)
- ;
- if(validationRules && (settings.on == 'change' || ( $fieldGroup.hasClass(className.error) && settings.revalidate) )) {
- clearTimeout(module.timer);
- module.timer = setTimeout(function() {
- module.debug('Revalidating field', $field, module.get.validation($field));
- module.validate.field( validationRules );
- }, settings.delay);
- }
- }
- },
- beforeUnload: function(event) {
- if (module.is.dirty() && !submitting) {
- var event = event || window.event;
-
- // For modern browsers
- if (event) {
- event.returnValue = settings.text.leavingMessage;
- }
-
- // For olders...
- return settings.text.leavingMessage;
- }
- }
-
- },
-
- get: {
- ancillaryValue: function(rule) {
- if(!rule.type || (!rule.value && !module.is.bracketedRule(rule))) {
- return false;
- }
- return (rule.value !== undefined)
- ? rule.value
- : rule.type.match(settings.regExp.bracket)[1] + ''
- ;
- },
- ruleName: function(rule) {
- if( module.is.bracketedRule(rule) ) {
- return rule.type.replace(rule.type.match(settings.regExp.bracket)[0], '');
- }
- return rule.type;
- },
- changeEvent: function(type, $input) {
- if(type == 'checkbox' || type == 'radio' || type == 'hidden' || $input.is('select')) {
- return 'change';
- }
- else {
- return module.get.inputEvent();
- }
- },
- inputEvent: function() {
- return (document.createElement('input').oninput !== undefined)
- ? 'input'
- : (document.createElement('input').onpropertychange !== undefined)
- ? 'propertychange'
- : 'keyup'
- ;
- },
- fieldsFromShorthand: function(fields) {
- var
- fullFields = {}
- ;
- $.each(fields, function(name, rules) {
- if(typeof rules == 'string') {
- rules = [rules];
- }
- fullFields[name] = {
- rules: []
- };
- $.each(rules, function(index, rule) {
- fullFields[name].rules.push({ type: rule });
- });
- });
- return fullFields;
- },
- prompt: function(rule, field) {
- var
- ruleName = module.get.ruleName(rule),
- ancillary = module.get.ancillaryValue(rule),
- $field = module.get.field(field.identifier),
- value = $field.val(),
- prompt = $.isFunction(rule.prompt)
- ? rule.prompt(value)
- : rule.prompt || settings.prompt[ruleName] || settings.text.unspecifiedRule,
- requiresValue = (prompt.search('{value}') !== -1),
- requiresName = (prompt.search('{name}') !== -1),
- $label,
- name
- ;
- if(requiresValue) {
- prompt = prompt.replace('{value}', $field.val());
- }
- if(requiresName) {
- $label = $field.closest(selector.group).find('label').eq(0);
- name = ($label.length == 1)
- ? $label.text()
- : $field.prop('placeholder') || settings.text.unspecifiedField
- ;
- prompt = prompt.replace('{name}', name);
- }
- prompt = prompt.replace('{identifier}', field.identifier);
- prompt = prompt.replace('{ruleValue}', ancillary);
- if(!rule.prompt) {
- module.verbose('Using default validation prompt for type', prompt, ruleName);
- }
- return prompt;
- },
- settings: function() {
- if($.isPlainObject(parameters)) {
- var
- keys = Object.keys(parameters),
- isLegacySettings = (keys.length > 0)
- ? (parameters[keys[0]].identifier !== undefined && parameters[keys[0]].rules !== undefined)
- : false
- ;
- if(isLegacySettings) {
- // 1.x (ducktyped)
- settings = $.extend(true, {}, $.fn.form.settings, legacyParameters);
- validation = $.extend({}, $.fn.form.settings.defaults, parameters);
- module.error(settings.error.oldSyntax, element);
- module.verbose('Extending settings from legacy parameters', validation, settings);
- }
- else {
- // 2.x
- if(parameters.fields && module.is.shorthandFields(parameters.fields)) {
- parameters.fields = module.get.fieldsFromShorthand(parameters.fields);
- }
- settings = $.extend(true, {}, $.fn.form.settings, parameters);
- validation = $.extend({}, $.fn.form.settings.defaults, settings.fields);
- module.verbose('Extending settings', validation, settings);
- }
- }
- else {
- settings = $.fn.form.settings;
- validation = $.fn.form.settings.defaults;
- module.verbose('Using default form validation', validation, settings);
- }
-
- // shorthand
- namespace = settings.namespace;
- metadata = settings.metadata;
- selector = settings.selector;
- className = settings.className;
- regExp = settings.regExp;
- error = settings.error;
- moduleNamespace = 'module-' + namespace;
- eventNamespace = '.' + namespace;
-
- // grab instance
- instance = $module.data(moduleNamespace);
-
- // refresh selector cache
- module.refresh();
- },
- field: function(identifier) {
- module.verbose('Finding field with identifier', identifier);
- identifier = module.escape.string(identifier);
- var t;
- if((t=$field.filter('#' + identifier)).length > 0 ) {
- return t;
- }
- if((t=$field.filter('[name="' + identifier +'"]')).length > 0 ) {
- return t;
- }
- if((t=$field.filter('[name="' + identifier +'[]"]')).length > 0 ) {
- return t;
- }
- if((t=$field.filter('[data-' + metadata.validate + '="'+ identifier +'"]')).length > 0 ) {
- return t;
- }
- return $('');
- },
- fields: function(fields) {
- var
- $fields = $()
- ;
- $.each(fields, function(index, name) {
- $fields = $fields.add( module.get.field(name) );
- });
- return $fields;
- },
- validation: function($field) {
- var
- fieldValidation,
- identifier
- ;
- if(!validation) {
- return false;
- }
- $.each(validation, function(fieldName, field) {
- identifier = field.identifier || fieldName;
- $.each(module.get.field(identifier), function(index, groupField) {
- if(groupField == $field[0]) {
- field.identifier = identifier;
- fieldValidation = field;
- return false;
- }
- });
- });
- return fieldValidation || false;
- },
- value: function (field) {
- var
- fields = [],
- results
- ;
- fields.push(field);
- results = module.get.values.call(element, fields);
- return results[field];
- },
- values: function (fields) {
- var
- $fields = Array.isArray(fields)
- ? module.get.fields(fields)
- : $field,
- values = {}
- ;
- $fields.each(function(index, field) {
- var
- $field = $(field),
- $calendar = $field.closest(selector.uiCalendar),
- name = $field.prop('name'),
- value = $field.val(),
- isCheckbox = $field.is(selector.checkbox),
- isRadio = $field.is(selector.radio),
- isMultiple = (name.indexOf('[]') !== -1),
- isCalendar = ($calendar.length > 0 && module.can.useElement('calendar')),
- isChecked = (isCheckbox)
- ? $field.is(':checked')
- : false
- ;
- if(name) {
- if(isMultiple) {
- name = name.replace('[]', '');
- if(!values[name]) {
- values[name] = [];
- }
- if(isCheckbox) {
- if(isChecked) {
- values[name].push(value || true);
- }
- else {
- values[name].push(false);
- }
- }
- else {
- values[name].push(value);
- }
- }
- else {
- if(isRadio) {
- if(values[name] === undefined || values[name] == false) {
- values[name] = (isChecked)
- ? value || true
- : false
- ;
- }
- }
- else if(isCheckbox) {
- if(isChecked) {
- values[name] = value || true;
- }
- else {
- values[name] = false;
- }
- }
- else if(isCalendar) {
- var date = $calendar.calendar('get date');
-
- if (date !== null) {
- if (settings.dateHandling == 'date') {
- values[name] = date;
- } else if(settings.dateHandling == 'input') {
- values[name] = $calendar.calendar('get input date')
- } else if (settings.dateHandling == 'formatter') {
- var type = $calendar.calendar('setting', 'type');
-
- switch(type) {
- case 'date':
- values[name] = settings.formatter.date(date);
- break;
-
- case 'datetime':
- values[name] = settings.formatter.datetime(date);
- break;
-
- case 'time':
- values[name] = settings.formatter.time(date);
- break;
-
- case 'month':
- values[name] = settings.formatter.month(date);
- break;
-
- case 'year':
- values[name] = settings.formatter.year(date);
- break;
-
- default:
- module.debug('Wrong calendar mode', $calendar, type);
- values[name] = '';
- }
- }
- } else {
- values[name] = '';
- }
- } else {
- values[name] = value;
- }
- }
- }
- });
- return values;
- },
- dirtyFields: function() {
- return $field.filter(function(index, e) {
- return $(e).data(metadata.isDirty);
- });
- }
- },
-
- has: {
-
- field: function(identifier) {
- module.verbose('Checking for existence of a field with identifier', identifier);
- identifier = module.escape.string(identifier);
- if(typeof identifier !== 'string') {
- module.error(error.identifier, identifier);
- }
- if($field.filter('#' + identifier).length > 0 ) {
- return true;
- }
- else if( $field.filter('[name="' + identifier +'"]').length > 0 ) {
- return true;
- }
- else if( $field.filter('[data-' + metadata.validate + '="'+ identifier +'"]').length > 0 ) {
- return true;
- }
- return false;
- }
-
- },
-
- can: {
- useElement: function(element){
- if ($.fn[element] !== undefined) {
- return true;
- }
- module.error(error.noElement.replace('{element}',element));
- return false;
- }
- },
-
- escape: {
- string: function(text) {
- text = String(text);
- return text.replace(regExp.escape, '\\$&');
- }
- },
-
- add: {
- // alias
- rule: function(name, rules) {
- module.add.field(name, rules);
- },
- field: function(name, rules) {
- // Validation should have at least a standard format
- if(validation[name] === undefined || validation[name].rules === undefined) {
- validation[name] = {
- rules: []
- };
- }
- var
- newValidation = {
- rules: []
- }
- ;
- if(module.is.shorthandRules(rules)) {
- rules = Array.isArray(rules)
- ? rules
- : [rules]
- ;
- $.each(rules, function(_index, rule) {
- newValidation.rules.push({ type: rule });
- });
- }
- else {
- newValidation.rules = rules.rules;
- }
- // For each new rule, check if there's not already one with the same type
- $.each(newValidation.rules, function (_index, rule) {
- if ($.grep(validation[name].rules, function(item){ return item.type == rule.type; }).length == 0) {
- validation[name].rules.push(rule);
- }
- });
- module.debug('Adding rules', newValidation.rules, validation);
- },
- fields: function(fields) {
- var
- newValidation
- ;
- if(fields && module.is.shorthandFields(fields)) {
- newValidation = module.get.fieldsFromShorthand(fields);
- }
- else {
- newValidation = fields;
- }
- validation = $.extend({}, validation, newValidation);
- },
- prompt: function(identifier, errors, internal) {
- var
- $field = module.get.field(identifier),
- $fieldGroup = $field.closest($group),
- $prompt = $fieldGroup.children(selector.prompt),
- promptExists = ($prompt.length !== 0)
- ;
- errors = (typeof errors == 'string')
- ? [errors]
- : errors
- ;
- module.verbose('Adding field error state', identifier);
- if(!internal) {
- $fieldGroup
- .addClass(className.error)
- ;
- }
- if(settings.inline) {
- if(!promptExists) {
- $prompt = settings.templates.prompt(errors, className.label);
- $prompt
- .appendTo($fieldGroup)
- ;
- }
- $prompt
- .html(errors[0])
- ;
- if(!promptExists) {
- if(settings.transition && module.can.useElement('transition') && $module.transition('is supported')) {
- module.verbose('Displaying error with css transition', settings.transition);
- $prompt.transition(settings.transition + ' in', settings.duration);
- }
- else {
- module.verbose('Displaying error with fallback javascript animation');
- $prompt
- .fadeIn(settings.duration)
- ;
- }
- }
- else {
- module.verbose('Inline errors are disabled, no inline error added', identifier);
- }
- }
- },
- errors: function(errors) {
- module.debug('Adding form error messages', errors);
- module.set.error();
- $message
- .html( settings.templates.error(errors) )
- ;
- }
- },
-
- remove: {
- rule: function(field, rule) {
- var
- rules = Array.isArray(rule)
- ? rule
- : [rule]
- ;
- if(validation[field] === undefined || !Array.isArray(validation[field].rules)) {
- return;
- }
- if(rule === undefined) {
- module.debug('Removed all rules');
- validation[field].rules = [];
- return;
- }
- $.each(validation[field].rules, function(index, rule) {
- if(rule && rules.indexOf(rule.type) !== -1) {
- module.debug('Removed rule', rule.type);
- validation[field].rules.splice(index, 1);
- }
- });
- },
- field: function(field) {
- var
- fields = Array.isArray(field)
- ? field
- : [field]
- ;
- $.each(fields, function(index, field) {
- module.remove.rule(field);
- });
- },
- // alias
- rules: function(field, rules) {
- if(Array.isArray(field)) {
- $.each(field, function(index, field) {
- module.remove.rule(field, rules);
- });
- }
- else {
- module.remove.rule(field, rules);
- }
- },
- fields: function(fields) {
- module.remove.field(fields);
- },
- prompt: function(identifier) {
- var
- $field = module.get.field(identifier),
- $fieldGroup = $field.closest($group),
- $prompt = $fieldGroup.children(selector.prompt)
- ;
- $fieldGroup
- .removeClass(className.error)
- ;
- if(settings.inline && $prompt.is(':visible')) {
- module.verbose('Removing prompt for field', identifier);
- if(settings.transition && module.can.useElement('transition') && $module.transition('is supported')) {
- $prompt.transition(settings.transition + ' out', settings.duration, function() {
- $prompt.remove();
- });
- }
- else {
- $prompt
- .fadeOut(settings.duration, function(){
- $prompt.remove();
- })
- ;
- }
- }
- }
- },
-
- set: {
- success: function() {
- $module
- .removeClass(className.error)
- .addClass(className.success)
- ;
- },
- defaults: function () {
- $field.each(function (index, el) {
- var
- $el = $(el),
- $parent = $el.parent(),
- isCheckbox = ($el.filter(selector.checkbox).length > 0),
- isDropdown = $parent.is(selector.uiDropdown) && module.can.useElement('dropdown'),
- $calendar = $el.closest(selector.uiCalendar),
- isCalendar = ($calendar.length > 0 && module.can.useElement('calendar')),
- value = (isCheckbox)
- ? $el.is(':checked')
- : $el.val()
- ;
- if (isDropdown) {
- $parent.dropdown('save defaults');
- }
- else if (isCalendar) {
- $calendar.calendar('refresh');
- }
- $el.data(metadata.defaultValue, value);
- $el.data(metadata.isDirty, false);
- });
- },
- error: function() {
- $module
- .removeClass(className.success)
- .addClass(className.error)
- ;
- },
- value: function (field, value) {
- var
- fields = {}
- ;
- fields[field] = value;
- return module.set.values.call(element, fields);
- },
- values: function (fields) {
- if($.isEmptyObject(fields)) {
- return;
- }
- $.each(fields, function(key, value) {
- var
- $field = module.get.field(key),
- $element = $field.parent(),
- $calendar = $field.closest(selector.uiCalendar),
- isMultiple = Array.isArray(value),
- isCheckbox = $element.is(selector.uiCheckbox) && module.can.useElement('checkbox'),
- isDropdown = $element.is(selector.uiDropdown) && module.can.useElement('dropdown'),
- isRadio = ($field.is(selector.radio) && isCheckbox),
- isCalendar = ($calendar.length > 0 && module.can.useElement('calendar')),
- fieldExists = ($field.length > 0),
- $multipleField
- ;
- if(fieldExists) {
- if(isMultiple && isCheckbox) {
- module.verbose('Selecting multiple', value, $field);
- $element.checkbox('uncheck');
- $.each(value, function(index, value) {
- $multipleField = $field.filter('[value="' + value + '"]');
- $element = $multipleField.parent();
- if($multipleField.length > 0) {
- $element.checkbox('check');
- }
- });
- }
- else if(isRadio) {
- module.verbose('Selecting radio value', value, $field);
- $field.filter('[value="' + value + '"]')
- .parent(selector.uiCheckbox)
- .checkbox('check')
- ;
- }
- else if(isCheckbox) {
- module.verbose('Setting checkbox value', value, $element);
- if(value === true || value === 1) {
- $element.checkbox('check');
- }
- else {
- $element.checkbox('uncheck');
- }
- }
- else if(isDropdown) {
- module.verbose('Setting dropdown value', value, $element);
- $element.dropdown('set selected', value);
- }
- else if (isCalendar) {
- $calendar.calendar('set date',value);
- }
- else {
- module.verbose('Setting field value', value, $field);
- $field.val(value);
- }
- }
- });
- },
- dirty: function() {
- module.verbose('Setting state dirty');
- dirty = true;
- history[0] = history[1];
- history[1] = 'dirty';
-
- if (module.is.justClean()) {
- $module.trigger('dirty');
- }
- },
- clean: function() {
- module.verbose('Setting state clean');
- dirty = false;
- history[0] = history[1];
- history[1] = 'clean';
-
- if (module.is.justDirty()) {
- $module.trigger('clean');
- }
- },
- asClean: function() {
- module.set.defaults();
- module.set.clean();
- },
- asDirty: function() {
- module.set.defaults();
- module.set.dirty();
- }
- },
-
- validate: {
-
- form: function(event, ignoreCallbacks) {
- var values = module.get.values();
-
- // input keydown event will fire submit repeatedly by browser default
- if(keyHeldDown) {
- return false;
- }
-
- // reset errors
- formErrors = [];
- if( module.determine.isValid() ) {
- module.debug('Form has no validation errors, submitting');
- module.set.success();
- if(ignoreCallbacks !== true) {
- return settings.onSuccess.call(element, event, values);
- }
- }
- else {
- module.debug('Form has errors');
- module.set.error();
- if(!settings.inline) {
- module.add.errors(formErrors);
- }
- // prevent ajax submit
- if(event && $module.data('moduleApi') !== undefined) {
- event.stopImmediatePropagation();
- }
- if(ignoreCallbacks !== true) {
- return settings.onFailure.call(element, formErrors, values);
- }
- }
- },
-
- // takes a validation object and returns whether field passes validation
- field: function(field, fieldName, showErrors) {
- showErrors = (showErrors !== undefined)
- ? showErrors
- : true
- ;
- if(typeof field == 'string') {
- module.verbose('Validating field', field);
- fieldName = field;
- field = validation[field];
- }
- var
- identifier = field.identifier || fieldName,
- $field = module.get.field(identifier),
- $dependsField = (field.depends)
- ? module.get.field(field.depends)
- : false,
- fieldValid = true,
- fieldErrors = []
- ;
- if(!field.identifier) {
- module.debug('Using field name as identifier', identifier);
- field.identifier = identifier;
- }
- var isDisabled = true;
- $.each($field, function(){
- if(!$(this).prop('disabled')) {
- isDisabled = false;
- return false;
- }
- });
- if(isDisabled) {
- module.debug('Field is disabled. Skipping', identifier);
- }
- else if(field.optional && module.is.blank($field)){
- module.debug('Field is optional and blank. Skipping', identifier);
- }
- else if(field.depends && module.is.empty($dependsField)) {
- module.debug('Field depends on another value that is not present or empty. Skipping', $dependsField);
- }
- else if(field.rules !== undefined) {
- $field.closest($group).removeClass(className.error);
- $.each(field.rules, function(index, rule) {
- if( module.has.field(identifier)) {
- var invalidFields = module.validate.rule(field, rule,true) || [];
- if (invalidFields.length>0){
- module.debug('Field is invalid', identifier, rule.type);
- fieldErrors.push(module.get.prompt(rule, field));
- fieldValid = false;
- if(showErrors){
- $(invalidFields).closest($group).addClass(className.error);
- }
- }
- }
- });
- }
- if(fieldValid) {
- if(showErrors) {
- module.remove.prompt(identifier, fieldErrors);
- settings.onValid.call($field);
- }
- }
- else {
- if(showErrors) {
- formErrors = formErrors.concat(fieldErrors);
- module.add.prompt(identifier, fieldErrors, true);
- settings.onInvalid.call($field, fieldErrors);
- }
- return false;
- }
- return true;
- },
-
- // takes validation rule and returns whether field passes rule
- rule: function(field, rule, internal) {
- var
- $field = module.get.field(field.identifier),
- ancillary = module.get.ancillaryValue(rule),
- ruleName = module.get.ruleName(rule),
- ruleFunction = settings.rules[ruleName],
- invalidFields = [],
- isCheckbox = $field.is(selector.checkbox),
- isValid = function(field){
- var value = (isCheckbox ? $(field).filter(':checked').val() : $(field).val());
- // cast to string avoiding encoding special values
- value = (value === undefined || value === '' || value === null)
- ? ''
- : (settings.shouldTrim) ? $.trim(value + '') : String(value + '')
- ;
- return ruleFunction.call(field, value, ancillary, $module);
- }
- ;
- if( !$.isFunction(ruleFunction) ) {
- module.error(error.noRule, ruleName);
- return;
- }
- if(isCheckbox) {
- if (!isValid($field)) {
- invalidFields = $field;
- }
- } else {
- $.each($field, function (index, field) {
- if (!isValid(field)) {
- invalidFields.push(field);
- }
- });
- }
- return internal ? invalidFields : !(invalidFields.length>0);
- }
- },
-
- setting: function(name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, settings, name);
- }
- else if(value !== undefined) {
- settings[name] = value;
- }
- else {
- return settings[name];
- }
- },
- internal: function(name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, module, name);
- }
- else if(value !== undefined) {
- module[name] = value;
- }
- else {
- return module[name];
- }
- },
- debug: function() {
- if(!settings.silent && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.debug.apply(console, arguments);
- }
- }
- },
- verbose: function() {
- if(!settings.silent && settings.verbose && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.verbose.apply(console, arguments);
- }
- }
- },
- error: function() {
- if(!settings.silent) {
- module.error = Function.prototype.bind.call(console.error, console, settings.name + ':');
- module.error.apply(console, arguments);
- }
- },
- performance: {
- log: function(message) {
- var
- currentTime,
- executionTime,
- previousTime
- ;
- if(settings.performance) {
- currentTime = new Date().getTime();
- previousTime = time || currentTime;
- executionTime = currentTime - previousTime;
- time = currentTime;
- performance.push({
- 'Name' : message[0],
- 'Arguments' : [].slice.call(message, 1) || '',
- 'Element' : element,
- 'Execution Time' : executionTime
- });
- }
- clearTimeout(module.performance.timer);
- module.performance.timer = setTimeout(module.performance.display, 500);
- },
- display: function() {
- var
- title = settings.name + ':',
- totalTime = 0
- ;
- time = false;
- clearTimeout(module.performance.timer);
- $.each(performance, function(index, data) {
- totalTime += data['Execution Time'];
- });
- title += ' ' + totalTime + 'ms';
- if(moduleSelector) {
- title += ' \'' + moduleSelector + '\'';
- }
- if($allModules.length > 1) {
- title += ' ' + '(' + $allModules.length + ')';
- }
- if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) {
- console.groupCollapsed(title);
- if(console.table) {
- console.table(performance);
- }
- else {
- $.each(performance, function(index, data) {
- console.log(data['Name'] + ': ' + data['Execution Time']+'ms');
- });
- }
- console.groupEnd();
- }
- performance = [];
- }
- },
- invoke: function(query, passedArguments, context) {
- var
- object = instance,
- maxDepth,
- found,
- response
- ;
- passedArguments = passedArguments || queryArguments;
- context = element || context;
- if(typeof query == 'string' && object !== undefined) {
- query = query.split(/[\. ]/);
- maxDepth = query.length - 1;
- $.each(query, function(depth, value) {
- var camelCaseValue = (depth != maxDepth)
- ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
- : query
- ;
- if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
- object = object[camelCaseValue];
- }
- else if( object[camelCaseValue] !== undefined ) {
- found = object[camelCaseValue];
- return false;
- }
- else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
- object = object[value];
- }
- else if( object[value] !== undefined ) {
- found = object[value];
- return false;
- }
- else {
- return false;
- }
- });
- }
- if( $.isFunction( found ) ) {
- response = found.apply(context, passedArguments);
- }
- else if(found !== undefined) {
- response = found;
- }
- if(Array.isArray(returnedValue)) {
- returnedValue.push(response);
- }
- else if(returnedValue !== undefined) {
- returnedValue = [returnedValue, response];
- }
- else if(response !== undefined) {
- returnedValue = response;
- }
- return found;
- }
- };
- module.initialize();
- })
- ;
-
- return (returnedValue !== undefined)
- ? returnedValue
- : this
- ;
-};
-
-$.fn.form.settings = {
-
- name : 'Form',
- namespace : 'form',
-
- debug : false,
- verbose : false,
- performance : true,
-
- fields : false,
-
- keyboardShortcuts : true,
- on : 'submit',
- inline : false,
-
- delay : 200,
- revalidate : true,
- shouldTrim : true,
-
- transition : 'scale',
- duration : 200,
-
- preventLeaving : false,
- dateHandling : 'date', // 'date', 'input', 'formatter'
-
- onValid : function() {},
- onInvalid : function() {},
- onSuccess : function() { return true; },
- onFailure : function() { return false; },
- onDirty : function() {},
- onClean : function() {},
-
- metadata : {
- defaultValue : 'default',
- validate : 'validate',
- isDirty : 'isDirty'
- },
-
- regExp: {
- htmlID : /^[a-zA-Z][\w:.-]*$/g,
- bracket : /\[(.*)\]/i,
- decimal : /^\d+\.?\d*$/,
- email : /^[a-z0-9!#$%&'*+\/=?^_`{|}~.-]+@[a-z0-9]([a-z0-9-]*[a-z0-9])?(\.[a-z0-9]([a-z0-9-]*[a-z0-9])?)*$/i,
- escape : /[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|:,=@]/g,
- flags : /^\/(.*)\/(.*)?/,
- integer : /^\-?\d+$/,
- number : /^\-?\d*(\.\d+)?$/,
- url : /(https?:\/\/(?:www\.|(?!www))[^\s\.]+\.[^\s]{2,}|www\.[^\s]+\.[^\s]{2,})/i
- },
-
- text: {
- unspecifiedRule : 'Please enter a valid value',
- unspecifiedField : 'This field',
- leavingMessage : 'There are unsaved changes on this page which will be discarded if you continue.'
- },
-
- prompt: {
- empty : '{name} must have a value',
- checked : '{name} must be checked',
- email : '{name} must be a valid e-mail',
- url : '{name} must be a valid url',
- regExp : '{name} is not formatted correctly',
- integer : '{name} must be an integer',
- decimal : '{name} must be a decimal number',
- number : '{name} must be set to a number',
- is : '{name} must be "{ruleValue}"',
- isExactly : '{name} must be exactly "{ruleValue}"',
- not : '{name} cannot be set to "{ruleValue}"',
- notExactly : '{name} cannot be set to exactly "{ruleValue}"',
- contain : '{name} must contain "{ruleValue}"',
- containExactly : '{name} must contain exactly "{ruleValue}"',
- doesntContain : '{name} cannot contain "{ruleValue}"',
- doesntContainExactly : '{name} cannot contain exactly "{ruleValue}"',
- minLength : '{name} must be at least {ruleValue} characters',
- length : '{name} must be at least {ruleValue} characters',
- exactLength : '{name} must be exactly {ruleValue} characters',
- maxLength : '{name} cannot be longer than {ruleValue} characters',
- match : '{name} must match {ruleValue} field',
- different : '{name} must have a different value than {ruleValue} field',
- creditCard : '{name} must be a valid credit card number',
- minCount : '{name} must have at least {ruleValue} choices',
- exactCount : '{name} must have exactly {ruleValue} choices',
- maxCount : '{name} must have {ruleValue} or less choices'
- },
-
- selector : {
- checkbox : 'input[type="checkbox"], input[type="radio"]',
- clear : '.clear',
- field : 'input, textarea, select',
- group : '.field',
- input : 'input',
- message : '.error.message',
- prompt : '.prompt.label',
- radio : 'input[type="radio"]',
- reset : '.reset:not([type="reset"])',
- submit : '.submit:not([type="submit"])',
- uiCheckbox : '.ui.checkbox',
- uiDropdown : '.ui.dropdown',
- uiCalendar : '.ui.calendar'
- },
-
- className : {
- error : 'error',
- label : 'ui basic red pointing prompt label',
- pressed : 'down',
- success : 'success'
- },
-
- error: {
- identifier : 'You must specify a string identifier for each field',
- method : 'The method you called is not defined.',
- noRule : 'There is no rule matching the one you specified',
- oldSyntax : 'Starting in 2.0 forms now only take a single settings object. Validation settings converted to new syntax automatically.',
- noElement : 'This module requires ui {element}'
- },
-
- templates: {
-
- // template that produces error message
- error: function(errors) {
- var
- html = ''
- ;
- $.each(errors, function(index, value) {
- html += '- ' + value + '
';
- });
- html += '
';
- return $(html);
- },
-
- // template that produces label
- prompt: function(errors, labelClasses) {
- return $('')
- .addClass(labelClasses)
- .html(errors[0])
- ;
- }
- },
-
- formatter: {
- date: function(date) {
- return Intl.DateTimeFormat('en-GB').format(date);
- },
- datetime: function(date) {
- return Intl.DateTimeFormat('en-GB', {
- year: "numeric",
- month: "2-digit",
- day: "2-digit",
- hour: '2-digit',
- minute: '2-digit',
- second: '2-digit'
- }).format(date);
- },
- time: function(date) {
- return Intl.DateTimeFormat('en-GB', {
- hour: '2-digit',
- minute: '2-digit',
- second: '2-digit'
- }).format(date);
- },
- month: function(date) {
- return Intl.DateTimeFormat('en-GB', {
- month: '2-digit',
- year: 'numeric'
- }).format(date);
- },
- year: function(date) {
- return Intl.DateTimeFormat('en-GB', {
- year: 'numeric'
- }).format(date);
- }
- },
-
- rules: {
-
- // is not empty or blank string
- empty: function(value) {
- return !(value === undefined || '' === value || Array.isArray(value) && value.length === 0);
- },
-
- // checkbox checked
- checked: function() {
- return ($(this).filter(':checked').length > 0);
- },
-
- // is most likely an email
- email: function(value){
- return $.fn.form.settings.regExp.email.test(value);
- },
-
- // value is most likely url
- url: function(value) {
- return $.fn.form.settings.regExp.url.test(value);
- },
-
- // matches specified regExp
- regExp: function(value, regExp) {
- if(regExp instanceof RegExp) {
- return value.match(regExp);
- }
- var
- regExpParts = regExp.match($.fn.form.settings.regExp.flags),
- flags
- ;
- // regular expression specified as /baz/gi (flags)
- if(regExpParts) {
- regExp = (regExpParts.length >= 2)
- ? regExpParts[1]
- : regExp
- ;
- flags = (regExpParts.length >= 3)
- ? regExpParts[2]
- : ''
- ;
- }
- return value.match( new RegExp(regExp, flags) );
- },
-
- // is valid integer or matches range
- integer: function(value, range) {
- var
- intRegExp = $.fn.form.settings.regExp.integer,
- min,
- max,
- parts
- ;
- if( !range || ['', '..'].indexOf(range) !== -1) {
- // do nothing
- }
- else if(range.indexOf('..') == -1) {
- if(intRegExp.test(range)) {
- min = max = range - 0;
- }
- }
- else {
- parts = range.split('..', 2);
- if(intRegExp.test(parts[0])) {
- min = parts[0] - 0;
- }
- if(intRegExp.test(parts[1])) {
- max = parts[1] - 0;
- }
- }
- return (
- intRegExp.test(value) &&
- (min === undefined || value >= min) &&
- (max === undefined || value <= max)
- );
- },
-
- // is valid number (with decimal)
- decimal: function(value) {
- return $.fn.form.settings.regExp.decimal.test(value);
- },
-
- // is valid number
- number: function(value) {
- return $.fn.form.settings.regExp.number.test(value);
- },
-
- // is value (case insensitive)
- is: function(value, text) {
- text = (typeof text == 'string')
- ? text.toLowerCase()
- : text
- ;
- value = (typeof value == 'string')
- ? value.toLowerCase()
- : value
- ;
- return (value == text);
- },
-
- // is value
- isExactly: function(value, text) {
- return (value == text);
- },
-
- // value is not another value (case insensitive)
- not: function(value, notValue) {
- value = (typeof value == 'string')
- ? value.toLowerCase()
- : value
- ;
- notValue = (typeof notValue == 'string')
- ? notValue.toLowerCase()
- : notValue
- ;
- return (value != notValue);
- },
-
- // value is not another value (case sensitive)
- notExactly: function(value, notValue) {
- return (value != notValue);
- },
-
- // value contains text (insensitive)
- contains: function(value, text) {
- // escape regex characters
- text = text.replace($.fn.form.settings.regExp.escape, "\\$&");
- return (value.search( new RegExp(text, 'i') ) !== -1);
- },
-
- // value contains text (case sensitive)
- containsExactly: function(value, text) {
- // escape regex characters
- text = text.replace($.fn.form.settings.regExp.escape, "\\$&");
- return (value.search( new RegExp(text) ) !== -1);
- },
-
- // value contains text (insensitive)
- doesntContain: function(value, text) {
- // escape regex characters
- text = text.replace($.fn.form.settings.regExp.escape, "\\$&");
- return (value.search( new RegExp(text, 'i') ) === -1);
- },
-
- // value contains text (case sensitive)
- doesntContainExactly: function(value, text) {
- // escape regex characters
- text = text.replace($.fn.form.settings.regExp.escape, "\\$&");
- return (value.search( new RegExp(text) ) === -1);
- },
-
- // is at least string length
- minLength: function(value, requiredLength) {
- return (value !== undefined)
- ? (value.length >= requiredLength)
- : false
- ;
- },
-
- // see rls notes for 2.0.6 (this is a duplicate of minLength)
- length: function(value, requiredLength) {
- return (value !== undefined)
- ? (value.length >= requiredLength)
- : false
- ;
- },
-
- // is exactly length
- exactLength: function(value, requiredLength) {
- return (value !== undefined)
- ? (value.length == requiredLength)
- : false
- ;
- },
-
- // is less than length
- maxLength: function(value, maxLength) {
- return (value !== undefined)
- ? (value.length <= maxLength)
- : false
- ;
- },
-
- // matches another field
- match: function(value, identifier, $module) {
- var
- matchingValue,
- matchingElement
- ;
- if((matchingElement = $module.find('[data-validate="'+ identifier +'"]')).length > 0 ) {
- matchingValue = matchingElement.val();
- }
- else if((matchingElement = $module.find('#' + identifier)).length > 0) {
- matchingValue = matchingElement.val();
- }
- else if((matchingElement = $module.find('[name="' + identifier +'"]')).length > 0) {
- matchingValue = matchingElement.val();
- }
- else if((matchingElement = $module.find('[name="' + identifier +'[]"]')).length > 0 ) {
- matchingValue = matchingElement;
- }
- return (matchingValue !== undefined)
- ? ( value.toString() == matchingValue.toString() )
- : false
- ;
- },
-
- // different than another field
- different: function(value, identifier, $module) {
- // use either id or name of field
- var
- matchingValue,
- matchingElement
- ;
- if((matchingElement = $module.find('[data-validate="'+ identifier +'"]')).length > 0 ) {
- matchingValue = matchingElement.val();
- }
- else if((matchingElement = $module.find('#' + identifier)).length > 0) {
- matchingValue = matchingElement.val();
- }
- else if((matchingElement = $module.find('[name="' + identifier +'"]')).length > 0) {
- matchingValue = matchingElement.val();
- }
- else if((matchingElement = $module.find('[name="' + identifier +'[]"]')).length > 0 ) {
- matchingValue = matchingElement;
- }
- return (matchingValue !== undefined)
- ? ( value.toString() !== matchingValue.toString() )
- : false
- ;
- },
-
- creditCard: function(cardNumber, cardTypes) {
- var
- cards = {
- visa: {
- pattern : /^4/,
- length : [16]
- },
- amex: {
- pattern : /^3[47]/,
- length : [15]
- },
- mastercard: {
- pattern : /^5[1-5]/,
- length : [16]
- },
- discover: {
- pattern : /^(6011|622(12[6-9]|1[3-9][0-9]|[2-8][0-9]{2}|9[0-1][0-9]|92[0-5]|64[4-9])|65)/,
- length : [16]
- },
- unionPay: {
- pattern : /^(62|88)/,
- length : [16, 17, 18, 19]
- },
- jcb: {
- pattern : /^35(2[89]|[3-8][0-9])/,
- length : [16]
- },
- maestro: {
- pattern : /^(5018|5020|5038|6304|6759|676[1-3])/,
- length : [12, 13, 14, 15, 16, 17, 18, 19]
- },
- dinersClub: {
- pattern : /^(30[0-5]|^36)/,
- length : [14]
- },
- laser: {
- pattern : /^(6304|670[69]|6771)/,
- length : [16, 17, 18, 19]
- },
- visaElectron: {
- pattern : /^(4026|417500|4508|4844|491(3|7))/,
- length : [16]
- }
- },
- valid = {},
- validCard = false,
- requiredTypes = (typeof cardTypes == 'string')
- ? cardTypes.split(',')
- : false,
- unionPay,
- validation
- ;
-
- if(typeof cardNumber !== 'string' || cardNumber.length === 0) {
- return;
- }
-
- // allow dashes in card
- cardNumber = cardNumber.replace(/[\-]/g, '');
-
- // verify card types
- if(requiredTypes) {
- $.each(requiredTypes, function(index, type){
- // verify each card type
- validation = cards[type];
- if(validation) {
- valid = {
- length : ($.inArray(cardNumber.length, validation.length) !== -1),
- pattern : (cardNumber.search(validation.pattern) !== -1)
- };
- if(valid.length && valid.pattern) {
- validCard = true;
- }
- }
- });
-
- if(!validCard) {
- return false;
- }
- }
-
- // skip luhn for UnionPay
- unionPay = {
- number : ($.inArray(cardNumber.length, cards.unionPay.length) !== -1),
- pattern : (cardNumber.search(cards.unionPay.pattern) !== -1)
- };
- if(unionPay.number && unionPay.pattern) {
- return true;
- }
-
- // verify luhn, adapted from
- var
- length = cardNumber.length,
- multiple = 0,
- producedValue = [
- [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
- [0, 2, 4, 6, 8, 1, 3, 5, 7, 9]
- ],
- sum = 0
- ;
- while (length--) {
- sum += producedValue[multiple][parseInt(cardNumber.charAt(length), 10)];
- multiple ^= 1;
- }
- return (sum % 10 === 0 && sum > 0);
- },
-
- minCount: function(value, minCount) {
- if(minCount == 0) {
- return true;
- }
- if(minCount == 1) {
- return (value !== '');
- }
- return (value.split(',').length >= minCount);
- },
-
- exactCount: function(value, exactCount) {
- if(exactCount == 0) {
- return (value === '');
- }
- if(exactCount == 1) {
- return (value !== '' && value.search(',') === -1);
- }
- return (value.split(',').length == exactCount);
- },
-
- maxCount: function(value, maxCount) {
- if(maxCount == 0) {
- return false;
- }
- if(maxCount == 1) {
- return (value.search(',') === -1);
- }
- return (value.split(',').length <= maxCount);
- }
- }
-
-};
-
-})( jQuery, window, document );
diff --git a/src-angular/assets/semantic/src/definitions/behaviors/state.js b/src-angular/assets/semantic/src/definitions/behaviors/state.js
deleted file mode 100644
index 149b4af..0000000
--- a/src-angular/assets/semantic/src/definitions/behaviors/state.js
+++ /dev/null
@@ -1,711 +0,0 @@
-/*!
- * # Fomantic-UI - State
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-;(function ($, window, document, undefined) {
-
-"use strict";
-
-$.isFunction = $.isFunction || function(obj) {
- return typeof obj === "function" && typeof obj.nodeType !== "number";
-};
-
-window = (typeof window != 'undefined' && window.Math == Math)
- ? window
- : (typeof self != 'undefined' && self.Math == Math)
- ? self
- : Function('return this')()
-;
-
-$.fn.state = function(parameters) {
- var
- $allModules = $(this),
-
- moduleSelector = $allModules.selector || '',
-
- time = new Date().getTime(),
- performance = [],
-
- query = arguments[0],
- methodInvoked = (typeof query == 'string'),
- queryArguments = [].slice.call(arguments, 1),
-
- returnedValue
- ;
- $allModules
- .each(function() {
- var
- settings = ( $.isPlainObject(parameters) )
- ? $.extend(true, {}, $.fn.state.settings, parameters)
- : $.extend({}, $.fn.state.settings),
-
- error = settings.error,
- metadata = settings.metadata,
- className = settings.className,
- namespace = settings.namespace,
- states = settings.states,
- text = settings.text,
-
- eventNamespace = '.' + namespace,
- moduleNamespace = namespace + '-module',
-
- $module = $(this),
-
- element = this,
- instance = $module.data(moduleNamespace),
-
- module
- ;
- module = {
-
- initialize: function() {
- module.verbose('Initializing module');
-
- // allow module to guess desired state based on element
- if(settings.automatic) {
- module.add.defaults();
- }
-
- // bind events with delegated events
- if(settings.context && moduleSelector !== '') {
- $(settings.context)
- .on(moduleSelector, 'mouseenter' + eventNamespace, module.change.text)
- .on(moduleSelector, 'mouseleave' + eventNamespace, module.reset.text)
- .on(moduleSelector, 'click' + eventNamespace, module.toggle.state)
- ;
- }
- else {
- $module
- .on('mouseenter' + eventNamespace, module.change.text)
- .on('mouseleave' + eventNamespace, module.reset.text)
- .on('click' + eventNamespace, module.toggle.state)
- ;
- }
- module.instantiate();
- },
-
- instantiate: function() {
- module.verbose('Storing instance of module', module);
- instance = module;
- $module
- .data(moduleNamespace, module)
- ;
- },
-
- destroy: function() {
- module.verbose('Destroying previous module', instance);
- $module
- .off(eventNamespace)
- .removeData(moduleNamespace)
- ;
- },
-
- refresh: function() {
- module.verbose('Refreshing selector cache');
- $module = $(element);
- },
-
- add: {
- defaults: function() {
- var
- userStates = parameters && $.isPlainObject(parameters.states)
- ? parameters.states
- : {}
- ;
- $.each(settings.defaults, function(type, typeStates) {
- if( module.is[type] !== undefined && module.is[type]() ) {
- module.verbose('Adding default states', type, element);
- $.extend(settings.states, typeStates, userStates);
- }
- });
- }
- },
-
- is: {
-
- active: function() {
- return $module.hasClass(className.active);
- },
- loading: function() {
- return $module.hasClass(className.loading);
- },
- inactive: function() {
- return !( $module.hasClass(className.active) );
- },
- state: function(state) {
- if(className[state] === undefined) {
- return false;
- }
- return $module.hasClass( className[state] );
- },
-
- enabled: function() {
- return !( $module.is(settings.filter.active) );
- },
- disabled: function() {
- return ( $module.is(settings.filter.active) );
- },
- textEnabled: function() {
- return !( $module.is(settings.filter.text) );
- },
-
- // definitions for automatic type detection
- button: function() {
- return $module.is('.button:not(a, .submit)');
- },
- input: function() {
- return $module.is('input');
- },
- progress: function() {
- return $module.is('.ui.progress');
- }
- },
-
- allow: function(state) {
- module.debug('Now allowing state', state);
- states[state] = true;
- },
- disallow: function(state) {
- module.debug('No longer allowing', state);
- states[state] = false;
- },
-
- allows: function(state) {
- return states[state] || false;
- },
-
- enable: function() {
- $module.removeClass(className.disabled);
- },
-
- disable: function() {
- $module.addClass(className.disabled);
- },
-
- setState: function(state) {
- if(module.allows(state)) {
- $module.addClass( className[state] );
- }
- },
-
- removeState: function(state) {
- if(module.allows(state)) {
- $module.removeClass( className[state] );
- }
- },
-
- toggle: {
- state: function() {
- var
- apiRequest,
- requestCancelled
- ;
- if( module.allows('active') && module.is.enabled() ) {
- module.refresh();
- if($.fn.api !== undefined) {
- apiRequest = $module.api('get request');
- requestCancelled = $module.api('was cancelled');
- if( requestCancelled ) {
- module.debug('API Request cancelled by beforesend');
- settings.activateTest = function(){ return false; };
- settings.deactivateTest = function(){ return false; };
- }
- else if(apiRequest) {
- module.listenTo(apiRequest);
- return;
- }
- }
- module.change.state();
- }
- }
- },
-
- listenTo: function(apiRequest) {
- module.debug('API request detected, waiting for state signal', apiRequest);
- if(apiRequest) {
- if(text.loading) {
- module.update.text(text.loading);
- }
- $.when(apiRequest)
- .then(function() {
- if(apiRequest.state() == 'resolved') {
- module.debug('API request succeeded');
- settings.activateTest = function(){ return true; };
- settings.deactivateTest = function(){ return true; };
- }
- else {
- module.debug('API request failed');
- settings.activateTest = function(){ return false; };
- settings.deactivateTest = function(){ return false; };
- }
- module.change.state();
- })
- ;
- }
- },
-
- // checks whether active/inactive state can be given
- change: {
-
- state: function() {
- module.debug('Determining state change direction');
- // inactive to active change
- if( module.is.inactive() ) {
- module.activate();
- }
- else {
- module.deactivate();
- }
- if(settings.sync) {
- module.sync();
- }
- settings.onChange.call(element);
- },
-
- text: function() {
- if( module.is.textEnabled() ) {
- if(module.is.disabled() ) {
- module.verbose('Changing text to disabled text', text.hover);
- module.update.text(text.disabled);
- }
- else if( module.is.active() ) {
- if(text.hover) {
- module.verbose('Changing text to hover text', text.hover);
- module.update.text(text.hover);
- }
- else if(text.deactivate) {
- module.verbose('Changing text to deactivating text', text.deactivate);
- module.update.text(text.deactivate);
- }
- }
- else {
- if(text.hover) {
- module.verbose('Changing text to hover text', text.hover);
- module.update.text(text.hover);
- }
- else if(text.activate){
- module.verbose('Changing text to activating text', text.activate);
- module.update.text(text.activate);
- }
- }
- }
- }
-
- },
-
- activate: function() {
- if( settings.activateTest.call(element) ) {
- module.debug('Setting state to active');
- $module
- .addClass(className.active)
- ;
- module.update.text(text.active);
- settings.onActivate.call(element);
- }
- },
-
- deactivate: function() {
- if( settings.deactivateTest.call(element) ) {
- module.debug('Setting state to inactive');
- $module
- .removeClass(className.active)
- ;
- module.update.text(text.inactive);
- settings.onDeactivate.call(element);
- }
- },
-
- sync: function() {
- module.verbose('Syncing other buttons to current state');
- if( module.is.active() ) {
- $allModules
- .not($module)
- .state('activate');
- }
- else {
- $allModules
- .not($module)
- .state('deactivate')
- ;
- }
- },
-
- get: {
- text: function() {
- return (settings.selector.text)
- ? $module.find(settings.selector.text).text()
- : $module.html()
- ;
- },
- textFor: function(state) {
- return text[state] || false;
- }
- },
-
- flash: {
- text: function(text, duration, callback) {
- var
- previousText = module.get.text()
- ;
- module.debug('Flashing text message', text, duration);
- text = text || settings.text.flash;
- duration = duration || settings.flashDuration;
- callback = callback || function() {};
- module.update.text(text);
- setTimeout(function(){
- module.update.text(previousText);
- callback.call(element);
- }, duration);
- }
- },
-
- reset: {
- // on mouseout sets text to previous value
- text: function() {
- var
- activeText = text.active || $module.data(metadata.storedText),
- inactiveText = text.inactive || $module.data(metadata.storedText)
- ;
- if( module.is.textEnabled() ) {
- if( module.is.active() && activeText) {
- module.verbose('Resetting active text', activeText);
- module.update.text(activeText);
- }
- else if(inactiveText) {
- module.verbose('Resetting inactive text', activeText);
- module.update.text(inactiveText);
- }
- }
- }
- },
-
- update: {
- text: function(text) {
- var
- currentText = module.get.text()
- ;
- if(text && text !== currentText) {
- module.debug('Updating text', text);
- if(settings.selector.text) {
- $module
- .data(metadata.storedText, text)
- .find(settings.selector.text)
- .text(text)
- ;
- }
- else {
- $module
- .data(metadata.storedText, text)
- .html(text)
- ;
- }
- }
- else {
- module.debug('Text is already set, ignoring update', text);
- }
- }
- },
-
- setting: function(name, value) {
- module.debug('Changing setting', name, value);
- if( $.isPlainObject(name) ) {
- $.extend(true, settings, name);
- }
- else if(value !== undefined) {
- if($.isPlainObject(settings[name])) {
- $.extend(true, settings[name], value);
- }
- else {
- settings[name] = value;
- }
- }
- else {
- return settings[name];
- }
- },
- internal: function(name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, module, name);
- }
- else if(value !== undefined) {
- module[name] = value;
- }
- else {
- return module[name];
- }
- },
- debug: function() {
- if(!settings.silent && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.debug.apply(console, arguments);
- }
- }
- },
- verbose: function() {
- if(!settings.silent && settings.verbose && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.verbose.apply(console, arguments);
- }
- }
- },
- error: function() {
- if(!settings.silent) {
- module.error = Function.prototype.bind.call(console.error, console, settings.name + ':');
- module.error.apply(console, arguments);
- }
- },
- performance: {
- log: function(message) {
- var
- currentTime,
- executionTime,
- previousTime
- ;
- if(settings.performance) {
- currentTime = new Date().getTime();
- previousTime = time || currentTime;
- executionTime = currentTime - previousTime;
- time = currentTime;
- performance.push({
- 'Name' : message[0],
- 'Arguments' : [].slice.call(message, 1) || '',
- 'Element' : element,
- 'Execution Time' : executionTime
- });
- }
- clearTimeout(module.performance.timer);
- module.performance.timer = setTimeout(module.performance.display, 500);
- },
- display: function() {
- var
- title = settings.name + ':',
- totalTime = 0
- ;
- time = false;
- clearTimeout(module.performance.timer);
- $.each(performance, function(index, data) {
- totalTime += data['Execution Time'];
- });
- title += ' ' + totalTime + 'ms';
- if(moduleSelector) {
- title += ' \'' + moduleSelector + '\'';
- }
- if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) {
- console.groupCollapsed(title);
- if(console.table) {
- console.table(performance);
- }
- else {
- $.each(performance, function(index, data) {
- console.log(data['Name'] + ': ' + data['Execution Time']+'ms');
- });
- }
- console.groupEnd();
- }
- performance = [];
- }
- },
- invoke: function(query, passedArguments, context) {
- var
- object = instance,
- maxDepth,
- found,
- response
- ;
- passedArguments = passedArguments || queryArguments;
- context = element || context;
- if(typeof query == 'string' && object !== undefined) {
- query = query.split(/[\. ]/);
- maxDepth = query.length - 1;
- $.each(query, function(depth, value) {
- var camelCaseValue = (depth != maxDepth)
- ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
- : query
- ;
- if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
- object = object[camelCaseValue];
- }
- else if( object[camelCaseValue] !== undefined ) {
- found = object[camelCaseValue];
- return false;
- }
- else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
- object = object[value];
- }
- else if( object[value] !== undefined ) {
- found = object[value];
- return false;
- }
- else {
- module.error(error.method, query);
- return false;
- }
- });
- }
- if ( $.isFunction( found ) ) {
- response = found.apply(context, passedArguments);
- }
- else if(found !== undefined) {
- response = found;
- }
- if(Array.isArray(returnedValue)) {
- returnedValue.push(response);
- }
- else if(returnedValue !== undefined) {
- returnedValue = [returnedValue, response];
- }
- else if(response !== undefined) {
- returnedValue = response;
- }
- return found;
- }
- };
-
- if(methodInvoked) {
- if(instance === undefined) {
- module.initialize();
- }
- module.invoke(query);
- }
- else {
- if(instance !== undefined) {
- instance.invoke('destroy');
- }
- module.initialize();
- }
- })
- ;
-
- return (returnedValue !== undefined)
- ? returnedValue
- : this
- ;
-};
-
-$.fn.state.settings = {
-
- // module info
- name : 'State',
-
- // debug output
- debug : false,
-
- // verbose debug output
- verbose : false,
-
- // namespace for events
- namespace : 'state',
-
- // debug data includes performance
- performance : true,
-
- // callback occurs on state change
- onActivate : function() {},
- onDeactivate : function() {},
- onChange : function() {},
-
- // state test functions
- activateTest : function() { return true; },
- deactivateTest : function() { return true; },
-
- // whether to automatically map default states
- automatic : true,
-
- // activate / deactivate changes all elements instantiated at same time
- sync : false,
-
- // default flash text duration, used for temporarily changing text of an element
- flashDuration : 1000,
-
- // selector filter
- filter : {
- text : '.loading, .disabled',
- active : '.disabled'
- },
-
- context : false,
-
- // error
- error: {
- beforeSend : 'The before send function has cancelled state change',
- method : 'The method you called is not defined.'
- },
-
- // metadata
- metadata: {
- promise : 'promise',
- storedText : 'stored-text'
- },
-
- // change class on state
- className: {
- active : 'active',
- disabled : 'disabled',
- error : 'error',
- loading : 'loading',
- success : 'success',
- warning : 'warning'
- },
-
- selector: {
- // selector for text node
- text: false
- },
-
- defaults : {
- input: {
- disabled : true,
- loading : true,
- active : true
- },
- button: {
- disabled : true,
- loading : true,
- active : true,
- },
- progress: {
- active : true,
- success : true,
- warning : true,
- error : true
- }
- },
-
- states : {
- active : true,
- disabled : true,
- error : true,
- loading : true,
- success : true,
- warning : true
- },
-
- text : {
- disabled : false,
- flash : false,
- hover : false,
- active : false,
- inactive : false,
- activate : false,
- deactivate : false
- }
-
-};
-
-
-
-})( jQuery, window, document );
diff --git a/src-angular/assets/semantic/src/definitions/behaviors/visibility.js b/src-angular/assets/semantic/src/definitions/behaviors/visibility.js
deleted file mode 100644
index 97a96e2..0000000
--- a/src-angular/assets/semantic/src/definitions/behaviors/visibility.js
+++ /dev/null
@@ -1,1313 +0,0 @@
-/*!
- * # Fomantic-UI - Visibility
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-;(function ($, window, document, undefined) {
-
-'use strict';
-
-$.isFunction = $.isFunction || function(obj) {
- return typeof obj === "function" && typeof obj.nodeType !== "number";
-};
-
-window = (typeof window != 'undefined' && window.Math == Math)
- ? window
- : (typeof self != 'undefined' && self.Math == Math)
- ? self
- : Function('return this')()
-;
-
-$.fn.visibility = function(parameters) {
- var
- $allModules = $(this),
- moduleSelector = $allModules.selector || '',
-
- time = new Date().getTime(),
- performance = [],
-
- query = arguments[0],
- methodInvoked = (typeof query == 'string'),
- queryArguments = [].slice.call(arguments, 1),
- returnedValue,
-
- moduleCount = $allModules.length,
- loadedCount = 0
- ;
-
- $allModules
- .each(function() {
- var
- settings = ( $.isPlainObject(parameters) )
- ? $.extend(true, {}, $.fn.visibility.settings, parameters)
- : $.extend({}, $.fn.visibility.settings),
-
- className = settings.className,
- namespace = settings.namespace,
- error = settings.error,
- metadata = settings.metadata,
-
- eventNamespace = '.' + namespace,
- moduleNamespace = 'module-' + namespace,
-
- $window = $(window),
-
- $module = $(this),
- $context = $(settings.context),
-
- $placeholder,
-
- instance = $module.data(moduleNamespace),
-
- requestAnimationFrame = window.requestAnimationFrame
- || window.mozRequestAnimationFrame
- || window.webkitRequestAnimationFrame
- || window.msRequestAnimationFrame
- || function(callback) { setTimeout(callback, 0); },
-
- element = this,
- disabled = false,
-
- contextObserver,
- observer,
- module
- ;
-
- module = {
-
- initialize: function() {
- module.debug('Initializing', settings);
-
- module.setup.cache();
-
- if( module.should.trackChanges() ) {
-
- if(settings.type == 'image') {
- module.setup.image();
- }
- if(settings.type == 'fixed') {
- module.setup.fixed();
- }
-
- if(settings.observeChanges) {
- module.observeChanges();
- }
- module.bind.events();
- }
-
- module.save.position();
- if( !module.is.visible() ) {
- module.error(error.visible, $module);
- }
-
- if(settings.initialCheck) {
- module.checkVisibility();
- }
- module.instantiate();
- },
-
- instantiate: function() {
- module.debug('Storing instance', module);
- $module
- .data(moduleNamespace, module)
- ;
- instance = module;
- },
-
- destroy: function() {
- module.verbose('Destroying previous module');
- if(observer) {
- observer.disconnect();
- }
- if(contextObserver) {
- contextObserver.disconnect();
- }
- $window
- .off('load' + eventNamespace, module.event.load)
- .off('resize' + eventNamespace, module.event.resize)
- ;
- $context
- .off('scroll' + eventNamespace, module.event.scroll)
- .off('scrollchange' + eventNamespace, module.event.scrollchange)
- ;
- if(settings.type == 'fixed') {
- module.resetFixed();
- module.remove.placeholder();
- }
- $module
- .off(eventNamespace)
- .removeData(moduleNamespace)
- ;
- },
-
- observeChanges: function() {
- if('MutationObserver' in window) {
- contextObserver = new MutationObserver(module.event.contextChanged);
- observer = new MutationObserver(module.event.changed);
- contextObserver.observe(document, {
- childList : true,
- subtree : true
- });
- observer.observe(element, {
- childList : true,
- subtree : true
- });
- module.debug('Setting up mutation observer', observer);
- }
- },
-
- bind: {
- events: function() {
- module.verbose('Binding visibility events to scroll and resize');
- if(settings.refreshOnLoad) {
- $window
- .on('load' + eventNamespace, module.event.load)
- ;
- }
- $window
- .on('resize' + eventNamespace, module.event.resize)
- ;
- // pub/sub pattern
- $context
- .off('scroll' + eventNamespace)
- .on('scroll' + eventNamespace, module.event.scroll)
- .on('scrollchange' + eventNamespace, module.event.scrollchange)
- ;
- }
- },
-
- event: {
- changed: function(mutations) {
- module.verbose('DOM tree modified, updating visibility calculations');
- module.timer = setTimeout(function() {
- module.verbose('DOM tree modified, updating sticky menu');
- module.refresh();
- }, 100);
- },
- contextChanged: function(mutations) {
- [].forEach.call(mutations, function(mutation) {
- if(mutation.removedNodes) {
- [].forEach.call(mutation.removedNodes, function(node) {
- if(node == element || $(node).find(element).length > 0) {
- module.debug('Element removed from DOM, tearing down events');
- module.destroy();
- }
- });
- }
- });
- },
- resize: function() {
- module.debug('Window resized');
- if(settings.refreshOnResize) {
- requestAnimationFrame(module.refresh);
- }
- },
- load: function() {
- module.debug('Page finished loading');
- requestAnimationFrame(module.refresh);
- },
- // publishes scrollchange event on one scroll
- scroll: function() {
- if(settings.throttle) {
- clearTimeout(module.timer);
- module.timer = setTimeout(function() {
- $context.triggerHandler('scrollchange' + eventNamespace, [ $context.scrollTop() ]);
- }, settings.throttle);
- }
- else {
- requestAnimationFrame(function() {
- $context.triggerHandler('scrollchange' + eventNamespace, [ $context.scrollTop() ]);
- });
- }
- },
- // subscribes to scrollchange
- scrollchange: function(event, scrollPosition) {
- module.checkVisibility(scrollPosition);
- },
- },
-
- precache: function(images, callback) {
- if (!(images instanceof Array)) {
- images = [images];
- }
- var
- imagesLength = images.length,
- loadedCounter = 0,
- cache = [],
- cacheImage = document.createElement('img'),
- handleLoad = function() {
- loadedCounter++;
- if (loadedCounter >= images.length) {
- if ($.isFunction(callback)) {
- callback();
- }
- }
- }
- ;
- while (imagesLength--) {
- cacheImage = document.createElement('img');
- cacheImage.onload = handleLoad;
- cacheImage.onerror = handleLoad;
- cacheImage.src = images[imagesLength];
- cache.push(cacheImage);
- }
- },
-
- enableCallbacks: function() {
- module.debug('Allowing callbacks to occur');
- disabled = false;
- },
-
- disableCallbacks: function() {
- module.debug('Disabling all callbacks temporarily');
- disabled = true;
- },
-
- should: {
- trackChanges: function() {
- if(methodInvoked) {
- module.debug('One time query, no need to bind events');
- return false;
- }
- module.debug('Callbacks being attached');
- return true;
- }
- },
-
- setup: {
- cache: function() {
- module.cache = {
- occurred : {},
- screen : {},
- element : {},
- };
- },
- image: function() {
- var
- src = $module.data(metadata.src)
- ;
- if(src) {
- module.verbose('Lazy loading image', src);
- settings.once = true;
- settings.observeChanges = false;
-
- // show when top visible
- settings.onOnScreen = function() {
- module.debug('Image on screen', element);
- module.precache(src, function() {
- module.set.image(src, function() {
- loadedCount++;
- if(loadedCount == moduleCount) {
- settings.onAllLoaded.call(this);
- }
- settings.onLoad.call(this);
- });
- });
- };
- }
- },
- fixed: function() {
- module.debug('Setting up fixed');
- settings.once = false;
- settings.observeChanges = false;
- settings.initialCheck = true;
- settings.refreshOnLoad = true;
- if(!parameters.transition) {
- settings.transition = false;
- }
- module.create.placeholder();
- module.debug('Added placeholder', $placeholder);
- settings.onTopPassed = function() {
- module.debug('Element passed, adding fixed position', $module);
- module.show.placeholder();
- module.set.fixed();
- if(settings.transition) {
- if($.fn.transition !== undefined) {
- $module.transition(settings.transition, settings.duration);
- }
- }
- };
- settings.onTopPassedReverse = function() {
- module.debug('Element returned to position, removing fixed', $module);
- module.hide.placeholder();
- module.remove.fixed();
- };
- }
- },
-
- create: {
- placeholder: function() {
- module.verbose('Creating fixed position placeholder');
- $placeholder = $module
- .clone(false)
- .css('display', 'none')
- .addClass(className.placeholder)
- .insertAfter($module)
- ;
- }
- },
-
- show: {
- placeholder: function() {
- module.verbose('Showing placeholder');
- $placeholder
- .css('display', 'block')
- .css('visibility', 'hidden')
- ;
- }
- },
- hide: {
- placeholder: function() {
- module.verbose('Hiding placeholder');
- $placeholder
- .css('display', 'none')
- .css('visibility', '')
- ;
- }
- },
-
- set: {
- fixed: function() {
- module.verbose('Setting element to fixed position');
- $module
- .addClass(className.fixed)
- .css({
- position : 'fixed',
- top : settings.offset + 'px',
- left : 'auto',
- zIndex : settings.zIndex
- })
- ;
- settings.onFixed.call(element);
- },
- image: function(src, callback) {
- $module
- .attr('src', src)
- ;
- if(settings.transition) {
- if( $.fn.transition !== undefined) {
- if($module.hasClass(className.visible)) {
- module.debug('Transition already occurred on this image, skipping animation');
- return;
- }
- $module.transition(settings.transition, settings.duration, callback);
- }
- else {
- $module.fadeIn(settings.duration, callback);
- }
- }
- else {
- $module.show();
- }
- }
- },
-
- is: {
- onScreen: function() {
- var
- calculations = module.get.elementCalculations()
- ;
- return calculations.onScreen;
- },
- offScreen: function() {
- var
- calculations = module.get.elementCalculations()
- ;
- return calculations.offScreen;
- },
- visible: function() {
- if(module.cache && module.cache.element) {
- return !(module.cache.element.width === 0 && module.cache.element.offset.top === 0);
- }
- return false;
- },
- verticallyScrollableContext: function() {
- var
- overflowY = ($context.get(0) !== window)
- ? $context.css('overflow-y')
- : false
- ;
- return (overflowY == 'auto' || overflowY == 'scroll');
- },
- horizontallyScrollableContext: function() {
- var
- overflowX = ($context.get(0) !== window)
- ? $context.css('overflow-x')
- : false
- ;
- return (overflowX == 'auto' || overflowX == 'scroll');
- }
- },
-
- refresh: function() {
- module.debug('Refreshing constants (width/height)');
- if(settings.type == 'fixed') {
- module.resetFixed();
- }
- module.reset();
- module.save.position();
- if(settings.checkOnRefresh) {
- module.checkVisibility();
- }
- settings.onRefresh.call(element);
- },
-
- resetFixed: function () {
- module.remove.fixed();
- module.remove.occurred();
- },
-
- reset: function() {
- module.verbose('Resetting all cached values');
- if( $.isPlainObject(module.cache) ) {
- module.cache.screen = {};
- module.cache.element = {};
- }
- },
-
- checkVisibility: function(scroll) {
- module.verbose('Checking visibility of element', module.cache.element);
-
- if( !disabled && module.is.visible() ) {
-
- // save scroll position
- module.save.scroll(scroll);
-
- // update calculations derived from scroll
- module.save.calculations();
-
- // percentage
- module.passed();
-
- // reverse (must be first)
- module.passingReverse();
- module.topVisibleReverse();
- module.bottomVisibleReverse();
- module.topPassedReverse();
- module.bottomPassedReverse();
-
- // one time
- module.onScreen();
- module.offScreen();
- module.passing();
- module.topVisible();
- module.bottomVisible();
- module.topPassed();
- module.bottomPassed();
-
- // on update callback
- if(settings.onUpdate) {
- settings.onUpdate.call(element, module.get.elementCalculations());
- }
- }
- },
-
- passed: function(amount, newCallback) {
- var
- calculations = module.get.elementCalculations()
- ;
- // assign callback
- if(amount && newCallback) {
- settings.onPassed[amount] = newCallback;
- }
- else if(amount !== undefined) {
- return (module.get.pixelsPassed(amount) > calculations.pixelsPassed);
- }
- else if(calculations.passing) {
- $.each(settings.onPassed, function(amount, callback) {
- if(calculations.bottomVisible || calculations.pixelsPassed > module.get.pixelsPassed(amount)) {
- module.execute(callback, amount);
- }
- else if(!settings.once) {
- module.remove.occurred(callback);
- }
- });
- }
- },
-
- onScreen: function(newCallback) {
- var
- calculations = module.get.elementCalculations(),
- callback = newCallback || settings.onOnScreen,
- callbackName = 'onScreen'
- ;
- if(newCallback) {
- module.debug('Adding callback for onScreen', newCallback);
- settings.onOnScreen = newCallback;
- }
- if(calculations.onScreen) {
- module.execute(callback, callbackName);
- }
- else if(!settings.once) {
- module.remove.occurred(callbackName);
- }
- if(newCallback !== undefined) {
- return calculations.onOnScreen;
- }
- },
-
- offScreen: function(newCallback) {
- var
- calculations = module.get.elementCalculations(),
- callback = newCallback || settings.onOffScreen,
- callbackName = 'offScreen'
- ;
- if(newCallback) {
- module.debug('Adding callback for offScreen', newCallback);
- settings.onOffScreen = newCallback;
- }
- if(calculations.offScreen) {
- module.execute(callback, callbackName);
- }
- else if(!settings.once) {
- module.remove.occurred(callbackName);
- }
- if(newCallback !== undefined) {
- return calculations.onOffScreen;
- }
- },
-
- passing: function(newCallback) {
- var
- calculations = module.get.elementCalculations(),
- callback = newCallback || settings.onPassing,
- callbackName = 'passing'
- ;
- if(newCallback) {
- module.debug('Adding callback for passing', newCallback);
- settings.onPassing = newCallback;
- }
- if(calculations.passing) {
- module.execute(callback, callbackName);
- }
- else if(!settings.once) {
- module.remove.occurred(callbackName);
- }
- if(newCallback !== undefined) {
- return calculations.passing;
- }
- },
-
-
- topVisible: function(newCallback) {
- var
- calculations = module.get.elementCalculations(),
- callback = newCallback || settings.onTopVisible,
- callbackName = 'topVisible'
- ;
- if(newCallback) {
- module.debug('Adding callback for top visible', newCallback);
- settings.onTopVisible = newCallback;
- }
- if(calculations.topVisible) {
- module.execute(callback, callbackName);
- }
- else if(!settings.once) {
- module.remove.occurred(callbackName);
- }
- if(newCallback === undefined) {
- return calculations.topVisible;
- }
- },
-
- bottomVisible: function(newCallback) {
- var
- calculations = module.get.elementCalculations(),
- callback = newCallback || settings.onBottomVisible,
- callbackName = 'bottomVisible'
- ;
- if(newCallback) {
- module.debug('Adding callback for bottom visible', newCallback);
- settings.onBottomVisible = newCallback;
- }
- if(calculations.bottomVisible) {
- module.execute(callback, callbackName);
- }
- else if(!settings.once) {
- module.remove.occurred(callbackName);
- }
- if(newCallback === undefined) {
- return calculations.bottomVisible;
- }
- },
-
- topPassed: function(newCallback) {
- var
- calculations = module.get.elementCalculations(),
- callback = newCallback || settings.onTopPassed,
- callbackName = 'topPassed'
- ;
- if(newCallback) {
- module.debug('Adding callback for top passed', newCallback);
- settings.onTopPassed = newCallback;
- }
- if(calculations.topPassed) {
- module.execute(callback, callbackName);
- }
- else if(!settings.once) {
- module.remove.occurred(callbackName);
- }
- if(newCallback === undefined) {
- return calculations.topPassed;
- }
- },
-
- bottomPassed: function(newCallback) {
- var
- calculations = module.get.elementCalculations(),
- callback = newCallback || settings.onBottomPassed,
- callbackName = 'bottomPassed'
- ;
- if(newCallback) {
- module.debug('Adding callback for bottom passed', newCallback);
- settings.onBottomPassed = newCallback;
- }
- if(calculations.bottomPassed) {
- module.execute(callback, callbackName);
- }
- else if(!settings.once) {
- module.remove.occurred(callbackName);
- }
- if(newCallback === undefined) {
- return calculations.bottomPassed;
- }
- },
-
- passingReverse: function(newCallback) {
- var
- calculations = module.get.elementCalculations(),
- callback = newCallback || settings.onPassingReverse,
- callbackName = 'passingReverse'
- ;
- if(newCallback) {
- module.debug('Adding callback for passing reverse', newCallback);
- settings.onPassingReverse = newCallback;
- }
- if(!calculations.passing) {
- if(module.get.occurred('passing')) {
- module.execute(callback, callbackName);
- }
- }
- else if(!settings.once) {
- module.remove.occurred(callbackName);
- }
- if(newCallback !== undefined) {
- return !calculations.passing;
- }
- },
-
-
- topVisibleReverse: function(newCallback) {
- var
- calculations = module.get.elementCalculations(),
- callback = newCallback || settings.onTopVisibleReverse,
- callbackName = 'topVisibleReverse'
- ;
- if(newCallback) {
- module.debug('Adding callback for top visible reverse', newCallback);
- settings.onTopVisibleReverse = newCallback;
- }
- if(!calculations.topVisible) {
- if(module.get.occurred('topVisible')) {
- module.execute(callback, callbackName);
- }
- }
- else if(!settings.once) {
- module.remove.occurred(callbackName);
- }
- if(newCallback === undefined) {
- return !calculations.topVisible;
- }
- },
-
- bottomVisibleReverse: function(newCallback) {
- var
- calculations = module.get.elementCalculations(),
- callback = newCallback || settings.onBottomVisibleReverse,
- callbackName = 'bottomVisibleReverse'
- ;
- if(newCallback) {
- module.debug('Adding callback for bottom visible reverse', newCallback);
- settings.onBottomVisibleReverse = newCallback;
- }
- if(!calculations.bottomVisible) {
- if(module.get.occurred('bottomVisible')) {
- module.execute(callback, callbackName);
- }
- }
- else if(!settings.once) {
- module.remove.occurred(callbackName);
- }
- if(newCallback === undefined) {
- return !calculations.bottomVisible;
- }
- },
-
- topPassedReverse: function(newCallback) {
- var
- calculations = module.get.elementCalculations(),
- callback = newCallback || settings.onTopPassedReverse,
- callbackName = 'topPassedReverse'
- ;
- if(newCallback) {
- module.debug('Adding callback for top passed reverse', newCallback);
- settings.onTopPassedReverse = newCallback;
- }
- if(!calculations.topPassed) {
- if(module.get.occurred('topPassed')) {
- module.execute(callback, callbackName);
- }
- }
- else if(!settings.once) {
- module.remove.occurred(callbackName);
- }
- if(newCallback === undefined) {
- return !calculations.onTopPassed;
- }
- },
-
- bottomPassedReverse: function(newCallback) {
- var
- calculations = module.get.elementCalculations(),
- callback = newCallback || settings.onBottomPassedReverse,
- callbackName = 'bottomPassedReverse'
- ;
- if(newCallback) {
- module.debug('Adding callback for bottom passed reverse', newCallback);
- settings.onBottomPassedReverse = newCallback;
- }
- if(!calculations.bottomPassed) {
- if(module.get.occurred('bottomPassed')) {
- module.execute(callback, callbackName);
- }
- }
- else if(!settings.once) {
- module.remove.occurred(callbackName);
- }
- if(newCallback === undefined) {
- return !calculations.bottomPassed;
- }
- },
-
- execute: function(callback, callbackName) {
- var
- calculations = module.get.elementCalculations(),
- screen = module.get.screenCalculations()
- ;
- callback = callback || false;
- if(callback) {
- if(settings.continuous) {
- module.debug('Callback being called continuously', callbackName, calculations);
- callback.call(element, calculations, screen);
- }
- else if(!module.get.occurred(callbackName)) {
- module.debug('Conditions met', callbackName, calculations);
- callback.call(element, calculations, screen);
- }
- }
- module.save.occurred(callbackName);
- },
-
- remove: {
- fixed: function() {
- module.debug('Removing fixed position');
- $module
- .removeClass(className.fixed)
- .css({
- position : '',
- top : '',
- left : '',
- zIndex : ''
- })
- ;
- settings.onUnfixed.call(element);
- },
- placeholder: function() {
- module.debug('Removing placeholder content');
- if($placeholder) {
- $placeholder.remove();
- }
- },
- occurred: function(callback) {
- if(callback) {
- var
- occurred = module.cache.occurred
- ;
- if(occurred[callback] !== undefined && occurred[callback] === true) {
- module.debug('Callback can now be called again', callback);
- module.cache.occurred[callback] = false;
- }
- }
- else {
- module.cache.occurred = {};
- }
- }
- },
-
- save: {
- calculations: function() {
- module.verbose('Saving all calculations necessary to determine positioning');
- module.save.direction();
- module.save.screenCalculations();
- module.save.elementCalculations();
- },
- occurred: function(callback) {
- if(callback) {
- if(module.cache.occurred[callback] === undefined || (module.cache.occurred[callback] !== true)) {
- module.verbose('Saving callback occurred', callback);
- module.cache.occurred[callback] = true;
- }
- }
- },
- scroll: function(scrollPosition) {
- scrollPosition = scrollPosition + settings.offset || $context.scrollTop() + settings.offset;
- module.cache.scroll = scrollPosition;
- },
- direction: function() {
- var
- scroll = module.get.scroll(),
- lastScroll = module.get.lastScroll(),
- direction
- ;
- if(scroll > lastScroll && lastScroll) {
- direction = 'down';
- }
- else if(scroll < lastScroll && lastScroll) {
- direction = 'up';
- }
- else {
- direction = 'static';
- }
- module.cache.direction = direction;
- return module.cache.direction;
- },
- elementPosition: function() {
- var
- element = module.cache.element,
- screen = module.get.screenSize()
- ;
- module.verbose('Saving element position');
- // (quicker than $.extend)
- element.fits = (element.height < screen.height);
- element.offset = $module.offset();
- element.width = $module.outerWidth();
- element.height = $module.outerHeight();
- // compensate for scroll in context
- if(module.is.verticallyScrollableContext()) {
- element.offset.top += $context.scrollTop() - $context.offset().top;
- }
- if(module.is.horizontallyScrollableContext()) {
- element.offset.left += $context.scrollLeft - $context.offset().left;
- }
- // store
- module.cache.element = element;
- return element;
- },
- elementCalculations: function() {
- var
- screen = module.get.screenCalculations(),
- element = module.get.elementPosition()
- ;
- // offset
- if(settings.includeMargin) {
- element.margin = {};
- element.margin.top = parseInt($module.css('margin-top'), 10);
- element.margin.bottom = parseInt($module.css('margin-bottom'), 10);
- element.top = element.offset.top - element.margin.top;
- element.bottom = element.offset.top + element.height + element.margin.bottom;
- }
- else {
- element.top = element.offset.top;
- element.bottom = element.offset.top + element.height;
- }
-
- // visibility
- element.topPassed = (screen.top >= element.top);
- element.bottomPassed = (screen.top >= element.bottom);
- element.topVisible = (screen.bottom >= element.top) && !element.topPassed;
- element.bottomVisible = (screen.bottom >= element.bottom) && !element.bottomPassed;
- element.pixelsPassed = 0;
- element.percentagePassed = 0;
-
- // meta calculations
- element.onScreen = ((element.topVisible || element.passing) && !element.bottomPassed);
- element.passing = (element.topPassed && !element.bottomPassed);
- element.offScreen = (!element.onScreen);
-
- // passing calculations
- if(element.passing) {
- element.pixelsPassed = (screen.top - element.top);
- element.percentagePassed = (screen.top - element.top) / element.height;
- }
- module.cache.element = element;
- module.verbose('Updated element calculations', element);
- return element;
- },
- screenCalculations: function() {
- var
- scroll = module.get.scroll()
- ;
- module.save.direction();
- module.cache.screen.top = scroll;
- module.cache.screen.bottom = scroll + module.cache.screen.height;
- return module.cache.screen;
- },
- screenSize: function() {
- module.verbose('Saving window position');
- module.cache.screen = {
- height: $context.height()
- };
- },
- position: function() {
- module.save.screenSize();
- module.save.elementPosition();
- }
- },
-
- get: {
- pixelsPassed: function(amount) {
- var
- element = module.get.elementCalculations()
- ;
- if(amount.search('%') > -1) {
- return ( element.height * (parseInt(amount, 10) / 100) );
- }
- return parseInt(amount, 10);
- },
- occurred: function(callback) {
- return (module.cache.occurred !== undefined)
- ? module.cache.occurred[callback] || false
- : false
- ;
- },
- direction: function() {
- if(module.cache.direction === undefined) {
- module.save.direction();
- }
- return module.cache.direction;
- },
- elementPosition: function() {
- if(module.cache.element === undefined) {
- module.save.elementPosition();
- }
- return module.cache.element;
- },
- elementCalculations: function() {
- if(module.cache.element === undefined) {
- module.save.elementCalculations();
- }
- return module.cache.element;
- },
- screenCalculations: function() {
- if(module.cache.screen === undefined) {
- module.save.screenCalculations();
- }
- return module.cache.screen;
- },
- screenSize: function() {
- if(module.cache.screen === undefined) {
- module.save.screenSize();
- }
- return module.cache.screen;
- },
- scroll: function() {
- if(module.cache.scroll === undefined) {
- module.save.scroll();
- }
- return module.cache.scroll;
- },
- lastScroll: function() {
- if(module.cache.screen === undefined) {
- module.debug('First scroll event, no last scroll could be found');
- return false;
- }
- return module.cache.screen.top;
- }
- },
-
- setting: function(name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, settings, name);
- }
- else if(value !== undefined) {
- settings[name] = value;
- }
- else {
- return settings[name];
- }
- },
- internal: function(name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, module, name);
- }
- else if(value !== undefined) {
- module[name] = value;
- }
- else {
- return module[name];
- }
- },
- debug: function() {
- if(!settings.silent && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.debug.apply(console, arguments);
- }
- }
- },
- verbose: function() {
- if(!settings.silent && settings.verbose && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.verbose.apply(console, arguments);
- }
- }
- },
- error: function() {
- if(!settings.silent) {
- module.error = Function.prototype.bind.call(console.error, console, settings.name + ':');
- module.error.apply(console, arguments);
- }
- },
- performance: {
- log: function(message) {
- var
- currentTime,
- executionTime,
- previousTime
- ;
- if(settings.performance) {
- currentTime = new Date().getTime();
- previousTime = time || currentTime;
- executionTime = currentTime - previousTime;
- time = currentTime;
- performance.push({
- 'Name' : message[0],
- 'Arguments' : [].slice.call(message, 1) || '',
- 'Element' : element,
- 'Execution Time' : executionTime
- });
- }
- clearTimeout(module.performance.timer);
- module.performance.timer = setTimeout(module.performance.display, 500);
- },
- display: function() {
- var
- title = settings.name + ':',
- totalTime = 0
- ;
- time = false;
- clearTimeout(module.performance.timer);
- $.each(performance, function(index, data) {
- totalTime += data['Execution Time'];
- });
- title += ' ' + totalTime + 'ms';
- if(moduleSelector) {
- title += ' \'' + moduleSelector + '\'';
- }
- if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) {
- console.groupCollapsed(title);
- if(console.table) {
- console.table(performance);
- }
- else {
- $.each(performance, function(index, data) {
- console.log(data['Name'] + ': ' + data['Execution Time']+'ms');
- });
- }
- console.groupEnd();
- }
- performance = [];
- }
- },
- invoke: function(query, passedArguments, context) {
- var
- object = instance,
- maxDepth,
- found,
- response
- ;
- passedArguments = passedArguments || queryArguments;
- context = element || context;
- if(typeof query == 'string' && object !== undefined) {
- query = query.split(/[\. ]/);
- maxDepth = query.length - 1;
- $.each(query, function(depth, value) {
- var camelCaseValue = (depth != maxDepth)
- ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
- : query
- ;
- if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
- object = object[camelCaseValue];
- }
- else if( object[camelCaseValue] !== undefined ) {
- found = object[camelCaseValue];
- return false;
- }
- else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
- object = object[value];
- }
- else if( object[value] !== undefined ) {
- found = object[value];
- return false;
- }
- else {
- module.error(error.method, query);
- return false;
- }
- });
- }
- if ( $.isFunction( found ) ) {
- response = found.apply(context, passedArguments);
- }
- else if(found !== undefined) {
- response = found;
- }
- if(Array.isArray(returnedValue)) {
- returnedValue.push(response);
- }
- else if(returnedValue !== undefined) {
- returnedValue = [returnedValue, response];
- }
- else if(response !== undefined) {
- returnedValue = response;
- }
- return found;
- }
- };
-
- if(methodInvoked) {
- if(instance === undefined) {
- module.initialize();
- }
- instance.save.scroll();
- instance.save.calculations();
- module.invoke(query);
- }
- else {
- if(instance !== undefined) {
- instance.invoke('destroy');
- }
- module.initialize();
- }
- })
- ;
-
- return (returnedValue !== undefined)
- ? returnedValue
- : this
- ;
-};
-
-$.fn.visibility.settings = {
-
- name : 'Visibility',
- namespace : 'visibility',
-
- debug : false,
- verbose : false,
- performance : true,
-
- // whether to use mutation observers to follow changes
- observeChanges : true,
-
- // check position immediately on init
- initialCheck : true,
-
- // whether to refresh calculations after all page images load
- refreshOnLoad : true,
-
- // whether to refresh calculations after page resize event
- refreshOnResize : true,
-
- // should call callbacks on refresh event (resize, etc)
- checkOnRefresh : true,
-
- // callback should only occur one time
- once : true,
-
- // callback should fire continuously whe evaluates to true
- continuous : false,
-
- // offset to use with scroll top
- offset : 0,
-
- // whether to include margin in elements position
- includeMargin : false,
-
- // scroll context for visibility checks
- context : window,
-
- // visibility check delay in ms (defaults to animationFrame)
- throttle : false,
-
- // special visibility type (image, fixed)
- type : false,
-
- // z-index to use with visibility 'fixed'
- zIndex : '10',
-
- // image only animation settings
- transition : 'fade in',
- duration : 1000,
-
- // array of callbacks for percentage
- onPassed : {},
-
- // standard callbacks
- onOnScreen : false,
- onOffScreen : false,
- onPassing : false,
- onTopVisible : false,
- onBottomVisible : false,
- onTopPassed : false,
- onBottomPassed : false,
-
- // reverse callbacks
- onPassingReverse : false,
- onTopVisibleReverse : false,
- onBottomVisibleReverse : false,
- onTopPassedReverse : false,
- onBottomPassedReverse : false,
-
- // special callbacks for image
- onLoad : function() {},
- onAllLoaded : function() {},
-
- // special callbacks for fixed position
- onFixed : function() {},
- onUnfixed : function() {},
-
- // utility callbacks
- onUpdate : false, // disabled by default for performance
- onRefresh : function(){},
-
- metadata : {
- src: 'src'
- },
-
- className: {
- fixed : 'fixed',
- placeholder : 'constraint',
- visible : 'visible'
- },
-
- error : {
- method : 'The method you called is not defined.',
- visible : 'Element is hidden, you must call refresh after element becomes visible'
- }
-
-};
-
-})( jQuery, window, document );
diff --git a/src-angular/assets/semantic/src/definitions/collections/breadcrumb.less b/src-angular/assets/semantic/src/definitions/collections/breadcrumb.less
deleted file mode 100644
index df6f979..0000000
--- a/src-angular/assets/semantic/src/definitions/collections/breadcrumb.less
+++ /dev/null
@@ -1,122 +0,0 @@
-/*!
- * # Fomantic-UI - Breadcrumb
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'collection';
-@element : 'breadcrumb';
-
-@import (multiple) '../../theme.config';
-
-
-/*******************************
- Breadcrumb
-*******************************/
-
-.ui.breadcrumb {
- line-height: @lineHeight;
- display: @display;
- margin: @verticalMargin 0;
- vertical-align: @verticalAlign;
-}
-.ui.breadcrumb:first-child {
- margin-top: 0;
-}
-.ui.breadcrumb:last-child {
- margin-bottom: 0;
-}
-
-/*******************************
- Content
-*******************************/
-
-/* Divider */
-.ui.breadcrumb .divider {
- display: inline-block;
- opacity: @dividerOpacity;
- margin: 0 @dividerSpacing 0;
-
- font-size: @dividerSize;
- color: @dividerColor;
- vertical-align: @dividerVerticalAlign;
-}
-
-/* Link */
-.ui.breadcrumb a {
- color: @linkColor;
-}
-.ui.breadcrumb a:hover {
- color: @linkHoverColor;
-}
-
-
-/* Icon Divider */
-.ui.breadcrumb .icon.divider {
- font-size: @iconDividerSize;
- vertical-align: @iconDividerVerticalAlign;
-}
-
-/* Section */
-.ui.breadcrumb a.section {
- cursor: pointer;
-}
-.ui.breadcrumb .section {
- display: inline-block;
- margin: @sectionMargin;
- padding: @sectionPadding;
-}
-
-/* Loose Coupling */
-.ui.breadcrumb.segment {
- display: inline-block;
- padding: @segmentPadding;
-}
-
-& when (@variationBreadcrumbInverted) {
- /* Inverted */
- .ui.inverted.breadcrumb {
- color: @invertedColor;
- }
- .ui.inverted.breadcrumb > .active.section {
- color: @invertedActiveColor;
- }
- .ui.inverted.breadcrumb > .divider {
- color: @invertedDividerColor;
- }
-}
-
-/*******************************
- States
-*******************************/
-
-.ui.breadcrumb .active.section {
- font-weight: @activeFontWeight;
-}
-
-
-/*******************************
- Variations
-*******************************/
-
-.ui.breadcrumb {
- font-size: @medium;
-}
-& when not (@variationBreadcrumbSizes = false) {
- each(@variationBreadcrumbSizes, {
- @s: @@value;
- .ui.@{value}.breadcrumb {
- font-size: @s;
- }
- })
-}
-
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/collections/form.less b/src-angular/assets/semantic/src/definitions/collections/form.less
deleted file mode 100644
index db162f4..0000000
--- a/src-angular/assets/semantic/src/definitions/collections/form.less
+++ /dev/null
@@ -1,1143 +0,0 @@
-/*!
- * # Fomantic-UI - Form
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'collection';
-@element : 'form';
-
-@import (multiple) '../../theme.config';
-
-/*******************************
- Elements
-*******************************/
-
-/*--------------------
- Form
----------------------*/
-
-.ui.form {
- position: relative;
- max-width: 100%;
-}
-
-/*--------------------
- Content
----------------------*/
-
-.ui.form > p {
- margin: @paragraphMargin;
-}
-
-/*--------------------
- Field
----------------------*/
-
-.ui.form .field {
- clear: both;
- margin: @fieldMargin;
-}
-
-.ui.form .fields .fields,
-.ui.form .field:last-child,
-.ui.form .fields:last-child .field {
- margin-bottom: 0;
-}
-
-.ui.form .fields .field {
- clear: both;
- margin: 0;
-}
-
-
-/*--------------------
- Labels
----------------------*/
-
-.ui.form .field > label {
- display: block;
- margin: @labelMargin;
- color: @labelColor;
- font-size: @labelFontSize;
- font-weight: @labelFontWeight;
- text-transform: @labelTextTransform;
-}
-
-/*--------------------
- Standard Inputs
----------------------*/
-
-
-.ui.form textarea,
-.ui.form input:not([type]),
-.ui.form input[type="date"],
-.ui.form input[type="datetime-local"],
-.ui.form input[type="email"],
-.ui.form input[type="number"],
-.ui.form input[type="password"],
-.ui.form input[type="search"],
-.ui.form input[type="tel"],
-.ui.form input[type="time"],
-.ui.form input[type="text"],
-.ui.form input[type="file"],
-.ui.form input[type="url"] {
- width: @inputWidth;
- vertical-align: top;
-}
-
-/* Set max height on unusual input */
-.ui.form ::-webkit-datetime-edit,
-.ui.form ::-webkit-inner-spin-button {
- height: @inputLineHeight;
-}
-
-.ui.form input:not([type]),
-.ui.form input[type="date"],
-.ui.form input[type="datetime-local"],
-.ui.form input[type="email"],
-.ui.form input[type="number"],
-.ui.form input[type="password"],
-.ui.form input[type="search"],
-.ui.form input[type="tel"],
-.ui.form input[type="time"],
-.ui.form input[type="text"],
-.ui.form input[type="file"],
-.ui.form input[type="url"] {
- font-family: @inputFont;
- margin: 0;
- outline: none;
- -webkit-appearance: none;
- -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
-
- line-height: @inputLineHeight;
- padding: @inputPadding;
- font-size: @inputFontSize;
-
- background: @inputBackground;
- border: @inputBorder;
- color: @inputColor;
- border-radius: @inputBorderRadius;
- box-shadow: @inputBoxShadow;
- transition: @inputTransition;
-}
-
-/* Text Area */
-.ui.input textarea,
-.ui.form textarea {
- margin: 0;
- -webkit-appearance: none;
- -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
-
- padding: @textAreaPadding;
- background: @textAreaBackground;
- border: @textAreaBorder;
- outline: none;
- color: @inputColor;
- border-radius: @inputBorderRadius;
- box-shadow: @inputBoxShadow;
- transition: @textAreaTransition;
- font-size: @textAreaFontSize;
- font-family: @inputFont;
- line-height: @textAreaLineHeight;
- resize: @textAreaResize;
-}
-.ui.form textarea:not([rows]) {
- height: @textAreaHeight;
- min-height: @textAreaMinHeight;
- max-height: @textAreaMaxHeight;
-}
-
-.ui.form textarea,
-.ui.form input[type="checkbox"] {
- vertical-align: @checkboxVerticalAlign;
-}
-
-/*--------------------
- Checkbox margin
----------------------*/
-
-.ui.form .fields:not(.grouped):not(.inline) .field:not(:only-child) label + .ui.ui.checkbox {
- margin-top: @checkboxLabelFieldTopMargin;
-}
-.ui.form .fields:not(.grouped):not(.inline) .field:not(:only-child) .ui.checkbox {
- margin-top: @inputLineHeight + @checkboxFieldTopMargin;
-}
-.ui.form .fields:not(.grouped):not(.inline) .field:not(:only-child) .ui.toggle.checkbox {
- margin-top: @inputLineHeight + @checkboxToggleFieldTopMargin;
-}
-.ui.form .fields:not(.grouped):not(.inline) .field:not(:only-child) .ui.slider.checkbox {
- margin-top: @inputLineHeight + @checkboxSliderFieldTopMargin;
-}
-.ui.ui.form .field .fields .field:not(:only-child) .ui.checkbox {
- margin-top: @checkboxFieldTopMargin / 2;
-}
-.ui.ui.form .field .fields .field:not(:only-child) .ui.toggle.checkbox {
- margin-top: @checkboxToggleFieldTopMargin / 2;
-}
-.ui.ui.form .field .fields .field:not(:only-child) .ui.slider.checkbox {
- margin-top: @checkboxSliderFieldTopMargin / 2;
-}
-
-& when (@variationFormTransparent) {
- /*--------------------
- Transparent
- ---------------------*/
-
- .ui.form .field .transparent.input:not(.icon) input,
- .ui.form .field input.transparent,
- .ui.form .field textarea.transparent {
- padding: @transparentPadding;
- }
-
- .ui.form .field input.transparent,
- .ui.form .field textarea.transparent {
- border-color: transparent !important;
- background-color: transparent !important;
- box-shadow: none !important;
- }
-}
-/*--------------------------
- Input w/ attached Button
----------------------------*/
-
-.ui.form input.attached {
- width: auto;
-}
-
-
-/*--------------------
- Basic Select
----------------------*/
-
-.ui.form select {
- display: block;
- height: auto;
- width: 100%;
- background: @selectBackground;
- border: @selectBorder;
- border-radius: @selectBorderRadius;
- box-shadow: @selectBoxShadow;
- padding: @selectPadding;
- color: @selectColor;
- transition: @selectTransition;
-}
-
-/*--------------------
- Dropdown
----------------------*/
-
-/* Block */
-.ui.form .field > .selection.dropdown {
- min-width: auto;
- width: 100%;
-}
-.ui.form .field > .selection.dropdown > .dropdown.icon {
- float: right;
-}
-
-& when (@variationFormInline) {
- /* Inline */
- .ui.form .inline.fields .field > .selection.dropdown,
- .ui.form .inline.field > .selection.dropdown {
- width: auto;
- }
- .ui.form .inline.fields .field > .selection.dropdown > .dropdown.icon,
- .ui.form .inline.field > .selection.dropdown > .dropdown.icon {
- float: none;
- }
-}
-
-/*--------------------
- UI Input
----------------------*/
-
-/* Block */
-.ui.form .field .ui.input,
-.ui.form .fields .field .ui.input,
-.ui.form .wide.field .ui.input {
- width: 100%;
-}
-
-& when (@variationFormInline) {
- /* Inline */
- .ui.form .inline.fields .field:not(.wide) .ui.input,
- .ui.form .inline.field:not(.wide) .ui.input {
- width: auto;
- vertical-align: middle;
- }
-}
-
-/* Auto Input */
-.ui.form .fields .field .ui.input input,
-.ui.form .field .ui.input input {
- width: auto;
-}
-
-/* Full Width Input */
-.ui.form .ten.fields .ui.input input,
-.ui.form .nine.fields .ui.input input,
-.ui.form .eight.fields .ui.input input,
-.ui.form .seven.fields .ui.input input,
-.ui.form .six.fields .ui.input input,
-.ui.form .five.fields .ui.input input,
-.ui.form .four.fields .ui.input input,
-.ui.form .three.fields .ui.input input,
-.ui.form .two.fields .ui.input input,
-.ui.form .wide.field .ui.input input {
- flex: 1 0 auto;
- width: 0;
-}
-
-
-/*--------------------
- Types of Messages
----------------------*/
-& when (@variationFormStates) {
- each(@formStates, {
- @state: replace(@key, '@', '');
- .ui.form .@{state}.message,
- .ui.form .@{state}.message:empty {
- display: none;
- }
- })
-}
-
-/* Assumptions */
-.ui.form .message:first-child {
- margin-top: 0;
-}
-
-/*--------------------
- Validation Prompt
----------------------*/
-
-.ui.form .field .prompt.label {
- white-space: normal;
- background: @promptBackground !important;
- border: @promptBorder !important;
- color: @promptTextColor !important;
-}
-& when (@variationFormInline) {
- .ui.form .inline.fields .field .prompt,
- .ui.form .inline.field .prompt {
- vertical-align: top;
- margin: @inlinePromptMargin;
- }
- .ui.form .inline.fields .field .prompt:before,
- .ui.form .inline.field .prompt:before {
- border-width: 0 0 @inlinePromptBorderWidth @inlinePromptBorderWidth;
- bottom: auto;
- right: auto;
- top: 50%;
- left: 0;
- }
-}
-
-
-/*******************************
- States
-*******************************/
-
-/*--------------------
- Autofilled
----------------------*/
-
-.ui.form .field.field input:-webkit-autofill {
- box-shadow: 0 0 0 100px @inputAutoFillBackground inset !important;
- border-color: @inputAutoFillBorder !important;
-}
-
-/* Focus */
-.ui.form .field.field input:-webkit-autofill:focus {
- box-shadow: 0 0 0 100px @inputAutoFillFocusBackground inset !important;
- border-color: @inputAutoFillFocusBorder !important;
-}
-
-
-
-/*--------------------
- Placeholder
----------------------*/
-
-/* browsers require these rules separate */
-.ui.form ::-webkit-input-placeholder {
- color: @inputPlaceholderColor;
-}
-.ui.form :-ms-input-placeholder {
- color: @inputPlaceholderColor !important;
-}
-.ui.form ::-moz-placeholder {
- color: @inputPlaceholderColor;
-}
-
-.ui.form :focus::-webkit-input-placeholder {
- color: @inputPlaceholderFocusColor;
-}
-.ui.form :focus:-ms-input-placeholder {
- color: @inputPlaceholderFocusColor !important;
-}
-.ui.form :focus::-moz-placeholder {
- color: @inputPlaceholderFocusColor;
-}
-
-
-
-/*--------------------
- Focus
----------------------*/
-
-.ui.form input:not([type]):focus,
-.ui.form input[type="date"]:focus,
-.ui.form input[type="datetime-local"]:focus,
-.ui.form input[type="email"]:focus,
-.ui.form input[type="number"]:focus,
-.ui.form input[type="password"]:focus,
-.ui.form input[type="search"]:focus,
-.ui.form input[type="tel"]:focus,
-.ui.form input[type="time"]:focus,
-.ui.form input[type="text"]:focus,
-.ui.form input[type="file"]:focus,
-.ui.form input[type="url"]:focus {
- color: @inputFocusColor;
- border-color: @inputFocusBorderColor;
- border-radius: @inputFocusBorderRadius;
- background: @inputFocusBackground;
- box-shadow: @inputFocusBoxShadow;
-}
-& when (@variationInputAction) {
- .ui.form .ui.action.input:not(.left) input:not([type]):focus,
- .ui.form .ui.action.input:not(.left) input[type="date"]:focus,
- .ui.form .ui.action.input:not(.left) input[type="datetime-local"]:focus,
- .ui.form .ui.action.input:not(.left) input[type="email"]:focus,
- .ui.form .ui.action.input:not(.left) input[type="number"]:focus,
- .ui.form .ui.action.input:not(.left) input[type="password"]:focus,
- .ui.form .ui.action.input:not(.left) input[type="search"]:focus,
- .ui.form .ui.action.input:not(.left) input[type="tel"]:focus,
- .ui.form .ui.action.input:not(.left) input[type="time"]:focus,
- .ui.form .ui.action.input:not(.left) input[type="text"]:focus,
- .ui.form .ui.action.input:not(.left) input[type="file"]:focus,
- .ui.form .ui.action.input:not(.left) input[type="url"]:focus {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- }
-
- .ui.form .ui.action.input.left input:not([type]),
- .ui.form .ui.action.input.left input[type="date"],
- .ui.form .ui.action.input.left input[type="datetime-local"],
- .ui.form .ui.action.input.left input[type="email"],
- .ui.form .ui.action.input.left input[type="number"],
- .ui.form .ui.action.input.left input[type="password"],
- .ui.form .ui.action.input.left input[type="search"],
- .ui.form .ui.action.input.left input[type="tel"],
- .ui.form .ui.action.input.left input[type="time"],
- .ui.form .ui.action.input.left input[type="text"],
- .ui.form .ui.action.input.left input[type="file"],
- .ui.form .ui.action.input.left input[type="url"] {
- border-bottom-left-radius: 0;
- border-top-left-radius: 0;
- }
-}
-.ui.form textarea:focus {
- color: @textAreaFocusColor;
- border-color: @textAreaFocusBorderColor;
- border-radius: @textAreaFocusBorderRadius;
- background: @textAreaFocusBackground;
- box-shadow: @textAreaFocusBoxShadow;
- -webkit-appearance: none;
-}
-
-& when (@variationFormStates) {
- /*--------------------
- States
- ---------------------*/
- each(@formStates, {
- @state: replace(@key, '@', '');
- @c: @formStates[@@state][color];
- @bg: @formStates[@@state][background];
- @bdc: @formStates[@@state][borderColor];
-
- /* On Form */
- .ui.form.@{state} .@{state}.message:not(:empty) {
- display: block;
- }
- .ui.form.@{state} .compact.@{state}.message:not(:empty) {
- display: inline-block;
- }
- .ui.form.@{state} .icon.@{state}.message:not(:empty) {
- display: flex;
- }
-
- /* On Field(s) */
- .ui.form .fields.@{state} .@{state}.message:not(:empty),
- .ui.form .field.@{state} .@{state}.message:not(:empty) {
- display: block;
- }
- .ui.form .fields.@{state} .compact.@{state}.message:not(:empty),
- .ui.form .field.@{state} .compact.@{state}.message:not(:empty) {
- display: inline-block;
- }
- .ui.form .fields.@{state} .icon.@{state}.message:not(:empty),
- .ui.form .field.@{state} .icon.@{state}.message:not(:empty) {
- display: flex;
- }
-
- .ui.ui.form .fields.@{state} .field label,
- .ui.ui.form .field.@{state} label,
- .ui.ui.form .fields.@{state} .field .input,
- .ui.ui.form .field.@{state} .input {
- color: @c;
- }
-
- .ui.form .fields.@{state} .field .corner.label,
- .ui.form .field.@{state} .corner.label {
- border-color: @c;
- color: @formStates[@@state][cornerLabelColor];
- }
-
- .ui.form .fields.@{state} .field textarea,
- .ui.form .fields.@{state} .field select,
- .ui.form .fields.@{state} .field input:not([type]),
- .ui.form .fields.@{state} .field input[type="date"],
- .ui.form .fields.@{state} .field input[type="datetime-local"],
- .ui.form .fields.@{state} .field input[type="email"],
- .ui.form .fields.@{state} .field input[type="number"],
- .ui.form .fields.@{state} .field input[type="password"],
- .ui.form .fields.@{state} .field input[type="search"],
- .ui.form .fields.@{state} .field input[type="tel"],
- .ui.form .fields.@{state} .field input[type="time"],
- .ui.form .fields.@{state} .field input[type="text"],
- .ui.form .fields.@{state} .field input[type="file"],
- .ui.form .fields.@{state} .field input[type="url"],
- .ui.form .field.@{state} textarea,
- .ui.form .field.@{state} select,
- .ui.form .field.@{state} input:not([type]),
- .ui.form .field.@{state} input[type="date"],
- .ui.form .field.@{state} input[type="datetime-local"],
- .ui.form .field.@{state} input[type="email"],
- .ui.form .field.@{state} input[type="number"],
- .ui.form .field.@{state} input[type="password"],
- .ui.form .field.@{state} input[type="search"],
- .ui.form .field.@{state} input[type="tel"],
- .ui.form .field.@{state} input[type="time"],
- .ui.form .field.@{state} input[type="text"],
- .ui.form .field.@{state} input[type="file"],
- .ui.form .field.@{state} input[type="url"] {
- color: @c;
- background: @bg;
- border-color: @formStates[@@state][borderColor];
- border-radius: @formStates[@@state][borderRadius];
- box-shadow: @formStates[@@state][boxShadow];
- }
-
- .ui.form .field.@{state} textarea:focus,
- .ui.form .field.@{state} select:focus,
- .ui.form .field.@{state} input:not([type]):focus,
- .ui.form .field.@{state} input[type="date"]:focus,
- .ui.form .field.@{state} input[type="datetime-local"]:focus,
- .ui.form .field.@{state} input[type="email"]:focus,
- .ui.form .field.@{state} input[type="number"]:focus,
- .ui.form .field.@{state} input[type="password"]:focus,
- .ui.form .field.@{state} input[type="search"]:focus,
- .ui.form .field.@{state} input[type="tel"]:focus,
- .ui.form .field.@{state} input[type="time"]:focus,
- .ui.form .field.@{state} input[type="text"]:focus,
- .ui.form .field.@{state} input[type="file"]:focus,
- .ui.form .field.@{state} input[type="url"]:focus {
- background: @formStates[@@state][inputFocusBackground];
- border-color: @formStates[@@state][inputFocusBorderColor];
- color: @formStates[@@state][inputFocusColor];
-
- box-shadow: @formStates[@@state][inputFocusBoxShadow];
- }
-
- /* Preserve Native Select Stylings */
- .ui.form .field.@{state} select {
- -webkit-appearance: menulist-button;
- }
-
- /*------------------
- Input State
- --------------------*/
- /* Transparent */
- .ui.form .field.@{state} .transparent.input input,
- .ui.form .field.@{state} .transparent.input textarea,
- .ui.form .field.@{state} input.transparent,
- .ui.form .field.@{state} textarea.transparent {
- background-color: @formStates[@@state][transparentBackground] !important;
- color: @formStates[@@state][transparentColor] !important;
- }
-
- /* Autofilled */
- .ui.form .@{state}.@{state} input:-webkit-autofill {
- box-shadow: 0 0 0 100px @formStates[@@state][inputAutoFillBackground] inset !important;
- border-color: @formStates[@@state][inputAutoFillBorderColor] !important;
- }
-
- /* Placeholder */
- .ui.form .@{state} ::-webkit-input-placeholder {
- color: @formStates[@@state][inputPlaceholderColor];
- }
- .ui.form .@{state} :-ms-input-placeholder {
- color: @formStates[@@state][inputPlaceholderColor] !important;
- }
- .ui.form .@{state} ::-moz-placeholder {
- color: @formStates[@@state][inputPlaceholderColor];
- }
-
- .ui.form .@{state} :focus::-webkit-input-placeholder {
- color: @formStates[@@state][inputPlaceholderFocusColor];
- }
- .ui.form .@{state} :focus:-ms-input-placeholder {
- color: @formStates[@@state][inputPlaceholderFocusColor] !important;
- }
- .ui.form .@{state} :focus::-moz-placeholder {
- color: @formStates[@@state][inputPlaceholderFocusColor];
- }
-
- /*------------------
- Dropdown State
- --------------------*/
-
- .ui.form .fields.@{state} .field .ui.dropdown,
- .ui.form .fields.@{state} .field .ui.dropdown .item,
- .ui.form .field.@{state} .ui.dropdown,
- .ui.form .field.@{state} .ui.dropdown .text,
- .ui.form .field.@{state} .ui.dropdown .item {
- background: @bg;
- color: @c;
- }
- .ui.form .fields.@{state} .field .ui.dropdown,
- .ui.form .field.@{state} .ui.dropdown {
- border-color: @bdc !important;
- }
- .ui.form .fields.@{state} .field .ui.dropdown:hover,
- .ui.form .field.@{state} .ui.dropdown:hover {
- border-color: @bdc !important;
- }
- .ui.form .fields.@{state} .field .ui.dropdown:hover .menu,
- .ui.form .field.@{state} .ui.dropdown:hover .menu {
- border-color: @bdc;
- }
- .ui.form .fields.@{state} .field .ui.multiple.selection.dropdown > .label,
- .ui.form .field.@{state} .ui.multiple.selection.dropdown > .label {
- background-color: @formStates[@@state][dropdownLabelBackground];
- color: @formStates[@@state][dropdownLabelColor];
- }
-
- /* Hover */
- .ui.form .fields.@{state} .field .ui.dropdown .menu .item:hover,
- .ui.form .field.@{state} .ui.dropdown .menu .item:hover {
- background-color: @formStates[@@state][dropdownHoverBackground];
- }
-
- /* Selected */
- .ui.form .fields.@{state} .field .ui.dropdown .menu .selected.item,
- .ui.form .field.@{state} .ui.dropdown .menu .selected.item {
- background-color: @formStates[@@state][dropdownSelectedBackground];
- }
-
- /* Active */
- .ui.form .fields.@{state} .field .ui.dropdown .menu .active.item,
- .ui.form .field.@{state} .ui.dropdown .menu .active.item {
- background-color: @formStates[@@state][dropdownActiveBackground] !important;
- }
-
- /*--------------------
- Checkbox State
- ---------------------*/
- .ui.form .fields.@{state} .field .checkbox:not(.toggle):not(.slider) label,
- .ui.form .field.@{state} .checkbox:not(.toggle):not(.slider) label,
- .ui.form .fields.@{state} .field .checkbox:not(.toggle):not(.slider) .box,
- .ui.form .field.@{state} .checkbox:not(.toggle):not(.slider) .box {
- color: @c;
- }
- .ui.form .fields.@{state} .field .checkbox:not(.toggle):not(.slider) label:before,
- .ui.form .field.@{state} .checkbox:not(.toggle):not(.slider) label:before,
- .ui.form .fields.@{state} .field .checkbox:not(.toggle):not(.slider) .box:before,
- .ui.form .field.@{state} .checkbox:not(.toggle):not(.slider) .box:before {
- background: @bg;
- border-color: @bdc;
- }
- .ui.form .fields.@{state} .field .checkbox label:after,
- .ui.form .field.@{state} .checkbox label:after,
- .ui.form .fields.@{state} .field .checkbox .box:after,
- .ui.form .field.@{state} .checkbox .box:after {
- color: @c;
- }
- })
-}
-
-& when (@variationFormDisabled) {
- /*--------------------
- Disabled
- ---------------------*/
-
- .ui.form .disabled.fields .field,
- .ui.form .disabled.field,
- .ui.form .field :disabled {
- pointer-events: none;
- opacity: @disabledOpacity;
- }
- .ui.form .field.disabled > label,
- .ui.form .fields.disabled > label {
- opacity: @disabledLabelOpacity;
- }
- .ui.form .field.disabled :disabled {
- opacity: 1;
- }
-}
-
-& when (@variationFormLoading) {
- /*--------------
- Loading
- ---------------*/
-
- .ui.loading.form {
- position: relative;
- cursor: default;
- pointer-events: none;
- }
- .ui.loading.form:before {
- position: absolute;
- content: '';
- top: 0;
- left: 0;
- background: @loaderDimmerColor;
- width: 100%;
- height: 100%;
- z-index: @loaderDimmerZIndex;
- }
-
- .ui.loading.form.segments:before {
- border-radius: @defaultBorderRadius;
- }
-
- .ui.loading.form:after {
- position: absolute;
- content: '';
- top: 50%;
- left: 50%;
-
- margin: @loaderMargin;
- width: @loaderSize;
- height: @loaderSize;
-
- animation: loader @loaderSpeed infinite linear;
- border: @loaderLineWidth solid @loaderLineColor;
- border-radius: @circularRadius;
-
- box-shadow: 0 0 0 1px transparent;
- visibility: visible;
- z-index: @loaderLineZIndex;
- }
-}
-
-/*******************************
- Element Types
-*******************************/
-
-& when (@variationFormRequired) {
- /*--------------------
- Required Field
- ---------------------*/
-
- .ui.form .required.fields:not(.grouped) > .field > label:after,
- .ui.form .required.fields.grouped > label:after,
- .ui.form .required.field > label:after,
- .ui.form .required.fields:not(.grouped) > .field > .checkbox:after,
- .ui.form .required.field > .checkbox:after,
- .ui.form label.required:after {
- margin: @requiredMargin;
- content: @requiredContent;
- color: @requiredColor;
- }
-
- .ui.form .required.fields:not(.grouped) > .field > label:after,
- .ui.form .required.fields.grouped > label:after,
- .ui.form .required.field > label:after,
- .ui.form label.required:after {
- display: inline-block;
- vertical-align: top;
- }
-
- .ui.form .required.fields:not(.grouped) > .field > .checkbox:after,
- .ui.form .required.field > .checkbox:after {
- position: absolute;
- top: 0;
- left: 100%;
- }
-}
-
-
-/*******************************
- Variations
-*******************************/
-
-& when (@variationFormInverted) {
- /*--------------------
- Inverted Colors
- ---------------------*/
-
- .ui.inverted.form label,
- .ui.form .inverted.segment label,
- .ui.form .inverted.segment .ui.checkbox label,
- .ui.form .inverted.segment .ui.checkbox .box,
- .ui.inverted.form .ui.checkbox label,
- .ui.inverted.form .ui.checkbox .box,
- .ui.inverted.form .inline.fields > label,
- .ui.inverted.form .inline.fields .field > label,
- .ui.inverted.form .inline.fields .field > p,
- .ui.inverted.form .inline.field > label,
- .ui.inverted.form .inline.field > p {
- color: @invertedLabelColor;
- }
- .ui.inverted.loading.form {
- color: @invertedLoaderLineColor;
- }
- .ui.inverted.loading.form:before {
- background: @loaderInvertedDimmerColor;
- }
- /* Inverted Field */
- .ui.inverted.form input:not([type]),
- .ui.inverted.form input[type="date"],
- .ui.inverted.form input[type="datetime-local"],
- .ui.inverted.form input[type="email"],
- .ui.inverted.form input[type="number"],
- .ui.inverted.form input[type="password"],
- .ui.inverted.form input[type="search"],
- .ui.inverted.form input[type="tel"],
- .ui.inverted.form input[type="time"],
- .ui.inverted.form input[type="text"],
- .ui.inverted.form input[type="file"],
- .ui.inverted.form input[type="url"] {
- background: @invertedInputBackground;
- border-color: @invertedInputBorderColor;
- color: @invertedInputColor;
- box-shadow: @invertedInputBoxShadow;
- }
-}
-
-& when (@variationFormGrouped) {
- /*--------------------
- Field Groups
- ---------------------*/
-
- /* Grouped Vertically */
-
- .ui.form .grouped.fields {
- display: block;
- margin: @groupedMargin;
- }
-
- .ui.form .grouped.fields:last-child {
- margin-bottom: 0;
- }
-
- .ui.form .grouped.fields > label {
- margin: @groupedLabelMargin;
- color: @groupedLabelColor;
- font-size: @groupedLabelFontSize;
- font-weight: @groupedLabelFontWeight;
- text-transform: @groupedLabelTextTransform;
- }
-
- .ui.form .grouped.fields .field,
- .ui.form .grouped.inline.fields .field {
- display: block;
- margin: @groupedFieldMargin;
- padding: 0;
- }
-}
-
-/*--------------------
- Fields
----------------------*/
-
-/* Split fields */
-.ui.form .fields {
- display: flex;
- flex-direction: row;
- margin: @fieldsMargin;
-}
-.ui.form .fields > .field {
- flex: 0 1 auto;
- padding-left: (@gutterWidth / 2);
- padding-right: (@gutterWidth / 2);
-}
-.ui.form .fields > .field:first-child {
- border-left: none;
- box-shadow: none;
-}
-
-/* Other Combinations */
-.ui.form .two.fields > .fields,
-.ui.form .two.fields > .field {
- width: @twoColumn;
-}
-.ui.form .three.fields > .fields,
-.ui.form .three.fields > .field {
- width: @threeColumn;
-}
-.ui.form .four.fields > .fields,
-.ui.form .four.fields > .field {
- width: @fourColumn;
-}
-.ui.form .five.fields > .fields,
-.ui.form .five.fields > .field {
- width: @fiveColumn;
-}
-.ui.form .six.fields > .fields,
-.ui.form .six.fields > .field {
- width: @sixColumn;
-}
-.ui.form .seven.fields > .fields,
-.ui.form .seven.fields > .field {
- width: @sevenColumn;
-}
-.ui.form .eight.fields > .fields,
-.ui.form .eight.fields > .field {
- width: @eightColumn;
-}
-.ui.form .nine.fields > .fields,
-.ui.form .nine.fields > .field {
- width: @nineColumn;
-}
-.ui.form .ten.fields > .fields,
-.ui.form .ten.fields > .field {
- width: @tenColumn;
-}
-
-/* Swap to full width on mobile */
-@media only screen and (max-width : @largestMobileScreen) {
- .ui.form .fields {
- flex-wrap: wrap;
- }
-
- .ui[class*="equal width"].form:not(.unstackable) .fields > .field,
- .ui.form:not(.unstackable) [class*="equal width"].fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .two.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .two.fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .three.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .three.fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .four.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .four.fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .five.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .five.fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .six.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .six.fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .seven.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .seven.fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .eight.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .eight.fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .nine.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .nine.fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .ten.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .ten.fields:not(.unstackable) > .field {
- width: @oneColumn !important;
- margin: 0 0 @rowDistance;
- }
-}
-
-
-/* Sizing Combinations */
-.ui.form .fields .wide.field {
- width: @oneWide;
- padding-left: (@gutterWidth / 2);
- padding-right: (@gutterWidth / 2);
-}
-
-.ui.form .one.wide.field {
- width: @oneWide !important;
-}
-.ui.form .two.wide.field {
- width: @twoWide !important;
-}
-.ui.form .three.wide.field {
- width: @threeWide !important;
-}
-.ui.form .four.wide.field {
- width: @fourWide !important;
-}
-.ui.form .five.wide.field {
- width: @fiveWide !important;
-}
-.ui.form .six.wide.field {
- width: @sixWide !important;
-}
-.ui.form .seven.wide.field {
- width: @sevenWide !important;
-}
-.ui.form .eight.wide.field {
- width: @eightWide !important;
-}
-.ui.form .nine.wide.field {
- width: @nineWide !important;
-}
-.ui.form .ten.wide.field {
- width: @tenWide !important;
-}
-.ui.form .eleven.wide.field {
- width: @elevenWide !important;
-}
-.ui.form .twelve.wide.field {
- width: @twelveWide !important;
-}
-.ui.form .thirteen.wide.field {
- width: @thirteenWide !important;
-}
-.ui.form .fourteen.wide.field {
- width: @fourteenWide !important;
-}
-.ui.form .fifteen.wide.field {
- width: @fifteenWide !important;
-}
-.ui.form .sixteen.wide.field {
- width: @sixteenWide !important;
-}
-
-/* Swap to full width on mobile */
-@media only screen and (max-width : @largestMobileScreen) {
- .ui.form:not(.unstackable) .two.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .two.fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .three.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .three.fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .four.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .four.fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .five.fields:not(.unstackable) > .fields,
- .ui.form:not(.unstackable) .five.fields:not(.unstackable) > .field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .two.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .three.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .four.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .five.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .six.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .seven.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .eight.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .nine.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .ten.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .eleven.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .twelve.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .thirteen.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .fourteen.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .fifteen.wide.field,
- .ui.form:not(.unstackable) .fields:not(.unstackable) > .sixteen.wide.field {
- width: @oneColumn !important;
- }
- .ui.form .fields {
- margin-bottom: 0;
- }
-}
-
-/*--------------------
- Equal Width
----------------------*/
-
-.ui[class*="equal width"].form .fields > .field,
-.ui.form [class*="equal width"].fields > .field {
- width: 100%;
- flex: 1 1 auto;
-}
-
-& when (@variationFormInline) {
- /*--------------------
- Inline Fields
- ---------------------*/
-
- .ui.form .inline.fields {
- margin: @fieldMargin;
- align-items: center;
- }
- .ui.form .inline.fields .field {
- margin: 0;
- padding: @inlineFieldsMargin;
- }
-
- /* Inline Label */
- .ui.form .inline.fields > label,
- .ui.form .inline.fields .field > label,
- .ui.form .inline.fields .field > p,
- .ui.form .inline.field > label,
- .ui.form .inline.field > p {
- display: inline-block;
- width: auto;
- margin-top: 0;
- margin-bottom: 0;
- vertical-align: baseline;
- font-size: @inlineLabelFontSize;
- font-weight: @inlineLabelFontWeight;
- color: @inlineLabelColor;
- text-transform: @inlineLabelTextTransform;
- }
-
- /* Grouped Inline Label */
- .ui.form .inline.fields > label {
- margin: @groupedInlineLabelMargin;
- }
-
- /* Inline Input */
- .ui.form .inline.fields .field > input,
- .ui.form .inline.fields .field > select,
- .ui.form .inline.field > input,
- .ui.form .inline.field > select {
- display: inline-block;
- width: auto;
-
- margin-top: 0;
- margin-bottom: 0;
-
- vertical-align: middle;
- font-size: @inlineInputSize;
- }
-
- /* Label */
- .ui.form .inline.fields .field > :first-child,
- .ui.form .inline.field > :first-child {
- margin: 0 @inlineLabelDistance 0 0;
- }
- .ui.form .inline.fields .field > :only-child,
- .ui.form .inline.field > :only-child {
- margin: 0;
- }
-
- /* Wide */
- .ui.form .inline.fields .wide.field {
- display: flex;
- align-items: center;
- }
- .ui.form .inline.fields .wide.field > input,
- .ui.form .inline.fields .wide.field > select {
- width: 100%;
- }
-}
-
-
-/*--------------------
- Sizes
----------------------*/
-
-.ui.form,
-.ui.form .field .dropdown,
-.ui.form .field .dropdown .menu > .item {
- font-size: @medium;
-}
-& when not (@variationFormSizes = false) {
- each(@variationFormSizes, {
- @s: @@value;
- .ui.@{value}.form,
- .ui.@{value}.form .field .dropdown,
- .ui.@{value}.form .field .dropdown .menu > .item {
- font-size: @s;
- }
- })
-}
-
-
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/collections/grid.less b/src-angular/assets/semantic/src/definitions/collections/grid.less
deleted file mode 100644
index 0cbf3de..0000000
--- a/src-angular/assets/semantic/src/definitions/collections/grid.less
+++ /dev/null
@@ -1,1945 +0,0 @@
-/*!
- * # Fomantic-UI - Grid
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'collection';
-@element : 'grid';
-
-@import (multiple) '../../theme.config';
-
-/*******************************
- Standard
-*******************************/
-
-.ui.grid {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- align-items: stretch;
- padding: 0;
-}
-
-/*----------------------
- Remove Gutters
------------------------*/
-
-.ui.grid {
- margin-top: -(@rowSpacing / 2);
- margin-bottom: -(@rowSpacing / 2);
- margin-left: -(@gutterWidth / 2);
- margin-right: -(@gutterWidth / 2);
-}
-.ui.relaxed.grid {
- margin-left: -(@relaxedGutterWidth / 2);
- margin-right: -(@relaxedGutterWidth / 2);
-}
-.ui[class*="very relaxed"].grid {
- margin-left: -(@veryRelaxedGutterWidth / 2);
- margin-right: -(@veryRelaxedGutterWidth / 2);
-}
-
-
-/* Preserve Rows Spacing on Consecutive Grids */
-.ui.grid + .grid {
- margin-top: @consecutiveGridDistance;
-}
-
-/*-------------------
- Columns
---------------------*/
-
-/* Standard 16 column */
-.ui.grid > .column:not(.row),
-.ui.grid > .row > .column {
- position: relative;
- display: inline-block;
-
- width: @oneWide;
- padding-left: (@gutterWidth / 2);
- padding-right: (@gutterWidth / 2);
- vertical-align: top;
-}
-
-.ui.grid > * {
- padding-left: (@gutterWidth / 2);
- padding-right: (@gutterWidth / 2);
-}
-
-/*-------------------
- Rows
---------------------*/
-
-.ui.grid > .row {
- position: relative;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- justify-content: inherit;
- align-items: stretch;
- width: 100% !important;
- padding: 0;
- padding-top: (@rowSpacing / 2);
- padding-bottom: (@rowSpacing / 2);
-}
-
-/*-------------------
- Columns
---------------------*/
-
-/* Vertical padding when no rows */
-.ui.grid > .column:not(.row) {
- padding-top: (@rowSpacing / 2);
- padding-bottom: (@rowSpacing / 2);
-}
-.ui.grid > .row > .column {
- margin-top: 0;
- margin-bottom: 0;
-}
-
-/*-------------------
- Content
---------------------*/
-
-.ui.grid > .row > img,
-.ui.grid > .row > .column > img {
- max-width: @columnMaxImageWidth;
-}
-
-/*-------------------
- Loose Coupling
---------------------*/
-
-/* Collapse Margin on Consecutive Grid */
-.ui.grid > .ui.grid:first-child {
- margin-top: 0;
-}
-.ui.grid > .ui.grid:last-child {
- margin-bottom: 0;
-}
-
-/* Segment inside Aligned Grid */
-.ui.grid .aligned.row > .column > .segment:not(.compact):not(.attached),
-.ui.aligned.grid .column > .segment:not(.compact):not(.attached) {
- width: 100%;
-}
-
-/* Align Dividers with Gutter */
-.ui.grid .row + .ui.divider {
- flex-grow: 1;
- margin: (@rowSpacing / 2) (@gutterWidth / 2);
-}
-.ui.grid .column + .ui.vertical.divider {
- height: e(%("calc(50%% - %d)", @rowSpacing / 2));
-}
-
-/* Remove Border on Last Horizontal Segment */
-.ui.grid > .row > .column:last-child > .horizontal.segment,
-.ui.grid > .column:last-child > .horizontal.segment {
- box-shadow: none;
-}
-
-/*******************************
- Variations
-*******************************/
-
-& when (@variationGridPage) {
- /*-----------------------
- Page Grid
- -------------------------*/
-
- @media only screen and (max-width: @largestMobileScreen) {
- .ui.page.grid {
- width: @mobileWidth;
- padding-left: @mobileGutter;
- padding-right: @mobileGutter;
- margin-left: 0;
- margin-right: 0;
- }
- }
- @media only screen and (min-width: @tabletBreakpoint) and (max-width: @largestTabletScreen) {
- .ui.page.grid {
- width: @tabletWidth;
- margin-left: @tabletMargin;
- margin-right: @tabletMargin;
- padding-left: @tabletGutter;
- padding-right: @tabletGutter;
- }
- }
- @media only screen and (min-width: @computerBreakpoint) and (max-width: @largestSmallMonitor) {
- .ui.page.grid {
- width: @computerWidth;
- margin-left: @computerMargin;
- margin-right: @computerMargin;
- padding-left: @computerGutter;
- padding-right: @computerGutter;
- }
- }
- @media only screen and (min-width: @largeMonitorBreakpoint) and (max-width: @largestLargeMonitor) {
- .ui.page.grid {
- width: @largeMonitorWidth;
- margin-left: @largeMonitorMargin;
- margin-right: @largeMonitorMargin;
- padding-left: @largeMonitorGutter;
- padding-right: @largeMonitorGutter;
- }
- }
- @media only screen and (min-width: @widescreenMonitorBreakpoint) {
- .ui.page.grid {
- width: @widescreenMonitorWidth;
- margin-left: @widescreenMargin;
- margin-right: @widescreenMargin;
- padding-left: @widescreenMonitorGutter;
- padding-right: @widescreenMonitorGutter;
- }
- }
-}
-
-
-/*-------------------
- Column Count
---------------------*/
-
-/* Assume full width with one column */
-.ui.grid > .column:only-child,
-.ui.grid > .row > .column:only-child {
- width: @oneColumn;
-}
-
-/* Grid Based */
-.ui[class*="one column"].grid > .row > .column,
-.ui[class*="one column"].grid > .column:not(.row) {
- width: @oneColumn;
-}
-.ui[class*="two column"].grid > .row > .column,
-.ui[class*="two column"].grid > .column:not(.row) {
- width: @twoColumn;
-}
-.ui[class*="three column"].grid > .row > .column,
-.ui[class*="three column"].grid > .column:not(.row) {
- width: @threeColumn;
-}
-.ui[class*="four column"].grid > .row > .column,
-.ui[class*="four column"].grid > .column:not(.row) {
- width: @fourColumn;
-}
-.ui[class*="five column"].grid > .row > .column,
-.ui[class*="five column"].grid > .column:not(.row) {
- width: @fiveColumn;
-}
-.ui[class*="six column"].grid > .row > .column,
-.ui[class*="six column"].grid > .column:not(.row) {
- width: @sixColumn;
-}
-.ui[class*="seven column"].grid > .row > .column,
-.ui[class*="seven column"].grid > .column:not(.row) {
- width: @sevenColumn;
-}
-.ui[class*="eight column"].grid > .row > .column,
-.ui[class*="eight column"].grid > .column:not(.row) {
- width: @eightColumn;
-}
-.ui[class*="nine column"].grid > .row > .column,
-.ui[class*="nine column"].grid > .column:not(.row) {
- width: @nineColumn;
-}
-.ui[class*="ten column"].grid > .row > .column,
-.ui[class*="ten column"].grid > .column:not(.row) {
- width: @tenColumn;
-}
-.ui[class*="eleven column"].grid > .row > .column,
-.ui[class*="eleven column"].grid > .column:not(.row) {
- width: @elevenColumn;
-}
-.ui[class*="twelve column"].grid > .row > .column,
-.ui[class*="twelve column"].grid > .column:not(.row) {
- width: @twelveColumn;
-}
-.ui[class*="thirteen column"].grid > .row > .column,
-.ui[class*="thirteen column"].grid > .column:not(.row) {
- width: @thirteenColumn;
-}
-.ui[class*="fourteen column"].grid > .row > .column,
-.ui[class*="fourteen column"].grid > .column:not(.row) {
- width: @fourteenColumn;
-}
-.ui[class*="fifteen column"].grid > .row > .column,
-.ui[class*="fifteen column"].grid > .column:not(.row) {
- width: @fifteenColumn;
-}
-.ui[class*="sixteen column"].grid > .row > .column,
-.ui[class*="sixteen column"].grid > .column:not(.row) {
- width: @sixteenColumn;
-}
-
-/* Row Based Overrides */
-.ui.grid > [class*="one column"].row > .column {
- width: @oneColumn !important;
-}
-.ui.grid > [class*="two column"].row > .column {
- width: @twoColumn !important;
-}
-.ui.grid > [class*="three column"].row > .column {
- width: @threeColumn !important;
-}
-.ui.grid > [class*="four column"].row > .column {
- width: @fourColumn !important;
-}
-.ui.grid > [class*="five column"].row > .column {
- width: @fiveColumn !important;
-}
-.ui.grid > [class*="six column"].row > .column {
- width: @sixColumn !important;
-}
-.ui.grid > [class*="seven column"].row > .column {
- width: @sevenColumn !important;
-}
-.ui.grid > [class*="eight column"].row > .column {
- width: @eightColumn !important;
-}
-.ui.grid > [class*="nine column"].row > .column {
- width: @nineColumn !important;
-}
-.ui.grid > [class*="ten column"].row > .column {
- width: @tenColumn !important;
-}
-.ui.grid > [class*="eleven column"].row > .column {
- width: @elevenColumn !important;
-}
-.ui.grid > [class*="twelve column"].row > .column {
- width: @twelveColumn !important;
-}
-.ui.grid > [class*="thirteen column"].row > .column {
- width: @thirteenColumn !important;
-}
-.ui.grid > [class*="fourteen column"].row > .column {
- width: @fourteenColumn !important;
-}
-.ui.grid > [class*="fifteen column"].row > .column {
- width: @fifteenColumn !important;
-}
-.ui.grid > [class*="sixteen column"].row > .column {
- width: @sixteenColumn !important;
-}
-
-& when (@variationGridCelled) and (@variationGridPage){
- /* Celled Page */
- .ui.celled.page.grid {
- box-shadow: none;
- }
-}
-
-/*-------------------
- Column Width
---------------------*/
-
-/* Sizing Combinations */
-.ui.grid > .row > [class*="one wide"].column,
-.ui.grid > .column.row > [class*="one wide"].column,
-.ui.grid > [class*="one wide"].column,
-.ui.column.grid > [class*="one wide"].column {
- width: @oneWide !important;
-}
-.ui.grid > .row > [class*="two wide"].column,
-.ui.grid > .column.row > [class*="two wide"].column,
-.ui.grid > [class*="two wide"].column,
-.ui.column.grid > [class*="two wide"].column {
- width: @twoWide !important;
-}
-.ui.grid > .row > [class*="three wide"].column,
-.ui.grid > .column.row > [class*="three wide"].column,
-.ui.grid > [class*="three wide"].column,
-.ui.column.grid > [class*="three wide"].column {
- width: @threeWide !important;
-}
-.ui.grid > .row > [class*="four wide"].column,
-.ui.grid > .column.row > [class*="four wide"].column,
-.ui.grid > [class*="four wide"].column,
-.ui.column.grid > [class*="four wide"].column {
- width: @fourWide !important;
-}
-.ui.grid > .row > [class*="five wide"].column,
-.ui.grid > .column.row > [class*="five wide"].column,
-.ui.grid > [class*="five wide"].column,
-.ui.column.grid > [class*="five wide"].column {
- width: @fiveWide !important;
-}
-.ui.grid > .row > [class*="six wide"].column,
-.ui.grid > .column.row > [class*="six wide"].column,
-.ui.grid > [class*="six wide"].column,
-.ui.column.grid > [class*="six wide"].column {
- width: @sixWide !important;
-}
-.ui.grid > .row > [class*="seven wide"].column,
-.ui.grid > .column.row > [class*="seven wide"].column,
-.ui.grid > [class*="seven wide"].column,
-.ui.column.grid > [class*="seven wide"].column {
- width: @sevenWide !important;
-}
-.ui.grid > .row > [class*="eight wide"].column,
-.ui.grid > .column.row > [class*="eight wide"].column,
-.ui.grid > [class*="eight wide"].column,
-.ui.column.grid > [class*="eight wide"].column {
- width: @eightWide !important;
-}
-.ui.grid > .row > [class*="nine wide"].column,
-.ui.grid > .column.row > [class*="nine wide"].column,
-.ui.grid > [class*="nine wide"].column,
-.ui.column.grid > [class*="nine wide"].column {
- width: @nineWide !important;
-}
-.ui.grid > .row > [class*="ten wide"].column,
-.ui.grid > .column.row > [class*="ten wide"].column,
-.ui.grid > [class*="ten wide"].column,
-.ui.column.grid > [class*="ten wide"].column {
- width: @tenWide !important;
-}
-.ui.grid > .row > [class*="eleven wide"].column,
-.ui.grid > .column.row > [class*="eleven wide"].column,
-.ui.grid > [class*="eleven wide"].column,
-.ui.column.grid > [class*="eleven wide"].column {
- width: @elevenWide !important;
-}
-.ui.grid > .row > [class*="twelve wide"].column,
-.ui.grid > .column.row > [class*="twelve wide"].column,
-.ui.grid > [class*="twelve wide"].column,
-.ui.column.grid > [class*="twelve wide"].column {
- width: @twelveWide !important;
-}
-.ui.grid > .row > [class*="thirteen wide"].column,
-.ui.grid > .column.row > [class*="thirteen wide"].column,
-.ui.grid > [class*="thirteen wide"].column,
-.ui.column.grid > [class*="thirteen wide"].column {
- width: @thirteenWide !important;
-}
-.ui.grid > .row > [class*="fourteen wide"].column,
-.ui.grid > .column.row > [class*="fourteen wide"].column,
-.ui.grid > [class*="fourteen wide"].column,
-.ui.column.grid > [class*="fourteen wide"].column {
- width: @fourteenWide !important;
-}
-.ui.grid > .row > [class*="fifteen wide"].column,
-.ui.grid > .column.row > [class*="fifteen wide"].column,
-.ui.grid > [class*="fifteen wide"].column,
-.ui.column.grid > [class*="fifteen wide"].column {
- width: @fifteenWide !important;
-}
-.ui.grid > .row > [class*="sixteen wide"].column,
-.ui.grid > .column.row > [class*="sixteen wide"].column,
-.ui.grid > [class*="sixteen wide"].column,
-.ui.column.grid > [class*="sixteen wide"].column {
- width: @sixteenWide !important;
-}
-
-/*----------------------
- Width per Device
------------------------*/
-
-/* Mobile Sizing Combinations */
-@media only screen and (min-width: @mobileBreakpoint) and (max-width: @largestMobileScreen) {
- .ui.grid > .row > [class*="one wide mobile"].column,
- .ui.grid > .column.row > [class*="one wide mobile"].column,
- .ui.grid > [class*="one wide mobile"].column,
- .ui.column.grid > [class*="one wide mobile"].column {
- width: @oneWide !important;
- }
- .ui.grid > .row > [class*="two wide mobile"].column,
- .ui.grid > .column.row > [class*="two wide mobile"].column,
- .ui.grid > [class*="two wide mobile"].column,
- .ui.column.grid > [class*="two wide mobile"].column {
- width: @twoWide !important;
- }
- .ui.grid > .row > [class*="three wide mobile"].column,
- .ui.grid > .column.row > [class*="three wide mobile"].column,
- .ui.grid > [class*="three wide mobile"].column,
- .ui.column.grid > [class*="three wide mobile"].column {
- width: @threeWide !important;
- }
- .ui.grid > .row > [class*="four wide mobile"].column,
- .ui.grid > .column.row > [class*="four wide mobile"].column,
- .ui.grid > [class*="four wide mobile"].column,
- .ui.column.grid > [class*="four wide mobile"].column {
- width: @fourWide !important;
- }
- .ui.grid > .row > [class*="five wide mobile"].column,
- .ui.grid > .column.row > [class*="five wide mobile"].column,
- .ui.grid > [class*="five wide mobile"].column,
- .ui.column.grid > [class*="five wide mobile"].column {
- width: @fiveWide !important;
- }
- .ui.grid > .row > [class*="six wide mobile"].column,
- .ui.grid > .column.row > [class*="six wide mobile"].column,
- .ui.grid > [class*="six wide mobile"].column,
- .ui.column.grid > [class*="six wide mobile"].column {
- width: @sixWide !important;
- }
- .ui.grid > .row > [class*="seven wide mobile"].column,
- .ui.grid > .column.row > [class*="seven wide mobile"].column,
- .ui.grid > [class*="seven wide mobile"].column,
- .ui.column.grid > [class*="seven wide mobile"].column {
- width: @sevenWide !important;
- }
- .ui.grid > .row > [class*="eight wide mobile"].column,
- .ui.grid > .column.row > [class*="eight wide mobile"].column,
- .ui.grid > [class*="eight wide mobile"].column,
- .ui.column.grid > [class*="eight wide mobile"].column {
- width: @eightWide !important;
- }
- .ui.grid > .row > [class*="nine wide mobile"].column,
- .ui.grid > .column.row > [class*="nine wide mobile"].column,
- .ui.grid > [class*="nine wide mobile"].column,
- .ui.column.grid > [class*="nine wide mobile"].column {
- width: @nineWide !important;
- }
- .ui.grid > .row > [class*="ten wide mobile"].column,
- .ui.grid > .column.row > [class*="ten wide mobile"].column,
- .ui.grid > [class*="ten wide mobile"].column,
- .ui.column.grid > [class*="ten wide mobile"].column {
- width: @tenWide !important;
- }
- .ui.grid > .row > [class*="eleven wide mobile"].column,
- .ui.grid > .column.row > [class*="eleven wide mobile"].column,
- .ui.grid > [class*="eleven wide mobile"].column,
- .ui.column.grid > [class*="eleven wide mobile"].column {
- width: @elevenWide !important;
- }
- .ui.grid > .row > [class*="twelve wide mobile"].column,
- .ui.grid > .column.row > [class*="twelve wide mobile"].column,
- .ui.grid > [class*="twelve wide mobile"].column,
- .ui.column.grid > [class*="twelve wide mobile"].column {
- width: @twelveWide !important;
- }
- .ui.grid > .row > [class*="thirteen wide mobile"].column,
- .ui.grid > .column.row > [class*="thirteen wide mobile"].column,
- .ui.grid > [class*="thirteen wide mobile"].column,
- .ui.column.grid > [class*="thirteen wide mobile"].column {
- width: @thirteenWide !important;
- }
- .ui.grid > .row > [class*="fourteen wide mobile"].column,
- .ui.grid > .column.row > [class*="fourteen wide mobile"].column,
- .ui.grid > [class*="fourteen wide mobile"].column,
- .ui.column.grid > [class*="fourteen wide mobile"].column {
- width: @fourteenWide !important;
- }
- .ui.grid > .row > [class*="fifteen wide mobile"].column,
- .ui.grid > .column.row > [class*="fifteen wide mobile"].column,
- .ui.grid > [class*="fifteen wide mobile"].column,
- .ui.column.grid > [class*="fifteen wide mobile"].column {
- width: @fifteenWide !important;
- }
- .ui.grid > .row > [class*="sixteen wide mobile"].column,
- .ui.grid > .column.row > [class*="sixteen wide mobile"].column,
- .ui.grid > [class*="sixteen wide mobile"].column,
- .ui.column.grid > [class*="sixteen wide mobile"].column {
- width: @sixteenWide !important;
- }
-}
-
-/* Tablet Sizing Combinations */
-@media only screen and (min-width: @tabletBreakpoint) and (max-width: @largestTabletScreen) {
- .ui.grid > .row > [class*="one wide tablet"].column,
- .ui.grid > .column.row > [class*="one wide tablet"].column,
- .ui.grid > [class*="one wide tablet"].column,
- .ui.column.grid > [class*="one wide tablet"].column {
- width: @oneWide !important;
- }
- .ui.grid > .row > [class*="two wide tablet"].column,
- .ui.grid > .column.row > [class*="two wide tablet"].column,
- .ui.grid > [class*="two wide tablet"].column,
- .ui.column.grid > [class*="two wide tablet"].column {
- width: @twoWide !important;
- }
- .ui.grid > .row > [class*="three wide tablet"].column,
- .ui.grid > .column.row > [class*="three wide tablet"].column,
- .ui.grid > [class*="three wide tablet"].column,
- .ui.column.grid > [class*="three wide tablet"].column {
- width: @threeWide !important;
- }
- .ui.grid > .row > [class*="four wide tablet"].column,
- .ui.grid > .column.row > [class*="four wide tablet"].column,
- .ui.grid > [class*="four wide tablet"].column,
- .ui.column.grid > [class*="four wide tablet"].column {
- width: @fourWide !important;
- }
- .ui.grid > .row > [class*="five wide tablet"].column,
- .ui.grid > .column.row > [class*="five wide tablet"].column,
- .ui.grid > [class*="five wide tablet"].column,
- .ui.column.grid > [class*="five wide tablet"].column {
- width: @fiveWide !important;
- }
- .ui.grid > .row > [class*="six wide tablet"].column,
- .ui.grid > .column.row > [class*="six wide tablet"].column,
- .ui.grid > [class*="six wide tablet"].column,
- .ui.column.grid > [class*="six wide tablet"].column {
- width: @sixWide !important;
- }
- .ui.grid > .row > [class*="seven wide tablet"].column,
- .ui.grid > .column.row > [class*="seven wide tablet"].column,
- .ui.grid > [class*="seven wide tablet"].column,
- .ui.column.grid > [class*="seven wide tablet"].column {
- width: @sevenWide !important;
- }
- .ui.grid > .row > [class*="eight wide tablet"].column,
- .ui.grid > .column.row > [class*="eight wide tablet"].column,
- .ui.grid > [class*="eight wide tablet"].column,
- .ui.column.grid > [class*="eight wide tablet"].column {
- width: @eightWide !important;
- }
- .ui.grid > .row > [class*="nine wide tablet"].column,
- .ui.grid > .column.row > [class*="nine wide tablet"].column,
- .ui.grid > [class*="nine wide tablet"].column,
- .ui.column.grid > [class*="nine wide tablet"].column {
- width: @nineWide !important;
- }
- .ui.grid > .row > [class*="ten wide tablet"].column,
- .ui.grid > .column.row > [class*="ten wide tablet"].column,
- .ui.grid > [class*="ten wide tablet"].column,
- .ui.column.grid > [class*="ten wide tablet"].column {
- width: @tenWide !important;
- }
- .ui.grid > .row > [class*="eleven wide tablet"].column,
- .ui.grid > .column.row > [class*="eleven wide tablet"].column,
- .ui.grid > [class*="eleven wide tablet"].column,
- .ui.column.grid > [class*="eleven wide tablet"].column {
- width: @elevenWide !important;
- }
- .ui.grid > .row > [class*="twelve wide tablet"].column,
- .ui.grid > .column.row > [class*="twelve wide tablet"].column,
- .ui.grid > [class*="twelve wide tablet"].column,
- .ui.column.grid > [class*="twelve wide tablet"].column {
- width: @twelveWide !important;
- }
- .ui.grid > .row > [class*="thirteen wide tablet"].column,
- .ui.grid > .column.row > [class*="thirteen wide tablet"].column,
- .ui.grid > [class*="thirteen wide tablet"].column,
- .ui.column.grid > [class*="thirteen wide tablet"].column {
- width: @thirteenWide !important;
- }
- .ui.grid > .row > [class*="fourteen wide tablet"].column,
- .ui.grid > .column.row > [class*="fourteen wide tablet"].column,
- .ui.grid > [class*="fourteen wide tablet"].column,
- .ui.column.grid > [class*="fourteen wide tablet"].column {
- width: @fourteenWide !important;
- }
- .ui.grid > .row > [class*="fifteen wide tablet"].column,
- .ui.grid > .column.row > [class*="fifteen wide tablet"].column,
- .ui.grid > [class*="fifteen wide tablet"].column,
- .ui.column.grid > [class*="fifteen wide tablet"].column {
- width: @fifteenWide !important;
- }
- .ui.grid > .row > [class*="sixteen wide tablet"].column,
- .ui.grid > .column.row > [class*="sixteen wide tablet"].column,
- .ui.grid > [class*="sixteen wide tablet"].column,
- .ui.column.grid > [class*="sixteen wide tablet"].column {
- width: @sixteenWide !important;
- }
-}
-
-/* Computer/Desktop Sizing Combinations */
-@media only screen and (min-width: @computerBreakpoint) {
- .ui.grid > .row > [class*="one wide computer"].column,
- .ui.grid > .column.row > [class*="one wide computer"].column,
- .ui.grid > [class*="one wide computer"].column,
- .ui.column.grid > [class*="one wide computer"].column {
- width: @oneWide !important;
- }
- .ui.grid > .row > [class*="two wide computer"].column,
- .ui.grid > .column.row > [class*="two wide computer"].column,
- .ui.grid > [class*="two wide computer"].column,
- .ui.column.grid > [class*="two wide computer"].column {
- width: @twoWide !important;
- }
- .ui.grid > .row > [class*="three wide computer"].column,
- .ui.grid > .column.row > [class*="three wide computer"].column,
- .ui.grid > [class*="three wide computer"].column,
- .ui.column.grid > [class*="three wide computer"].column {
- width: @threeWide !important;
- }
- .ui.grid > .row > [class*="four wide computer"].column,
- .ui.grid > .column.row > [class*="four wide computer"].column,
- .ui.grid > [class*="four wide computer"].column,
- .ui.column.grid > [class*="four wide computer"].column {
- width: @fourWide !important;
- }
- .ui.grid > .row > [class*="five wide computer"].column,
- .ui.grid > .column.row > [class*="five wide computer"].column,
- .ui.grid > [class*="five wide computer"].column,
- .ui.column.grid > [class*="five wide computer"].column {
- width: @fiveWide !important;
- }
- .ui.grid > .row > [class*="six wide computer"].column,
- .ui.grid > .column.row > [class*="six wide computer"].column,
- .ui.grid > [class*="six wide computer"].column,
- .ui.column.grid > [class*="six wide computer"].column {
- width: @sixWide !important;
- }
- .ui.grid > .row > [class*="seven wide computer"].column,
- .ui.grid > .column.row > [class*="seven wide computer"].column,
- .ui.grid > [class*="seven wide computer"].column,
- .ui.column.grid > [class*="seven wide computer"].column {
- width: @sevenWide !important;
- }
- .ui.grid > .row > [class*="eight wide computer"].column,
- .ui.grid > .column.row > [class*="eight wide computer"].column,
- .ui.grid > [class*="eight wide computer"].column,
- .ui.column.grid > [class*="eight wide computer"].column {
- width: @eightWide !important;
- }
- .ui.grid > .row > [class*="nine wide computer"].column,
- .ui.grid > .column.row > [class*="nine wide computer"].column,
- .ui.grid > [class*="nine wide computer"].column,
- .ui.column.grid > [class*="nine wide computer"].column {
- width: @nineWide !important;
- }
- .ui.grid > .row > [class*="ten wide computer"].column,
- .ui.grid > .column.row > [class*="ten wide computer"].column,
- .ui.grid > [class*="ten wide computer"].column,
- .ui.column.grid > [class*="ten wide computer"].column {
- width: @tenWide !important;
- }
- .ui.grid > .row > [class*="eleven wide computer"].column,
- .ui.grid > .column.row > [class*="eleven wide computer"].column,
- .ui.grid > [class*="eleven wide computer"].column,
- .ui.column.grid > [class*="eleven wide computer"].column {
- width: @elevenWide !important;
- }
- .ui.grid > .row > [class*="twelve wide computer"].column,
- .ui.grid > .column.row > [class*="twelve wide computer"].column,
- .ui.grid > [class*="twelve wide computer"].column,
- .ui.column.grid > [class*="twelve wide computer"].column {
- width: @twelveWide !important;
- }
- .ui.grid > .row > [class*="thirteen wide computer"].column,
- .ui.grid > .column.row > [class*="thirteen wide computer"].column,
- .ui.grid > [class*="thirteen wide computer"].column,
- .ui.column.grid > [class*="thirteen wide computer"].column {
- width: @thirteenWide !important;
- }
- .ui.grid > .row > [class*="fourteen wide computer"].column,
- .ui.grid > .column.row > [class*="fourteen wide computer"].column,
- .ui.grid > [class*="fourteen wide computer"].column,
- .ui.column.grid > [class*="fourteen wide computer"].column {
- width: @fourteenWide !important;
- }
- .ui.grid > .row > [class*="fifteen wide computer"].column,
- .ui.grid > .column.row > [class*="fifteen wide computer"].column,
- .ui.grid > [class*="fifteen wide computer"].column,
- .ui.column.grid > [class*="fifteen wide computer"].column {
- width: @fifteenWide !important;
- }
- .ui.grid > .row > [class*="sixteen wide computer"].column,
- .ui.grid > .column.row > [class*="sixteen wide computer"].column,
- .ui.grid > [class*="sixteen wide computer"].column,
- .ui.column.grid > [class*="sixteen wide computer"].column {
- width: @sixteenWide !important;
- }
-}
-
-/* Large Monitor Sizing Combinations */
-@media only screen and (min-width: @largeMonitorBreakpoint) and (max-width: @largestLargeMonitor){
- .ui.grid > .row > [class*="one wide large screen"].column,
- .ui.grid > .column.row > [class*="one wide large screen"].column,
- .ui.grid > [class*="one wide large screen"].column,
- .ui.column.grid > [class*="one wide large screen"].column {
- width: @oneWide !important;
- }
- .ui.grid > .row > [class*="two wide large screen"].column,
- .ui.grid > .column.row > [class*="two wide large screen"].column,
- .ui.grid > [class*="two wide large screen"].column,
- .ui.column.grid > [class*="two wide large screen"].column {
- width: @twoWide !important;
- }
- .ui.grid > .row > [class*="three wide large screen"].column,
- .ui.grid > .column.row > [class*="three wide large screen"].column,
- .ui.grid > [class*="three wide large screen"].column,
- .ui.column.grid > [class*="three wide large screen"].column {
- width: @threeWide !important;
- }
- .ui.grid > .row > [class*="four wide large screen"].column,
- .ui.grid > .column.row > [class*="four wide large screen"].column,
- .ui.grid > [class*="four wide large screen"].column,
- .ui.column.grid > [class*="four wide large screen"].column {
- width: @fourWide !important;
- }
- .ui.grid > .row > [class*="five wide large screen"].column,
- .ui.grid > .column.row > [class*="five wide large screen"].column,
- .ui.grid > [class*="five wide large screen"].column,
- .ui.column.grid > [class*="five wide large screen"].column {
- width: @fiveWide !important;
- }
- .ui.grid > .row > [class*="six wide large screen"].column,
- .ui.grid > .column.row > [class*="six wide large screen"].column,
- .ui.grid > [class*="six wide large screen"].column,
- .ui.column.grid > [class*="six wide large screen"].column {
- width: @sixWide !important;
- }
- .ui.grid > .row > [class*="seven wide large screen"].column,
- .ui.grid > .column.row > [class*="seven wide large screen"].column,
- .ui.grid > [class*="seven wide large screen"].column,
- .ui.column.grid > [class*="seven wide large screen"].column {
- width: @sevenWide !important;
- }
- .ui.grid > .row > [class*="eight wide large screen"].column,
- .ui.grid > .column.row > [class*="eight wide large screen"].column,
- .ui.grid > [class*="eight wide large screen"].column,
- .ui.column.grid > [class*="eight wide large screen"].column {
- width: @eightWide !important;
- }
- .ui.grid > .row > [class*="nine wide large screen"].column,
- .ui.grid > .column.row > [class*="nine wide large screen"].column,
- .ui.grid > [class*="nine wide large screen"].column,
- .ui.column.grid > [class*="nine wide large screen"].column {
- width: @nineWide !important;
- }
- .ui.grid > .row > [class*="ten wide large screen"].column,
- .ui.grid > .column.row > [class*="ten wide large screen"].column,
- .ui.grid > [class*="ten wide large screen"].column,
- .ui.column.grid > [class*="ten wide large screen"].column {
- width: @tenWide !important;
- }
- .ui.grid > .row > [class*="eleven wide large screen"].column,
- .ui.grid > .column.row > [class*="eleven wide large screen"].column,
- .ui.grid > [class*="eleven wide large screen"].column,
- .ui.column.grid > [class*="eleven wide large screen"].column {
- width: @elevenWide !important;
- }
- .ui.grid > .row > [class*="twelve wide large screen"].column,
- .ui.grid > .column.row > [class*="twelve wide large screen"].column,
- .ui.grid > [class*="twelve wide large screen"].column,
- .ui.column.grid > [class*="twelve wide large screen"].column {
- width: @twelveWide !important;
- }
- .ui.grid > .row > [class*="thirteen wide large screen"].column,
- .ui.grid > .column.row > [class*="thirteen wide large screen"].column,
- .ui.grid > [class*="thirteen wide large screen"].column,
- .ui.column.grid > [class*="thirteen wide large screen"].column {
- width: @thirteenWide !important;
- }
- .ui.grid > .row > [class*="fourteen wide large screen"].column,
- .ui.grid > .column.row > [class*="fourteen wide large screen"].column,
- .ui.grid > [class*="fourteen wide large screen"].column,
- .ui.column.grid > [class*="fourteen wide large screen"].column {
- width: @fourteenWide !important;
- }
- .ui.grid > .row > [class*="fifteen wide large screen"].column,
- .ui.grid > .column.row > [class*="fifteen wide large screen"].column,
- .ui.grid > [class*="fifteen wide large screen"].column,
- .ui.column.grid > [class*="fifteen wide large screen"].column {
- width: @fifteenWide !important;
- }
- .ui.grid > .row > [class*="sixteen wide large screen"].column,
- .ui.grid > .column.row > [class*="sixteen wide large screen"].column,
- .ui.grid > [class*="sixteen wide large screen"].column,
- .ui.column.grid > [class*="sixteen wide large screen"].column {
- width: @sixteenWide !important;
- }
-}
-
-/* Widescreen Sizing Combinations */
-@media only screen and (min-width: @widescreenMonitorBreakpoint) {
- .ui.grid > .row > [class*="one wide widescreen"].column,
- .ui.grid > .column.row > [class*="one wide widescreen"].column,
- .ui.grid > [class*="one wide widescreen"].column,
- .ui.column.grid > [class*="one wide widescreen"].column {
- width: @oneWide !important;
- }
- .ui.grid > .row > [class*="two wide widescreen"].column,
- .ui.grid > .column.row > [class*="two wide widescreen"].column,
- .ui.grid > [class*="two wide widescreen"].column,
- .ui.column.grid > [class*="two wide widescreen"].column {
- width: @twoWide !important;
- }
- .ui.grid > .row > [class*="three wide widescreen"].column,
- .ui.grid > .column.row > [class*="three wide widescreen"].column,
- .ui.grid > [class*="three wide widescreen"].column,
- .ui.column.grid > [class*="three wide widescreen"].column {
- width: @threeWide !important;
- }
- .ui.grid > .row > [class*="four wide widescreen"].column,
- .ui.grid > .column.row > [class*="four wide widescreen"].column,
- .ui.grid > [class*="four wide widescreen"].column,
- .ui.column.grid > [class*="four wide widescreen"].column {
- width: @fourWide !important;
- }
- .ui.grid > .row > [class*="five wide widescreen"].column,
- .ui.grid > .column.row > [class*="five wide widescreen"].column,
- .ui.grid > [class*="five wide widescreen"].column,
- .ui.column.grid > [class*="five wide widescreen"].column {
- width: @fiveWide !important;
- }
- .ui.grid > .row > [class*="six wide widescreen"].column,
- .ui.grid > .column.row > [class*="six wide widescreen"].column,
- .ui.grid > [class*="six wide widescreen"].column,
- .ui.column.grid > [class*="six wide widescreen"].column {
- width: @sixWide !important;
- }
- .ui.grid > .row > [class*="seven wide widescreen"].column,
- .ui.grid > .column.row > [class*="seven wide widescreen"].column,
- .ui.grid > [class*="seven wide widescreen"].column,
- .ui.column.grid > [class*="seven wide widescreen"].column {
- width: @sevenWide !important;
- }
- .ui.grid > .row > [class*="eight wide widescreen"].column,
- .ui.grid > .column.row > [class*="eight wide widescreen"].column,
- .ui.grid > [class*="eight wide widescreen"].column,
- .ui.column.grid > [class*="eight wide widescreen"].column {
- width: @eightWide !important;
- }
- .ui.grid > .row > [class*="nine wide widescreen"].column,
- .ui.grid > .column.row > [class*="nine wide widescreen"].column,
- .ui.grid > [class*="nine wide widescreen"].column,
- .ui.column.grid > [class*="nine wide widescreen"].column {
- width: @nineWide !important;
- }
- .ui.grid > .row > [class*="ten wide widescreen"].column,
- .ui.grid > .column.row > [class*="ten wide widescreen"].column,
- .ui.grid > [class*="ten wide widescreen"].column,
- .ui.column.grid > [class*="ten wide widescreen"].column {
- width: @tenWide !important;
- }
- .ui.grid > .row > [class*="eleven wide widescreen"].column,
- .ui.grid > .column.row > [class*="eleven wide widescreen"].column,
- .ui.grid > [class*="eleven wide widescreen"].column,
- .ui.column.grid > [class*="eleven wide widescreen"].column {
- width: @elevenWide !important;
- }
- .ui.grid > .row > [class*="twelve wide widescreen"].column,
- .ui.grid > .column.row > [class*="twelve wide widescreen"].column,
- .ui.grid > [class*="twelve wide widescreen"].column,
- .ui.column.grid > [class*="twelve wide widescreen"].column {
- width: @twelveWide !important;
- }
- .ui.grid > .row > [class*="thirteen wide widescreen"].column,
- .ui.grid > .column.row > [class*="thirteen wide widescreen"].column,
- .ui.grid > [class*="thirteen wide widescreen"].column,
- .ui.column.grid > [class*="thirteen wide widescreen"].column {
- width: @thirteenWide !important;
- }
- .ui.grid > .row > [class*="fourteen wide widescreen"].column,
- .ui.grid > .column.row > [class*="fourteen wide widescreen"].column,
- .ui.grid > [class*="fourteen wide widescreen"].column,
- .ui.column.grid > [class*="fourteen wide widescreen"].column {
- width: @fourteenWide !important;
- }
- .ui.grid > .row > [class*="fifteen wide widescreen"].column,
- .ui.grid > .column.row > [class*="fifteen wide widescreen"].column,
- .ui.grid > [class*="fifteen wide widescreen"].column,
- .ui.column.grid > [class*="fifteen wide widescreen"].column {
- width: @fifteenWide !important;
- }
- .ui.grid > .row > [class*="sixteen wide widescreen"].column,
- .ui.grid > .column.row > [class*="sixteen wide widescreen"].column,
- .ui.grid > [class*="sixteen wide widescreen"].column,
- .ui.column.grid > [class*="sixteen wide widescreen"].column {
- width: @sixteenWide !important;
- }
-}
-
-& when (@variationGridCentered) {
- /*----------------------
- Centered
- -----------------------*/
-
- .ui.centered.grid,
- .ui.centered.grid > .row,
- .ui.grid > .centered.row {
- text-align: center;
- justify-content: center;
- }
- .ui.centered.grid > .column:not(.aligned):not(.justified):not(.row),
- .ui.centered.grid > .row > .column:not(.aligned):not(.justified),
- .ui.grid .centered.row > .column:not(.aligned):not(.justified) {
- text-align: left;
- }
-
- .ui.grid > .centered.column,
- .ui.grid > .row > .centered.column {
- display: block;
- margin-left: auto;
- margin-right: auto;
- }
-}
-
-& when (@variationGridRelaxed) {
- /*----------------------
- Relaxed
- -----------------------*/
-
- .ui.relaxed.grid > .column:not(.row),
- .ui.relaxed.grid > .row > .column,
- .ui.grid > .relaxed.row > .column {
- padding-left: (@relaxedGutterWidth / 2);
- padding-right: (@relaxedGutterWidth / 2);
- }
-
- .ui[class*="very relaxed"].grid > .column:not(.row),
- .ui[class*="very relaxed"].grid > .row > .column,
- .ui.grid > [class*="very relaxed"].row > .column {
- padding-left: (@veryRelaxedGutterWidth / 2);
- padding-right: (@veryRelaxedGutterWidth / 2);
- }
-
- /* Coupling with UI Divider */
- .ui.relaxed.grid .row + .ui.divider,
- .ui.grid .relaxed.row + .ui.divider {
- margin-left: (@relaxedGutterWidth / 2);
- margin-right: (@relaxedGutterWidth / 2);
- }
- .ui[class*="very relaxed"].grid .row + .ui.divider,
- .ui.grid [class*="very relaxed"].row + .ui.divider {
- margin-left: (@veryRelaxedGutterWidth / 2);
- margin-right: (@veryRelaxedGutterWidth / 2);
- }
-}
-
-& when (@variationGridPadded) {
- /*----------------------
- Padded
- -----------------------*/
-
- .ui.padded.grid:not(.vertically):not(.horizontally) {
- margin: 0 !important;
- }
- [class*="horizontally padded"].ui.grid {
- margin-left: 0 !important;
- margin-right: 0 !important;
- }
- [class*="vertically padded"].ui.grid {
- margin-top: 0 !important;
- margin-bottom: 0 !important;
- }
-}
-
-& when (@variationGridFloated) {
- /*----------------------
- "Floated"
- -----------------------*/
-
- .ui.grid [class*="left floated"].column {
- margin-right: auto;
- }
- .ui.grid [class*="right floated"].column {
- margin-left: auto;
- }
-}
-
-& when (@variationGridDivided) {
- /*----------------------
- Divided
- -----------------------*/
-
- .ui.divided.grid:not([class*="vertically divided"]) > .column:not(.row),
- .ui.divided.grid:not([class*="vertically divided"]) > .row > .column {
- box-shadow: @dividedBorder;
- }
-
- /* Swap from padding to margin on columns to have dividers align */
- .ui[class*="vertically divided"].grid > .column:not(.row),
- .ui[class*="vertically divided"].grid > .row > .column {
- margin-top: (@rowSpacing / 2);
- margin-bottom: (@rowSpacing / 2);
- padding-top: 0;
- padding-bottom: 0;
- }
- .ui[class*="vertically divided"].grid > .row {
- margin-top: 0;
- margin-bottom: 0;
- }
-
-
-
- /* No divider on first column on row */
- .ui.divided.grid:not([class*="vertically divided"]) > .column:first-child,
- .ui.divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
- box-shadow: none;
- }
-
- /* No space on top of first row */
- .ui[class*="vertically divided"].grid > .row:first-child > .column {
- margin-top: 0;
- }
-
-
- /* Divided Row */
- .ui.grid > .divided.row > .column {
- box-shadow: @dividedBorder;
- }
- .ui.grid > .divided.row > .column:first-child {
- box-shadow: none;
- }
-
- /* Vertically Divided */
- .ui[class*="vertically divided"].grid > .row {
- position: relative;
- }
- .ui[class*="vertically divided"].grid > .row:before {
- position: absolute;
- content: "";
- top: 0;
- left: 0;
-
- width: e(%("calc(100%% - %d)", @gutterWidth));
- height: 1px;
-
- margin: 0 (@gutterWidth / 2);
- box-shadow: @verticallyDividedBorder;
- }
-
- & when (@variationGridPadded) {
- /* Padded Horizontally Divided */
- [class*="horizontally padded"].ui.divided.grid,
- .ui.padded.divided.grid:not(.vertically):not(.horizontally) {
- width: 100%;
- }
- }
- /* First Row Vertically Divided */
- .ui[class*="vertically divided"].grid > .row:first-child:before {
- box-shadow: none;
- }
- & when (@variationGridInverted) {
- /* Inverted Divided */
- .ui.inverted.divided.grid:not([class*="vertically divided"]) > .column:not(.row),
- .ui.inverted.divided.grid:not([class*="vertically divided"]) > .row > .column {
- box-shadow: @dividedInvertedBorder;
- }
- .ui.inverted.divided.grid:not([class*="vertically divided"]) > .column:not(.row):first-child,
- .ui.inverted.divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
- box-shadow: none;
- }
- .ui.inverted[class*="vertically divided"].grid > .row:before {
- box-shadow: @verticallyDividedInvertedBorder;
- }
- }
- & when (@variationGridRelaxed) {
- /* Relaxed */
- .ui.relaxed[class*="vertically divided"].grid > .row:before {
- margin-left: (@relaxedGutterWidth / 2);
- margin-right: (@relaxedGutterWidth / 2);
- width: e(%("calc(100%% - %d)", @relaxedGutterWidth));
- }
- .ui[class*="very relaxed"][class*="vertically divided"].grid > .row:before {
- margin-left: (@veryRelaxedGutterWidth / 2);
- margin-right: (@veryRelaxedGutterWidth / 2);
- width: e(%("calc(100%% - %d)", @veryRelaxedGutterWidth));
- }
- }
-}
-
-& when (@variationGridCelled) {
- /*----------------------
- Celled
- -----------------------*/
-
- .ui.celled.grid {
- width: 100%;
- margin: @celledMargin;
- box-shadow: @celledGridDivider;
- }
-
- .ui.celled.grid > .row {
- width: 100% !important;
- margin: 0;
- padding: 0;
- box-shadow: @celledRowDivider;
- }
- .ui.celled.grid > .column:not(.row),
- .ui.celled.grid > .row > .column {
- box-shadow: @celledColumnDivider;
- }
-
- .ui.celled.grid > .column:first-child,
- .ui.celled.grid > .row > .column:first-child {
- box-shadow: none;
- }
-
- .ui.celled.grid > .column:not(.row),
- .ui.celled.grid > .row > .column {
- padding: @celledPadding;
- }
- & when (@variationGridRelaxed) {
- .ui.relaxed.celled.grid > .column:not(.row),
- .ui.relaxed.celled.grid > .row > .column {
- padding: @celledRelaxedPadding;
- }
- .ui[class*="very relaxed"].celled.grid > .column:not(.row),
- .ui[class*="very relaxed"].celled.grid > .row > .column {
- padding: @celledVeryRelaxedPadding;
- }
- }
- /* Internally Celled */
- .ui[class*="internally celled"].grid {
- box-shadow: none;
- margin: 0;
- }
- .ui[class*="internally celled"].grid > .row:first-child {
- box-shadow: none;
- }
- .ui[class*="internally celled"].grid > .row > .column:first-child {
- box-shadow: none;
- }
-}
-
-& when (@variationGridAligned) {
- /*----------------------
- Vertically Aligned
- -----------------------*/
-
- /* Top Aligned */
- .ui[class*="top aligned"].grid > .column:not(.row),
- .ui[class*="top aligned"].grid > .row > .column,
- .ui.grid > [class*="top aligned"].row > .column,
- .ui.grid > [class*="top aligned"].column:not(.row),
- .ui.grid > .row > [class*="top aligned"].column {
- flex-direction: column;
- vertical-align: top;
- align-self: flex-start !important;
- }
-
- /* Middle Aligned */
- .ui[class*="middle aligned"].grid > .column:not(.row),
- .ui[class*="middle aligned"].grid > .row > .column,
- .ui.grid > [class*="middle aligned"].row > .column,
- .ui.grid > [class*="middle aligned"].column:not(.row),
- .ui.grid > .row > [class*="middle aligned"].column {
- flex-direction: column;
- vertical-align: middle;
- align-self: center !important;
- }
-
- /* Bottom Aligned */
- .ui[class*="bottom aligned"].grid > .column:not(.row),
- .ui[class*="bottom aligned"].grid > .row > .column,
- .ui.grid > [class*="bottom aligned"].row > .column,
- .ui.grid > [class*="bottom aligned"].column:not(.row),
- .ui.grid > .row > [class*="bottom aligned"].column {
- flex-direction: column;
- vertical-align: bottom;
- align-self: flex-end !important;
- }
-}
-
-& when (@variationGridStretched) {
- /* Stretched */
- .ui.stretched.grid > .row > .column,
- .ui.stretched.grid > .column,
- .ui.grid > .stretched.row > .column,
- .ui.grid > .stretched.column:not(.row),
- .ui.grid > .row > .stretched.column {
- display: inline-flex !important;
- align-self: stretch;
- flex-direction: column;
- }
-
- .ui.stretched.grid > .row > .column > *,
- .ui.stretched.grid > .column > *,
- .ui.grid > .stretched.row > .column > *,
- .ui.grid > .stretched.column:not(.row) > *,
- .ui.grid > .row > .stretched.column > * {
- flex-grow: 1;
- }
-}
-
-& when (@variationGridAligned) {
- /*----------------------
- Horizontally Centered
- -----------------------*/
-
- /* Left Aligned */
-
- .ui[class*="left aligned"].grid > .column,
- .ui[class*="left aligned"].grid > .row > .column,
- .ui.grid > [class*="left aligned"].row > .column,
- .ui.grid > [class*="left aligned"].column.column,
- .ui.grid > .row > [class*="left aligned"].column.column {
- text-align: left;
- align-self: inherit;
- }
-
- /* Center Aligned */
-
- .ui[class*="center aligned"].grid > .column,
- .ui[class*="center aligned"].grid > .row > .column,
- .ui.grid > [class*="center aligned"].row > .column,
- .ui.grid > [class*="center aligned"].column.column,
- .ui.grid > .row > [class*="center aligned"].column.column {
- text-align: center;
- align-self: inherit;
- }
-
- .ui[class*="center aligned"].grid {
- justify-content: center;
- }
-
- /* Right Aligned */
-
- .ui[class*="right aligned"].grid > .column,
- .ui[class*="right aligned"].grid > .row > .column,
- .ui.grid > [class*="right aligned"].row > .column,
- .ui.grid > [class*="right aligned"].column.column,
- .ui.grid > .row > [class*="right aligned"].column.column {
- text-align: right;
- align-self: inherit;
- }
-}
-
-& when (@variationGridJustified) {
- /* Justified */
- .ui.justified.grid > .column,
- .ui.justified.grid > .row > .column,
- .ui.grid > .justified.row > .column,
- .ui.grid > .justified.column.column,
- .ui.grid > .row > .justified.column.column {
- text-align: justify;
- hyphens: auto;
- }
-}
-
-/*----------------------
- Colored
------------------------*/
-
-each(@colors, {
- @color: replace(@key, '@', '');
- @c: @colors[@@color][color];
-
- .ui.grid > .@{color}.row,
- .ui.grid > .@{color}.column,
- .ui.grid > .row > .@{color}.column {
- background-color: @c;
- color: @white;
- }
-})
-
-
-/*----------------------
- Equal Width
------------------------*/
-
-.ui[class*="equal width"].grid > .column:not(.row),
-.ui[class*="equal width"].grid > .row > .column,
-.ui.grid > [class*="equal width"].row > .column {
- display: inline-block;
- flex-grow: 1;
-}
-.ui[class*="equal width"].grid > .wide.column,
-.ui[class*="equal width"].grid > .row > .wide.column,
-.ui.grid > [class*="equal width"].row > .wide.column {
- flex-grow: 0;
-}
-
-& when (@variationGridReversed) {
- /*----------------------
- Reverse
- -----------------------*/
-
-
- /* Mobile */
- @media only screen and (max-width: @largestMobileScreen) {
- .ui[class*="mobile reversed"].grid,
- .ui[class*="mobile reversed"].grid > .row,
- .ui.grid > [class*="mobile reversed"].row {
- flex-direction: row-reverse;
- }
- .ui[class*="mobile vertically reversed"].grid,
- .ui.stackable[class*="mobile reversed"] {
- flex-direction: column-reverse;
- }
- & when (@variationGridDivided) {
- /* Divided Reversed */
- .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child,
- .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
- box-shadow: @dividedBorder;
- }
- .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .column:last-child,
- .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:last-child {
- box-shadow: none;
- }
- /* Vertically Divided Reversed */
- .ui.grid[class*="vertically divided"][class*="mobile vertically reversed"] > .row:first-child:before {
- box-shadow: @verticallyDividedBorder;
- }
- .ui.grid[class*="vertically divided"][class*="mobile vertically reversed"] > .row:last-child:before {
- box-shadow: none;
- }
- }
- & when (@variationGridCelled) {
- /* Celled Reversed */
- .ui[class*="mobile reversed"].celled.grid > .row > .column:first-child {
- box-shadow: @celledColumnDivider;
- }
- .ui[class*="mobile reversed"].celled.grid > .row > .column:last-child {
- box-shadow: none;
- }
- }
- }
-
- /* Tablet */
- @media only screen and (min-width: @tabletBreakpoint) and (max-width: @largestTabletScreen) {
- .ui[class*="tablet reversed"].grid,
- .ui[class*="tablet reversed"].grid > .row,
- .ui.grid > [class*="tablet reversed"].row {
- flex-direction: row-reverse;
- }
- .ui[class*="tablet vertically reversed"].grid {
- flex-direction: column-reverse;
- }
- & when (@variationGridDivided) {
- /* Divided Reversed */
- .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child,
- .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
- box-shadow: @dividedBorder;
- }
- .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .column:last-child,
- .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:last-child {
- box-shadow: none;
- }
- /* Vertically Divided Reversed */
- .ui.grid[class*="vertically divided"][class*="tablet vertically reversed"] > .row:first-child:before {
- box-shadow: @verticallyDividedBorder;
- }
- .ui.grid[class*="vertically divided"][class*="tablet vertically reversed"] > .row:last-child:before {
- box-shadow: none;
- }
- }
- & when (@variationGridCelled) {
- /* Celled Reversed */
- .ui[class*="tablet reversed"].celled.grid > .row > .column:first-child {
- box-shadow: @celledColumnDivider;
- }
- .ui[class*="tablet reversed"].celled.grid > .row > .column:last-child {
- box-shadow: none;
- }
- }
- }
-
- /* Computer */
- @media only screen and (min-width: @computerBreakpoint) {
- .ui[class*="computer reversed"].grid,
- .ui[class*="computer reversed"].grid > .row,
- .ui.grid > [class*="computer reversed"].row {
- flex-direction: row-reverse;
- }
- .ui[class*="computer vertically reversed"].grid {
- flex-direction: column-reverse;
- }
- & when (@variationGridDivided) {
- /* Divided Reversed */
- .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child,
- .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
- box-shadow: @dividedBorder;
- }
- .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .column:last-child,
- .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:last-child {
- box-shadow: none;
- }
- /* Vertically Divided Reversed */
- .ui.grid[class*="vertically divided"][class*="computer vertically reversed"] > .row:first-child:before {
- box-shadow: @verticallyDividedBorder;
- }
- .ui.grid[class*="vertically divided"][class*="computer vertically reversed"] > .row:last-child:before {
- box-shadow: none;
- }
- }
- & when (@variationGridCelled) {
- /* Celled Reversed */
- .ui[class*="computer reversed"].celled.grid > .row > .column:first-child {
- box-shadow: @celledColumnDivider;
- }
- .ui[class*="computer reversed"].celled.grid > .row > .column:last-child {
- box-shadow: none;
- }
- }
- }
-}
-
-& when (@variationGridDoubling) {
- /*-------------------
- Doubling
- --------------------*/
-
- /* Tablet Only */
- @media only screen and (min-width: @tabletBreakpoint) and (max-width: @largestTabletScreen) {
- .ui.doubling.grid {
- width: auto;
- }
- .ui.grid > .doubling.row,
- .ui.doubling.grid > .row {
- margin: 0 !important;
- padding: 0 !important;
- }
- .ui.grid > .doubling.row > .column,
- .ui.doubling.grid > .row > .column {
- display: inline-block !important;
- padding-top: (@rowSpacing / 2) !important;
- padding-bottom: (@rowSpacing / 2) !important;
- box-shadow: none !important;
- margin: 0;
- }
- .ui[class*="two column"].doubling.grid > .row > .column,
- .ui[class*="two column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="two column"].doubling.row.row > .column {
- width: @oneColumn !important;
- }
- .ui[class*="three column"].doubling.grid > .row > .column,
- .ui[class*="three column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="three column"].doubling.row.row > .column {
- width: @twoColumn !important;
- }
- .ui[class*="four column"].doubling.grid > .row > .column,
- .ui[class*="four column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="four column"].doubling.row.row > .column {
- width: @twoColumn !important;
- }
- .ui[class*="five column"].doubling.grid > .row > .column,
- .ui[class*="five column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="five column"].doubling.row.row > .column {
- width: @threeColumn !important;
- }
- .ui[class*="six column"].doubling.grid > .row > .column,
- .ui[class*="six column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="six column"].doubling.row.row > .column {
- width: @threeColumn !important;
- }
- .ui[class*="seven column"].doubling.grid > .row > .column,
- .ui[class*="seven column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="seven column"].doubling.row.row > .column {
- width: @threeColumn !important;
- }
- .ui[class*="eight column"].doubling.grid > .row > .column,
- .ui[class*="eight column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="eight column"].doubling.row.row > .column {
- width: @fourColumn !important;
- }
- .ui[class*="nine column"].doubling.grid > .row > .column,
- .ui[class*="nine column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="nine column"].doubling.row.row > .column {
- width: @fourColumn !important;
- }
- .ui[class*="ten column"].doubling.grid > .row > .column,
- .ui[class*="ten column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="ten column"].doubling.row.row > .column {
- width: @fiveColumn !important;
- }
- .ui[class*="eleven column"].doubling.grid > .row > .column,
- .ui[class*="eleven column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="eleven column"].doubling.row.row > .column {
- width: @fiveColumn !important;
- }
- .ui[class*="twelve column"].doubling.grid > .row > .column,
- .ui[class*="twelve column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="twelve column"].doubling.row.row > .column {
- width: @sixColumn !important;
- }
- .ui[class*="thirteen column"].doubling.grid > .row > .column,
- .ui[class*="thirteen column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="thirteen column"].doubling.row.row > .column {
- width: @sixColumn !important;
- }
- .ui[class*="fourteen column"].doubling.grid > .row > .column,
- .ui[class*="fourteen column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="fourteen column"].doubling.row.row > .column {
- width: @sevenColumn !important;
- }
- .ui[class*="fifteen column"].doubling.grid > .row > .column,
- .ui[class*="fifteen column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="fifteen column"].doubling.row.row > .column {
- width: @sevenColumn !important;
- }
- .ui[class*="sixteen column"].doubling.grid > .row > .column,
- .ui[class*="sixteen column"].doubling.grid > .column:not(.row),
- .ui.grid > [class*="sixteen column"].doubling.row.row > .column {
- width: @eightColumn !important;
- }
- }
-
- /* Mobile Only */
- @media only screen and (max-width: @largestMobileScreen) {
- .ui.grid > .doubling.row,
- .ui.doubling.grid > .row {
- margin: 0 !important;
- padding: 0 !important;
- }
- .ui.grid > .doubling.row > .column,
- .ui.doubling.grid > .row > .column {
- padding-top: (@rowSpacing / 2) !important;
- padding-bottom: (@rowSpacing / 2) !important;
- margin: 0 !important;
- box-shadow: none !important;
- }
- .ui[class*="two column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="two column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="two column"].doubling:not(.stackable).row.row > .column {
- width: @oneColumn !important;
- }
- .ui[class*="three column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="three column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="three column"].doubling:not(.stackable).row.row > .column {
- width: @twoColumn !important;
- }
- .ui[class*="four column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="four column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="four column"].doubling:not(.stackable).row.row > .column {
- width: @twoColumn !important;
- }
- .ui[class*="five column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="five column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="five column"].doubling:not(.stackable).row.row > .column {
- width: @twoColumn !important;
- }
- .ui[class*="six column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="six column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="six column"].doubling:not(.stackable).row.row > .column {
- width: @twoColumn !important;
- }
- .ui[class*="seven column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="seven column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="seven column"].doubling:not(.stackable).row.row > .column {
- width: @twoColumn !important;
- }
- .ui[class*="eight column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="eight column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="eight column"].doubling:not(.stackable).row.row > .column {
- width: @twoColumn !important;
- }
- .ui[class*="nine column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="nine column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="nine column"].doubling:not(.stackable).row.row > .column {
- width: @threeColumn !important;
- }
- .ui[class*="ten column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="ten column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="ten column"].doubling:not(.stackable).row.row > .column {
- width: @threeColumn !important;
- }
- .ui[class*="eleven column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="eleven column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="eleven column"].doubling:not(.stackable).row.row > .column {
- width: @threeColumn !important;
- }
- .ui[class*="twelve column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="twelve column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="twelve column"].doubling:not(.stackable).row.row > .column {
- width: @threeColumn !important;
- }
- .ui[class*="thirteen column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="thirteen column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="thirteen column"].doubling:not(.stackable).row.row > .column {
- width: @threeColumn !important;
- }
- .ui[class*="fourteen column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="fourteen column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="fourteen column"].doubling:not(.stackable).row.row > .column {
- width: @fourColumn !important;
- }
- .ui[class*="fifteen column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="fifteen column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="fifteen column"].doubling:not(.stackable).row.row > .column {
- width: @fourColumn !important;
- }
- .ui[class*="sixteen column"].doubling:not(.stackable).grid > .row > .column,
- .ui[class*="sixteen column"].doubling:not(.stackable).grid > .column:not(.row),
- .ui.grid > [class*="sixteen column"].doubling:not(.stackable).row.row > .column {
- width: @fourColumn !important;
- }
- }
-}
-
-& when (@variationGridStackable) {
- /*-------------------
- Stackable
- --------------------*/
-
- @media only screen and (max-width: @largestMobileScreen) {
- .ui.stackable.grid {
- width: auto;
- margin-left: 0 !important;
- margin-right: 0 !important;
- }
- .ui.stackable.grid > .row > .wide.column,
- .ui.stackable.grid > .wide.column,
- .ui.stackable.grid > .column.grid > .column,
- .ui.stackable.grid > .column.row > .column,
- .ui.stackable.grid > .row > .column,
- .ui.stackable.grid > .column:not(.row),
- .ui.grid > .stackable.stackable.stackable.row > .column {
- width: 100% !important;
- margin: 0 0 !important;
- box-shadow: none !important;
- padding: (@stackableRowSpacing / 2) (@stackableGutter / 2);
- }
- .ui.stackable.grid:not(.vertically) > .row {
- margin: 0;
- padding: 0;
- }
-
- /* Coupling */
- .ui.container > .ui.stackable.grid > .column,
- .ui.container > .ui.stackable.grid > .row > .column {
- padding-left: 0 !important;
- padding-right: 0 !important;
- }
-
- /* Don't pad inside segment or nested grid */
- .ui.grid .ui.stackable.grid,
- .ui.segment:not(.vertical) .ui.stackable.page.grid {
- margin-left: -(@stackableGutter / 2) !important;
- margin-right: -(@stackableGutter / 2) !important;
- }
-
- /* Divided Stackable */
- .ui.stackable.divided.grid > .row:first-child > .column:first-child,
- .ui.stackable.celled.grid > .row:first-child > .column:first-child,
- .ui.stackable.divided.grid > .column:not(.row):first-child,
- .ui.stackable.celled.grid > .column:not(.row):first-child {
- border-top: none !important;
- }
- & when (@variationGridInverted) {
- .ui.inverted.stackable.celled.grid > .column:not(.row),
- .ui.inverted.stackable.divided.grid > .column:not(.row),
- .ui.inverted.stackable.celled.grid > .row > .column,
- .ui.inverted.stackable.divided.grid > .row > .column {
- border-top: @stackableInvertedMobileBorder;
- }
- }
- .ui.stackable.celled.grid > .column:not(.row),
- .ui.stackable.divided:not(.vertically).grid > .column:not(.row),
- .ui.stackable.celled.grid > .row > .column,
- .ui.stackable.divided:not(.vertically).grid > .row > .column {
- border-top: @stackableMobileBorder;
- box-shadow: none !important;
- padding-top: @stackableRowSpacing !important;
- padding-bottom: @stackableRowSpacing !important;
- }
- & when (@variationGridCelled) {
- .ui.stackable.celled.grid > .row {
- box-shadow: none !important;
- }
- }
- & when (@variationGridDivided) {
- .ui.stackable.divided:not(.vertically).grid > .column:not(.row),
- .ui.stackable.divided:not(.vertically).grid > .row > .column {
- padding-left: 0 !important;
- padding-right: 0 !important;
- }
- }
- }
-
-}
-
-/*----------------------
- Only (Device)
------------------------*/
-
-
-/* These include arbitrary class repetitions for forced specificity */
-
-/* Mobile Only Hide */
-@media only screen and (max-width: @largestMobileScreen) {
- .ui[class*="tablet only"].grid.grid.grid:not(.mobile),
- .ui.grid.grid.grid > [class*="tablet only"].row:not(.mobile),
- .ui.grid.grid.grid > [class*="tablet only"].column:not(.mobile),
- .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.mobile) {
- display: none !important;
- }
- .ui[class*="computer only"].grid.grid.grid:not(.mobile),
- .ui.grid.grid.grid > [class*="computer only"].row:not(.mobile),
- .ui.grid.grid.grid > [class*="computer only"].column:not(.mobile),
- .ui.grid.grid.grid > .row > [class*="computer only"].column:not(.mobile) {
- display: none !important;
- }
- .ui[class*="large screen only"].grid.grid.grid:not(.mobile),
- .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile),
- .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile),
- .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) {
- display: none !important;
- }
- .ui[class*="widescreen only"].grid.grid.grid:not(.mobile),
- .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile),
- .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile),
- .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) {
- display: none !important;
- }
-}
-/* Tablet Only Hide */
-@media only screen and (min-width: @tabletBreakpoint) and (max-width: @largestTabletScreen) {
- .ui[class*="mobile only"].grid.grid.grid:not(.tablet),
- .ui.grid.grid.grid > [class*="mobile only"].row:not(.tablet),
- .ui.grid.grid.grid > [class*="mobile only"].column:not(.tablet),
- .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.tablet) {
- display: none !important;
- }
- .ui[class*="computer only"].grid.grid.grid:not(.tablet),
- .ui.grid.grid.grid > [class*="computer only"].row:not(.tablet),
- .ui.grid.grid.grid > [class*="computer only"].column:not(.tablet),
- .ui.grid.grid.grid > .row > [class*="computer only"].column:not(.tablet) {
- display: none !important;
- }
- .ui[class*="large screen only"].grid.grid.grid:not(.mobile),
- .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile),
- .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile),
- .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) {
- display: none !important;
- }
- .ui[class*="widescreen only"].grid.grid.grid:not(.mobile),
- .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile),
- .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile),
- .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) {
- display: none !important;
- }
-}
-
-/* Computer Only Hide */
-@media only screen and (min-width: @computerBreakpoint) and (max-width: @largestSmallMonitor) {
- .ui[class*="mobile only"].grid.grid.grid:not(.computer),
- .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer),
- .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer),
- .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) {
- display: none !important;
- }
- .ui[class*="tablet only"].grid.grid.grid:not(.computer),
- .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer),
- .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer),
- .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) {
- display: none !important;
- }
- .ui[class*="large screen only"].grid.grid.grid:not(.mobile),
- .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile),
- .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile),
- .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) {
- display: none !important;
- }
- .ui[class*="widescreen only"].grid.grid.grid:not(.mobile),
- .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile),
- .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile),
- .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) {
- display: none !important;
- }
-}
-
-/* Large Screen Only Hide */
-@media only screen and (min-width: @largeMonitorBreakpoint) and (max-width: @largestLargeMonitor) {
- .ui[class*="mobile only"].grid.grid.grid:not(.computer),
- .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer),
- .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer),
- .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) {
- display: none !important;
- }
- .ui[class*="tablet only"].grid.grid.grid:not(.computer),
- .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer),
- .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer),
- .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) {
- display: none !important;
- }
- .ui[class*="widescreen only"].grid.grid.grid:not(.mobile),
- .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile),
- .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile),
- .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) {
- display: none !important;
- }
-}
-
-/* Widescreen Only Hide */
-@media only screen and (min-width: @widescreenMonitorBreakpoint) {
- .ui[class*="mobile only"].grid.grid.grid:not(.computer),
- .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer),
- .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer),
- .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) {
- display: none !important;
- }
- .ui[class*="tablet only"].grid.grid.grid:not(.computer),
- .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer),
- .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer),
- .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) {
- display: none !important;
- }
-}
-
-& when (@variationGridCompact) {
- /*-----------------
- Compact
- -----------------*/
-
- .ui.ui.ui.compact.grid > .column:not(.row),
- .ui.ui.ui.compact.grid > .row > .column {
- padding-left: (@compactGutterWidth / 2);
- padding-right: (@compactGutterWidth / 2);
- }
-
- .ui.ui.ui.compact.grid > * {
- padding-left: (@compactGutterWidth / 2);
- padding-right: (@compactGutterWidth / 2);
- }
-
- /* Row */
- .ui.ui.ui.compact.grid > .row {
- padding-top: (@compactRowSpacing / 2);
- padding-bottom: (@compactRowSpacing / 2);
- }
-
- /* Columns */
- .ui.ui.ui.compact.grid > .column:not(.row) {
- padding-top: (@compactRowSpacing / 2);
- padding-bottom: (@compactRowSpacing / 2);
- }
- & when (@variationGridRelaxed) and (@variationGridCelled) {
- /* Relaxed + Celled */
- .ui.compact.relaxed.celled.grid > .column:not(.row),
- .ui.compact.relaxed.celled.grid > .row > .column {
- padding: @compactCelledRelaxedPadding;
- }
- .ui.compact[class*="very relaxed"].celled.grid > .column:not(.row),
- .ui.compact[class*="very relaxed"].celled.grid > .row > .column {
- padding: @compactCelledVeryRelaxedPadding;
- }
- }
-
- /*-----------------
- Very compact
- -----------------*/
-
- .ui[class*="very compact"].grid > .column:not(.row),
- .ui[class*="very compact"].grid > .row > .column {
- padding-left: (@veryCompactGutterWidth / 2);
- padding-right: (@compactGutterWidth / 2);
- }
-
- .ui[class*="very compact"].grid > * {
- padding-left: (@veryCompactGutterWidth / 2);
- padding-right: (@veryCompactGutterWidth / 2);
- }
-
- /* Row */
- .ui[class*="very compact"].grid > .row {
- padding-top: (@veryCompactRowSpacing / 2);
- padding-bottom: (@veryCompactRowSpacing / 2);
- }
-
- /* Columns */
- .ui[class*="very compact"].grid > .column:not(.row) {
- padding-top: (@veryCompactRowSpacing / 2);
- padding-bottom: (@veryCompactRowSpacing / 2);
- }
- & when (@variationGridRelaxed) and (@variationGridCelled) {
- /* Relaxed + Celled */
- .ui[class*="very compact"].relaxed.celled.grid > .column:not(.row),
- .ui[class*="very compact"].relaxed.celled.grid > .row > .column {
- padding: @veryCompactCelledRelaxedPadding;
- }
- .ui[class*="very compact"][class*="very relaxed"].celled.grid > .column:not(.row),
- .ui[class*="very compact"][class*="very relaxed"].celled.grid > .row > .column {
- padding: @veryCompactCelledVeryRelaxedPadding;
- }
- }
-}
-
-
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/collections/menu.less b/src-angular/assets/semantic/src/definitions/collections/menu.less
deleted file mode 100644
index 8eedcba..0000000
--- a/src-angular/assets/semantic/src/definitions/collections/menu.less
+++ /dev/null
@@ -1,1938 +0,0 @@
-/*
- * # Fomantic - Menu
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Copyright 2015 Contributor
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'collection';
-@element : 'menu';
-
-@import (multiple) '../../theme.config';
-
-/*******************************
- Standard
-*******************************/
-
-/*--------------
- Menu
----------------*/
-
-.ui.menu {
- display: flex;
- margin: @margin;
- font-family: @fontFamily;
- background: @background;
- font-weight: @fontWeight;
- border: @border;
- box-shadow: @boxShadow;
- border-radius: @borderRadius;
- min-height: @minHeight;
-}
-
-.ui.menu:after {
- content: '';
- display: block;
- height: 0;
- clear: both;
- visibility: hidden;
-}
-
-.ui.menu:first-child {
- margin-top: 0;
-}
-.ui.menu:last-child {
- margin-bottom: 0;
-}
-
-
-/*--------------
- Sub-Menu
----------------*/
-
-.ui.menu .menu {
- margin: 0;
-}
-
-.ui.menu:not(.vertical) > .menu {
- display: flex;
-}
-
-/*--------------
- Item
----------------*/
-
-.ui.menu:not(.vertical) .item {
- display: flex;
- align-items: center;
-}
-
-.ui.menu .item {
- position: relative;
- vertical-align: middle;
- line-height: 1;
- text-decoration: none;
- -webkit-tap-highlight-color: transparent;
- flex: 0 0 auto;
- user-select: none;
-
- background: @itemBackground;
- padding: @itemVerticalPadding @itemHorizontalPadding;
- text-transform: @itemTextTransform;
- color: @itemTextColor;
- font-weight: @itemFontWeight;
- transition: @itemTransition;
-}
-
-.ui.menu > .item:first-child {
- border-radius: @borderRadius 0 0 @borderRadius;
-}
-
-/* Border */
-.ui.menu .item:before {
- position: absolute;
- content: '';
- top: 0;
- right: 0;
- height: 100%;
-
- width: @dividerSize;
- background: @dividerBackground;
-}
-
-/*--------------
- Text Content
----------------*/
-
-.ui.menu .text.item > *,
-.ui.menu .item > a:not(.ui),
-.ui.menu .item > p:only-child {
- user-select: text;
- line-height: @textLineHeight;
-}
-.ui.menu .item > p:first-child {
- margin-top: 0;
-}
-.ui.menu .item > p:last-child {
- margin-bottom: 0;
-}
-
-/*--------------
- Icons
----------------*/
-
-.ui.menu .item > i.icon {
- opacity: @iconOpacity;
- float: @iconFloat;
- margin: @iconMargin;
-}
-
-/*--------------
- Button
----------------*/
-
-.ui.menu:not(.vertical) .item > .button {
- position: relative;
- top: @buttonOffset;
- margin: @buttonMargin;
- padding-bottom: @buttonVerticalPadding;
- padding-top: @buttonVerticalPadding;
- font-size: @buttonSize;
-}
-
-/*----------------
- Grid / Container
------------------*/
-
-.ui.menu > .grid,
-.ui.menu > .container {
- display: flex;
- align-items: inherit;
- flex-direction: inherit;
-}
-
-/*--------------
- Inputs
----------------*/
-
-.ui.menu .item > .input {
- width: 100%;
-}
-.ui.menu:not(.vertical) .item > .input {
- position: relative;
- top: @inputOffset;
- margin: @inputVerticalMargin 0;
-}
-.ui.menu .item > .input input {
- font-size: @inputSize;
- padding-top: @inputVerticalPadding;
- padding-bottom: @inputVerticalPadding;
-}
-
-
-/*--------------
- Header
----------------*/
-
-.ui.menu .header.item,
-.ui.vertical.menu .header.item {
- margin: 0;
- background: @headerBackground;
- text-transform: @headerTextTransform;
- font-weight: @headerWeight;
-}
-
-& when (@variationMenuVertical) {
- .ui.vertical.menu .item > .header:not(.ui) {
- margin: @verticalHeaderMargin;
- font-size: @verticalHeaderFontSize;
- font-weight: @verticalHeaderFontWeight;
- }
-}
-
-/*--------------
- Dropdowns
----------------*/
-
-
-/* Dropdown Icon */
-.ui.menu .item > i.dropdown.icon {
- padding: 0;
- float: @dropdownIconFloat;
- margin: 0 0 0 @dropdownIconDistance;
-}
-
-/* Menu */
-.ui.menu .dropdown.item .menu {
- min-width: e("calc(100% - 1px)");
- border-radius: 0 0 @dropdownMenuBorderRadius @dropdownMenuBorderRadius;
- background: @dropdownBackground;
- margin: @dropdownMenuDistance 0 0;
- box-shadow: @dropdownMenuBoxShadow;
- flex-direction: column !important;
-}
-
-
-/* Menu Items */
-.ui.menu .ui.dropdown .menu > .item {
- margin: 0;
- text-align: left;
- font-size: @dropdownItemFontSize !important;
- padding: @dropdownItemPadding !important;
- background: @dropdownItemBackground !important;
- color: @dropdownItemColor !important;
- text-transform: @dropdownItemTextTransform !important;
- font-weight: @dropdownItemFontWeight !important;
- box-shadow: @dropdownItemBoxShadow !important;
- transition: @dropdownItemTransition !important;
-}
-.ui.menu .ui.dropdown .menu > .item:hover {
- background: @dropdownHoveredItemBackground !important;
- color: @dropdownHoveredItemColor !important;
-}
-.ui.menu .ui.dropdown .menu > .selected.item {
- background: @dropdownSelectedItemBackground !important;
- color: @dropdownSelectedItemColor !important;
-}
-.ui.menu .ui.dropdown .menu > .active.item {
- background: @dropdownActiveItemBackground !important;
- font-weight: @dropdownActiveItemFontWeight !important;
- color: @dropdownActiveItemColor !important;
-}
-
-.ui.menu .ui.dropdown.item .menu .item:not(.filtered) {
- display: block;
-}
-.ui.menu .ui.dropdown .menu > .item .icon:not(.dropdown) {
- display: inline-block;
- font-size: @dropdownItemIconFontSize !important;
- float: @dropdownItemIconFloat;
- margin: @dropdownItemIconMargin !important;
-}
-
-& when (@variationMenuSecondary) or (@variationMenuText) {
- /* Secondary */
- .ui.secondary.menu .dropdown.item > .menu,
- .ui.text.menu .dropdown.item > .menu {
- border-radius: @dropdownMenuBorderRadius;
- margin-top: @secondaryDropdownMenuDistance;
- }
-}
-
-/* Pointing */
-.ui.menu .pointing.dropdown.item .menu {
- margin-top: @pointingDropdownMenuDistance;
-}
-
-& when (@variationMenuInverted) {
- /* Inverted */
- .ui.inverted.menu .search.dropdown.item > .search,
- .ui.inverted.menu .search.dropdown.item > .text {
- color: @invertedSelectionDropdownColor;
- }
-}
-
-& when (@variationMenuVertical) {
- /* Vertical */
- .ui.vertical.menu .dropdown.item > .icon {
- float: right;
- content: "\f0da";
- margin-left: 1em;
- }
- .ui.vertical.menu .dropdown.item .menu {
- left: 100%;
- /* IE needs 0, all others support max-content to show dropdown icon inline, so keep both settings! */
- min-width: 0;
- min-width: max-content;
- margin: 0 0 0 @dropdownMenuDistance;
- box-shadow: @dropdownVerticalMenuBoxShadow;
- border-radius: 0 @dropdownMenuBorderRadius @dropdownMenuBorderRadius @dropdownMenuBorderRadius;
- }
- .ui.vertical.menu .dropdown.item.upward .menu {
- bottom: 0;
- }
- .ui.vertical.menu .dropdown.item:not(.upward) .menu {
- top: 0;
- }
- .ui.vertical.menu .active.dropdown.item {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- }
- .ui.vertical.menu .dropdown.active.item {
- box-shadow: none;
- }
-}
-
-/* Evenly Divided */
-.ui.item.menu .dropdown .menu .item {
- width: 100%;
-}
-
-/*--------------
- Labels
----------------*/
-
-.ui.menu .item > .label:not(.floating) {
- margin-left: @labelTextMargin;
- padding: @labelVerticalPadding @labelHorizontalPadding;
-}
-& when (@variationMenuVertical) {
- .ui.vertical.menu .item > .label {
- margin-top: @labelOffset;
- margin-bottom: @labelOffset;
- padding: @labelVerticalPadding @labelHorizontalPadding;
- }
-}
-.ui.menu .item > .floating.label {
- padding: @labelVerticalPadding @labelHorizontalPadding;
-}
-.ui.menu .item > .label {
- background: @labelBackground;
- color: @labelTextColor;
-}
-.ui.menu .item > .image.label img {
- margin: @imageLabelImageMargin;
- height: @imageLabelHeight;
-}
-/*--------------
- Images
----------------*/
-
-.ui.menu .item > img:not(.ui) {
- display: inline-block;
- vertical-align: middle;
- margin: @imageMargin;
- width: @imageWidth;
-}
-& when (@variationMenuVertical) {
- .ui.vertical.menu .item > img:not(.ui):only-child {
- display: block;
- max-width: 100%;
- width: @verticalImageWidth;
- }
-}
-
-/*******************************
- Coupling
-*******************************/
-
-/*--------------
- List
----------------*/
-
-/* Menu divider shouldnt apply */
-.ui.menu .list .item:before {
- background: none !important;
-}
-
-& when (@variationMenuVertical) {
- /*--------------
- Sidebar
- ---------------*/
-
- /* Show vertical dividers below last */
-
- .ui.vertical.sidebar.menu > .item:first-child:before {
- display: block !important;
- }
- .ui.vertical.sidebar.menu > .item::before {
- top: auto;
- bottom: 0;
- }
-}
-
-/*--------------
- Container
----------------*/
-
-@media only screen and (max-width: @largestMobileScreen) {
- .ui.menu > .ui.container {
- width: 100% !important;
- margin-left: 0 !important;
- margin-right: 0 !important;
- }
-}
-@media only screen and (min-width: @tabletBreakpoint) {
- .ui.menu:not(.secondary):not(.text):not(.tabular):not(.borderless) > .container > .item:not(.right):not(.borderless):first-child {
- border-left: @dividerSize solid @dividerBackground;
- }
- .ui.menu:not(.secondary):not(.text):not(.tabular):not(.borderless) > .container > .right.item:not(.borderless):last-child,
- .ui.menu:not(.secondary):not(.text):not(.tabular):not(.borderless) > .container > .right.menu > .item:not(.borderless):last-child {
- border-right: @dividerSize solid @dividerBackground;
- }
-}
-
-
-/*******************************
- States
-*******************************/
-
-/*--------------
- Hover
----------------*/
-
-
-.ui.link.menu .item:hover,
-.ui.menu .dropdown.item:hover,
-.ui.menu .link.item:hover,
-.ui.menu a.item:hover {
- cursor: pointer;
- background: @hoverItemBackground;
- color: @hoverItemTextColor;
-}
-
-
-/*--------------
- Pressed
----------------*/
-
-.ui.link.menu .item:active,
-.ui.menu .link.item:active,
-.ui.menu a.item:active {
- background: @pressedItemBackground;
- color: @pressedItemTextColor;
-}
-
-
-/*--------------
- Active
----------------*/
-
-.ui.menu .active.item {
- background: @activeItemBackground;
- color: @activeItemTextColor;
- font-weight: @activeItemFontWeight;
- box-shadow: @activeItemBoxShadow;
-}
-.ui.menu .active.item > i.icon {
- opacity: @activeIconOpacity;
-}
-
-/*--------------
- Active Hover
----------------*/
-
-.ui.menu .active.item:hover,
-.ui.vertical.menu .active.item:hover {
- background-color: @activeHoverItemBackground;
- color: @activeHoverItemColor;
-}
-
-
-/*--------------
- Disabled
----------------*/
-
-.ui.ui.menu .item.disabled {
- cursor: default;
- background-color: transparent;
- color: @disabledTextColor;
- pointer-events: none;
-}
-
-
-/*******************************
- Types
-*******************************/
-
-/*------------------
-Floated Menu / Item
--------------------*/
-
-/* Left Floated */
-.ui.menu:not(.vertical) .left.item,
-.ui.menu:not(.vertical) .left.menu {
- display: flex;
- margin-right: auto !important;
-}
-/* Right Floated */
-.ui.menu:not(.vertical) .right.item,
-.ui.menu:not(.vertical) .right.menu {
- display: flex;
- margin-left: auto !important;
-}
-
-.ui.menu:not(.vertical) :not(.dropdown) > .left.menu,
-.ui.menu:not(.vertical) :not(.dropdown) > .right.menu {
- display: inherit;
-}
-
-/* Center */
-.ui.menu:not(.vertical) .center.item,
-.ui.menu:not(.vertical) .center.menu {
- display: flex;
- margin-left: auto !important;
- margin-right: auto !important;
-}
-
-/* Swapped Borders */
-.ui.menu .right.item::before,
-.ui.menu .right.menu > .item::before {
- right: auto;
- left: 0;
-}
-
-/* Remove Outer Borders */
-.ui.menu .center.item:last-child::before,
-.ui.menu .center.menu > .item:last-child::before {
- display: none;
-}
-
-& when (@variationMenuVertical) {
- /*--------------
- Vertical
- ---------------*/
-
- .ui.vertical.menu {
- display: block;
- flex-direction: column;
- background: @verticalBackground;
- box-shadow: @verticalBoxShadow;
- }
-
- /*--- Item ---*/
- .ui.vertical.menu .item {
- display: block;
- background: @verticalItemBackground;
- border-top: none;
- border-right: none;
- }
- .ui.vertical.menu > .item:first-child {
- border-radius: @borderRadius @borderRadius 0 0;
- }
- .ui.vertical.menu > .item:last-child {
- border-radius: 0 0 @borderRadius @borderRadius;
- }
-
- /*--- Label ---*/
- .ui.vertical.menu .item > .label {
- float: right;
- text-align: center;
- }
-
- /*--- Icon ---*/
- .ui.vertical.menu .item > i.icon,
- .ui.vertical.menu .item > i.icons {
- width: @iconWidth;
- float: @verticalIconFloat;
- margin: @verticalIconMargin;
- }
- .ui.vertical.menu .item > .label + i.icon {
- float: @labelAndIconFloat;
- margin: @labelAndIconMargin;
- }
-
-
- /*--- Border ---*/
- .ui.vertical.menu .item:before {
- position: absolute;
- content: '';
- top: 0;
- left: 0;
- width: 100%;
- height: @dividerSize;
- background: @verticalDividerBackground;
- }
-
- .ui.vertical.menu .item:first-child:before {
- display: none !important;
- }
-
-
- /*--- Sub Menu ---*/
- .ui.vertical.menu .item > .menu {
- margin: @subMenuMargin;
- }
- .ui.vertical.menu .menu .item {
- background: none;
- padding: @subMenuVerticalPadding @subMenuHorizontalPadding;
- font-size: @subMenuFontSize;
- color: @subMenuTextColor;
- }
- .ui.vertical.menu .item .menu a.item:hover,
- .ui.vertical.menu .item .menu .link.item:hover {
- color: @darkTextColor;
- }
- .ui.vertical.menu .menu .item:before {
- display: none;
- }
-
- /* Vertical Active */
- .ui.vertical.menu .active.item {
- background: @activeItemBackground;
- border-radius: 0;
- box-shadow: @verticalActiveBoxShadow;
- }
- .ui.vertical.menu > .active.item:first-child {
- border-radius: @borderRadius @borderRadius 0 0;
- }
- .ui.vertical.menu > .active.item:last-child {
- border-radius: 0 0 @borderRadius @borderRadius;
- }
- .ui.vertical.menu > .active.item:only-child {
- border-radius: @borderRadius;
- }
- .ui.vertical.menu .active.item .menu .active.item {
- border-left: none;
- }
- .ui.vertical.menu .item .menu .active.item {
- background-color: @subMenuActiveBackground;
- font-weight: @subMenuActiveFontWeight;
- color: @subMenuActiveTextColor;
- }
-}
-
-& when (@variationMenuTabular) {
- /*--------------
- Tabular
- ---------------*/
-
- .ui.tabular.menu {
- border-radius: 0;
- box-shadow: none !important;
- border: none;
- background: @tabularBackground;
- border-bottom: @tabularBorderWidth solid @tabularBorderColor;
- }
- .ui.tabular.fluid.menu {
- width: @tabularFluidWidth !important;
- }
- .ui.tabular.menu .item {
- background: transparent;
- border-bottom: none;
-
- border-left: @tabularBorderWidth solid transparent;
- border-right: @tabularBorderWidth solid transparent;
- border-top: @tabularOppositeBorderWidth solid transparent;
- padding: @tabularVerticalPadding @tabularHorizontalPadding;
- color: @tabularTextColor;
- }
- .ui.tabular.menu .item:before {
- display: none;
- }
-
- /* Hover */
- .ui.tabular.menu .item:hover {
- background-color: transparent;
- color: @tabularHoveredTextColor;
- }
-
- /* Active */
- .ui.tabular.menu .active.item {
- background: @tabularActiveBackground;
- color: @tabularActiveColor;
- border-top-width: @tabularBorderWidth;
- border-color: @tabularBorderColor;
- font-weight: @tabularActiveWeight;
- margin-bottom: -@tabularBorderWidth;
- box-shadow: @tabularActiveBoxShadow;
- border-radius: @tabularBorderRadius @tabularBorderRadius 0 0 !important;
- }
-
- /* Coupling with segment for attachment */
- .ui.tabular.menu + .attached:not(.top).segment,
- .ui.tabular.menu + .attached:not(.top).segment + .attached:not(.top).segment {
- border-top: none;
- margin-left: 0;
- margin-top: 0;
- margin-right: 0;
- width: 100%;
- }
- .top.attached.segment + .ui.bottom.tabular.menu {
- position: relative;
- width: @tabularFluidWidth;
- left: -@tabularFluidOffset;
- }
-
- /* Bottom Vertical Tabular */
- .ui.bottom.tabular.menu {
- background: @tabularBackground;
- border-radius: 0;
- box-shadow: none !important;
- border-bottom: none;
- border-top: @tabularBorderWidth solid @tabularBorderColor;
- }
- .ui.bottom.tabular.menu .item {
- background: none;
- border-left: @tabularBorderWidth solid transparent;
- border-right: @tabularBorderWidth solid transparent;
- border-bottom: @tabularBorderWidth solid transparent;
- border-top: none;
- }
- .ui.bottom.tabular.menu .active.item {
- background: @tabularActiveBackground;
- color: @tabularActiveColor;
- border-color: @tabularBorderColor;
- margin: -@tabularBorderWidth 0 0 0;
- border-radius: 0 0 @tabularBorderRadius @tabularBorderRadius !important;
- }
- & when (@variationMenuVertical) {
- /* Vertical Tabular (Left) */
- .ui.vertical.tabular.menu {
- background: @tabularVerticalBackground;
- border-radius: 0;
- box-shadow: none !important;
- border-bottom: none;
- border-right: @tabularBorderWidth solid @tabularBorderColor;
- }
- .ui.vertical.tabular.menu .item {
- background: none;
- border-left: @tabularBorderWidth solid transparent;
- border-bottom: @tabularBorderWidth solid transparent;
- border-top: @tabularBorderWidth solid transparent;
- border-right: none;
- }
- .ui.vertical.tabular.menu .active.item {
- background: @tabularActiveBackground;
- color: @tabularActiveColor;
- border-color: @tabularBorderColor;
- margin: 0 -@tabularBorderWidth 0 0;
- border-radius: @tabularBorderRadius 0 0 @tabularBorderRadius !important;
- }
-
- /* Vertical Right Tabular */
- .ui.vertical.right.tabular.menu {
- background: @tabularVerticalBackground;
- border-radius: 0;
- box-shadow: none !important;
- border-bottom: none;
- border-right: none;
- border-left: @tabularBorderWidth solid @tabularBorderColor;
- }
- .ui.vertical.right.tabular.menu .item {
- background: none;
- border-right: @tabularBorderWidth solid transparent;
- border-bottom: @tabularBorderWidth solid transparent;
- border-top: @tabularBorderWidth solid transparent;
- border-left: none;
- }
- .ui.vertical.right.tabular.menu .active.item {
- background: @tabularActiveBackground;
- color: @tabularActiveColor;
- border-color: @tabularBorderColor;
- margin: 0 0 0 -@tabularBorderWidth;
- border-radius: 0 @tabularBorderRadius @tabularBorderRadius 0 !important;
- }
- }
- /* Dropdown */
- .ui.tabular.menu .active.dropdown.item {
- margin-bottom: 0;
- border-left: @tabularBorderWidth solid transparent;
- border-right: @tabularBorderWidth solid transparent;
- border-top: @tabularOppositeBorderWidth solid transparent;
- border-bottom: none;
- }
-}
-
-
-& when (@variationMenuPagination) {
- /*--------------
- Pagination
- ---------------*/
-
- .ui.pagination.menu {
- margin: 0;
- display: inline-flex;
- vertical-align: middle;
- }
- .ui.pagination.menu .item:last-child {
- border-radius: 0 @borderRadius @borderRadius 0;
- }
- .ui.compact.menu .item:last-child {
- border-radius: 0 @borderRadius @borderRadius 0;
- }
- .ui.pagination.menu .item:last-child:before {
- display: none;
- }
-
- .ui.pagination.menu .item {
- min-width: @paginationMinWidth;
- text-align: center;
- }
- .ui.pagination.menu .icon.item i.icon {
- vertical-align: top;
- }
-
- /* Active */
- .ui.pagination.menu .active.item {
- border-top: none;
- padding-top: @itemVerticalPadding;
- background-color: @paginationActiveBackground;
- color: @paginationActiveTextColor;
- box-shadow: none;
- }
-}
-
-& when (@variationMenuSecondary) {
- /*--------------
- Secondary
- ---------------*/
-
- .ui.secondary.menu {
- background: @secondaryBackground;
- margin-left: -@secondaryItemSpacing;
- margin-right: -@secondaryItemSpacing;
- border-radius: 0;
- border: none;
- box-shadow: none;
- }
-
- /* Item */
- .ui.secondary.menu .item {
- align-self: center;
- box-shadow: none;
- border: none;
- padding: @secondaryItemPadding;
- margin: @secondaryItemMargin;
- background: @secondaryItemBackground;
- transition: @secondaryItemTransition;
- border-radius: @secondaryItemBorderRadius;
- }
-
- /* No Divider */
- .ui.secondary.menu .item:before {
- display: none !important;
- }
-
- /* Header */
- .ui.secondary.menu .header.item {
- border-radius: 0;
- border-right: @secondaryHeaderBorder;
- background: @secondaryHeaderBackground;
- }
-
- /* Image */
- .ui.secondary.menu .item > img:not(.ui) {
- margin: 0;
- }
-
- /* Hover */
- .ui.secondary.menu .dropdown.item:hover,
- .ui.secondary.menu .link.item:hover,
- .ui.secondary.menu a.item:hover {
- background: @secondaryHoverItemBackground;
- color: @secondaryHoverItemColor;
- }
-
- /* Active */
- .ui.secondary.menu .active.item {
- box-shadow: none;
- background: @secondaryActiveItemBackground;
- color: @secondaryActiveItemColor;
- border-radius: @secondaryItemBorderRadius;
- }
-
- /* Active Hover */
- .ui.secondary.menu .active.item:hover {
- box-shadow: none;
- background: @secondaryActiveHoverItemBackground;
- color: @secondaryActiveHoverItemColor;
- }
-
- & when (@variationMenuInverted) {
- /* Inverted */
- .ui.secondary.inverted.menu .link.item:not(.disabled),
- .ui.secondary.inverted.menu a.item:not(.disabled) {
- color: @secondaryInvertedColor;
- }
- .ui.secondary.inverted.menu .dropdown.item:hover,
- .ui.secondary.inverted.menu .link.item:hover,
- .ui.secondary.inverted.menu a.item:hover {
- background: @secondaryInvertedHoverBackground;
- color: @secondaryInvertedHoverColor;
- }
- .ui.secondary.inverted.menu .active.item {
- background: @secondaryInvertedActiveBackground;
- color: @secondaryInvertedActiveColor;
- }
- }
- /* Fix item margins */
- .ui.secondary.item.menu {
- margin-left: 0;
- margin-right: 0;
- }
- .ui.secondary.item.menu .item:last-child {
- margin-right: 0;
- }
- & when (@variationMenuAttached) {
- .ui.secondary.attached.menu {
- box-shadow: none;
- }
- }
- & when (@variationMenuVertical) {
- /*---------------------
- Secondary Vertical
- -----------------------*/
-
- /* Sub Menu */
- .ui.vertical.secondary.menu .item:not(.dropdown) > .menu {
- margin: @secondaryMenuSubMenuMargin;
- }
- .ui.vertical.secondary.menu .item:not(.dropdown) > .menu > .item {
- margin: @secondaryMenuSubMenuItemMargin;
- padding: @secondaryMenuSubMenuItemPadding;
- }
-
-
- .ui.secondary.vertical.menu > .item {
- border: none;
- margin: @secondaryVerticalItemMargin;
- border-radius: @secondaryVerticalItemBorderRadius !important;
- }
- .ui.secondary.vertical.menu > .header.item {
- border-radius: 0;
- }
-
- /* Sub Menu */
- .ui.vertical.secondary.menu .item > .menu .item {
- background-color: transparent;
- }
-
- /* Inverted */
- .ui.secondary.inverted.menu {
- background-color: transparent;
- }
- }
-
- & when (@variationMenuPointing) {
- /*---------------------
- Secondary Pointing
- -----------------------*/
-
- .ui.secondary.pointing.menu {
- margin-left: 0;
- margin-right: 0;
- border-bottom: @secondaryPointingBorderWidth solid @secondaryPointingBorderColor;
- }
-
- .ui.secondary.pointing.menu .item {
- border-bottom-color: transparent;
- border-bottom-style: solid;
- border-radius: 0;
- align-self: flex-end;
-
- margin: 0 0 -@secondaryPointingBorderWidth;
- padding: @secondaryPointingItemVerticalPadding @secondaryPointingItemHorizontalPadding;
- border-bottom-width: @secondaryPointingBorderWidth;
- transition: @secondaryItemTransition;
- }
- .ui.secondary.pointing.menu .ui.dropdown .menu .item {
- border-bottom-width: 0;
- }
-
- .ui.secondary.pointing.menu .item > .label:not(.floating) {
- margin-top: -@labelVerticalPadding;
- margin-bottom: -@labelVerticalPadding;
- }
- .ui.secondary.pointing.menu .item > .circular.label {
- margin-top: -@circularLabelVerticalPadding;
- margin-bottom: -@circularLabelVerticalPadding;
- }
-
- /* Item Types */
- .ui.secondary.pointing.menu .header.item {
- color: @secondaryPointingHeaderColor !important;
- }
- .ui.secondary.pointing.menu .text.item {
- box-shadow: none !important;
- }
- .ui.secondary.pointing.menu .item:after {
- display: none;
- }
-
- /* Hover */
- .ui.secondary.pointing.menu .dropdown.item:hover,
- .ui.secondary.pointing.menu .link.item:hover,
- .ui.secondary.pointing.menu a.item:hover {
- background-color: transparent;
- color: @secondaryPointingHoverTextColor;
- }
-
- /* Pressed */
- .ui.secondary.pointing.menu .dropdown.item:active,
- .ui.secondary.pointing.menu .link.item:active,
- .ui.secondary.pointing.menu a.item:active {
- background-color: transparent;
- border-color: @secondaryPointingBorderColor;
- }
-
- /* Active */
- .ui.secondary.pointing.menu .active.item {
- background-color: transparent;
- box-shadow: none;
- border-color: @secondaryPointingActiveBorderColor;
- font-weight: @secondaryPointingActiveFontWeight;
- color: @secondaryPointingActiveTextColor;
- }
-
- /* Active Hover */
- .ui.secondary.pointing.menu .active.item:hover {
- border-color: @secondaryPointingActiveHoverBorderColor;
- color: @secondaryPointingActiveHoverTextColor;
- }
-
- /* Active Dropdown */
- .ui.secondary.pointing.menu .active.dropdown.item {
- border-color: @secondaryPointingActiveDropdownBorderColor;
- }
- & when (@variationMenuVertical) {
- /* Vertical Pointing */
- .ui.secondary.vertical.pointing.menu {
- border-bottom-width: 0;
- border-right-width: @secondaryPointingBorderWidth;
- border-right-style: solid;
- border-right-color: @secondaryPointingBorderColor;
- }
- .ui.secondary.vertical.pointing.menu .item {
- border-bottom: none;
- border-right-style: solid;
- border-right-color: transparent;
- border-radius: 0 !important;
- margin: @secondaryVerticalPointingItemMargin;
- border-right-width: @secondaryPointingBorderWidth;
- }
-
- /* Vertical Active */
- .ui.secondary.vertical.pointing.menu .active.item {
- border-color: @secondaryPointingActiveBorderColor;
- }
- }
- & when (@variationMenuInverted) {
- /* Inverted */
- .ui.secondary.inverted.pointing.menu {
- border-color: @secondaryPointingInvertedBorderColor;
- }
-
- .ui.secondary.inverted.pointing.menu .item:not(.disabled) {
- color: @secondaryPointingInvertedItemTextColor;
- }
- .ui.secondary.inverted.pointing.menu .header.item {
- color: @secondaryPointingInvertedItemHeaderColor !important;
- }
-
- /* Hover */
- .ui.secondary.inverted.pointing.menu .link.item:hover,
- .ui.secondary.inverted.pointing.menu a.item:hover {
- color: @secondaryPointingInvertedItemHoverTextColor;
- }
-
-
- /* Active */
- .ui.ui.secondary.inverted.pointing.menu .active.item {
- border-color: @secondaryPointingInvertedActiveBorderColor;
- color: @secondaryPointingInvertedActiveColor;
- background-color: transparent;
- }
- }
- }
-}
-
-& when (@variationMenuText) {
- /*--------------
- Text Menu
- ---------------*/
-
- .ui.text.menu {
- background: none transparent;
- border-radius: 0;
- box-shadow: none;
- border: none;
-
- margin: @textMenuMargin;
- }
- .ui.text.menu .item {
- border-radius: 0;
- box-shadow: none;
- align-self: center;
- margin: @textMenuItemMargin;
- padding: @textMenuItemPadding;
- font-weight: @textMenuItemFontWeight;
- color: @textMenuItemColor;
- transition: @textMenuItemTransition;
- }
-
- /* Border */
- .ui.text.menu .item:before,
- .ui.text.menu .menu .item:before {
- display: none !important;
- }
-
- /* Header */
- .ui.text.menu .header.item {
- background-color: transparent;
- opacity: 1;
- color: @textMenuHeaderColor;
- font-size: @textMenuHeaderSize;
- text-transform: @textMenuHeaderTextTransform;
- font-weight: @textMenuHeaderFontWeight;
- }
-
- /* Image */
- .ui.text.menu .item > img:not(.ui) {
- margin: 0;
- }
-
- /*--- fluid text ---*/
- .ui.text.item.menu .item {
- margin: 0;
- }
- & when (@variationMenuVertical) {
- /*--- vertical text ---*/
- .ui.vertical.text.menu {
- margin: @textVerticalMenuMargin;
- }
- .ui.vertical.text.menu:first-child {
- margin-top: 0;
- }
- .ui.vertical.text.menu:last-child {
- margin-bottom: 0;
- }
- .ui.vertical.text.menu .item {
- margin: @textVerticalMenuItemMargin;
- padding-left: 0;
- padding-right: 0;
- }
- .ui.vertical.text.menu .item > i.icon {
- float: @textVerticalMenuIconFloat;
- margin: @iconMargin;
- }
- .ui.vertical.text.menu .header.item {
- margin: @textVerticalMenuHeaderMargin;
- }
-
- /* Vertical Sub Menu */
- .ui.vertical.text.menu .item:not(.dropdown) > .menu {
- margin: @textMenuSubMenuMargin;
- }
- .ui.vertical.text.menu .item:not(.dropdown) > .menu > .item {
- margin: @textMenuSubMenuItemMargin;
- padding: @textMenuSubMenuItemPadding;
- }
- }
- /*--- hover ---*/
- .ui.text.menu .item:hover {
- opacity: 1;
- background-color: transparent;
- }
-
- /*--- active ---*/
- .ui.text.menu .active.item {
- background-color: transparent;
- border: none;
- box-shadow: none;
- font-weight: @textMenuActiveItemFontWeight;
- color: @textMenuActiveItemColor;
- }
-
- /*--- active hover ---*/
- .ui.text.menu .active.item:hover {
- background-color: transparent;
- }
- & when (@variationMenuPointing) {
- /* Disable Bariations */
- .ui.text.pointing.menu .active.item:after {
- box-shadow: none;
- }
- }
- & when (@variationMenuAttached) {
- .ui.text.attached.menu {
- box-shadow: none;
- }
- }
- & when (@variationMenuInverted) {
- /* Inverted */
- .ui.inverted.text.menu,
- .ui.inverted.text.menu .item,
- .ui.inverted.text.menu .item:hover,
- .ui.inverted.text.menu .active.item {
- background-color: transparent;
- }
- }
- & when (@variationMenuFluid) {
- /* Fluid */
- .ui.fluid.text.menu {
- margin-left: 0;
- margin-right: 0;
- }
- }
-}
-
-/*--------------
- Icon Only
----------------*/
-
-/* Vertical Menu */
-.ui.vertical.icon.menu {
- display: inline-block;
- width: auto;
-}
-
-/* Item */
-.ui.icon.menu .item {
- height: auto;
- text-align: @iconMenuTextAlign;
- color: @iconMenuItemColor;
-}
-
-/* Icon */
-.ui.icon.menu .item > .icon:not(.dropdown) {
- margin: 0;
- opacity: 1;
-}
-
-/* Icon Gylph */
-.ui.icon.menu .icon:before {
- opacity: 1;
-}
-
-/* (x) Item Icon */
-.ui.menu .icon.item > .icon {
- width: auto;
- margin: 0 auto;
-}
-
-/* Vertical Icon */
-.ui.vertical.icon.menu .item > .icon:not(.dropdown) {
- display: block;
- opacity: 1;
- margin: 0 auto;
- float: none;
-}
-
-/* Inverted */
-.ui.inverted.icon.menu .item {
- color: @iconMenuInvertedItemColor;
-}
-
-& when (@variationMenuLabeled) {
- /*--------------
- Labeled Icon
- ---------------*/
-
- /* Menu */
- .ui.labeled.icon.menu {
- text-align: center;
- }
-
- /* Item */
- .ui.labeled.icon.menu .item {
- min-width: @labeledIconMinWidth;
- flex-direction: column;
- }
-
- /* Icon */
- .ui.labeled.icon.menu > .item > .icon:not(.dropdown) {
- height: 1em;
- display: block;
- font-size: @labeledIconSize !important;
- margin: 0 auto @labeledIconTextMargin !important;
- }
- & when (@variationMenuFluid) {
- /* Fluid */
- .ui.fluid.labeled.icon.menu > .item {
- min-width: 0;
- }
- }
-}
-
-
-/*******************************
- Variations
-*******************************/
-
-& when (@variationMenuStackable) {
- /*--------------
- Stackable
- ---------------*/
-
- @media only screen and (max-width: @largestMobileScreen) {
- .ui.stackable.menu {
- flex-direction: column;
- }
- .ui.stackable.menu .item {
- width: 100% !important;
- }
- .ui.stackable.menu .item:before {
- position: absolute;
- content: '';
- top: auto;
- bottom: 0;
- left: 0;
- width: 100%;
- height: @dividerSize;
- background: @verticalDividerBackground;
- }
-
- .ui.stackable.menu .left.menu,
- .ui.stackable.menu .left.item {
- margin-right: 0 !important;
- }
- .ui.stackable.menu .right.menu,
- .ui.stackable.menu .right.item {
- margin-left: 0 !important;
- }
- .ui.stackable.menu .center.menu,
- .ui.stackable.menu .center.item {
- margin-left: 0 !important;
- margin-right: 0 !important;
- }
-
- .ui.stackable.menu .right.menu,
- .ui.stackable.menu .center.menu,
- .ui.stackable.menu .left.menu {
- flex-direction: column;
- }
- }
-}
-
-/*--------------
- Colors
----------------*/
-
-each(@colors, {
- @color: replace(@key, '@', '');
- @c: @colors[@@color][color];
-
- & when not (@color=secondary) {
- .ui.ui.menu .@{color}.active.item,
- .ui.ui.@{color}.menu .active.item:hover,
- .ui.ui.@{color}.menu .active.item {
- & when not (@secondaryPointingActiveBorderColor = currentColor) {
- border-color: @c;
- }
- color: @c;
- }
- }
-})
-
-& when (@variationMenuInverted) {
- /*--------------
- Inverted
- ---------------*/
-
- .ui.inverted.menu {
- border: @invertedBorder;
- background: @invertedBackground;
- box-shadow: @invertedBoxShadow;
- }
-
- /* Menu Item */
- .ui.inverted.menu .item,
- .ui.inverted.menu .item > a:not(.ui) {
- background: @invertedItemBackground;
- color: @invertedItemTextColor;
- }
- .ui.inverted.menu .item.menu {
- background: @invertedSubMenuBackground;
- }
-
- /*--- Border ---*/
- .ui.inverted.menu .item:before {
- background: @invertedDividerBackground;
- }
- & when (@variationMenuVertical) {
- .ui.vertical.inverted.menu .item:before {
- background: @invertedVerticalDividerBackground;
- }
- /* Sub Menu */
- .ui.vertical.inverted.menu .menu .item,
- .ui.vertical.inverted.menu .menu .item a:not(.ui) {
- color: @invertedSubMenuColor;
- }
- }
- /* Header */
- .ui.inverted.menu .header.item {
- margin: 0;
- background: @invertedHeaderBackground;
- box-shadow: none;
- }
-
- /* Disabled */
- .ui.ui.inverted.menu .item.disabled {
- color: @invertedDisabledTextColor;
- }
-
- /*--- Hover ---*/
- .ui.link.inverted.menu .item:hover,
- .ui.inverted.menu .dropdown.item:hover,
- .ui.inverted.menu .link.item:hover,
- .ui.inverted.menu a.item:hover {
- background: @invertedHoverBackground;
- color: @invertedHoverColor;
- }
- & when (@variationMenuVertical) {
- .ui.vertical.inverted.menu .item .menu a.item:hover,
- .ui.vertical.inverted.menu .item .menu .link.item:hover {
- background: @invertedSubMenuBackground;
- color: @invertedSubMenuHoverColor;
- }
- }
- /*--- Pressed ---*/
- .ui.inverted.menu a.item:active,
- .ui.inverted.menu .link.item:active{
- background: @invertedMenuPressedBackground;
- color: @invertedMenuPressedColor;
- }
-
- /*--- Active ---*/
- .ui.inverted.menu .active.item {
- background: @invertedActiveBackground;
- color: @invertedActiveColor !important;
- }
- & when (@variationMenuVertical) {
- .ui.inverted.vertical.menu .item .menu .active.item {
- background: @invertedSubMenuActiveBackground;
- color: @invertedSubMenuActiveColor;
- }
- }
- & when (@variationMenuPointing) {
- .ui.inverted.pointing.menu .active.item:after {
- background: @invertedArrowActiveColor;
- margin: 0 !important;
- box-shadow: none !important;
- border: none !important;
- }
- }
-
- /*--- Active Hover ---*/
- .ui.inverted.menu .active.item:hover {
- background: @invertedActiveHoverBackground;
- color: @invertedActiveHoverColor !important;
- }
- & when (@variationMenuPointing) {
- .ui.inverted.pointing.menu .active.item:hover:after {
- background: @invertedArrowActiveHoverColor;
- }
- }
-}
-
-& when (@variationMenuFloated) {
- /*--------------
- Floated
- ---------------*/
-
- .ui.floated.menu {
- float: left;
- margin: 0 @floatedDistance 0 0;
- }
- .ui.floated.menu .item:last-child:before {
- display: none;
- }
-
- .ui.right.floated.menu {
- float: right;
- margin: 0 0 0 @floatedDistance;
- }
-}
-
-& when (@variationMenuInverted) {
- /*--------------
- Inverted
- ---------------*/
-
- each(@colors, {
- @color: replace(@key, '@', '');
- @c: @colors[@@color][color];
- @h: @colors[@@color][hover];
-
- & when not (@color=secondary) {
- .ui.ui.inverted.menu .@{color}.active.item,
- .ui.ui.inverted.@{color}.menu {
- background-color: @c;
- }
- .ui.inverted.@{color}.menu .item:before {
- background-color: @invertedColoredDividerBackground;
- }
- .ui.ui.inverted.@{color}.menu .active.item {
- background-color: @invertedColoredActiveBackground;
- }
- & when (@variationMenuPointing) {
- .ui.inverted.pointing.@{color}.menu .active.item {
- background-color: @h;
- }
- }
- }
- })
-
- & when (@variationMenuPointing) {
- .ui.ui.ui.inverted.pointing.menu .active.item:after {
- background-color: inherit;
- }
- }
-}
-
-& when (@variationMenuFitted) {
- /*--------------
- Fitted
- ---------------*/
-
- .ui.fitted.menu .item,
- .ui.fitted.menu .item .menu .item,
- .ui.menu .fitted.item {
- padding: 0;
- }
- .ui.horizontally.fitted.menu .item,
- .ui.horizontally.fitted.menu .item .menu .item,
- .ui.menu .horizontally.fitted.item {
- padding-top: @itemVerticalPadding;
- padding-bottom: @itemVerticalPadding;
- }
- .ui.vertically.fitted.menu .item,
- .ui.vertically.fitted.menu .item .menu .item,
- .ui.menu .vertically.fitted.item {
- padding-left: @itemHorizontalPadding;
- padding-right: @itemHorizontalPadding;
- }
-}
-
-& when (@variationMenuBorderless) {
- /*--------------
- Borderless
- ---------------*/
-
- .ui.borderless.menu .item:before,
- .ui.borderless.menu .item .menu .item:before,
- .ui.menu .borderless.item:before {
- background: none !important;
- }
-}
-
-& when (@variationMenuCompact) {
- /*-------------------
- Compact
- --------------------*/
-
- .ui.compact.menu {
- display: inline-flex;
- margin: 0;
- vertical-align: middle;
- }
- & when (@variationMenuVertical) {
- .ui.compact.vertical.menu {
- /* IE hack to make dropdown icons appear inline */
- display: -ms-inline-flexbox !important;
- display: inline-block;
- }
- }
- .ui.compact.menu:not(.secondary) .item:last-child {
- border-radius: 0 @borderRadius @borderRadius 0;
- }
- .ui.compact.menu .item:last-child:before {
- display: none;
- }
- & when (@variationMenuVertical) {
- .ui.compact.vertical.menu {
- width: auto !important;
- }
- .ui.compact.vertical.menu .item:last-child::before {
- display: block;
- }
- }
-}
-
-& when (@variationMenuFluid) {
- /*-------------------
- Fluid
- --------------------*/
-
- .ui.menu.fluid,
- .ui.vertical.menu.fluid {
- width: 100% !important;
- }
-}
-
-
-/*-------------------
- Evenly Sized
---------------------*/
-
-.ui.item.menu,
-.ui.item.menu .item {
- width: 100%;
- padding-left: 0 !important;
- padding-right: 0 !important;
- margin-left: 0 !important;
- margin-right: 0 !important;
- text-align: center;
- justify-content: center;
-}
-.ui.attached.item.menu:not(.tabular) {
- margin: 0 @attachedHorizontalOffset !important;
-}
-
-.ui.item.menu .item:last-child:before {
- display: none;
-}
-
-.ui.menu.two.item .item {
- width: 50%;
-}
-.ui.menu.three.item .item {
- width: 33.333%;
-}
-.ui.menu.four.item .item {
- width: 25%;
-}
-.ui.menu.five.item .item {
- width: 20%;
-}
-.ui.menu.six.item .item {
- width: 16.666%;
-}
-.ui.menu.seven.item .item {
- width: 14.285%;
-}
-.ui.menu.eight.item .item {
- width: 12.500%;
-}
-.ui.menu.nine.item .item {
- width: 11.11%;
-}
-.ui.menu.ten.item .item {
- width: 10.0%;
-}
-.ui.menu.eleven.item .item {
- width: 9.09%;
-}
-.ui.menu.twelve.item .item {
- width: 8.333%;
-}
-
-& when (@variationMenuFixed) {
- /*--------------
- Fixed
- ---------------*/
-
- .ui.menu.fixed {
- position: fixed;
- z-index: 101;
- margin: 0;
- width: 100%;
- }
- .ui.menu.fixed,
- .ui.menu.fixed .item:first-child,
- .ui.menu.fixed .item:last-child {
- border-radius: 0 !important;
- }
-
- .ui.fixed.menu,
- .ui[class*="top fixed"].menu {
- top: 0;
- left: 0;
- right: auto;
- bottom: auto;
- }
- .ui[class*="top fixed"].menu {
- border-top: none;
- border-left: none;
- border-right: none;
- }
- .ui[class*="right fixed"].menu {
- border-top: none;
- border-bottom: none;
- border-right: none;
- top: 0;
- right: 0;
- left: auto;
- bottom: auto;
- width: auto;
- height: 100%;
- }
- .ui[class*="bottom fixed"].menu {
- border-bottom: none;
- border-left: none;
- border-right: none;
- bottom: 0;
- left: 0;
- top: auto;
- right: auto;
- }
- .ui[class*="left fixed"].menu {
- border-top: none;
- border-bottom: none;
- border-left: none;
- top: 0;
- left: 0;
- right: auto;
- bottom: auto;
- width: auto;
- height: 100%;
- }
-
- /* Coupling with Grid */
- .ui.fixed.menu + .ui.grid {
- padding-top: @fixedPrecedingGridMargin;
- }
-}
-
-& when (@variationMenuPointing) {
- /*-------------------
- Pointing
- --------------------*/
-
- .ui.pointing.menu .item:after {
- visibility: hidden;
- position: absolute;
- content: '';
- top: 100%;
- left: 50%;
- transform: translateX(-50%) translateY(-50%) rotate(45deg);
- background: none;
-
- margin: (@arrowBorderWidth / 2) 0 0;
- width: @arrowSize;
- height: @arrowSize;
-
- border: none;
- border-bottom: @arrowBorder;
- border-right: @arrowBorder;
-
- z-index: @arrowZIndex;
- transition: @arrowTransition;
- }
- & when (@variationMenuVertical) {
- .ui.vertical.pointing.menu .item:after {
- position: absolute;
- top: 50%;
- right: 0;
- bottom: auto;
- left: auto;
-
- transform: translateX(50%) translateY(-50%) rotate(45deg);
- margin: 0 -(@arrowBorderWidth / 2) 0 0;
-
- border: none;
- border-top: @arrowBorder;
- border-right: @arrowBorder;
- }
- }
- .ui.pointing.menu .ui.dropdown .menu .item:after,
- .ui.vertical.pointing.menu .ui.dropdown .menu .item:after {
- display: none;
- }
-
- /* Active */
- .ui.pointing.menu .active.item:after {
- visibility: visible;
- }
- .ui.pointing.menu .active.dropdown.item:after {
- visibility: hidden;
- }
-
- /* Don't double up pointers */
- .ui.pointing.menu .dropdown.active.item:after,
- .ui.pointing.menu .active.item .menu .active.item:after {
- display: none;
- }
-
- /* Colors */
- .ui.pointing.menu .active.item:hover:after {
- background-color: @arrowHoverColor;
- }
- .ui.pointing.menu .active.item:after {
- background-color: @arrowActiveColor;
- }
- .ui.pointing.menu .active.item:hover:after {
- background-color: @arrowActiveHoverColor;
- }
- & when (@variationMenuVertical) {
- .ui.vertical.pointing.menu .active.item:hover:after {
- background-color: @arrowVerticalHoverColor;
- }
- .ui.vertical.pointing.menu .active.item:after {
- background-color: @arrowVerticalActiveColor;
- }
- .ui.vertical.pointing.menu .menu .active.item:after {
- background-color: @arrowVerticalSubMenuColor;
- }
- }
-}
-
-each(@colors, {
- @color: replace(@key, '@', '');
- @c: @colors[@@color][color];
-
- .ui.inverted.pointing.menu .@{color}.active.item:after {
- background-color: @c;
- }
-})
-
-& when (@variationMenuAttached) {
- /*--------------
- Attached
- ---------------*/
-
- /* Middle */
- .ui.attached.menu {
- top: 0;
- bottom: 0;
- border-radius: 0;
- margin: 0 @attachedHorizontalOffset;
- width: @attachedWidth;
- max-width: @attachedWidth;
- box-shadow: @attachedBoxShadow;
- }
- .ui.attached + .ui.attached.menu:not(.top) {
- border-top: none;
- }
-
- /* Top */
- .ui[class*="top attached"].menu {
- bottom: 0;
- margin-bottom: 0;
- top: @attachedTopOffset;
- margin-top: @verticalMargin;
- border-radius: @borderRadius @borderRadius 0 0;
- }
- .ui.menu[class*="top attached"]:first-child {
- margin-top: 0;
- }
-
- /* Bottom */
- .ui[class*="bottom attached"].menu {
- bottom: 0;
- margin-top: 0;
- top: @attachedBottomOffset;
- margin-bottom: @verticalMargin;
- box-shadow: @attachedBottomBoxShadow;
- border-radius: 0 0 @borderRadius @borderRadius;
- }
- .ui[class*="bottom attached"].menu:last-child {
- margin-bottom: 0;
- }
-
- /* Attached Menu Item */
- .ui.top.attached.menu > .item:first-child {
- border-radius: @borderRadius 0 0 0;
- }
- .ui.bottom.attached.menu > .item:first-child {
- border-radius: 0 0 0 @borderRadius;
- }
-
- /* Tabular Attached */
- .ui.attached.menu:not(.tabular) {
- border: @attachedBorder;
- }
- & when (@variationMenuInverted) {
- .ui.attached.inverted.menu {
- border: none;
- }
- }
- & when (@variationMenuTabular) {
- .ui.attached.tabular.menu {
- margin-left: 0;
- margin-right: 0;
- width: 100%;
- }
- }
-}
-
-/*--------------
- Sizes
----------------*/
-
-.ui.menu {
- font-size: @medium;
-}
-.ui.vertical.menu {
- width: @mediumWidth;
-}
-& when not (@variationMenuSizes = false) {
- each(@variationMenuSizes, {
- @w: @{value}Width;
- @s: @@value;
- .ui.@{value}.menu,
- .ui.@{value}.menu .dropdown,
- .ui.@{value}.menu .dropdown .menu > .item {
- font-size: @s;
- }
- .ui.@{value}.vertical.menu:not(.icon) {
- width: @@w;
- }
- })
-}
-
-/*-------------------
- Inverted dropdowns
---------------------*/
-.ui.menu .ui.inverted.inverted.dropdown.item .menu {
- background: @invertedDropdownBackground;
- box-shadow: @invertedDropdownMenuBoxShadow;
-}
-
-.ui.menu .ui.inverted.dropdown .menu > .item {
- color: @invertedDropdownItemColor !important;
-}
-
-.ui.menu .ui.inverted.dropdown .menu > .active.item {
- background: @invertedDropdownActiveItemBackground !important;
- color: @invertedDropdownActiveItemColor !important;
-}
-
-.ui.menu .ui.inverted.dropdown .menu > .item:hover {
- background: @invertedDropdownHoveredItemBackground !important;
- color: @invertedDropdownHoveredItemColor !important;
-}
-
-.ui.menu .ui.inverted.dropdown .menu > .selected.item {
- background: @invertedDropdownSelectedItemBackground !important;
- color: @invertedDropdownSelectedItemColor !important;
-}
-
-& when (@variationMenuVertical) {
- /* Vertical */
- .ui.vertical.menu .inverted.dropdown.item .menu {
- box-shadow: @invertedDropdownMenuBoxShadow;
- }
-}
-
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/collections/message.less b/src-angular/assets/semantic/src/definitions/collections/message.less
deleted file mode 100644
index 5526367..0000000
--- a/src-angular/assets/semantic/src/definitions/collections/message.less
+++ /dev/null
@@ -1,414 +0,0 @@
-/*!
- * # Fomantic-UI - Message
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'collection';
-@element : 'message';
-
-@import (multiple) '../../theme.config';
-
-/*******************************
- Message
-*******************************/
-
-.ui.message {
- position: relative;
- min-height: 1em;
- margin: @verticalMargin 0;
- background: @background;
- padding: @padding;
- line-height: @lineHeight;
- color: @textColor;
- transition: @transition;
- border-radius: @borderRadius;
- box-shadow: @boxShadow;
-}
-
-.ui.message:first-child {
- margin-top: 0;
-}
-.ui.message:last-child {
- margin-bottom: 0;
-}
-
-
-/*--------------
- Content
----------------*/
-
-/* Header */
-.ui.message .header {
- display: @headerDisplay;
- font-family: @headerFont;
- font-weight: @headerFontWeight;
- margin: @headerMargin;
-}
-
-/* Default font size */
-.ui.message .header:not(.ui) {
- font-size: @headerFontSize;
-}
-
-/* Paragraph */
-.ui.message p {
- opacity: @messageTextOpacity;
- margin: @messageParagraphMargin 0;
-}
-.ui.message p:first-child {
- margin-top: 0;
-}
-.ui.message p:last-child {
- margin-bottom: 0;
-}
-.ui.message .header + p {
- margin-top: @headerParagraphDistance;
-}
-
-/* List */
-.ui.message .list:not(.ui) {
- text-align: left;
- padding: 0;
- opacity: @listOpacity;
- list-style-position: @listStylePosition;
- margin: @listMargin 0 0;
-}
-.ui.message .list:not(.ui):first-child {
- margin-top: 0;
-}
-.ui.message .list:not(.ui):last-child {
- margin-bottom: 0;
-}
-.ui.message .list:not(.ui) li {
- position: relative;
- list-style-type: none;
- margin: 0 0 @listItemMargin @listItemIndent;
- padding: 0;
-}
-.ui.message .list:not(.ui) li:before {
- position: absolute;
- content: '•';
- left: -1em;
- height: 100%;
- vertical-align: baseline;
-}
-.ui.message .list:not(.ui) li:last-child {
- margin-bottom: 0;
-}
-
-
-/* Icon */
-.ui.message > .icon {
- margin-right: @iconDistance;
-}
-
-/* Close Icon */
-.ui.message > .close.icon {
- cursor: pointer;
- position: absolute;
- margin: 0;
- top: @closeTopDistance;
- right: @closeRightDistance;
- opacity: @closeOpacity;
- transition: @closeTransition;
-}
-.ui.message > .close.icon:hover {
- opacity: 1;
-}
-
-/* First / Last Element */
-.ui.message > :first-child {
- margin-top: 0;
-}
-.ui.message > :last-child {
- margin-bottom: 0;
-}
-
-/*******************************
- Coupling
-*******************************/
-
-.ui.dropdown .menu > .message {
- margin: 0 -@borderWidth;
-}
-
-/*******************************
- States
-*******************************/
-
-/*--------------
- Visible
----------------*/
-
-.ui.visible.visible.visible.visible.message {
- display: block;
-}
-
-.ui.icon.visible.visible.visible.visible.message {
- display: flex;
-}
-
-/*--------------
- Hidden
----------------*/
-
-.ui.hidden.hidden.hidden.hidden.message {
- display: none;
-}
-
-
-/*******************************
- Variations
-*******************************/
-
-& when (@variationMessageCompact) {
- /*--------------
- Compact
- ---------------*/
-
- .ui.compact.message {
- display: inline-block;
- }
- .ui.compact.icon.message {
- display: inline-flex;
- width: auto;
- }
-}
-
-& when (@variationMessageAttached) {
- /*--------------
- Attached
- ---------------*/
-
- .ui.attached.message {
- margin-bottom: @attachedYOffset;
- border-radius: @borderRadius @borderRadius 0 0;
- box-shadow: @attachedBoxShadow;
- margin-left: @attachedXOffset;
- margin-right: @attachedXOffset;
- }
- .ui.attached + .ui.attached.message:not(.top):not(.bottom) {
- margin-top: @attachedYOffset;
- border-radius: 0;
- }
- .ui.bottom.attached.message {
- margin-top: @attachedYOffset;
- border-radius: 0 0 @borderRadius @borderRadius;
- box-shadow: @attachedBottomBoxShadow;
- }
- .ui.bottom.attached.message:not(:last-child) {
- margin-bottom: @verticalMargin;
- }
- & when (@variationMessageIcon) {
- .ui.attached.icon.message {
- width: auto;
- }
- }
-}
-
-& when (@variationMessageIcon) {
- /*--------------
- Icon
- ---------------*/
-
- .ui.icon.message {
- display: flex;
- width: 100%;
- align-items: center;
- }
- .ui.icon.message > .icon:not(.close) {
- display: block;
- flex: 0 0 auto;
- width: auto;
- line-height: 1;
- vertical-align: @iconVerticalAlign;
- font-size: @iconSize;
- opacity: @iconOpacity;
- }
- .ui.icon.message > .content {
- display: block;
- flex: 1 1 auto;
- vertical-align: @iconVerticalAlign;
- }
-
-
- .ui.icon.message .icon:not(.close) + .content {
- padding-left: @iconContentDistance;
- }
- .ui.icon.message .circular.icon {
- width: 1em;
- }
-}
-
-& when (@variationMessageFloating) {
- /*--------------
- Floating
- ---------------*/
-
- .ui.floating.message {
- box-shadow: @floatingBoxShadow;
- }
-}
-
-
-/*--------------
- Colors
----------------*/
-
-/*--------------
- Types
----------------*/
-& when (@variationMessageConsequences) {
-
- @consequences: {
- @positive: {
- background : @positiveBackgroundColor;
- header : @positiveHeaderColor;
- boxShadow : @positiveBoxShadow;
- boxFloatShadow : @positiveBoxFloatingShadow;
- text : @positiveTextColor;
- };
- @negative: {
- background : @negativeBackgroundColor;
- header : @negativeHeaderColor;
- boxShadow : @negativeBoxShadow;
- boxFloatShadow : @negativeBoxFloatingShadow;
- text : @negativeTextColor;
- };
- @info: {
- background : @infoBackgroundColor;
- header : @infoHeaderColor;
- boxShadow : @infoBoxShadow;
- boxFloatShadow : @infoBoxFloatingShadow;
- text : @infoTextColor;
- };
- @warning: {
- background : @warningBackgroundColor;
- header : @warningHeaderColor;
- boxShadow : @warningBoxShadow;
- boxFloatShadow : @warningBoxFloatingShadow;
- text : @warningTextColor;
- };
- @error: {
- background : @errorBackgroundColor;
- header : @errorHeaderColor;
- boxShadow : @errorBoxShadow;
- boxFloatShadow : @errorBoxFloatingShadow;
- text : @errorTextColor;
- };
- @success: {
- background : @successBackgroundColor;
- header : @successHeaderColor;
- boxShadow : @successBoxShadow;
- boxFloatShadow : @successBoxFloatingShadow;
- text : @successTextColor;
- };
- }
-
- /* Colors */
-
- each(@consequences, {
- @color: replace(@key, '@', '');
- @bg: @consequences[@@color][background];
- @hd: @consequences[@@color][header];
- @bs: @consequences[@@color][boxShadow];
- @bfs: @consequences[@@color][boxFloatShadow];
- @t: @consequences[@@color][text];
-
- .ui.@{color}.message {
- background-color: @bg;
- color: @t;
- }
-
- .ui.@{color}.message,
- .ui.attached.@{color}.message {
- box-shadow: @bs;
- }
- & when (@variationMessageFloating) {
- .ui.floating.@{color}.message {
- box-shadow: @bfs;
- }
- }
- .ui.@{color}.message .header {
- color: @hd;
- }
- })
-}
-
-each(@colors, {
- @color: replace(@key, '@', '');
- @bg: @colors[@@color][background];
- @hd: @colors[@@color][header];
- @bs: @colors[@@color][boxShadow];
- @bfs: @colors[@@color][boxFloatShadow];
- @t: @colors[@@color][text];
- @isVeryDark: @colors[@@color][isVeryDark];
-
- .ui.@{color}.message {
- & when not (@isVeryDark) {
- background-color: @bg;
- color: @t;
- }
- & when (@isVeryDark) {
- background-color: @black;
- color: @invertedTextColor;
- }
- }
-
- .ui.@{color}.message,
- .ui.attached.@{color}.message {
- & when not (@isVeryDark) {
- box-shadow: @bs;
- }
- }
- & when (@variationMessageFloating) {
- .ui.floating.@{color}.message {
- & when not (@isVeryDark) {
- box-shadow: @bfs;
- }
- }
- }
-
- .ui.@{color}.message .header {
- & when not (@isVeryDark) {
- color: @hd;
- }
- & when (@isVeryDark) {
- color: @invertedTextColor;
- }
- }
-})
-
-& when (@variationMessageInverted) {
- .ui.inverted.message {
- background-color: @black;
- color: @invertedTextColor;
- }
-}
-
-/*--------------
- Sizes
----------------*/
-
-.ui.message {
- font-size: @relativeMedium;
-}
-& when not (@variationMessageSizes = false) {
- each(@variationMessageSizes, {
- @s: @{value}MessageSize;
- .ui.@{value}.message {
- font-size: @@s;
- }
- })
-}
-
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/collections/table.less b/src-angular/assets/semantic/src/definitions/collections/table.less
deleted file mode 100644
index 40cd2d3..0000000
--- a/src-angular/assets/semantic/src/definitions/collections/table.less
+++ /dev/null
@@ -1,1316 +0,0 @@
-/*!
- * # Fomantic-UI - Table
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'collection';
-@element : 'table';
-
-@import (multiple) '../../theme.config';
-
-/*******************************
- Table
-*******************************/
-
-/* Prototype */
-.ui.table {
- width: 100%;
- background: @background;
- margin: @margin;
- border: @border;
- box-shadow: @boxShadow;
- border-radius: @borderRadius;
- text-align: @textAlign;
- vertical-align: @verticalAlign;
- color: @color;
- border-collapse: @borderCollapse;
- border-spacing: @borderSpacing;
-}
-
-.ui.table:first-child {
- margin-top: 0;
-}
-.ui.table:last-child {
- margin-bottom: 0;
-}
-.ui.table > thead,
-.ui.table > tbody {
- text-align: inherit;
- vertical-align: inherit;
-}
-
-/*******************************
- Parts
-*******************************/
-
-/* Table Content */
-.ui.table th,
-.ui.table td {
- transition: @transition;
-}
-
-/* Headers */
-.ui.table > thead {
- box-shadow: @headerBoxShadow;
-}
-.ui.table > thead > tr > th {
- cursor: auto;
- background: @headerBackground;
- text-align: @headerAlign;
- color: @headerColor;
- padding: @headerVerticalPadding @headerHorizontalPadding;
- vertical-align: @headerVerticalAlign;
- font-style: @headerFontStyle;
- font-weight: @headerFontWeight;
- text-transform: @headerTextTransform;
- border-bottom: @headerBorder;
- border-left: @headerDivider;
-}
-
-.ui.table > thead > tr > th:first-child {
- border-left: none;
-}
-
-.ui.table > thead > tr:first-child > th:first-child {
- border-radius: @borderRadius 0 0 0;
-}
-.ui.table > thead > tr:first-child > th:last-child {
- border-radius: 0 @borderRadius 0 0;
-}
-.ui.table > thead > tr:first-child > th:only-child {
- border-radius: @borderRadius @borderRadius 0 0;
-}
-
-/* Footer */
-.ui.table > tfoot {
- box-shadow: @footerBoxShadow;
-}
-.ui.table > tfoot > tr > th,
-.ui.table > tfoot > tr > td {
- cursor: auto;
- border-top: @footerBorder;
- background: @footerBackground;
- text-align: @footerAlign;
- color: @footerColor;
- padding: @footerVerticalPadding @footerHorizontalPadding;
- vertical-align: @footerVerticalAlign;
- font-style: @footerFontStyle;
- font-weight: @footerFontWeight;
- text-transform: @footerTextTransform;
-}
-.ui.table > tfoot > tr > th:first-child,
-.ui.table > tfoot > tr > td:first-child {
- border-left: none;
-}
-.ui.table > tfoot > tr:first-child > th:first-child,
-.ui.table > tfoot > tr:first-child > td:first-child {
- border-radius: 0 0 0 @borderRadius;
-}
-.ui.table > tfoot > tr:first-child > th:last-child,
-.ui.table > tfoot > tr:first-child > td:last-child {
- border-radius: 0 0 @borderRadius 0;
-}
-.ui.table > tfoot > tr:first-child > th:only-child,
-.ui.table > tfoot > tr:first-child > td:only-child {
- border-radius: 0 0 @borderRadius @borderRadius;
-}
-
-/* Table Row */
-.ui.table > tr > td,
-.ui.table > tbody > tr > td {
- border-top: @rowBorder;
-}
-.ui.table > tr:first-child > td,
-.ui.table > tbody > tr:first-child > td {
- border-top: none;
-}
-
-/* Repeated tbody */
-.ui.table > tbody + tbody tr:first-child > td {
- border-top: @rowBorder;
-}
-
-/* Table Cells */
-.ui.table > tbody > tr > td,
-.ui.table > tr > td {
- padding: @cellVerticalPadding @cellHorizontalPadding;
- text-align: @cellTextAlign;
-}
-
-/* Icons */
-.ui.table > .icon {
- vertical-align: @iconVerticalAlign;
-}
-.ui.table > .icon:only-child {
- margin: 0;
-}
-
-/* Table Segment */
-.ui.table.segment {
- padding: 0;
-}
-.ui.table.segment:after {
- display: none;
-}
-.ui.table.segment.stacked:after {
- display: block;
-}
-
-
-/* Responsive */
-@media only screen and (max-width : @largestMobileScreen) {
- .ui.table:not(.unstackable) {
- width: 100%;
- padding: 0;
- }
- .ui.table:not(.unstackable) > thead,
- .ui.table:not(.unstackable) > thead > tr,
- .ui.table:not(.unstackable) > tfoot,
- .ui.table:not(.unstackable) > tfoot > tr,
- .ui.table:not(.unstackable) > tbody,
- .ui.table:not(.unstackable) > tr,
- .ui.table:not(.unstackable) > tbody > tr,
- .ui.table:not(.unstackable) > tr > th,
- .ui.table:not(.unstackable) > thead > tr > th,
- .ui.table:not(.unstackable) > tbody > tr > th,
- .ui.table:not(.unstackable) > tfoot > tr > th,
- .ui.table:not(.unstackable) > tr > td,
- .ui.table:not(.unstackable) > tbody > tr > td,
- .ui.table:not(.unstackable) > tfoot > tr > td {
- display: block !important;
- width: auto !important;
- }
-
- .ui.table:not(.unstackable) > thead {
- display: @responsiveHeaderDisplay;
- }
- .ui.table:not(.unstackable) > tfoot {
- display: @responsiveFooterDisplay;
- }
- .ui.ui.ui.ui.table:not(.unstackable) > tr,
- .ui.ui.ui.ui.table:not(.unstackable) > thead > tr,
- .ui.ui.ui.ui.table:not(.unstackable) > tbody > tr,
- .ui.ui.ui.ui.table:not(.unstackable) > tfoot > tr {
- padding-top: @responsiveRowVerticalPadding;
- padding-bottom: @responsiveRowVerticalPadding;
- box-shadow: @responsiveRowBoxShadow;
- }
-
- .ui.ui.ui.ui.table:not(.unstackable) > tr > th,
- .ui.ui.ui.ui.table:not(.unstackable) > thead > tr > th,
- .ui.ui.ui.ui.table:not(.unstackable) > tbody > tr > th,
- .ui.ui.ui.ui.table:not(.unstackable) > tfoot > tr > th,
- .ui.ui.ui.ui.table:not(.unstackable) > tr > td,
- .ui.ui.ui.ui.table:not(.unstackable) > tbody > tr > td,
- .ui.ui.ui.ui.table:not(.unstackable) > tfoot > tr > td {
- background: none;
- border: none;
- padding: @responsiveCellVerticalPadding @responsiveCellHorizontalPadding;
- box-shadow: @responsiveCellBoxShadow;
- }
- .ui.table:not(.unstackable) > tr > th:first-child,
- .ui.table:not(.unstackable) > thead > tr > th:first-child,
- .ui.table:not(.unstackable) > tbody > tr > th:first-child,
- .ui.table:not(.unstackable) > tfoot > tr > th:first-child,
- .ui.table:not(.unstackable) > tr > td:first-child,
- .ui.table:not(.unstackable) > tbody > tr > td:first-child,
- .ui.table:not(.unstackable) > tfoot > tr > td:first-child {
- font-weight: @responsiveCellHeaderFontWeight;
- }
-
- /* Definition Table */
- .ui.definition.table:not(.unstackable) > thead > tr > th:first-child {
- box-shadow: none !important;
- }
- & when (@variationTableMarked) {
- each(@colors, {
- @color: replace(@key, '@', '');
- @c: @colors[@@color][color];
- @l: @colors[@@color][light];
- .ui.ui.ui.ui.table:not(.unstackable) tr.marked.@{color} {
- &.left {
- box-shadow: @responsiveRowBoxShadow, @coloredBorderSize 0 0 0 @c inset;
- }
- &.right {
- box-shadow: @responsiveRowBoxShadow, -@coloredBorderSize 0 0 0 @c inset;
- }
- }
- & when (@variationTableInverted) {
- .ui.ui.ui.ui.inverted.table:not(.unstackable) tr.marked.@{color} {
- &.left {
- box-shadow: @responsiveRowBoxShadow, @coloredBorderSize 0 0 0 @l inset;
- }
- &.right {
- box-shadow: @responsiveRowBoxShadow, -@coloredBorderSize 0 0 0 @l inset;
- }
- }
- }
- })
- }
-}
-
-
-/*******************************
- Coupling
-*******************************/
-
-/* UI Image */
-.ui.table .collapsing .image,
-.ui.table .collapsing .image img {
- max-width: none;
-}
-
-
-/*******************************
- Types
-*******************************/
-
-/*--------------
- Complex
----------------*/
-& when (@variationTableStructured) {
- .ui.structured.table {
- border-collapse: collapse;
- }
- .ui.structured.table > thead > tr > th {
- border-left: @headerDivider;
- border-right: @headerDivider;
- }
- & when (@variationTableSortable) {
- .ui.structured.sortable.table > thead > tr > th {
- border-left: @sortableBorder;
- border-right: @sortableBorder;
- }
- }
- & when (@variationTableBasic) {
- .ui.structured.basic.table > tr > th,
- .ui.structured.basic.table > thead > tr > th,
- .ui.structured.basic.table > tbody > tr > th,
- .ui.structured.basic.table > tfoot > tr > th {
- border-left: @basicTableHeaderDivider;
- border-right: @basicTableHeaderDivider;
- }
- }
- & when (@variationTableCelled) {
- .ui.structured.celled.table > tr > th,
- .ui.structured.celled.table > thead > tr > th,
- .ui.structured.celled.table > tbody > tr > th,
- .ui.structured.celled.table > tfoot > tr > th,
- .ui.structured.celled.table > tr > td,
- .ui.structured.celled.table > tbody > tr > td ,
- .ui.structured.celled.table > tfoot > tr > td { border-left: @cellBorder;
- border-right: @cellBorder;
- }
- }
-}
-
-& when (@variationTableDefinition) {
- /*--------------
- Definition
- ---------------*/
-
- .ui.definition.table > thead:not(.full-width) > tr > th:first-child {
- pointer-events: none;
- background: @definitionHeaderBackground;
- font-weight: @definitionHeaderFontWeight;
- color: @definitionHeaderColor;
- box-shadow: -@coloredBorderSizeCover -@coloredBorderSize 0 @coloredBorderSizeCover @definitionPageBackground;
- -moz-transform: scale(1);
- }
-
- .ui.definition.table > tfoot:not(.full-width) > tr > th:first-child {
- pointer-events: none;
- background: @definitionFooterBackground;
- font-weight: @definitionFooterFontWeight;
- color: @definitionFooterColor;
- box-shadow: -@coloredBorderSizeCover @coloredBorderSize 0 @coloredBorderSizeCover @definitionPageBackground;
- -moz-transform: scale(1);
- }
-
- /* Highlight Defining Column */
- .ui.definition.table > tr > td:first-child:not(.ignored),
- .ui.definition.table > tbody > tr > td:first-child:not(.ignored),
- .ui.definition.table > tfoot > tr > td:first-child:not(.ignored),
- .ui.definition.table tr td.definition {
- background: @definitionColumnBackground;
- font-weight: @definitionColumnFontWeight;
- color: @definitionColumnColor;
- text-transform: @definitionColumnTextTransform;
- box-shadow: @definitionColumnBoxShadow;
- text-align: @definitionColumnTextAlign;
- font-size: @definitionColumnFontSize;
- padding-left: @definitionColumnHorizontalPadding;
- padding-right: @definitionColumnHorizontalPadding;
- }
-
-
- /* Fix 2nd Column */
- .ui.definition.table > thead:not(.full-width) > tr > th:nth-child(2) {
- border-left: @borderWidth solid @borderColor;
- }
- .ui.definition.table > tfoot:not(.full-width) > tr > th:nth-child(2) ,
- .ui.definition.table > tfoot:not(.full-width) > tr > td:nth-child(2) { border-left: @borderWidth solid @borderColor;
- }
- .ui.definition.table > tr > td:nth-child(2),
- .ui.definition.table > tbody > tr > td:nth-child(2) {
- border-left: @borderWidth solid @borderColor;
- }
-}
-
-/*******************************
- States
-*******************************/
-
-& when (@variationTablePositive) {
- /*--------------
- Positive
- ---------------*/
-
- .ui.ui.ui.ui.table tr.positive,
- .ui.ui.table td.positive {
- box-shadow: @positiveBoxShadow;
- background: @positiveBackgroundColor;
- color: @positiveColor;
- }
-}
-
-& when (@variationTableNegative) {
- /*--------------
- Negative
- ---------------*/
-
- .ui.ui.ui.ui.table tr.negative,
- .ui.ui.table td.negative {
- box-shadow: @negativeBoxShadow;
- background: @negativeBackgroundColor;
- color: @negativeColor;
- }
-}
-
-& when (@variationTableError) {
- /*--------------
- Error
- ---------------*/
-
- .ui.ui.ui.ui.table tr.error,
- .ui.ui.table td.error {
- box-shadow: @errorBoxShadow;
- background: @errorBackgroundColor;
- color: @errorColor;
- }
-}
-
-& when (@variationTableWarning) {
- /*--------------
- Warning
- ---------------*/
-
- .ui.ui.ui.ui.table tr.warning,
- .ui.ui.table td.warning {
- box-shadow: @warningBoxShadow;
- background: @warningBackgroundColor;
- color: @warningColor;
- }
-}
-
-& when (@variationTableActive) {
- /*--------------
- Active
- ---------------*/
-
- .ui.ui.ui.ui.table tr.active,
- .ui.ui.table td.active {
- box-shadow: @activeBoxShadow;
- background: @activeBackgroundColor;
- color: @activeColor;
- }
-}
-
-
-& when (@variationTableDisabled) {
- /*--------------
- Disabled
- ---------------*/
-
- .ui.table tr.disabled td,
- .ui.table tr td.disabled,
- .ui.table tr.disabled:hover,
- .ui.table tr:hover td.disabled {
- pointer-events: none;
- color: @disabledTextColor;
- }
-}
-
-/*******************************
- Variations
-*******************************/
-& when (@variationTableStackable) {
- /*--------------
- Stackable
- ---------------*/
-
- @media only screen and (max-width : @largestTabletScreen) {
-
- .ui[class*="tablet stackable"].table,
- .ui[class*="tablet stackable"].table > thead,
- .ui[class*="tablet stackable"].table > thead > tr,
- .ui[class*="tablet stackable"].table > tfoot,
- .ui[class*="tablet stackable"].table > tfoot > tr,
- .ui[class*="tablet stackable"].table > tbody,
- .ui[class*="tablet stackable"].table > tbody > tr,
- .ui[class*="tablet stackable"].table > tr,
- .ui[class*="tablet stackable"].table > thead > tr > th,
- .ui[class*="tablet stackable"].table > tbody > tr > th,
- .ui[class*="tablet stackable"].table > tfoot > tr > th,
- .ui[class*="tablet stackable"].table > tr > th,
- .ui[class*="tablet stackable"].table > tbody > tr > td,
- .ui[class*="tablet stackable"].table > tfoot > tr > td,
- .ui[class*="tablet stackable"].table > tr > td {
- display: block !important;
- width: 100% !important;
- }
-
- .ui[class*="tablet stackable"].table {
- padding: 0;
- }
- .ui[class*="tablet stackable"].table > thead {
- display: @responsiveHeaderDisplay;
- }
- .ui[class*="tablet stackable"].table > tfoot {
- display: @responsiveFooterDisplay;
- }
- .ui.ui.ui.ui[class*="tablet stackable"].table > thead > tr,
- .ui.ui.ui.ui[class*="tablet stackable"].table > tbody > tr,
- .ui.ui.ui.ui[class*="tablet stackable"].table > tfoot > tr,
- .ui.ui.ui.ui[class*="tablet stackable"].table > tr {
- padding-top: @responsiveRowVerticalPadding;
- padding-bottom: @responsiveRowVerticalPadding;
- box-shadow: @responsiveRowBoxShadow;
- }
- .ui[class*="tablet stackable"].table > thead > tr > th,
- .ui[class*="tablet stackable"].table > tbody > tr > th,
- .ui[class*="tablet stackable"].table > tfoot > tr > th,
- .ui[class*="tablet stackable"].table > tr > th,
- .ui[class*="tablet stackable"].table > tbody > tr > td,
- .ui[class*="tablet stackable"].table > tfoot > tr > td,
- .ui[class*="tablet stackable"].table > tr > td {
- background: none;
- border: none !important;
- padding: @responsiveCellVerticalPadding @responsiveCellHorizontalPadding;
- box-shadow: @responsiveCellBoxShadow;
- }
- & when (@variationTableDefinition) {
- /* Definition Table */
- .ui.definition[class*="tablet stackable"].table > thead > tr > th:first-child {
- box-shadow: none !important;
- }
- }
- }
- & when (@variationTableMarked) {
- each(@colors, {
- @color: replace(@key, '@', '');
- @c: @colors[@@color][color];
- @l: @colors[@@color][light];
- .ui.ui.ui.ui[class*="tablet stackable"].table tr.marked.@{color} {
- &.left {
- box-shadow: @responsiveRowBoxShadow, @coloredBorderSize 0 0 0 @c inset;
- }
- &.right {
- box-shadow: @responsiveRowBoxShadow, -@coloredBorderSize 0 0 0 @c inset;
- }
- }
- & when (@variationTableInverted) {
- .ui.ui.ui.ui[class*="tablet stackable"].inverted.table tr.marked.@{color} {
- &.left {
- box-shadow: @responsiveRowBoxShadow, @coloredBorderSize 0 0 0 @l inset;
- }
- &.right {
- box-shadow: @responsiveRowBoxShadow, -@coloredBorderSize 0 0 0 @l inset;
- }
- }
- }
- })
- }
-}
-
-& when (@variationTableAligned) {
- /*--------------
- Text Alignment
- ---------------*/
-
- .ui.table[class*="left aligned"],
- .ui.table [class*="left aligned"] {
- text-align: left;
- }
- .ui.table[class*="center aligned"],
- .ui.table [class*="center aligned"] {
- text-align: center;
- }
- .ui.table[class*="right aligned"],
- .ui.table [class*="right aligned"] {
- text-align: right;
- }
-
- /*------------------
- Vertical Alignment
- ------------------*/
-
- .ui.table[class*="top aligned"],
- .ui.table [class*="top aligned"] {
- vertical-align: top;
- }
- .ui.table[class*="middle aligned"],
- .ui.table [class*="middle aligned"] {
- vertical-align: middle;
- }
- .ui.table[class*="bottom aligned"],
- .ui.table [class*="bottom aligned"] {
- vertical-align: bottom;
- }
-}
-
-& when (@variationTableCollapsing) {
- /*--------------
- Collapsing
- ---------------*/
-
- .ui.table th.collapsing,
- .ui.table td.collapsing {
- width: 1px;
- white-space: nowrap;
- }
-}
-
-& when (@variationTableFixed) {
- /*--------------
- Fixed
- ---------------*/
-
- .ui.fixed.table {
- table-layout: fixed;
- }
-
- .ui.fixed.table th,
- .ui.fixed.table td {
- overflow: hidden;
- text-overflow: ellipsis;
- }
-}
-
-
-& when (@variationTableSelectable) {
- /*--------------
- Selectable
- ---------------*/
-
- .ui.ui.selectable.table > tbody > tr:hover,
- .ui.table tbody tr td.selectable:hover {
- background: @selectableBackground;
- color: @selectableTextColor;
- }
- & when (@variationTableInverted) {
- .ui.ui.selectable.inverted.table > tbody > tr:hover,
- .ui.inverted.table tbody tr td.selectable:hover {
- background: @selectableInvertedBackground;
- color: @selectableInvertedTextColor;
- }
- }
- /* Selectable Cell Link */
- .ui.table tbody tr td.selectable {
- padding: 0;
- }
- .ui.table tbody tr td.selectable > a:not(.ui) {
- display: block;
- color: inherit;
- padding: @cellVerticalPadding @cellHorizontalPadding;
- }
- .ui.table > tr > td.selectable,
- .ui.table > tbody > tr > td.selectable,
- .ui.selectable.table > tbody > tr,
- .ui.selectable.table > tr {
- cursor:pointer;
- }
- & when (@variationTableError) {
- /* Other States */
- .ui.ui.selectable.table tr.error:hover,
- .ui.table tr td.selectable.error:hover,
- .ui.selectable.table tr:hover td.error {
- background: @errorBackgroundHover;
- color: @errorColorHover;
- }
- }
- & when (@variationTableWarning) {
- .ui.ui.selectable.table tr.warning:hover,
- .ui.table tr td.selectable.warning:hover,
- .ui.selectable.table tr:hover td.warning {
- background: @warningBackgroundHover;
- color: @warningColorHover;
- }
- }
- & when (@variationTableActive) {
- .ui.ui.selectable.table tr.active:hover,
- .ui.table tr td.selectable.active:hover,
- .ui.selectable.table tr:hover td.active {
- background: @activeBackgroundColor;
- color: @activeColor;
- }
- }
- & when (@variationTablePositive) {
- .ui.ui.selectable.table tr.positive:hover,
- .ui.table tr td.selectable.positive:hover,
- .ui.selectable.table tr:hover td.positive {
- background: @positiveBackgroundHover;
- color: @positiveColorHover;
- }
- }
- & when (@variationTableNegative) {
- .ui.ui.selectable.table tr.negative:hover,
- .ui.table tr td.selectable.negative:hover,
- .ui.selectable.table tr:hover td.negative {
- background: @negativeBackgroundHover;
- color: @negativeColorHover;
- }
- }
-}
-
-
-& when (@variationTableAttached) {
- /*-------------------
- Attached
- --------------------*/
-
- /* Middle */
- .ui.attached.table {
- top: 0;
- bottom: 0;
- border-radius: 0;
- margin: 0 @attachedHorizontalOffset;
- width: @attachedWidth;
- max-width: @attachedWidth;
- box-shadow: @attachedBoxShadow;
- border: @attachedBorder;
- }
- .ui.attached + .ui.attached.table:not(.top) {
- border-top: none;
- }
-
- /* Top */
- .ui[class*="top attached"].table {
- bottom: 0;
- margin-bottom: 0;
- top: @attachedTopOffset;
- margin-top: @verticalMargin;
- border-radius: @borderRadius @borderRadius 0 0;
- }
- .ui.table[class*="top attached"]:first-child {
- margin-top: 0;
- }
-
- /* Bottom */
- .ui[class*="bottom attached"].table {
- bottom: 0;
- margin-top: 0;
- top: @attachedBottomOffset;
- margin-bottom: @verticalMargin;
- box-shadow: @attachedBottomBoxShadow;
- border-radius: 0 0 @borderRadius @borderRadius;
- }
- .ui[class*="bottom attached"].table:last-child {
- margin-bottom: 0;
- }
-}
-
-& when (@variationTableStriped) {
- /*--------------
- Striped
- ---------------*/
-
- /* Table Striping */
- .ui.striped.table > tr:nth-child(2n),
- .ui.striped.table > tbody > tr:nth-child(2n) {
- background-color: @stripedBackground;
- }
- & when (@variationTableInverted) {
- /* Stripes */
- .ui.inverted.striped.table > tr:nth-child(2n),
- .ui.inverted.striped.table > tbody > tr:nth-child(2n) {
- background-color: @invertedStripedBackground;
- }
- }
- & when (@variationTableSelectable) {
- /* Allow striped active hover */
- .ui.striped.selectable.selectable.selectable.table tbody tr.active:hover {
- background: @activeBackgroundHover;
- color: @activeColorHover;
- }
- }
-}
-
-/*--------------
- Single Line
----------------*/
-
-.ui.table[class*="single line"],
-.ui.table [class*="single line"] {
- white-space: nowrap;
-}
-
-/*-------------------
- Colors
---------------------*/
-
-each(@colors, {
- @color: replace(@key, '@', '');
- @c: @colors[@@color][color];
- @t: @colors[@@color][text];
- @ht: @colors[@@color][hoverText];
- @l: @colors[@@color][light];
- @lh: @colors[@@color][lightHover];
- @r: @colors[@@color][ribbon];
- @b: @colors[@@color][bright];
- @bh: @colors[@@color][brightHover];
- @isDark: @colors[@@color][isDark];
- @isVeryDark: @colors[@@color][isVeryDark];
-
- .ui.@{color}.table {
- border-top: @coloredBorderSize solid @c;
- }
- & when (@variationTableInverted) {
- .ui.inverted.@{color}.table {
- background-color: @c;
- color: @white;
- }
- }
- .ui.ui.ui.ui.table tr.@{color}:not(.marked),
- .ui.ui.table td.@{color}:not(.marked) {
- & when (@stateMarkerWidth > 0) {
- box-shadow: @stateMarkerWidth 0 0 @r inset;
- }
- & when (@isDark) {
- background: @l;
- }
- & when not (@isDark) {
- background: @b;
- }
- & when (@isVeryDark) {
- color: @white;
- }
- & when not (@isVeryDark) {
- color: @t;
- }
- }
- & when (@variationTableSelectable) {
- .ui.ui.selectable.table tr.@{color}:not(.marked):hover,
- .ui.table tr td.selectable.@{color}:not(.marked):hover,
- .ui.selectable.table tr:hover td.@{color}:not(.marked) {
- & when (@isDark) {
- background: @lh;
- }
- & when not (@isDark) {
- background: @bh;
- }
- & when (@isVeryDark) {
- color: @white;
- }
- & when not (@isVeryDark) {
- color: @ht;
- }
- }
- }
- & when (@variationTableMarked) {
- .ui.table td.marked.@{color},
- .ui.table tr.marked.@{color} {
- &.left {
- box-shadow: @coloredBorderSize 0 0 0 @c inset;
- }
- &.right {
- box-shadow: -@coloredBorderSize 0 0 0 @c inset;
- }
- }
- & when (@variationTableInverted) {
- .ui.inverted.table td.marked.@{color},
- .ui.inverted.table tr.marked.@{color} {
- &.left {
- box-shadow: @coloredBorderSize 0 0 0 @l inset;
- }
- &.right {
- box-shadow: -@coloredBorderSize 0 0 0 @l inset;
- }
- }
- }
- }
-
-})
-
-/*--------------
- Column Count
----------------*/
-
-/* Grid Based */
-.ui.one.column.table td {
- width: @oneColumn;
-}
-.ui.two.column.table td {
- width: @twoColumn;
-}
-.ui.three.column.table td {
- width: @threeColumn;
-}
-.ui.four.column.table td {
- width: @fourColumn;
-}
-.ui.five.column.table td {
- width: @fiveColumn;
-}
-.ui.six.column.table td {
- width: @sixColumn;
-}
-.ui.seven.column.table td {
- width: @sevenColumn;
-}
-.ui.eight.column.table td {
- width: @eightColumn;
-}
-.ui.nine.column.table td {
- width: @nineColumn;
-}
-.ui.ten.column.table td {
- width: @tenColumn;
-}
-.ui.eleven.column.table td {
- width: @elevenColumn;
-}
-.ui.twelve.column.table td {
- width: @twelveColumn;
-}
-.ui.thirteen.column.table td {
- width: @thirteenColumn;
-}
-.ui.fourteen.column.table td {
- width: @fourteenColumn;
-}
-.ui.fifteen.column.table td {
- width: @fifteenColumn;
-}
-.ui.sixteen.column.table td {
- width: @sixteenColumn;
-}
-
-/* Column Width */
-.ui.table th.one.wide,
-.ui.table td.one.wide {
- width: @oneWide;
-}
-.ui.table th.two.wide,
-.ui.table td.two.wide {
- width: @twoWide;
-}
-.ui.table th.three.wide,
-.ui.table td.three.wide {
- width: @threeWide;
-}
-.ui.table th.four.wide,
-.ui.table td.four.wide {
- width: @fourWide;
-}
-.ui.table th.five.wide,
-.ui.table td.five.wide {
- width: @fiveWide;
-}
-.ui.table th.six.wide,
-.ui.table td.six.wide {
- width: @sixWide;
-}
-.ui.table th.seven.wide,
-.ui.table td.seven.wide {
- width: @sevenWide;
-}
-.ui.table th.eight.wide,
-.ui.table td.eight.wide {
- width: @eightWide;
-}
-.ui.table th.nine.wide,
-.ui.table td.nine.wide {
- width: @nineWide;
-}
-.ui.table th.ten.wide,
-.ui.table td.ten.wide {
- width: @tenWide;
-}
-.ui.table th.eleven.wide,
-.ui.table td.eleven.wide {
- width: @elevenWide;
-}
-.ui.table th.twelve.wide,
-.ui.table td.twelve.wide {
- width: @twelveWide;
-}
-.ui.table th.thirteen.wide,
-.ui.table td.thirteen.wide {
- width: @thirteenWide;
-}
-.ui.table th.fourteen.wide,
-.ui.table td.fourteen.wide {
- width: @fourteenWide;
-}
-.ui.table th.fifteen.wide,
-.ui.table td.fifteen.wide {
- width: @fifteenWide;
-}
-.ui.table th.sixteen.wide,
-.ui.table td.sixteen.wide {
- width: @sixteenWide;
-}
-
-& when (@variationTableSortable) {
- /*--------------
- Sortable
- ---------------*/
-
- .ui.sortable.table > thead > tr > th {
- cursor: pointer;
- white-space: nowrap;
- border-left: @sortableBorder;
- color: @sortableColor;
- }
- .ui.sortable.table > thead > tr > th:first-child {
- border-left: none;
- }
- .ui.sortable.table thead th.sorted,
- .ui.sortable.table thead th.sorted:hover {
- user-select: none;
- }
-
- .ui.sortable.table > thead > tr > th:after {
- display: none;
- font-style: normal;
- font-weight: @normal;
- text-decoration: inherit;
- content: '';
- height: 1em;
- width: @sortableIconWidth;
- opacity: @sortableIconOpacity;
- margin: 0 0 0 @sortableIconDistance;
- font-family: @sortableIconFont;
- }
- .ui.sortable.table thead th.ascending:after {
- content: @sortableIconAscending;
- }
- .ui.sortable.table thead th.descending:after {
- content: @sortableIconDescending;
- }
-
- /* Hover */
- .ui.sortable.table th.disabled:hover {
- cursor: auto;
- color: @sortableDisabledColor;
- }
- .ui.sortable.table > thead > tr > th:hover {
- color: @sortableHoverColor;
- }
- .ui.sortable.table:not(.basic) > thead > tr > th:hover {
- background: @sortableHoverBackground;
- }
-
- /* Sorted */
- .ui.sortable.table thead th.sorted {
- color: @sortableActiveColor;
- }
- .ui.sortable.table:not(.basic) thead th.sorted {
- background: @sortableActiveBackground;
- }
- .ui.sortable.table thead th.sorted:after {
- display: inline-block;
- }
-
- /* Sorted Hover */
- .ui.sortable.table thead th.sorted:hover {
- color: @sortableActiveHoverColor;
- }
- .ui.sortable.table:not(.basic) thead th.sorted:hover {
- background: @sortableActiveHoverBackground;
- }
- & when (@variationTableInverted) {
- /* Inverted */
- .ui.inverted.sortable.table thead th.sorted {
- color: @sortableInvertedActiveColor;
- }
- .ui.inverted.sortable.table:not(.basic) thead th.sorted {
- background: @sortableInvertedActiveBackground;
- }
- .ui.inverted.sortable.table > thead > tr > th:hover {
- color: @sortableInvertedHoverColor;
- }
- .ui.inverted.sortable.table:not(.basic) > thead > tr > th:hover {
- background: @sortableInvertedHoverBackground;
- }
- .ui.inverted.sortable.table:not(.basic) > thead > tr > th {
- border-left-color: @sortableInvertedBorderColor;
- border-right-color: @sortableInvertedBorderColor;
- }
- }
-}
-
-& when (@variationTableInverted) {
- /*--------------
- Inverted
- ---------------*/
-
- /* Text Color */
- .ui.inverted.table {
- background: @invertedBackground;
- color: @invertedCellColor;
- border: @invertedBorder;
- }
- .ui.ui.inverted.table > thead > tr > th,
- .ui.ui.inverted.table > tbody > tr > th,
- .ui.ui.inverted.table > tfoot > tr > th,
- .ui.ui.inverted.table > tfoot > tr > td,
- .ui.ui.inverted.table > tr > th {
- background-color: @invertedHeaderBackground;
- border-color: @invertedHeaderBorderColor;
- color: @invertedHeaderColor;
- }
- .ui.inverted.table > tbody > tr > td,
- .ui.inverted.table > tfoot > tr > td,
- .ui.inverted.table > tr > td {
- border-color: @invertedCellBorderColor;
- }
-
- .ui.inverted.table tr.disabled td,
- .ui.inverted.table tr td.disabled,
- .ui.inverted.table tr.disabled:hover td,
- .ui.inverted.table tr:hover td.disabled {
- pointer-events: none;
- color: @invertedDisabledTextColor;
- }
- .ui.inverted.table tr td.disabled:not([class="disabled"]),
- .ui.inverted.table tr.disabled:not([class="disabled"]) td,
- .ui.inverted.table tr.disabled td[class]:not(.disabled),
- .ui.inverted.table tr:hover td.disabled:not([class="disabled"]) {
- color: @disabledTextColor;
- }
- & when (@variationTableDefinition) {
- /* Definition */
- .ui.inverted.definition.table > tfoot:not(.full-width) > tr > th:first-child,
- .ui.inverted.definition.table > thead:not(.full-width) > tr > th:first-child {
- background: @definitionPageBackground;
- }
- .ui.inverted.definition.table > tbody > tr > td:first-child
- .ui.inverted.definition.table > tfoot > tr > td:first-child,
- .ui.inverted.definition.table > tr > td:first-child {
- background: @invertedDefinitionColumnBackground;
- color: @invertedDefinitionColumnColor;
- }
- }
-}
-
-& when (@variationTableCollapsing) {
- /*--------------
- Collapsing
- ---------------*/
-
- .ui.collapsing.table {
- width: auto;
- }
-}
-
-& when (@variationTableBasic) {
- /*--------------
- Basic
- ---------------*/
-
- .ui.basic.table {
- background: @basicTableBackground;
- border: @basicTableBorder;
- box-shadow: @basicBoxShadow;
- }
- .ui.basic.table > thead,
- .ui.basic.table > tfoot {
- box-shadow: none;
- }
- .ui.basic.table > thead > tr > th,
- .ui.basic.table > tbody > tr > th,
- .ui.basic.table > tfoot > tr > th,
- .ui.basic.table > tr > th {
- background: @basicTableHeaderBackground;
- border-left: @basicTableHeaderDivider;
- }
- .ui.basic.table > tbody > tr {
- border-bottom: @basicTableCellBorder;
- }
- .ui.basic.table > tbody > tr > td,
- .ui.basic.table > tfoot > tr > td,
- .ui.basic.table >tr > td {
- background: @basicTableCellBackground;
- }
- & when (@variationTableStriped) {
- .ui.basic.striped.table > tbody > tr:nth-child(2n) {
- background-color: @basicTableStripedBackground;
- }
- }
- /* Very Basic */
- .ui[class*="very basic"].table {
- border: none;
- }
- .ui[class*="very basic"].table:not(.sortable):not(.striped) > tr > th,
- .ui[class*="very basic"].table:not(.sortable):not(.striped) > thead > tr > th,
- .ui[class*="very basic"].table:not(.sortable):not(.striped) > tbody > tr > th,
- .ui[class*="very basic"].table:not(.sortable):not(.striped) > tfoot > tr > th,
- .ui[class*="very basic"].table:not(.sortable):not(.striped) > tr > td,
- .ui[class*="very basic"].table:not(.sortable):not(.striped) > tbody > tr > td {
- padding: @basicTableCellPadding;
- }
- .ui[class*="very basic"].table:not(.sortable):not(.striped) > tr > th:first-child,
- .ui[class*="very basic"].table:not(.sortable):not(.striped) > thead > tr > th:first-child,
- .ui[class*="very basic"].table:not(.sortable):not(.striped) > tbody > tr > th:first-child,
- .ui[class*="very basic"].table:not(.sortable):not(.striped) > tfoot > tr > th:first-child,
- .ui[class*="very basic"].table:not(.sortable):not(.striped) > tr > td:first-child,
- .ui[class*="very basic"].table:not(.sortable):not(.striped) > tbody > tr > td:first-child ,
- .ui[class*="very basic"].table:not(.sortable):not(.striped) > tfoot > tr > td:first-child {
- padding-left: 0;
- }
- .ui[class*="very basic"].table:not(.sortable):not(.striped) > tr > th:last-child,
- .ui[class*="very basic"].table:not(.sortable):not(.striped) > thead > tr > th:last-child,
- .ui[class*="very basic"].table:not(.sortable):not(.striped) > tbody > tr > th:last-child,
- .ui[class*="very basic"].table:not(.sortable):not(.striped) > tfoot > tr > th:last-child,
- .ui[class*="very basic"].table:not(.sortable):not(.striped) > tr > td:last-child,
- .ui[class*="very basic"].table:not(.sortable):not(.striped) > tbody > tr > td:last-child,
- .ui[class*="very basic"].table:not(.sortable):not(.striped) > tfoot >tr > td:last-child {
- padding-right: 0;
- }
- .ui[class*="very basic"].table:not(.sortable):not(.striped) > thead > tr:first-child > th {
- padding-top: 0;
- }
-}
-
-& when (@variationTableCelled) {
- /*--------------
- Celled
- ---------------*/
-
- .ui.celled.table > tr > th,
- .ui.celled.table > thead > tr > th,
- .ui.celled.table > tbody > tr > th,
- .ui.celled.table > tfoot > tr > th,
- .ui.celled.table > tr > td,
- .ui.celled.table > tbody > tr > td ,
- .ui.celled.table > tfoot > tr > td {
- border-left: @cellBorder;
- }
- & when (@variationTableInverted) {
- .ui.inverted.celled.table > tbody > tr > td,
- .ui.inverted.celled.table > tr > td {
- border-left: @invertedCellBorder;
- }
- }
- .ui.celled.table > tr > th:first-child,
- .ui.celled.table > thead > tr > th:first-child,
- .ui.celled.table > tbody > tr > th:first-child,
- .ui.celled.table > tfoot > tr > th:first-child,
- .ui.celled.table > tr > td:first-child,
- .ui.celled.table > tbody > tr > td:first-child,
- .ui.celled.table > tfoot >tr > td:first-child {
- border-left: none;
- }
-}
-
-& when (@variationTablePadded) {
- /*--------------
- Padded
- ---------------*/
-
- .ui.padded.table > tr > th,
- .ui.padded.table > thead > tr > th,
- .ui.padded.table > tbody > tr > th,
- .ui.padded.table > tfoot > tr > th {
- padding-left: @paddedHorizontalPadding;
- padding-right: @paddedHorizontalPadding;
- }
- .ui.padded.table > tr > th,
- .ui.padded.table > thead > tr > th,
- .ui.padded.table > tbody > tr > th,
- .ui.padded.table > tfoot > tr > th,
- .ui.padded.table > tr > td,
- .ui.padded.table > tbody > tr > td ,
- .ui.padded.table > tfoot > tr > td {
- padding: @paddedVerticalPadding @paddedHorizontalPadding;
- }
-
- /* Very */
- .ui[class*="very padded"].table > tr > th,
- .ui[class*="very padded"].table > thead > tr > th,
- .ui[class*="very padded"].table > tbody > tr > th,
- .ui[class*="very padded"].table > tfoot > tr > th {
- padding-left: @veryPaddedHorizontalPadding;
- padding-right: @veryPaddedHorizontalPadding;
- }
- .ui[class*="very padded"].table > tr > td,
- .ui[class*="very padded"].table > tbody > tr > td ,
- .ui[class*="very padded"].table > tfoot > tr > td {
- padding: @veryPaddedVerticalPadding @veryPaddedHorizontalPadding;
- }
-}
-
-& when (@variationTableCompact) {
- /*--------------
- Compact
- ---------------*/
-
- .ui.compact.table > tr > th,
- .ui.compact.table > thead > tr > th,
- .ui.compact.table > tbody > tr > th,
- .ui.compact.table > tfoot > tr > th {
- padding-left: @compactHorizontalPadding;
- padding-right: @compactHorizontalPadding;
- }
- .ui.compact.table > tr > td,
- .ui.compact.table > tbody > tr > td ,
- .ui.compact.table > tfoot > tr > td {
- padding: @compactVerticalPadding @compactHorizontalPadding;
- }
-
- /* Very */
- .ui[class*="very compact"].table > tr > th,
- .ui[class*="very compact"].table > thead > tr > th,
- .ui[class*="very compact"].table > tbody > tr > th,
- .ui[class*="very compact"].table > tfoot > tr > th {
- padding-left: @veryCompactHorizontalPadding;
- padding-right: @veryCompactHorizontalPadding;
- }
- .ui[class*="very compact"].table > tr > td,
- .ui[class*="very compact"].table > tbody > tr > td ,
- .ui[class*="very compact"].table > tfoot > tr > td {
- padding: @veryCompactVerticalPadding @veryCompactHorizontalPadding;
- }
-}
-
-/*--------------
- Sizes
----------------*/
-
-/* Standard */
-.ui.table {
- font-size: @medium;
-}
-& when not (@variationTableSizes = false) {
- each(@variationTableSizes, {
- @s: @@value;
- .ui.@{value}.table {
- font-size: @s;
- }
- })
-}
-
-
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/elements/button.less b/src-angular/assets/semantic/src/definitions/elements/button.less
deleted file mode 100644
index ab28007..0000000
--- a/src-angular/assets/semantic/src/definitions/elements/button.less
+++ /dev/null
@@ -1,1875 +0,0 @@
-/*!
- * # Fomantic-UI - Button
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'element';
-@element : 'button';
-
-@import (multiple) '../../theme.config';
-
-/*******************************
- Button
-*******************************/
-
-.ui.button {
- cursor: pointer;
- display: inline-block;
-
- min-height: 1em;
-
- outline: none;
- border: none;
- vertical-align: @verticalAlign;
- background: @background;
- color: @textColor;
-
- font-family: @fontFamily;
-
- margin: 0 @horizontalMargin @verticalMargin 0;
- padding: @verticalPadding @horizontalPadding (@verticalPadding + @shadowOffset);
-
- text-transform: @textTransform;
- text-shadow: @textShadow;
- font-weight: @fontWeight;
- line-height: @lineHeight;
- font-style: normal;
- text-align: center;
- text-decoration: none;
-
- border-radius: @borderRadius;
- box-shadow: @boxShadow;
-
- user-select: none;
- transition: @transition;
- will-change: @willChange;
-
- -webkit-tap-highlight-color: @tapColor;
-}
-
-
-/*******************************
- States
-*******************************/
-
-/*--------------
- Hover
----------------*/
-
-.ui.button:hover {
- background-color: @hoverBackgroundColor;
- background-image: @hoverBackgroundImage;
- box-shadow: @hoverBoxShadow;
- color: @hoverColor;
-}
-
-.ui.button:hover .icon {
- opacity: @iconHoverOpacity;
-}
-
-/*--------------
- Focus
----------------*/
-
-.ui.button:focus {
- background-color: @focusBackgroundColor;
- color: @focusColor;
- background-image: @focusBackgroundImage;
- box-shadow: @focusBoxShadow;
-}
-
-.ui.button:focus .icon {
- opacity: @iconFocusOpacity;
-}
-
-/*--------------
- Down
----------------*/
-
-.ui.button:active,
-.ui.active.button:active {
- background-color: @downBackgroundColor;
- background-image: @downBackgroundImage;
- color: @downColor;
- box-shadow: @downBoxShadow;
-}
-
-/*--------------
- Active
----------------*/
-
-.ui.active.button {
- background-color: @activeBackgroundColor;
- background-image: @activeBackgroundImage;
- box-shadow: @activeBoxShadow;
- color: @activeColor;
-}
-.ui.active.button:hover {
- background-color: @activeHoverBackgroundColor;
- background-image: @activeHoverBackgroundImage;
- color: @activeHoverColor;
-}
-.ui.active.button:active {
- background-color: @activeBackgroundColor;
- background-image: @activeBackgroundImage;
-}
-
-
-/*--------------
- Loading
----------------*/
-
-/* Specificity hack */
-.ui.loading.loading.loading.loading.loading.loading.button {
- position: relative;
- cursor: default;
- text-shadow: none !important;
- color: transparent;
- opacity: @loadingOpacity;
- pointer-events: @loadingPointerEvents;
- transition: @loadingTransition;
-}
-.ui.loading.button:before {
- position: absolute;
- content: '';
- top: 50%;
- left: 50%;
-
- margin: @loaderMargin;
- width: @loaderSize;
- height: @loaderSize;
-
- border-radius: @circularRadius;
- border: @loaderLineWidth solid @invertedLoaderFillColor;
-}
-.ui.loading.button:after {
- position: absolute;
- content: '';
- top: 50%;
- left: 50%;
-
- margin: @loaderMargin;
- width: @loaderSize;
- height: @loaderSize;
-
- border-radius: @circularRadius;
-
- animation: loader @loaderSpeed infinite linear;
- border: @loaderLineWidth solid currentColor;
- color: @invertedLoaderLineColor;
-
- box-shadow: 0 0 0 1px transparent;
-}
-& when (@variationButtonLabeledIcon){
- .ui.labeled.icon.loading.button .icon {
- background-color: transparent;
- box-shadow: none;
- }
-}
-& when (@variationButtonBasic){
- .ui.basic.loading.button:not(.inverted):before {
- border-color: @loaderFillColor;
- }
- .ui.basic.loading.button:not(.inverted):after {
- border-color: @loaderLineColor;
- }
-}
-& when (@variationButtonDisabled){
- /*-------------------
- Disabled
- --------------------*/
-
- .ui.buttons .disabled.button:not(.basic),
- .ui.disabled.button,
- .ui.button:disabled,
- .ui.disabled.button:hover,
- .ui.disabled.active.button {
- cursor: default;
- opacity: @disabledOpacity !important;
- background-image: none;
- box-shadow: none;
- pointer-events: none !important;
- }
- & when (@variationButtonBasic){
- /* Basic Group With Disabled */
- .ui.basic.buttons .ui.disabled.button {
- border-color: @disabledBorderColor;
- }
- }
-}
-
-/*******************************
- Types
-*******************************/
-& when (@variationButtonAnimated){
- /*-------------------
- Animated
- --------------------*/
-
- .ui.animated.button {
- position: relative;
- overflow: hidden;
- padding-right: 0 !important;
- vertical-align: @animatedVerticalAlign;
- z-index: @animatedZIndex;
- }
-
- .ui.animated.button .content {
- will-change: transform, opacity;
- }
- .ui.animated.button .visible.content {
- position: relative;
- margin-right: @horizontalPadding;
- }
- .ui.animated.button .hidden.content {
- position: absolute;
- width: 100%;
- }
-
- /* Horizontal */
- .ui.animated.button .visible.content,
- .ui.animated.button .hidden.content {
- transition: right @animationDuration @animationEasing 0s;
- }
- .ui.animated.button .visible.content {
- left: auto;
- right: 0;
- }
- .ui.animated.button .hidden.content {
- top: 50%;
- left: auto;
- right: -100%;
- margin-top: -(@lineHeight / 2);
- }
- .ui.animated.button:focus .visible.content,
- .ui.animated.button:hover .visible.content {
- left: auto;
- right: 200%;
- }
- .ui.animated.button:focus .hidden.content,
- .ui.animated.button:hover .hidden.content {
- left: auto;
- right: 0;
- }
-
- /* Vertical */
- .ui.vertical.animated.button .visible.content,
- .ui.vertical.animated.button .hidden.content {
- transition: top @animationDuration @animationEasing, transform @animationDuration @animationEasing;
- }
- .ui.vertical.animated.button .visible.content {
- transform: translateY(0%);
- right: auto;
- }
- .ui.vertical.animated.button .hidden.content {
- top: -50%;
- left: 0;
- right: auto;
- }
- .ui.vertical.animated.button:focus .visible.content,
- .ui.vertical.animated.button:hover .visible.content {
- transform: translateY(200%);
- right: auto;
- }
- .ui.vertical.animated.button:focus .hidden.content,
- .ui.vertical.animated.button:hover .hidden.content {
- top: 50%;
- right: auto;
- }
-
- /* Fade */
- .ui.fade.animated.button .visible.content,
- .ui.fade.animated.button .hidden.content {
- transition: opacity @animationDuration @animationEasing, transform @animationDuration @animationEasing;
- }
- .ui.fade.animated.button .visible.content {
- left: auto;
- right: auto;
- opacity: 1;
- transform: scale(1);
- }
- .ui.fade.animated.button .hidden.content {
- opacity: 0;
- left: 0;
- right: auto;
- transform: scale(@fadeScaleHigh);
- }
- .ui.fade.animated.button:focus .visible.content,
- .ui.fade.animated.button:hover .visible.content {
- left: auto;
- right: auto;
- opacity: 0;
- transform: scale(@fadeScaleLow);
- }
- .ui.fade.animated.button:focus .hidden.content,
- .ui.fade.animated.button:hover .hidden.content {
- left: 0;
- right: auto;
- opacity: 1;
- transform: scale(1);
- }
-}
-
-& when (@variationButtonInverted) {
- /*-------------------
- Inverted
- --------------------*/
-
- .ui.inverted.button {
- box-shadow: 0 0 0 @invertedBorderSize @white inset;
- background: transparent none;
- color: @white;
- text-shadow: none !important;
- }
-
- /* Group */
- .ui.inverted.buttons .button {
- margin: @invertedGroupButtonOffset;
- }
- .ui.inverted.buttons .button:first-child {
- margin-left: 0;
- }
- .ui.inverted.vertical.buttons .button {
- margin: @invertedVerticalGroupButtonOffset;
- }
- .ui.inverted.vertical.buttons .button:first-child {
- margin-top: 0;
- }
-
- /* States */
-
- /* Hover */
- .ui.inverted.button:hover {
- background: @white;
- box-shadow: 0 0 0 @invertedBorderSize @white inset;
- color: @hoverColor;
- }
-
- /* Active / Focus */
- .ui.inverted.button:focus,
- .ui.inverted.button.active {
- background: @white;
- box-shadow: 0 0 0 @invertedBorderSize @white inset;
- color: @focusColor;
- }
-
- /* Active Focus */
- .ui.inverted.button.active:focus {
- background: @midWhite;
- box-shadow: 0 0 0 @invertedBorderSize @midWhite inset;
- color: @focusColor;
- }
-}
-
-& when (@variationButtonLabeled) or (@variationButtonLabeledIcon){
- /*-------------------
- Labeled Button
- --------------------*/
-
- .ui.labeled.button:not(.icon) {
- display: inline-flex;
- flex-direction: row;
- background: none;
- padding: 0 !important;
- border: none;
- box-shadow: none;
- }
-
- .ui.labeled.button > .button {
- margin: 0;
- }
- .ui.labeled.button > .label {
- display: flex;
- align-items: @labeledLabelAlign;
- margin: 0 0 0 @labeledLabelBorderOffset !important;
- font-size: @labeledLabelFontSize;
- padding: @labeledLabelPadding;
- border-color: @labeledLabelBorderColor;
- }
-
- /* Tag */
- .ui.labeled.button > .tag.label:before {
- width: @labeledTagLabelSize;
- height: @labeledTagLabelSize;
- }
-
- /* Right */
- .ui.labeled.button:not([class*="left labeled"]) > .button {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- }
- .ui.labeled.button:not([class*="left labeled"]) > .label {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- }
-
- /* Left Side */
- .ui[class*="left labeled"].button > .button {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- }
- .ui[class*="left labeled"].button > .label {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- }
-}
-
-& when (@variationButtonSocial) {
- /*-------------------
- Social
- --------------------*/
-
- /* Facebook */
- .ui.facebook.button {
- background-color: @facebookColor;
- color: @invertedTextColor;
- text-shadow: @invertedTextShadow;
- background-image: @coloredBackgroundImage;
- box-shadow: @coloredBoxShadow;
- }
- .ui.facebook.button:hover {
- background-color: @facebookHoverColor;
- color: @invertedTextColor;
- text-shadow: @invertedTextShadow;
- }
- .ui.facebook.button:active {
- background-color: @facebookDownColor;
- color: @invertedTextColor;
- text-shadow: @invertedTextShadow;
- }
-
- /* Twitter */
- .ui.twitter.button {
- background-color: @twitterColor;
- color: @invertedTextColor;
- text-shadow: @invertedTextShadow;
- background-image: @coloredBackgroundImage;
- box-shadow: @coloredBoxShadow;
- }
- .ui.twitter.button:hover {
- background-color: @twitterHoverColor;
- color: @invertedTextColor;
- text-shadow: @invertedTextShadow;
- }
- .ui.twitter.button:active {
- background-color: @twitterDownColor;
- color: @invertedTextColor;
- text-shadow: @invertedTextShadow;
- }
-
- /* Google Plus */
- .ui.google.plus.button {
- background-color: @googlePlusColor;
- color: @invertedTextColor;
- text-shadow: @invertedTextShadow;
- background-image: @coloredBackgroundImage;
- box-shadow: @coloredBoxShadow;
- }
- .ui.google.plus.button:hover {
- background-color: @googlePlusHoverColor;
- color: @invertedTextColor;
- text-shadow: @invertedTextShadow;
- }
- .ui.google.plus.button:active {
- background-color: @googlePlusDownColor;
- color: @invertedTextColor;
- text-shadow: @invertedTextShadow;
- }
-
- /* Linked In */
- .ui.linkedin.button {
- background-color: @linkedInColor;
- color: @invertedTextColor;
- text-shadow: @invertedTextShadow;
- }
- .ui.linkedin.button:hover {
- background-color: @linkedInHoverColor;
- color: @invertedTextColor;
- text-shadow: @invertedTextShadow;
- }
- .ui.linkedin.button:active {
- background-color: @linkedInDownColor;
- color: @invertedTextColor;
- text-shadow: @invertedTextShadow;
- }
-
- /* YouTube */
- .ui.youtube.button {
- background-color: @youtubeColor;
- color: @invertedTextColor;
- text-shadow: @invertedTextShadow;
- background-image: @coloredBackgroundImage;
- box-shadow: @coloredBoxShadow;
- }
- .ui.youtube.button:hover {
- background-color: @youtubeHoverColor;
- color: @invertedTextColor;
- text-shadow: @invertedTextShadow;
- }
- .ui.youtube.button:active {
- background-color: @youtubeDownColor;
- color: @invertedTextColor;
- text-shadow: @invertedTextShadow;
- }
-
- /* Instagram */
- .ui.instagram.button {
- background-color: @instagramColor;
- color: @invertedTextColor;
- text-shadow: @invertedTextShadow;
- background-image: @coloredBackgroundImage;
- box-shadow: @coloredBoxShadow;
- }
- .ui.instagram.button:hover {
- background-color: @instagramHoverColor;
- color: @invertedTextColor;
- text-shadow: @invertedTextShadow;
- }
- .ui.instagram.button:active {
- background-color: @instagramDownColor;
- color: @invertedTextColor;
- text-shadow: @invertedTextShadow;
- }
-
- /* Pinterest */
- .ui.pinterest.button {
- background-color: @pinterestColor;
- color: @invertedTextColor;
- text-shadow: @invertedTextShadow;
- background-image: @coloredBackgroundImage;
- box-shadow: @coloredBoxShadow;
- }
- .ui.pinterest.button:hover {
- background-color: @pinterestHoverColor;
- color: @invertedTextColor;
- text-shadow: @invertedTextShadow;
- }
- .ui.pinterest.button:active {
- background-color: @pinterestDownColor;
- color: @invertedTextColor;
- text-shadow: @invertedTextShadow;
- }
-
- /* VK */
- .ui.vk.button {
- background-color: @vkColor;
- color: @white;
- background-image: @coloredBackgroundImage;
- box-shadow: @coloredBoxShadow;
- }
- .ui.vk.button:hover {
- background-color: @vkHoverColor;
- color: @white;
- }
- .ui.vk.button:active {
- background-color: @vkDownColor;
- color: @white;
- }
-
- /* WhatsApp */
- .ui.whatsapp.button {
- background-color: @whatsAppColor;
- color: @white;
- background-image: @coloredBackgroundImage;
- box-shadow: @coloredBoxShadow;
- }
- .ui.whatsapp.button:hover {
- background-color: @whatsAppHoverColor;
- color: @white;
- }
- .ui.whatsapp.button:active {
- background-color: @whatsAppDownColor;
- color: @white;
- }
-
- /* Telegram */
- .ui.telegram.button {
- background-color: @telegramColor;
- color: @white;
- background-image: @coloredBackgroundImage;
- box-shadow: @coloredBoxShadow;
- }
- .ui.telegram.button:hover {
- background-color: @telegramHoverColor;
- color: @white;
- }
- .ui.telegram.button:active {
- background-color: @telegramDownColor;
- color: @white;
- }
-}
-
-/*--------------
- Icon
----------------*/
-
-.ui.button > .icon:not(.button) {
- height: @iconHeight;
- opacity: @iconOpacity;
- margin: @iconMargin;
- transition: @iconTransition;
- vertical-align: @iconVerticalAlign;
- color: @iconColor;
-}
-
-.ui.button:not(.icon) > .icon:not(.button):not(.dropdown),
-.ui.button:not(.icon) > .icons:not(.button):not(.dropdown) {
- margin: @iconMargin;
-}
-.ui.button:not(.icon) > .right.icon:not(.button):not(.dropdown) {
- margin: @rightIconMargin;
-}
-
-/*******************************
- Variations
-*******************************/
-
-& when (@variationButtonFloated) {
- /*-------------------
- Floated
- --------------------*/
-
- .ui[class*="left floated"].buttons,
- .ui[class*="left floated"].button {
- float: left;
- margin-left: 0;
- margin-right: @floatedMargin;
- }
-
- .ui[class*="right floated"].buttons,
- .ui[class*="right floated"].button {
- float: right;
- margin-right: 0;
- margin-left: @floatedMargin;
- }
-}
-
-& when (@variationButtonCompact) {
- /*-------------------
- Compact
- --------------------*/
-
- .ui.compact.buttons .button,
- .ui.compact.button {
- padding: @compactVerticalPadding @compactHorizontalPadding ( @compactVerticalPadding + @shadowOffset );
- }
-
- .ui.compact.icon.buttons .button,
- .ui.compact.icon.button {
- padding: @compactVerticalPadding @compactVerticalPadding ( @compactVerticalPadding + @shadowOffset );
- }
-
- .ui.compact.labeled.icon.buttons .button,
- .ui.compact.labeled.icon.button {
- padding: @compactVerticalPadding (@compactHorizontalPadding + @labeledIconWidth) ( @compactVerticalPadding + @shadowOffset );
- }
-
- .ui.compact.labeled.icon.buttons .button > .icon,
- .ui.compact.labeled.icon.button > .icon {
- padding: @compactVerticalPadding 0 @compactVerticalPadding 0;
- }
-}
-/*-------------------
- Sizes
---------------------*/
-
-.ui.buttons .button,
-.ui.buttons .or,
-.ui.button {
- font-size: @medium;
-}
-
-& when not (@variationButtonSizes = false) {
- each(@variationButtonSizes, {
- @s: @@value;
- .ui.@{value}.buttons .dropdown,
- .ui.@{value}.buttons .dropdown .menu > .item,
- .ui.@{value}.buttons .button,
- .ui.@{value}.buttons .or,
- .ui.ui.ui.ui.@{value}.button {
- font-size: @s;
- }
- })
-}
-
-/*--------------
- Icon Only
----------------*/
-
-.ui.icon.buttons .button,
-.ui.icon.button {
- padding: @verticalPadding @verticalPadding ( @verticalPadding + @shadowOffset );
-}
-.ui.icon.buttons .button > .icon,
-.ui.icon.button > .icon {
- opacity: @iconButtonOpacity;
- margin: 0 !important;
- vertical-align: top;
-}
-
-& when (@variationButtonBasic) {
- /*-------------------
- Basic
- --------------------*/
-
- .ui.basic.buttons .button,
- .ui.basic.button {
- background: @basicBackground;
- color: @basicTextColor;
- font-weight: @basicFontWeight;
- border-radius: @basicBorderRadius;
- text-transform: @basicTextTransform;
- text-shadow: none !important;
- box-shadow: @basicBoxShadow;
- }
-
- .ui.basic.buttons {
- box-shadow: @basicGroupBoxShadow;
- border: @basicGroupBorder;
- border-radius: @borderRadius;
- }
-
- .ui.basic.buttons .button {
- border-radius: 0;
- }
-
- .ui.basic.buttons .button:hover,
- .ui.basic.button:hover {
- background: @basicHoverBackground;
- color: @basicHoverTextColor;
- box-shadow: @basicHoverBoxShadow;
- }
-
- .ui.basic.buttons .button:focus,
- .ui.basic.button:focus {
- background: @basicFocusBackground;
- color: @basicFocusTextColor;
- box-shadow: @basicFocusBoxShadow;
- }
-
- .ui.basic.buttons .button:active,
- .ui.basic.button:active {
- background: @basicDownBackground;
- color: @basicDownTextColor;
- box-shadow: @basicDownBoxShadow;
- }
-
- .ui.basic.buttons .active.button,
- .ui.basic.active.button {
- background: @basicActiveBackground;
- box-shadow: @basicActiveBoxShadow;
- color: @basicActiveTextColor;
- }
-
- .ui.basic.buttons .active.button:hover,
- .ui.basic.active.button:hover {
- background-color: @transparentBlack;
- }
-
- /* Vertical */
- .ui.basic.buttons .button:hover {
- box-shadow: @basicHoverBoxShadow inset;
- }
-
- .ui.basic.buttons .button:active {
- box-shadow: @basicDownBoxShadow inset;
- }
-
- .ui.basic.buttons .active.button {
- box-shadow: @basicActiveBoxShadow;
- }
- & when (@variationButtonInverted) {
- /* Standard Basic Inverted */
-
- .ui.basic.inverted.buttons .button,
- .ui.basic.inverted.button {
- background-color: transparent;
- color: @offWhite;
- box-shadow: @basicInvertedBoxShadow;
- }
-
- .ui.basic.inverted.buttons .button:hover,
- .ui.basic.inverted.button:hover {
- color: @white;
- box-shadow: @basicInvertedHoverBoxShadow;
- }
-
- .ui.basic.inverted.buttons .button:focus,
- .ui.basic.inverted.button:focus {
- color: @white;
- box-shadow: @basicInvertedFocusBoxShadow;
- }
-
- .ui.basic.inverted.buttons .button:active,
- .ui.basic.inverted.button:active {
- background-color: @transparentWhite;
- color: @white;
- box-shadow: @basicInvertedDownBoxShadow;
- }
-
- .ui.basic.inverted.buttons .active.button,
- .ui.basic.inverted.active.button {
- background-color: @transparentWhite;
- color: @invertedTextColor;
- text-shadow: @invertedTextShadow;
- box-shadow: @basicInvertedActiveBoxShadow;
- }
-
- .ui.basic.inverted.buttons .active.button:hover,
- .ui.basic.inverted.active.button:hover {
- background-color: @strongTransparentWhite;
- box-shadow: @basicInvertedHoverBoxShadow;
- }
- }
-
- & when (@variationButtonBasic) {
- /* Basic Group */
- .ui.basic.buttons .button {
- border-left: @basicGroupBorder;
- box-shadow: none;
- }
-
- .ui.basic.vertical.buttons .button {
- border-left: none;
- border-left-width: 0;
- border-top: @basicGroupBorder;
- }
-
- .ui.basic.vertical.buttons .button:first-child {
- border-top-width: 0;
- }
- }
-}
-
-& when (@variationButtonTertiary) {
- /*-------------------
- Tertiary
- --------------------*/
-
- /* Overline Mixin */
- .ui.tertiary.button {
- transition: color @defaultDuration @defaultEasing !important;
- border-radius: 0;
- margin: (@verticalPadding - @tertiaryLinePadding)
- (@horizontalMargin)
- (@verticalPadding + @shadowOffset + @verticalMargin - @tertiaryLinePadding)
- 0 !important;
- padding: @tertiaryLinePadding !important;
-
- & when (@tertiaryWithUnderline = true) {
- box-shadow: inset 0 -@tertiaryLineHeight 0 @tertiaryLineColor;
- }
-
- & when (@tertiaryWithOverline = true) {
- box-shadow: inset 0 @tertiaryLineHeight 0 @tertiaryLineColor;
- }
-
- & when (@tertiaryWithUnderline = false) and (@tertiaryWithOverline = false){
- box-shadow: none;
- }
-
- color: @tertiaryTextColor;
- background: @tertiaryBackgroundColor;
- }
-
- .ui.tertiary.button:hover {
-
- & when (@tertiaryHoverWithUnderline = true) {
- box-shadow: inset 0 -@tertiaryLineHeight 0 @tertiaryHoverLineColor;
- }
-
- & when (@tertiaryHoverWithOverline = true) {
- box-shadow: inset 0 @tertiaryLineHeight 0 @tertiaryHoverLineColor;
- }
-
- & when (@tertiaryHoverWithUnderline = false) and (@tertiaryHoverWithOverline = false) {
- box-shadow: none;
- }
-
- color: @tertiaryHoverColor;
- background: @tertiaryHoverBackgroundColor;
- }
-
- .ui.tertiary.button:focus {
- & when (@tertiaryFocusWithUnderline = true) {
- box-shadow: inset 0 -@tertiaryLineHeight 0 @tertiaryFocusLineColor;
- }
-
- & when (@tertiaryFocusWithOverline = true) {
- box-shadow: inset 0 @tertiaryLineHeight 0 @tertiaryFocusLineColor;
- }
-
- & when (@tertiaryFocusWithUnderline = false) and (@tertiaryFocusWithOverline = false){
- box-shadow: none;
- }
-
- color: @tertiaryFocusColor;
- background: @tertiaryFocusBackgroundColor;
- }
-
- .ui.tertiary.button:active {
- & when (@tertiaryActiveWithUnderline = true) {
- box-shadow: inset 0 -@tertiaryLineHeight 0 @tertiaryActiveLineColor;
- border-radius: @borderRadius @borderRadius 0 0;
- }
-
- & when (@tertiaryActiveWithOverline = true) {
- box-shadow: inset 0 @tertiaryLineHeight 0 @tertiaryActiveLineColor;
- border-radius: 0 0 @borderRadius @borderRadius;
- }
-
- & when (@tertiaryActiveWithUnderline = false) and (@tertiaryActiveWithOverline = false){
- box-shadow: none;
- border-radius: 0;
- }
-
- color: @tertiaryActiveColor;
- background: @tertiaryActiveBackgroundColor;
- }
-}
-
-& when (@variationButtonLabeledIcon) {
- /*--------------
- Labeled Icon
- ---------------*/
-
- .ui.labeled.icon.buttons .button,
- .ui.labeled.icon.button {
- position: relative;
- padding-left: @labeledIconPadding !important;
- padding-right: @horizontalPadding !important;
- }
-
- /* Left Labeled */
- .ui.labeled.icon.buttons > .button > .icon,
- .ui.labeled.icon.button > .icon {
- position: absolute;
- top: 0;
- left: 0;
- height: 100%;
- line-height: 1;
- border-radius: 0;
- border-top-left-radius: inherit;
- border-bottom-left-radius: inherit;
- text-align: center;
- animation: none;
- padding: @verticalPadding 0 @verticalPadding 0;
-
- margin: @labeledIconMargin;
- width: @labeledIconWidth;
- background-color: @labeledIconBackgroundColor;
- color: @labeledIconColor;
- box-shadow: @labeledIconLeftShadow;
- }
-
- /* Right Labeled */
- .ui[class*="right labeled"].icon.button {
- padding-right: @labeledIconPadding !important;
- padding-left: @horizontalPadding !important;
- }
-
- .ui[class*="right labeled"].icon.button > .icon {
- left: auto;
- right: 0;
- border-radius: 0;
- border-top-right-radius: inherit;
- border-bottom-right-radius: inherit;
- box-shadow: @labeledIconRightShadow;
- }
-
-
- .ui.labeled.icon.buttons > .button > .icon:before,
- .ui.labeled.icon.button > .icon:before,
- .ui.labeled.icon.buttons > .button > .icon:after,
- .ui.labeled.icon.button > .icon:after {
- display: block;
- position: relative;
- width: 100%;
- top: 0;
- text-align: center;
- }
-
- .ui.labeled.icon.buttons .button > .icon {
- border-radius: 0;
- }
-
- .ui.labeled.icon.buttons .button:first-child > .icon {
- border-top-left-radius: @borderRadius;
- border-bottom-left-radius: @borderRadius;
- }
-
- .ui.labeled.icon.buttons .button:last-child > .icon {
- border-top-right-radius: @borderRadius;
- border-bottom-right-radius: @borderRadius;
- }
-
- .ui.vertical.labeled.icon.buttons .button:first-child > .icon {
- border-radius: 0;
- border-top-left-radius: @borderRadius;
- }
-
- .ui.vertical.labeled.icon.buttons .button:last-child > .icon {
- border-radius: 0;
- border-bottom-left-radius: @borderRadius;
- }
-
- /* Loading Icon in Labeled Button */
- .ui.labeled.icon.button > .loading.icon:before {
- animation: loader 2s linear infinite;
- }
-}
-
-& when (@variationButtonToggle) {
- /*--------------
- Toggle
- ---------------*/
-
- /* Toggle (Modifies active state to give affordances) */
- .ui.toggle.buttons .active.button,
- .ui.buttons .button.toggle.active,
- .ui.button.toggle.active {
- background-color: @positiveColor;
- box-shadow: none;
- text-shadow: @invertedTextShadow;
- color: @invertedTextColor;
- }
-
- .ui.button.toggle.active:hover {
- background-color: @positiveColorHover;
- text-shadow: @invertedTextShadow;
- color: @invertedTextColor;
- }
-}
-
-& when (@variationButtonCircular) {
- /*--------------
- Circular
- ---------------*/
-
- .ui.circular.button {
- border-radius: 10em;
- }
-
- .ui.circular.button > .icon {
- width: 1em;
- vertical-align: baseline;
- }
-}
-
-& when (@variationButtonOr) {
- /*-------------------
- Or Buttons
- --------------------*/
-
- .ui.buttons .or {
- position: relative;
- width: @orGap;
- height: @orHeight;
- z-index: @orZIndex;
- }
-
- .ui.buttons .or:before {
- position: absolute;
- text-align: center;
- border-radius: @circularRadius;
-
- content: @orText;
- top: 50%;
- left: 50%;
- background-color: @orBackgroundColor;
- text-shadow: @orTextShadow;
-
- margin-top: @orVerticalOffset;
- margin-left: @orHorizontalOffset;
-
- width: @orCircleSize;
- height: @orCircleSize;
-
- line-height: @orLineHeight;
- color: @orTextColor;
-
- font-style: @orTextStyle;
- font-weight: @orTextWeight;
-
- box-shadow: @orBoxShadow;
- }
-
- .ui.buttons .or[data-text]:before {
- content: attr(data-text);
- }
-
- /* Fluid Or */
- .ui.fluid.buttons .or {
- width: 0 !important;
- }
-
- .ui.fluid.buttons .or:after {
- display: none;
- }
-
-}
-
-& when (@variationButtonAttached) {
- /*-------------------
- Attached
- --------------------*/
-
-
- /* Singular */
- .ui.attached.button {
- position: relative;
- display: block;
- margin: 0;
- border-radius: 0;
- box-shadow: @attachedBoxShadow;
- }
-
- /* Top / Bottom */
- .ui.attached.top.button {
- border-radius: @borderRadius @borderRadius 0 0;
- }
-
- .ui.attached.bottom.button {
- border-radius: 0 0 @borderRadius @borderRadius;
- }
-
- /* Left / Right */
- .ui.left.attached.button {
- display: inline-block;
- border-left: none;
- text-align: right;
-
- padding-right: @attachedHorizontalPadding;
- border-radius: @borderRadius 0 0 @borderRadius;
- }
-
- .ui.right.attached.button {
- display: inline-block;
- text-align: left;
- padding-left: @attachedHorizontalPadding;
- border-radius: 0 @borderRadius @borderRadius 0;
- }
-
- /* Plural */
- .ui.attached.buttons {
- position: relative;
- display: flex;
- border-radius: 0;
- width: auto !important;
- z-index: @attachedZIndex;
- margin-left: @attachedOffset;
- margin-right: @attachedOffset;
- }
-
- .ui.attached.buttons .button {
- margin: 0;
- }
-
- .ui.attached.buttons .button:first-child {
- border-radius: 0;
- }
-
- .ui.attached.buttons .button:last-child {
- border-radius: 0;
- }
-
- /* Top / Bottom */
- .ui[class*="top attached"].buttons {
- margin-bottom: @attachedOffset;
- border-radius: @borderRadius @borderRadius 0 0;
- }
-
- .ui[class*="top attached"].buttons .button:first-child {
- border-radius: @borderRadius 0 0 0;
- }
-
- .ui[class*="top attached"].buttons .button:last-child {
- border-radius: 0 @borderRadius 0 0;
- }
-
- .ui[class*="bottom attached"].buttons {
- margin-top: @attachedOffset;
- border-radius: 0 0 @borderRadius @borderRadius;
- }
-
- .ui[class*="bottom attached"].buttons .button:first-child {
- border-radius: 0 0 0 @borderRadius;
- }
-
- .ui[class*="bottom attached"].buttons .button:last-child {
- border-radius: 0 0 @borderRadius 0;
- }
-
- /* Left / Right */
- .ui[class*="left attached"].buttons {
- display: inline-flex;
- margin-right: 0;
- margin-left: @attachedOffset;
- border-radius: 0 @borderRadius @borderRadius 0;
- }
-
- .ui[class*="left attached"].buttons .button:first-child {
- margin-left: @attachedOffset;
- border-radius: 0 @borderRadius 0 0;
- }
-
- .ui[class*="left attached"].buttons .button:last-child {
- margin-left: @attachedOffset;
- border-radius: 0 0 @borderRadius 0;
- }
-
- .ui[class*="right attached"].buttons {
- display: inline-flex;
- margin-left: 0;
- margin-right: @attachedOffset;
- border-radius: @borderRadius 0 0 @borderRadius;
- }
-
- .ui[class*="right attached"].buttons .button:first-child {
- margin-left: @attachedOffset;
- border-radius: @borderRadius 0 0 0;
- }
-
- .ui[class*="right attached"].buttons .button:last-child {
- margin-left: @attachedOffset;
- border-radius: 0 0 0 @borderRadius;
- }
-}
-
-& when (@variationButtonFluid) {
- /*-------------------
- Fluid
- --------------------*/
-
- .ui.fluid.buttons,
- .ui.fluid.button {
- width: 100%;
- }
-
- .ui.fluid.button {
- display: block;
- }
-
- .ui.two.buttons {
- width: 100%;
- }
-
- .ui.two.buttons > .button {
- width: 50%;
- }
-
- .ui.three.buttons {
- width: 100%;
- }
-
- .ui.three.buttons > .button {
- width: 33.333%;
- }
-
- .ui.four.buttons {
- width: 100%;
- }
-
- .ui.four.buttons > .button {
- width: 25%;
- }
-
- .ui.five.buttons {
- width: 100%;
- }
-
- .ui.five.buttons > .button {
- width: 20%;
- }
-
- .ui.six.buttons {
- width: 100%;
- }
-
- .ui.six.buttons > .button {
- width: 16.666%;
- }
-
- .ui.seven.buttons {
- width: 100%;
- }
-
- .ui.seven.buttons > .button {
- width: 14.285%;
- }
-
- .ui.eight.buttons {
- width: 100%;
- }
-
- .ui.eight.buttons > .button {
- width: 12.500%;
- }
-
- .ui.nine.buttons {
- width: 100%;
- }
-
- .ui.nine.buttons > .button {
- width: 11.11%;
- }
-
- .ui.ten.buttons {
- width: 100%;
- }
-
- .ui.ten.buttons > .button {
- width: 10%;
- }
-
- .ui.eleven.buttons {
- width: 100%;
- }
-
- .ui.eleven.buttons > .button {
- width: 9.09%;
- }
-
- .ui.twelve.buttons {
- width: 100%;
- }
-
- .ui.twelve.buttons > .button {
- width: 8.3333%;
- }
-
- /* Fluid Vertical Buttons */
- .ui.fluid.vertical.buttons,
- .ui.fluid.vertical.buttons > .button {
- display: flex;
- width: auto;
- justify-content: center;
- }
-
- .ui.two.vertical.buttons > .button {
- height: 50%;
- }
-
- .ui.three.vertical.buttons > .button {
- height: 33.333%;
- }
-
- .ui.four.vertical.buttons > .button {
- height: 25%;
- }
-
- .ui.five.vertical.buttons > .button {
- height: 20%;
- }
-
- .ui.six.vertical.buttons > .button {
- height: 16.666%;
- }
-
- .ui.seven.vertical.buttons > .button {
- height: 14.285%;
- }
-
- .ui.eight.vertical.buttons > .button {
- height: 12.500%;
- }
-
- .ui.nine.vertical.buttons > .button {
- height: 11.11%;
- }
-
- .ui.ten.vertical.buttons > .button {
- height: 10%;
- }
-
- .ui.eleven.vertical.buttons > .button {
- height: 9.09%;
- }
-
- .ui.twelve.vertical.buttons > .button {
- height: 8.3333%;
- }
-}
-
-/*-------------------
- Colors
---------------------*/
-
-each(@colors, {
- @color: replace(@key, '@', '');
- @c: @colors[@@color][color];
- @h: @colors[@@color][hover];
- @f: @colors[@@color][focus];
- @d: @colors[@@color][down];
- @a: @colors[@@color][active];
- @t: @colors[@@color][text];
- @s: @colors[@@color][shadow];
- @l: @colors[@@color][light];
- @lh: @colors[@@color][lightHover];
- @lf: @colors[@@color][lightFocus];
- @ld: @colors[@@color][lightDown];
- @la: @colors[@@color][lightActive];
- @lt: @colors[@@color][lightText];
- @ls: @colors[@@color][lightShadow];
- @ty: @colors[@@color][tertiary];
- @tyh: @colors[@@color][tertiaryHover];
- @tyf: @colors[@@color][tertiaryFocus];
- @tya: @colors[@@color][tertiaryActive];
- @isDark: @colors[@@color][isDark];
- @isVeryDark: @colors[@@color][isVeryDark];
-
- .ui.@{color}.buttons .button,
- .ui.@{color}.button {
- background-color: @c;
- color: @t;
- text-shadow: @s;
- background-image: @coloredBackgroundImage;
- }
- .ui.@{color}.button {
- box-shadow: @coloredBoxShadow;
- }
- .ui.@{color}.buttons .button:hover,
- .ui.@{color}.button:hover {
- background-color: @h;
- color: @t;
- text-shadow: @s;
- }
- .ui.@{color}.buttons .button:focus,
- .ui.@{color}.button:focus {
- background-color: @f;
- color: @t;
- text-shadow: @s;
- }
- .ui.@{color}.buttons .button:active,
- .ui.@{color}.button:active {
- background-color: @d;
- color: @t;
- text-shadow: @s;
- }
- .ui.@{color}.buttons .active.button,
- .ui.@{color}.buttons .active.button:active,
- .ui.@{color}.active.button,
- .ui.@{color}.button .active.button:active {
- background-color: @a;
- color: @t;
- text-shadow: @s;
- }
-
- & when (@variationButtonBasic) {
- /* Basic */
- .ui.basic.@{color}.buttons .button,
- .ui.basic.@{color}.button {
- background: transparent;
- box-shadow: 0 0 0 @basicBorderSize @c inset ;
- color: @c ;
- }
- .ui.basic.@{color}.buttons .button:hover,
- .ui.basic.@{color}.button:hover {
- background: transparent ;
- box-shadow: 0 0 0 @basicColoredBorderSize @h inset ;
- color: @h ;
- }
- .ui.basic.@{color}.buttons .button:focus,
- .ui.basic.@{color}.button:focus {
- background: transparent ;
- box-shadow: 0 0 0 @basicColoredBorderSize @f inset ;
- color: @h ;
- }
- .ui.basic.@{color}.buttons .active.button,
- .ui.basic.@{color}.active.button {
- background: transparent ;
- box-shadow: 0 0 0 @basicColoredBorderSize @a inset ;
- color: @d ;
- }
- .ui.basic.@{color}.buttons .button:active,
- .ui.basic.@{color}.button:active {
- box-shadow: 0 0 0 @basicColoredBorderSize @d inset ;
- color: @d ;
- }
-
- .ui.buttons:not(.vertical) > .basic.@{color}.button:not(:first-child) {
- margin-left: -@basicColoredBorderSize;
- }
- }
- & when (@variationButtonInverted) {
- /* Inverted */
- .ui.inverted.@{color}.buttons .button,
- .ui.inverted.@{color}.button {
- background-color: transparent;
-
- & when (@isDark) {
- box-shadow: 0 0 0 @invertedBorderSize @solidBorderColor inset ;
- color: @invertedTextColor;
- }
-
- & when not (@isDark) {
- box-shadow: 0 0 0 @invertedBorderSize @l inset ;
- color: @l;
- }
- }
- .ui.inverted.@{color}.buttons .button:hover,
- .ui.inverted.@{color}.button:hover,
- .ui.inverted.@{color}.buttons .button:focus,
- .ui.inverted.@{color}.button:focus,
- .ui.inverted.@{color}.buttons .button.active,
- .ui.inverted.@{color}.button.active,
- .ui.inverted.@{color}.buttons .button:active,
- .ui.inverted.@{color}.button:active {
- box-shadow: none ;
- color: @lt;
- }
- .ui.inverted.@{color}.buttons .button:hover,
- .ui.inverted.@{color}.button:hover {
- background-color: @lh;
- }
- .ui.inverted.@{color}.buttons .button:focus,
- .ui.inverted.@{color}.button:focus {
- background-color: @lf;
- }
- .ui.inverted.@{color}.buttons .active.button,
- .ui.inverted.@{color}.active.button {
- background-color: @la;
- }
- .ui.inverted.@{color}.buttons .button:active,
- .ui.inverted.@{color}.button:active {
- background-color: @ld;
- }
-
- /* Inverted Basic */
- .ui.inverted.@{color}.basic.buttons .button,
- .ui.inverted.@{color}.buttons .basic.button,
- .ui.inverted.@{color}.basic.button {
- background-color: transparent;
- box-shadow: @basicInvertedBoxShadow ;
- color: @white ;
- }
- .ui.inverted.@{color}.basic.buttons .button:hover,
- .ui.inverted.@{color}.buttons .basic.button:hover,
- .ui.inverted.@{color}.basic.button:hover {
- box-shadow: 0 0 0 @invertedBorderSize @lh inset ;
-
- & when (@isDark) {
- color: @white ;
- }
-
- & when not (@isDark) {
- color: @l ;
- }
- }
- .ui.inverted.@{color}.basic.buttons .button:focus,
- .ui.inverted.@{color}.basic.buttons .button:focus,
- .ui.inverted.@{color}.basic.button:focus {
- box-shadow: 0 0 0 @invertedBorderSize @lf inset ;
- color: @l ;
- }
- .ui.inverted.@{color}.basic.buttons .active.button,
- .ui.inverted.@{color}.buttons .basic.active.button,
- .ui.inverted.@{color}.basic.active.button {
- box-shadow: 0 0 0 @invertedBorderSize @la inset ;
-
- & when (@isDark) {
- color: @white ;
- }
-
- & when not (@isDark) {
- color: @l ;
- }
- }
- & when (@variationButtonBasic) {
- .ui.inverted.@{color}.basic.buttons .button:active,
- .ui.inverted.@{color}.buttons .basic.button:active,
- .ui.inverted.@{color}.basic.button:active {
- box-shadow: 0 0 0 @invertedBorderSize @ld inset;
-
- & when (@isDark) {
- color: @white;
- }
-
- & when not (@isDark) {
- color: @l;
- }
- }
- }
- }
-
- & when (@variationButtonTertiary) {
- /* Tertiary */
-
- .ui.tertiary.@{color}.buttons .button,
- .ui.tertiary.@{color}.buttons .tertiary.button,
- .ui.tertiary.@{color}.button {
- background: transparent;
-
-
-
- & when (@tertiaryWithUnderline = true) {
- box-shadow: inset 0 -@tertiaryLineHeight 0 @ty;
- }
-
- & when (@tertiaryWithOverline = true) {
- box-shadow: inset 0 @tertiaryLineHeight 0 @ty;
- }
-
- & when (@tertiaryWithUnderline = false) and (@tertiaryWithOverline = false){
- box-shadow: none;
- }
-
- color: @c;
- }
-
- .ui.tertiary.@{color}.buttons .button:hover,
- .ui.tertiary.@{color}.buttons button:hover,
- .ui.tertiary.@{color}.button:hover {
-
-
-
- & when (@tertiaryHoverWithUnderline = true) {
- box-shadow: inset 0 -@tertiaryLineHeight 0 @tyh;
- }
-
- & when (@tertiaryHoverWithOverline = true) {
- box-shadow: inset 0 @tertiaryLineHeight 0 @tyh;
- }
-
- & when (@tertiaryHoverWithUnderline = false) and (@tertiaryHoverWithOverline = false) {
- box-shadow: none;
- }
-
-
- color: @tyh;
- }
-
- .ui.tertiary.@{color}.buttons .button:focus,
- .ui.tertiary.@{color}.buttons .tertiary.button:focus,
- .ui.tertiary.@{color}.button:focus {
-
-
-
-
- & when (@tertiaryFocusWithUnderline = true) {
- box-shadow: inset 0 -@tertiaryLineHeight 0 @tyf;
- }
-
- & when (@tertiaryFocusWithOverline = true) {
- box-shadow: inset 0 @tertiaryLineHeight 0 @tyf;
- }
-
- & when (@tertiaryFocusWithUnderline = false) and (@tertiaryFocusWithOverline = false) {
- box-shadow: none;
- }
-
-
- color: @tyf;
- }
-
- .ui.tertiary.@{color}.buttons .active.button,
- .ui.tertiary.@{color}.buttons .tertiary.active.button,
- .ui.tertiary.@{color}.active.button,
- .ui.tertiary.@{color}.buttons .button:active,
- .ui.tertiary.@{color}.buttons .tertiary.button:active,
- .ui.tertiary.@{color}.button:active {
-
-
-
- & when (@tertiaryActiveWithUnderline = true) {
- box-shadow: inset 0 -@tertiaryLineHeight 0 @tya;
- }
-
- & when (@tertiaryActiveWithOverline = true) {
- box-shadow: inset 0 @tertiaryLineHeight 0 @tya;
- }
-
- & when (@tertiaryActiveWithUnderline = false) and (@tertiaryActiveWithOverline = false) {
- box-shadow: none;
- }
-
- color: @a;
- }
- }
-})
-
-.addConsequence(@consequence) {
-
- @_backgroundColor: "@{consequence}Color";
- @_backgroundColorHover: "@{consequence}ColorHover";
- @_backgroundColorFocus: "@{consequence}ColorFocus";
- @_backgroundColorDown: "@{consequence}ColorDown";
- @_backgroundColorActive: "@{consequence}ColorActive";
- @_textColor: "@{consequence}TextColor";
- @_textShadow: "@{consequence}TextShadow";
-
- /* Standard */
- .ui.@{consequence}.buttons .button,
- .ui.@{consequence}.button {
- background-color: @@_backgroundColor;
- color: @@_textColor;
- text-shadow: @@_textShadow;
- background-image: @coloredBackgroundImage;
- }
- .ui.@{consequence}.button {
- box-shadow: @coloredBoxShadow;
- }
- .ui.@{consequence}.buttons .button:hover,
- .ui.@{consequence}.button:hover {
- background-color: @@_backgroundColorHover;
- color: @@_textColor;
- text-shadow: @@_textShadow;
- }
- .ui.@{consequence}.buttons .button:focus,
- .ui.@{consequence}.button:focus {
- background-color: @@_backgroundColorFocus;
- color: @@_textColor;
- text-shadow: @@_textShadow;
- }
- .ui.@{consequence}.buttons .button:active,
- .ui.@{consequence}.button:active {
- background-color: @@_backgroundColorDown;
- color: @@_textColor;
- text-shadow: @@_textShadow;
- }
- .ui.@{consequence}.buttons .active.button,
- .ui.@{consequence}.buttons .active.button:active,
- .ui.@{consequence}.active.button,
- .ui.@{consequence}.button .active.button:active {
- background-color: @@_backgroundColorActive;
- color: @@_textColor;
- text-shadow: @@_textShadow;
- }
- & when (@variationButtonBasic) {
- /* Basic */
- .ui.basic.@{consequence}.buttons .button,
- .ui.basic.@{consequence}.button {
- background: transparent;
- box-shadow: 0 0 0 @basicBorderSize @@_backgroundColor inset;
- color: @@_backgroundColor;
- }
- .ui.basic.@{consequence}.buttons .button:hover,
- .ui.basic.@{consequence}.button:hover {
- background: transparent;
- box-shadow: 0 0 0 @basicColoredBorderSize @@_backgroundColorHover inset;
- color: @@_backgroundColorHover;
- }
- .ui.basic.@{consequence}.buttons .button:focus,
- .ui.basic.@{consequence}.button:focus {
- background: transparent;
- box-shadow: 0 0 0 @basicColoredBorderSize @@_backgroundColorFocus inset;
- color: @@_backgroundColorHover;
- }
- .ui.basic.@{consequence}.buttons .active.button,
- .ui.basic.@{consequence}.active.button {
- background: transparent;
- box-shadow: 0 0 0 @basicColoredBorderSize @@_backgroundColorActive inset;
- color: @@_backgroundColorDown;
- }
- .ui.basic.@{consequence}.buttons .button:active,
- .ui.basic.@{consequence}.button:active {
- box-shadow: 0 0 0 @basicColoredBorderSize @@_backgroundColorDown inset;
- color: @@_backgroundColorDown;
- }
- .ui.buttons:not(.vertical) > .basic.@{consequence}.button:not(:first-child) {
- margin-left: -@basicColoredBorderSize;
- }
- }
-}
-
-/*---------------
- Positive
-----------------*/
-
-.addConsequence(positive);
-
-/*---------------
- Negative
-----------------*/
-
-.addConsequence(negative);
-
-& when (@variationButtonGroups) {
- /*******************************
- Groups
- *******************************/
-
- .ui.buttons {
- display: inline-flex;
- flex-direction: row;
- font-size: 0;
- vertical-align: baseline;
- margin: @verticalMargin @horizontalMargin 0 0;
- }
-
- .ui.buttons:not(.basic):not(.inverted) {
- box-shadow: @groupBoxShadow;
- }
-
- /* Clearfix */
- .ui.buttons:after {
- content: ".";
- display: block;
- height: 0;
- clear: both;
- visibility: hidden;
- }
-
- /* Standard Group */
- .ui.buttons .button {
- flex: 1 0 auto;
- border-radius: 0;
- margin: @groupButtonOffset;
- }
-
- .ui.buttons:not(.basic):not(.inverted) > .button:not(.basic):not(.inverted) {
- box-shadow: @groupButtonBoxShadow;
- }
-
- .ui.buttons .button:first-child {
- border-left: none;
- margin-left: 0;
- border-top-left-radius: @borderRadius;
- border-bottom-left-radius: @borderRadius;
- }
-
- .ui.buttons .button:last-child {
- border-top-right-radius: @borderRadius;
- border-bottom-right-radius: @borderRadius;
- }
-
- /* Vertical Style */
- .ui.vertical.buttons {
- display: inline-flex;
- flex-direction: column;
- }
-
- .ui.vertical.buttons .button {
- display: block;
- float: none;
- width: 100%;
- margin: @verticalGroupOffset;
- box-shadow: @verticalBoxShadow;
- border-radius: 0;
- }
-
- .ui.vertical.buttons .button:first-child {
- border-top-left-radius: @borderRadius;
- border-top-right-radius: @borderRadius;
- }
-
- .ui.vertical.buttons .button:last-child {
- margin-bottom: 0;
- border-bottom-left-radius: @borderRadius;
- border-bottom-right-radius: @borderRadius;
- }
-
- .ui.vertical.buttons .button:only-child {
- border-radius: @borderRadius;
- }
-}
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/elements/container.less b/src-angular/assets/semantic/src/definitions/elements/container.less
deleted file mode 100644
index 26f1858..0000000
--- a/src-angular/assets/semantic/src/definitions/elements/container.less
+++ /dev/null
@@ -1,160 +0,0 @@
-/*!
- * # Fomantic-UI - Container
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'element';
-@element : 'container';
-
-@import (multiple) '../../theme.config';
-
-/*******************************
- Container
-*******************************/
-
-/* All Sizes */
-.ui.container {
- display: block;
- max-width: @maxWidth;
-}
-
-/* Mobile */
-@media only screen and (max-width: @largestMobileScreen) {
- .ui.ui.ui.container:not(.fluid) {
- width: @mobileWidth;
- margin-left: @mobileGutter;
- margin-right: @mobileGutter;
- }
- & when (@variationContainerGrid) or (@variationContainerRelaxed) {
- .ui.ui.ui.grid.container {
- width: @mobileGridWidth;
- }
- & when (@variationContainerRelaxed) {
- .ui.ui.ui.relaxed.grid.container {
- width: @mobileRelaxedGridWidth;
- }
- .ui.ui.ui.very.relaxed.grid.container {
- width: @mobileVeryRelaxedGridWidth;
- }
- }
- }
-}
-
-/* Tablet */
-@media only screen and (min-width: @tabletBreakpoint) and (max-width: @largestTabletScreen) {
- .ui.ui.ui.container:not(.fluid) {
- width: @tabletWidth;
- margin-left: @tabletGutter;
- margin-right: @tabletGutter;
- }
- & when (@variationContainerGrid) or (@variationContainerRelaxed) {
- .ui.ui.ui.grid.container {
- width: @tabletGridWidth;
- }
- & when (@variationContainerRelaxed) {
- .ui.ui.ui.relaxed.grid.container {
- width: @tabletRelaxedGridWidth;
- }
- .ui.ui.ui.very.relaxed.grid.container {
- width: @tabletVeryRelaxedGridWidth;
- }
- }
- }
-}
-
-/* Small Monitor */
-@media only screen and (min-width: @computerBreakpoint) and (max-width: @largestSmallMonitor) {
- .ui.ui.ui.container:not(.fluid) {
- width: @computerWidth;
- margin-left: @computerGutter;
- margin-right: @computerGutter;
- }
- & when (@variationContainerGrid) or (@variationContainerRelaxed) {
- .ui.ui.ui.grid.container {
- width: @computerGridWidth;
- }
- & when (@variationContainerRelaxed) {
- .ui.ui.ui.relaxed.grid.container {
- width: @computerRelaxedGridWidth;
- }
- .ui.ui.ui.very.relaxed.grid.container {
- width: @computerVeryRelaxedGridWidth;
- }
- }
- }
-}
-
-/* Large Monitor */
-@media only screen and (min-width: @largeMonitorBreakpoint) {
- .ui.ui.ui.container:not(.fluid) {
- width: @largeMonitorWidth;
- margin-left: @largeMonitorGutter;
- margin-right: @largeMonitorGutter;
- }
- & when (@variationContainerGrid) or (@variationContainerRelaxed) {
- .ui.ui.ui.grid.container {
- width: @largeMonitorGridWidth;
- }
- & when (@variationContainerRelaxed) {
- .ui.ui.ui.relaxed.grid.container {
- width: @largeMonitorRelaxedGridWidth;
- }
- .ui.ui.ui.very.relaxed.grid.container {
- width: @largeMonitorVeryRelaxedGridWidth;
- }
- }
- }
-}
-
-/*******************************
- Types
-*******************************/
-
-& when (@variationContainerText) {
- /* Text Container */
- .ui.text.container {
- font-family: @textFontFamily;
- max-width: @textWidth;
- line-height: @textLineHeight;
- font-size: @textSize;
- }
-}
-
-& when (@variationContainerFluid) {
- /* Fluid */
- .ui.fluid.container {
- width: 100%;
- }
-}
-
-/*******************************
- Variations
-*******************************/
-& when (@variationContainerAligned) {
- .ui[class*="left aligned"].container {
- text-align: left;
- }
- .ui[class*="center aligned"].container {
- text-align: center;
- }
- .ui[class*="right aligned"].container {
- text-align: right;
- }
-}
-& when (@variationContainerJustified) {
- .ui.justified.container {
- text-align: justify;
- hyphens: auto;
- }
-}
-
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/elements/divider.less b/src-angular/assets/semantic/src/definitions/elements/divider.less
deleted file mode 100644
index 1979457..0000000
--- a/src-angular/assets/semantic/src/definitions/elements/divider.less
+++ /dev/null
@@ -1,298 +0,0 @@
-/*!
- * # Fomantic-UI - Divider
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'element';
-@element : 'divider';
-
-@import (multiple) '../../theme.config';
-
-
-/*******************************
- Divider
-*******************************/
-
-.ui.divider {
- margin: @margin;
-
- line-height: 1;
- height: 0;
-
- font-weight: @fontWeight;
- text-transform: @textTransform;
- letter-spacing: @letterSpacing;
- color: @color;
-
- user-select: none;
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-}
-
-/*--------------
- Basic
----------------*/
-
-.ui.divider:not(.vertical):not(.horizontal) {
- border-top: @shadowWidth solid @shadowColor;
- border-bottom: @highlightWidth solid @highlightColor;
-}
-
-/*--------------
- Coupling
----------------*/
-
-/* Allow divider between each column row */
-.ui.grid > .column + .divider,
-.ui.grid > .row > .column + .divider {
- left: auto;
-}
-
-& when (@variationDividerHorizontal) {
- /*--------------
- Horizontal
- ---------------*/
-
- .ui.horizontal.divider {
- display: table;
- white-space: nowrap;
-
- height: auto;
- margin: @horizontalMargin;
- line-height: 1;
- text-align: center;
- }
-
- .ui.horizontal.divider:before,
- .ui.horizontal.divider:after {
- content: '';
- display: table-cell;
- position: relative;
- top: 50%;
- width: 50%;
- background-repeat: no-repeat;
- }
-
- .ui.horizontal.divider:before {
- background-position: right @horizontalDividerMargin top 50%;
- }
- .ui.horizontal.divider:after {
- background-position: left @horizontalDividerMargin top 50%;
- }
-}
-
-& when (@variationDividerVertical) {
- /*--------------
- Vertical
- ---------------*/
-
- .ui.vertical.divider {
- position: absolute;
- z-index: 2;
- top: 50%;
- left: 50%;
-
- margin: 0;
- padding: 0;
- width: auto;
- height: 50%;
-
- line-height: 0;
- text-align: center;
- transform: translateX(-50%);
- }
-
- .ui.vertical.divider:before,
- .ui.vertical.divider:after {
- position: absolute;
- left: 50%;
- content: '';
- z-index: 3;
-
- border-left: @shadowWidth solid @shadowColor;
- border-right: @highlightWidth solid @highlightColor;
-
- width: 0;
- height: @verticalDividerHeight;
- }
-
- .ui.vertical.divider:before {
- top: -100%;
- }
- .ui.vertical.divider:after {
- top: auto;
- bottom: 0;
- }
-
- /* Inside grid */
- @media only screen and (max-width : @largestMobileScreen) {
-
- .ui.stackable.grid .ui.vertical.divider,
- .ui.grid .stackable.row .ui.vertical.divider {
- display: table;
- white-space: nowrap;
- height: auto;
- margin: @horizontalMargin;
- overflow: hidden;
- line-height: 1;
- text-align: center;
- position: static;
- top: 0;
- left: 0;
- transform: none;
- }
-
- .ui.stackable.grid .ui.vertical.divider:before,
- .ui.grid .stackable.row .ui.vertical.divider:before,
- .ui.stackable.grid .ui.vertical.divider:after,
- .ui.grid .stackable.row .ui.vertical.divider:after {
- left: 0;
- border-left: none;
- border-right: none;
- content: '';
- display: table-cell;
- position: relative;
- top: 50%;
- width: 50%;
- background-repeat: no-repeat;
- }
-
- .ui.stackable.grid .ui.vertical.divider:before,
- .ui.grid .stackable.row .ui.vertical.divider:before {
- background-position: right @horizontalDividerMargin top 50%;
- }
- .ui.stackable.grid .ui.vertical.divider:after,
- .ui.grid .stackable.row .ui.vertical.divider:after {
- background-position: left @horizontalDividerMargin top 50%;
- }
- }
-}
-
-& when (@variationDividerIcon) {
- /*--------------
- Icon
- ---------------*/
-
- .ui.divider > .icon {
- margin: @dividerIconMargin;
- font-size: @dividerIconSize;
- height: 1em;
- vertical-align: middle;
- }
-}
-
-& when (@variationDividerHorizontal) {
- /*--------------
- Header
- ---------------*/
- .ui.horizontal.divider[class*="left aligned"] {
- &:before {
- display: none;
- }
- &:after {
- width: 100%;
- }
- }
- .ui.horizontal.divider[class*="right aligned"] {
- &:before {
- width: 100%;
- }
- &:after {
- display: none;
- }
- }
-}
-
-/*******************************
- Variations
-*******************************/
-
-& when (@variationDividerHidden) {
- /*--------------
- Hidden
- ---------------*/
-
- .ui.hidden.divider {
- border-color: transparent !important;
- }
-
- .ui.hidden.divider:before,
- .ui.hidden.divider:after {
- display: none;
- }
-}
-
-/*--------------
- Inverted
----------------*/
-& when (@variationDividerInverted) {
- .ui.divider.inverted,
- .ui.vertical.inverted.divider,
- .ui.horizontal.inverted.divider {
- color: @invertedTextColor;
- }
- .ui.divider.inverted,
- .ui.divider.inverted:after,
- .ui.divider.inverted:before {
- border-top-color: @invertedShadowColor !important;
- border-left-color: @invertedShadowColor !important;
- border-bottom-color: @invertedHighlightColor !important;
- border-right-color: @invertedHighlightColor !important;
- }
-}
-
-/*--------------
- Fitted
----------------*/
-& when (@variationDividerFitted) {
- .ui.fitted.divider {
- margin: 0;
- }
-}
-
-& when (@variationDividerClearing) {
- /*--------------
- Clearing
- ---------------*/
-
- .ui.clearing.divider {
- clear: both;
- }
-}
-
-& when (@variationDividerSection) {
- /*--------------
- Section
- ---------------*/
-
- .ui.section.divider {
- margin-top: @sectionMargin;
- margin-bottom: @sectionMargin;
- }
-}
-
-/*--------------
- Sizes
----------------*/
-
-.ui.divider {
- font-size: @medium;
-}
-& when not (@variationDividerSizes = false) {
- each(@variationDividerSizes, {
- @s: @@value;
- .ui.@{value}.divider {
- font-size: @s;
- }
- })
-}
-
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/elements/emoji.less b/src-angular/assets/semantic/src/definitions/elements/emoji.less
deleted file mode 100644
index 40ea943..0000000
--- a/src-angular/assets/semantic/src/definitions/elements/emoji.less
+++ /dev/null
@@ -1,72 +0,0 @@
-/*!
- * # Fomantic UI - Emoji
- * https://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * https://github.com/fomantic/Fomantic-UI/blob/master/LICENSE.md
- *
- */
-
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'element';
-@element : 'emoji';
-
-@import (multiple) '../../theme.config';
-
-
-/*******************************
- Emoji
-*******************************/
-
-
-em[data-emoji] {
- opacity: @opacity;
-
- speak: none;
- backface-visibility: hidden;
-}
-
-em[data-emoji]:before {
- content:'\00A0\00A0\00A0\00A0\00A0\00A0\00A0';
- display: inline-block;
- line-height: @emojiLineHeight;
- background-repeat: no-repeat;
- background-position: center center;
- & when not (@emojiFileType = 'svg') {
- background-size: contain;
- }
-}
-
-
-/*******************************
- States
-*******************************/
-
-em[data-emoji].disabled {
- opacity: @disabledOpacity;
-}
-
-
-/*******************************
- Variations
-*******************************/
-
-em[data-emoji].loading:before {
- animation: loader @loadingDuration linear infinite;
-}
-
-
-/*-------------------
- Link
---------------------*/
-
-em[data-emoji].link {
- cursor: pointer;
-}
-
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/elements/flag.less b/src-angular/assets/semantic/src/definitions/elements/flag.less
deleted file mode 100644
index b691d18..0000000
--- a/src-angular/assets/semantic/src/definitions/elements/flag.less
+++ /dev/null
@@ -1,52 +0,0 @@
-/*!
- * # Fomantic-UI - Flag
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'element';
-@element : 'flag';
-
-@import (multiple) '../../theme.config';
-
-
-/*******************************
- Flag
-*******************************/
-
-i.flag:not(.icon) {
- display: inline-block;
-
- width: @width;
- height: @height;
-
- line-height: @height;
- vertical-align: @verticalAlign;
- margin: 0 @margin 0 0;
-
- text-decoration: inherit;
-
- speak: none;
- -webkit-font-smoothing: antialiased;
- backface-visibility: hidden;
-}
-
-/* Sprite */
-i.flag:not(.icon):before {
- display: inline-block;
- content: '';
- background: url(@spritePath) no-repeat -108px -1976px;
- width: @width;
- height: @height;
-}
-
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/elements/header.less b/src-angular/assets/semantic/src/definitions/elements/header.less
deleted file mode 100644
index 2c3634d..0000000
--- a/src-angular/assets/semantic/src/definitions/elements/header.less
+++ /dev/null
@@ -1,487 +0,0 @@
-/*!
- * # Fomantic-UI - Header
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'element';
-@element : 'header';
-
-@import (multiple) '../../theme.config';
-
-
-/*******************************
- Header
-*******************************/
-
-/* Standard */
-.ui.header {
- border: none;
- margin: @margin;
- padding: @verticalPadding @horizontalPadding;
- font-family: @fontFamily;
- font-weight: @fontWeight;
- line-height: @lineHeight;
- text-transform: @textTransform;
- color: @textColor;
-}
-
-.ui.header:first-child {
- margin-top: @firstMargin;
-}
-.ui.header:last-child {
- margin-bottom: @lastMargin;
-}
-
-& when (@variationHeaderSub) {
- /*--------------
- Sub Header
- ---------------*/
-
- .ui.header .sub.header {
- display: block;
- font-weight: @normal;
- padding: 0;
- margin: @subHeaderMargin;
- font-size: @subHeaderFontSize;
- line-height: @subHeaderLineHeight;
- color: @subHeaderColor;
- }
-}
-
-/*--------------
- Icon
----------------*/
-
-.ui.header > .icon {
- display: table-cell;
- opacity: @iconOpacity;
- font-size: @iconSize;
- padding-top: @iconOffset;
- vertical-align: @iconAlignment;
-}
-
-/* With Text Node */
-.ui.header .icon:only-child {
- display: inline-block;
- padding: 0;
- margin-right: @iconMargin;
-}
-
-/*-------------------
- Image
---------------------*/
-
-.ui.header > .image:not(.icon),
-.ui.header > img {
- display: inline-block;
- margin-top: @imageOffset;
- width: @imageWidth;
- height: @imageHeight;
- vertical-align: @imageAlignment;
-}
-.ui.header > .image:not(.icon):only-child,
-.ui.header > img:only-child {
- margin-right: @imageMargin;
-}
-
-/*--------------
- Content
----------------*/
-
-.ui.header .content {
- display: inline-block;
- vertical-align: @contentAlignment;
-}
-
-/* After Image */
-.ui.header > img + .content,
-.ui.header > .image + .content {
- padding-left: @imageMargin;
- vertical-align: @contentImageAlignment;
-}
-
-/* After Icon */
-.ui.header > .icon + .content {
- padding-left: @iconMargin;
- display: table-cell;
- vertical-align: @contentIconAlignment;
-}
-
-
-/*--------------
- Loose Coupling
----------------*/
-
-.ui.header .ui.label {
- font-size: @labelSize;
- margin-left: @labelDistance;
- vertical-align: @labelVerticalAlign;
-}
-
-/* Positioning */
-.ui.header + p {
- margin-top: @nextParagraphDistance;
-}
-
-
-
-/*******************************
- Types
-*******************************/
-
-
-/*--------------
- Page
----------------*/
-& when not (@variationHeaderTags = false) {
- each(@variationHeaderTags, {
- @sf: @{value}SubHeaderFontSize;
- @s: @@value;
- @{value}.ui.header {
- font-size: @s;
- }
- & when (@variationHeaderSub) {
- @{value}.ui.header .sub.header {
- font-size: @@sf;
- }
- }
- })
-}
-
-/*--------------
- Content Heading
----------------*/
-
-& when not (@variationHeaderSizes = false) {
- each(@variationHeaderSizes, {
- @sf: @{value}SubHeaderFontSize;
- @shf: @{value}SubHeadingSize;
- @s: @{value}FontSize;;
- .ui.@{value}.header {
- font-size: @@s;
- & when (@@s >= 2) {
- min-height: 1em;
- }
- }
- & when (@variationHeaderSub) {
- .ui.@{value}.header .sub.header {
- font-size: @@sf;
- }
- .ui.@{value}.sub.header {
- font-size: @@shf;
- }
- }
- })
-}
-
-& when (@variationHeaderSub) {
- /*--------------
- Sub Heading
- ---------------*/
-
- .ui.sub.header {
- padding: 0;
- margin-bottom: @subHeadingDistance;
- font-weight: @subHeadingFontWeight;
- font-size: @subHeadingFontSize;
- text-transform: @subHeadingTextTransform;
- color: @subHeadingColor;
- }
-}
-
-& when (@variationHeaderIcon) {
- /*-------------------
- Icon
- --------------------*/
-
- .ui.icon.header {
- display: inline-block;
- text-align: center;
- margin: @iconHeaderTopMargin 0 @iconHeaderBottomMargin;
- }
- .ui.icon.header:after {
- content: '';
- display: block;
- height: 0;
- clear: both;
- visibility: hidden;
- }
-
- .ui.icon.header:first-child {
- margin-top: @iconHeaderFirstMargin;
- }
- .ui.icon.header .icon {
- float: none;
- display: block;
- width: auto;
- height: auto;
- line-height: 1;
- padding: 0;
- font-size: @iconHeaderSize;
- margin: 0 auto @iconHeaderMargin;
- opacity: @iconHeaderOpacity;
- }
- .ui.icon.header .corner.icon {
- font-size: @cornerIconHeaderSize;
- }
- .ui.icon.header .content {
- display: block;
- padding: 0;
- }
- .ui.icon.header .circular.icon {
- font-size: @circularHeaderIconSize;
- }
- .ui.icon.header .square.icon {
- font-size: @squareHeaderIconSize;
- }
- & when (@variationHeaderBlock) {
- .ui.block.icon.header .icon {
- margin-bottom: 0;
- }
- }
- .ui.icon.header.aligned {
- margin-left: auto;
- margin-right: auto;
- display: block;
- }
-}
-
-/*******************************
- States
-*******************************/
-& when (@variationHeaderDisabled) {
- .ui.disabled.header {
- opacity: @disabledOpacity;
- }
-}
-
-
-/*******************************
- Variations
-*******************************/
-
-& when (@variationHeaderInverted) {
- /*-------------------
- Inverted
- --------------------*/
-
- .ui.inverted.header {
- color: @invertedColor;
- }
- .ui.inverted.header .sub.header {
- color: @invertedSubHeaderColor;
- }
- & when (@variationHeaderAttached) {
- .ui.inverted.attached.header {
- background: @invertedAttachedBackground;
- box-shadow: none;
- border-color: transparent;
- }
- }
- & when (@variationHeaderBlock) {
- .ui.inverted.block.header {
- background: @invertedBlockBackground;
- box-shadow: none;
- border-bottom: none;
- }
- }
-}
-
-
-/*-------------------
- Colors
---------------------*/
-
-each(@colors, {
- @color: replace(@key, '@', '');
- @c: @colors[@@color][color];
- @l: @colors[@@color][light];
- @h: @colors[@@color][hover];
- @lh: @colors[@@color][lightHover];
-
- .ui.@{color}.header {
- color: @c;
- }
- a.ui.@{color}.header:hover {
- color: @h;
- }
- & when (@variationHeaderDividing) {
- .ui.@{color}.dividing.header {
- border-bottom: @dividedColoredBorderWidth solid @c;
- }
- }
- & when (@variationHeaderInverted) {
- .ui.inverted.@{color}.header.header.header {
- color: @l;
- }
- a.ui.inverted.@{color}.header.header.header:hover {
- color: @lh;
- }
- .ui.inverted.@{color}.dividing.header {
- border-bottom: @dividedColoredBorderWidth solid @l;
- }
- }
-})
-
-& when (@variationHeaderAligned) {
- /*-------------------
- Aligned
- --------------------*/
-
- .ui.left.aligned.header {
- text-align: left;
- }
- .ui.right.aligned.header {
- text-align: right;
- }
- .ui.centered.header,
- .ui.center.aligned.header {
- text-align: center;
- }
-}
-
-& when (@variationHeaderJustified) {
- .ui.justified.header {
- text-align: justify;
- }
- .ui.justified.header:after {
- display: inline-block;
- content: '';
- width: 100%;
- }
-}
-
-& when (@variationHeaderFloated) {
- /*-------------------
- Floated
- --------------------*/
-
- .ui.floated.header,
- .ui[class*="left floated"].header {
- float: left;
- margin-top: 0;
- margin-right: @floatedMargin;
- }
- .ui[class*="right floated"].header {
- float: right;
- margin-top: 0;
- margin-left: @floatedMargin;
- }
-}
-
-& when (@variationHeaderFitted) {
- /*-------------------
- Fitted
- --------------------*/
-
- .ui.fitted.header {
- padding: 0;
- }
-}
-
-& when (@variationHeaderDividing) {
- /*-------------------
- Dividing
- --------------------*/
-
- .ui.dividing.header {
- padding-bottom: @dividedBorderPadding;
- border-bottom: @dividedBorder;
- }
- .ui.dividing.header .sub.header {
- padding-bottom: @dividedSubHeaderPadding;
- }
- .ui.dividing.header .icon {
- margin-bottom: @dividedIconPadding;
- }
- & when (@variationHeaderInverted) {
- .ui.inverted.dividing.header {
- border-bottom-color: @invertedDividedBorderColor;
- }
- }
-}
-
-& when (@variationHeaderBlock) {
- /*-------------------
- Block
- --------------------*/
-
- .ui.block.header {
- background: @blockBackground;
- padding: @blockVerticalPadding @blockHorizontalPadding;
- box-shadow: @blockBoxShadow;
- border: @blockBorder;
- border-radius: @blockBorderRadius;
- }
- .ui.block.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
- font-size: @mediumBlock;
- }
- & when not (@variationHeaderSizes = false) {
- each(@variationHeaderSizes, {
- @s: @{value}Block;
- .ui.@{value}.block.header {
- font-size: @@s;
- }
- })
- }
-}
-
-& when (@variationHeaderAttached) {
- /*-------------------
- Attached
- --------------------*/
-
- .ui.attached.header {
- background: @attachedBackground;
- padding: @attachedVerticalPadding @attachedHorizontalPadding;
- margin: 0 @attachedOffset 0 @attachedOffset;
- box-shadow: @attachedBoxShadow;
- border: @attachedBorder;
- border-radius: 0;
- }
- .ui.attached.block.header {
- background: @blockBackground;
- }
- .ui.attached:not(.top).header {
- border-top: none;
- }
- .ui.top.attached.header {
- border-radius: @attachedBorderRadius @attachedBorderRadius 0 0;
- }
- .ui.bottom.attached.header {
- border-radius: 0 0 @attachedBorderRadius @attachedBorderRadius;
- }
-
- /* Attached Sizes */
- .ui.attached.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
- font-size: @mediumAttachedSize;
- }
- & when not (@variationHeaderSizes = false) {
- each(@variationHeaderSizes, {
- @s: @{value}AttachedSize;
- .ui.@{value}.attached.header {
- font-size: @@s;
- }
- })
- }
-}
-
-/*-------------------
- Sizing
---------------------*/
-
-.ui.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
- font-size: @mediumFontSize;
-}
-
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/elements/icon.less b/src-angular/assets/semantic/src/definitions/elements/icon.less
deleted file mode 100644
index 8f2f6ad..0000000
--- a/src-angular/assets/semantic/src/definitions/elements/icon.less
+++ /dev/null
@@ -1,374 +0,0 @@
-/*!
- * # Fomantic-UI - Icon
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'element';
-@element : 'icon';
-
-@import (multiple) '../../theme.config';
-
-
-/*******************************
- Icon
-*******************************/
-
-@font-face {
- font-family: 'Icons';
- src: @fallbackSRC;
- src: @src;
- font-style: normal;
- font-weight: @normal;
- font-variant: normal;
- text-decoration: inherit;
- text-transform: none;
-}
-
-i.icon {
- display: inline-block;
- opacity: @opacity;
-
- margin: 0 @distanceFromText 0 0;
-
- width: @width;
- height: @height;
-
- font-family: 'Icons';
- font-style: normal;
- font-weight: @normal;
- text-decoration: inherit;
- text-align: center;
-
- speak: none;
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- backface-visibility: hidden;
-}
-
-i.icon:before {
- background: none !important;
-}
-
-/*******************************
- Types
-*******************************/
-
-& when (@variationIconLoading) {
- /*--------------
- Loading
- ---------------*/
-
- i.icon.loading {
- height: 1em;
- line-height: 1;
- animation: loader @loadingDuration linear infinite;
- }
-}
-
-/*******************************
- States
-*******************************/
-
-i.icon:hover, i.icons:hover,
-i.icon:active, i.icons:active,
-i.emphasized.icon:not(.disabled), i.emphasized.icons:not(.disabled) {
- opacity: 1;
-}
-
-& when (@variationIconDisabled) {
- i.disabled.icon, i.disabled.icons {
- opacity: @disabledOpacity;
- cursor: default;
- pointer-events: none;
- }
-}
-
-/*******************************
- Variations
-*******************************/
-
-& when (@variationIconFitted) {
- /*-------------------
- Fitted
- --------------------*/
-
- i.fitted.icon {
- width: auto;
- margin: 0 !important;
- }
-}
-
-& when (@variationIconLink) {
- /*-------------------
- Link
- --------------------*/
-
- i.link.icon:not(.disabled), i.link.icons:not(.disabled) {
- cursor: pointer;
- opacity: @linkOpacity;
- transition: opacity @defaultDuration @defaultEasing;
- }
- i.link.icon:hover, i.link.icons:hover {
- opacity: 1;
- }
-}
-
-& when (@variationIconCircular) {
- /*-------------------
- Circular
- --------------------*/
-
- i.circular.icon {
- border-radius: 500em !important;
- line-height: 1 !important;
-
- padding: @circularPadding !important;
- box-shadow: @circularShadow;
-
- width: @circularSize !important;
- height: @circularSize !important;
- }
- & when (@variationIconInverted) {
- i.circular.inverted.icon {
- border: none;
- box-shadow: none;
- }
- }
-}
-
-& when (@variationIconFlipped) {
- /*-------------------
- Flipped
- --------------------*/
-
- i.flipped.icon,
- i.horizontally.flipped.icon {
- transform: scale(-1, 1);
- }
- i.vertically.flipped.icon {
- transform: scale(1, -1);
- }
-}
-
-& when (@variationIconRotated) {
- /*-------------------
- Rotated
- --------------------*/
-
- i.rotated.icon,
- i.right.rotated.icon,
- i.clockwise.rotated.icon {
- transform: rotate(90deg);
- }
-
- i.left.rotated.icon,
- i.counterclockwise.rotated.icon {
- transform: rotate(-90deg);
- }
-
- i.halfway.rotated.icon {
- transform: rotate(180deg);
- }
-}
-
-& when (@variationIconFlipped) and (@variationIconRotated) {
- /*--------------------------
- Flipped & Rotated
- ---------------------------*/
-
- i.rotated.flipped.icon,
- i.right.rotated.flipped.icon,
- i.clockwise.rotated.flipped.icon {
- transform: scale(-1, 1) rotate(90deg);
- }
-
- i.left.rotated.flipped.icon,
- i.counterclockwise.rotated.flipped.icon {
- transform: scale(-1, 1) rotate(-90deg);
- }
-
- i.halfway.rotated.flipped.icon {
- transform: scale(-1, 1) rotate(180deg);
- }
-
- i.rotated.vertically.flipped.icon,
- i.right.rotated.vertically.flipped.icon,
- i.clockwise.rotated.vertically.flipped.icon {
- transform: scale(1, -1) rotate(90deg);
- }
-
- i.left.rotated.vertically.flipped.icon,
- i.counterclockwise.rotated.vertically.flipped.icon {
- transform: scale(1, -1) rotate(-90deg);
- }
-
- i.halfway.rotated.vertically.flipped.icon {
- transform: scale(1, -1) rotate(180deg);
- }
-}
-
-& when (@variationIconBordered) {
- /*-------------------
- Bordered
- --------------------*/
-
- i.bordered.icon {
- line-height: 1;
- vertical-align: baseline;
-
- width: @borderedSize;
- height: @borderedSize;
- padding: @borderedVerticalPadding @borderedHorizontalPadding !important;
- box-shadow: @borderedShadow;
- }
- & when (@variationIconInverted) {
- i.bordered.inverted.icon {
- border: none;
- box-shadow: none;
- }
- }
-}
-
-& when (@variationIconInverted) {
- /*-------------------
- Inverted
- --------------------*/
-
- /* Inverted Shapes */
- i.inverted.bordered.icon,
- i.inverted.circular.icon {
- background-color: @black;
- color: @white;
- }
-
- i.inverted.icon {
- color: @white;
- }
-}
-
-/*-------------------
- Colors
---------------------*/
-
-each(@colors, {
- @color: replace(@key, '@', '');
- @c: @colors[@@color][color];
- @l: @colors[@@color][light];
-
- i.@{color}.icon.icon.icon.icon {
- color: @c;
- }
- & when (@variationIconInverted) {
- i.inverted.@{color}.icon.icon.icon.icon {
- color: @l;
- }
- i.inverted.bordered.@{color}.icon.icon.icon.icon,
- i.inverted.circular.@{color}.icon.icon.icon.icon {
- background-color: @c;
- color: @white;
- }
- }
-})
-
-
-/*-------------------
- Sizes
---------------------*/
-
-i.icon,
-i.icons {
- font-size: @medium;
-}
-& when not (@variationIconSizes = false) {
- each(@variationIconSizes, {
- @s: @@value;
- i.@{value}.@{value}.@{value}.icon,
- i.@{value}.@{value}.@{value}.icons {
- line-height: 1;
- vertical-align: middle;
- font-size: @s;
- }
- })
-}
-
-& when (@variationIconGroups) or (@variationIconCorner) {
- /*******************************
- Groups
- *******************************/
-
- i.icons {
- display: inline-block;
- position: relative;
- line-height: 1;
- }
-
- i.icons .icon {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translateX(-50%) translateY(-50%);
- margin: 0;
- }
-
- i.icons .icon:first-child {
- position: static;
- width: auto;
- height: auto;
- vertical-align: top;
- transform: none;
- }
-
- & when (@variationIconCorner) {
- /* Corner Icon */
- i.icons .corner.icon {
- top: auto;
- left: auto;
- right: 0;
- bottom: 0;
- transform: none;
- font-size: @cornerIconSize;
- text-shadow: @cornerIconShadow;
- }
- i.icons .icon.corner[class*="top right"] {
- top: 0;
- left: auto;
- right: 0;
- bottom: auto;
- }
- i.icons .icon.corner[class*="top left"] {
- top: 0;
- left: 0;
- right: auto;
- bottom: auto;
- }
- i.icons .icon.corner[class*="bottom left"] {
- top: auto;
- left: 0;
- right: auto;
- bottom: 0;
- }
- i.icons .icon.corner[class*="bottom right"] {
- top: auto;
- left: auto;
- right: 0;
- bottom: 0;
- }
- & when (@variationIconInverted) {
- i.icons .inverted.corner.icon {
- text-shadow: @cornerIconInvertedShadow;
- }
- }
- }
-}
-
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/elements/image.less b/src-angular/assets/semantic/src/definitions/elements/image.less
deleted file mode 100644
index 2e3c269..0000000
--- a/src-angular/assets/semantic/src/definitions/elements/image.less
+++ /dev/null
@@ -1,305 +0,0 @@
-/*!
- * # Fomantic-UI - Image
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'element';
-@element : 'image';
-
-@import (multiple) '../../theme.config';
-
-
-/*******************************
- Image
-*******************************/
-
-.ui.image {
- position: relative;
- display: inline-block;
- vertical-align: middle;
- max-width: 100%;
- background-color: @placeholderColor;
-}
-
-img.ui.image {
- display: block;
-}
-
-.ui.image svg,
-.ui.image img {
- display: block;
- max-width: 100%;
- height: auto;
-}
-
-
-/*******************************
- States
-*******************************/
-
-.ui.hidden.images,
-.ui.ui.hidden.image {
- display: none;
-}
-.ui.hidden.transition.images,
-.ui.hidden.transition.image {
- display: block;
- visibility: hidden;
-}
-.ui.images > .hidden.transition {
- display: inline-block;
- visibility: hidden;
-}
-
-& when (@variationImageDisabled) {
- .ui.disabled.images,
- .ui.disabled.image {
- cursor: default;
- opacity: @disabledOpacity;
- }
-}
-
-
-/*******************************
- Variations
-*******************************/
-
-& when (@variationImageInline) {
- /*--------------
- Inline
- ---------------*/
-
- .ui.inline.image,
- .ui.inline.image svg,
- .ui.inline.image img {
- display: inline-block;
- }
-}
-
-& when (@variationImageAligned) {
- /*------------------
- Vertical Aligned
- -------------------*/
-
- .ui.top.aligned.images .image,
- .ui.top.aligned.image,
- .ui.top.aligned.image svg,
- .ui.top.aligned.image img {
- display: inline-block;
- vertical-align: top;
- }
- .ui.middle.aligned.images .image,
- .ui.middle.aligned.image,
- .ui.middle.aligned.image svg,
- .ui.middle.aligned.image img {
- display: inline-block;
- vertical-align: middle;
- }
- .ui.bottom.aligned.images .image,
- .ui.bottom.aligned.image,
- .ui.bottom.aligned.image svg,
- .ui.bottom.aligned.image img {
- display: inline-block;
- vertical-align: bottom;
- }
-}
-
-& when (@variationImageRounded) {
- /*--------------
- Rounded
- ---------------*/
-
- .ui.rounded.images .image,
- .ui.rounded.image,
- .ui.rounded.images .image > *,
- .ui.rounded.image > * {
- border-radius: @roundedBorderRadius;
- }
-}
-
-& when (@variationImageBordered) {
- /*--------------
- Bordered
- ---------------*/
-
- .ui.bordered.images .image,
- .ui.bordered.images img,
- .ui.bordered.images svg,
- .ui.bordered.image img,
- .ui.bordered.image svg,
- img.ui.bordered.image {
- border: @imageBorder;
- }
-}
-
-& when (@variationImageCircular) {
- /*--------------
- Circular
- ---------------*/
-
- .ui.circular.images,
- .ui.circular.image {
- overflow: hidden;
- }
-
- .ui.circular.images .image,
- .ui.circular.image,
- .ui.circular.images .image > *,
- .ui.circular.image > * {
- -webkit-border-radius: @circularRadius;
- -moz-border-radius: @circularRadius;
- border-radius: @circularRadius;
- }
-}
-
-& when (@variationImageFluid) {
- /*--------------
- Fluid
- ---------------*/
-
- .ui.fluid.images,
- .ui.fluid.image,
- .ui.fluid.images img,
- .ui.fluid.images svg,
- .ui.fluid.image svg,
- .ui.fluid.image img {
- display: block;
- width: 100%;
- height: auto;
- }
-}
-
-& when (@variationImageAvatar) {
- /*--------------
- Avatar
- ---------------*/
-
- .ui.avatar.images .image,
- .ui.avatar.images img,
- .ui.avatar.images svg,
- .ui.avatar.image img,
- .ui.avatar.image svg,
- .ui.avatar.image {
- margin-right: @avatarMargin;
-
- display: inline-block;
- width: @avatarSize;
- height: @avatarSize;
-
- -webkit-border-radius: @circularRadius;
- -moz-border-radius: @circularRadius;
- border-radius: @circularRadius;
- }
-}
-
-& when (@variationImageSpaced) {
- /*-------------------
- Spaced
- --------------------*/
-
- .ui.spaced.image {
- display: inline-block !important;
- margin-left: @spacedDistance;
- margin-right: @spacedDistance;
- }
-
- .ui[class*="left spaced"].image {
- margin-left: @spacedDistance;
- margin-right: 0;
- }
-
- .ui[class*="right spaced"].image {
- margin-left: 0;
- margin-right: @spacedDistance;
- }
-}
-
-& when (@variationImageFloated) {
- /*-------------------
- Floated
- --------------------*/
-
- .ui.floated.image,
- .ui.floated.images {
- float: left;
- margin-right: @floatedHorizontalMargin;
- margin-bottom: @floatedVerticalMargin;
- }
- .ui.right.floated.images,
- .ui.right.floated.image {
- float: right;
- margin-right: 0;
- margin-bottom: @floatedVerticalMargin;
- margin-left: @floatedHorizontalMargin;
- }
-
- .ui.floated.images:last-child,
- .ui.floated.image:last-child {
- margin-bottom: 0;
- }
-}
-
-& when (@variationImageCentered) {
- .ui.centered.images,
- .ui.centered.image {
- margin-left: auto;
- margin-right: auto;
- }
-}
-
-/*--------------
- Sizes
----------------*/
-
-.ui.medium.images .image,
-.ui.medium.images img,
-.ui.medium.images svg,
-.ui.medium.image {
- width: @mediumWidth;
- height: auto;
- font-size: @medium;
-}
-& when not (@variationImageSizes = false) {
- each(@variationImageSizes, {
- @w: @{value}Width;
- @s: @@value;
- .ui.@{value}.images .image,
- .ui.@{value}.images img,
- .ui.@{value}.images svg,
- .ui.@{value}.image {
- width: @@w;
- height: auto;
- font-size: @s;
- }
- })
-}
-
-& when (@variationImageGroups) {
- /*******************************
- Groups
- *******************************/
-
- .ui.images {
- font-size: 0;
- margin: 0 -@imageHorizontalMargin 0;
- }
-
- .ui.images .image,
- .ui.images > img,
- .ui.images > svg {
- display: inline-block;
- margin: 0 @imageHorizontalMargin @imageVerticalMargin;
- }
-}
-
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/elements/input.less b/src-angular/assets/semantic/src/definitions/elements/input.less
deleted file mode 100644
index 3eb8736..0000000
--- a/src-angular/assets/semantic/src/definitions/elements/input.less
+++ /dev/null
@@ -1,565 +0,0 @@
-/*!
- * # Fomantic-UI - Input
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'element';
-@element : 'input';
-
-@import (multiple) '../../theme.config';
-
-
-/*******************************
- Standard
-*******************************/
-
-
-/*--------------------
- Inputs
----------------------*/
-
-.ui.input {
- position: relative;
- font-weight: @normal;
- font-style: normal;
- display: inline-flex;
- color: @inputColor;
-}
-.ui.input > input {
- margin: 0;
- max-width: 100%;
- flex: 1 0 auto;
- outline: none;
- -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
- text-align: @textAlign;
- line-height: @lineHeight;
-
- font-family: @inputFont;
- padding: @padding;
-
- background: @background;
- border: @border;
- color: @inputColor;
- border-radius: @borderRadius;
- transition: @transition;
-
- box-shadow: @boxShadow;
-}
-
-
-/*--------------------
- Placeholder
----------------------*/
-
-/* browsers require these rules separate */
-
-.ui.input > input::-webkit-input-placeholder {
- color: @placeholderColor;
-}
-.ui.input > input::-moz-placeholder {
- color: @placeholderColor;
-}
-.ui.input > input:-ms-input-placeholder {
- color: @placeholderColor;
-}
-
-
-/*******************************
- States
-*******************************/
-& when (@variationInputDisabled) {
- /*--------------------
- Disabled
- ---------------------*/
-
- .ui.disabled.input,
- .ui.input:not(.disabled) input[disabled] {
- opacity: @disabledOpacity;
- }
-
- .ui.disabled.input > input,
- .ui.input:not(.disabled) input[disabled] {
- pointer-events: none;
- }
-}
-
-/*--------------------
- Active
----------------------*/
-
-.ui.input > input:active,
-.ui.input.down input {
- border-color: @downBorderColor;
- background: @downBackground;
- color: @downColor;
- box-shadow: @downBoxShadow;
-}
-
-& when (@variationInputLoading) {
- /*--------------------
- Loading
- ---------------------*/
-
- .ui.loading.loading.input > i.icon:before {
- position: absolute;
- content: '';
- top: 50%;
- left: 50%;
-
- margin: @loaderMargin;
- width: @loaderSize;
- height: @loaderSize;
-
- border-radius: @circularRadius;
- border: @loaderLineWidth solid @loaderFillColor;
- }
- .ui.loading.loading.input > i.icon:after {
- position: absolute;
- content: '';
- top: 50%;
- left: 50%;
-
- margin: @loaderMargin;
- width: @loaderSize;
- height: @loaderSize;
-
- animation: loader @loaderSpeed infinite linear;
-
- border: @loaderLineWidth solid @loaderLineColor;
- border-radius: @circularRadius;
-
- box-shadow: 0 0 0 1px transparent;
- }
-}
-
-
-/*--------------------
- Focus
----------------------*/
-
-.ui.input.focus > input,
-.ui.input > input:focus {
- border-color: @focusBorderColor;
- background: @focusBackground;
- color: @focusColor;
- box-shadow: @focusBoxShadow;
-}
-.ui.input.focus > input::-webkit-input-placeholder,
-.ui.input > input:focus::-webkit-input-placeholder {
- color: @placeholderFocusColor;
-}
-.ui.input.focus > input::-moz-placeholder,
-.ui.input > input:focus::-moz-placeholder {
- color: @placeholderFocusColor;
-}
-.ui.input.focus > input:-ms-input-placeholder,
-.ui.input > input:focus:-ms-input-placeholder {
- color: @placeholderFocusColor;
-}
-
-
-& when (@variationInputStates) {
- /*--------------------
- States
- ---------------------*/
- each(@formStates, {
- @state: replace(@key, '@', '');
-
- .ui.input.@{state} > input {
- background-color: @formStates[@@state][background];
- border-color: @formStates[@@state][borderColor];
- color: @formStates[@@state][color];
- box-shadow: @formStates[@@state][boxShadow];
- }
-
- /* Placeholder */
- .ui.input.@{state} > input::-webkit-input-placeholder {
- color: @formStates[@@state][inputPlaceholderColor];
- }
- .ui.input.@{state} > input::-moz-placeholder {
- color: @formStates[@@state][inputPlaceholderColor];
- }
- .ui.input.@{state} > input:-ms-input-placeholder {
- color: @formStates[@@state][inputPlaceholderColor] !important;
- }
-
- /* Focused Placeholder */
- .ui.input.@{state} > input:focus::-webkit-input-placeholder {
- color: @formStates[@@state][inputPlaceholderFocusColor];
- }
- .ui.input.@{state} > input:focus::-moz-placeholder {
- color: @formStates[@@state][inputPlaceholderFocusColor];
- }
- .ui.input.@{state} > input:focus:-ms-input-placeholder {
- color: @formStates[@@state][inputPlaceholderFocusColor] !important;
- }
- })
-}
-/*******************************
- Variations
-*******************************/
-
-& when (@variationInputTransparent) {
- /*--------------------
- Transparent
- ---------------------*/
-
-
- .ui.transparent.input > textarea,
- .ui.transparent.input > input {
- border-color: transparent !important;
- background-color: transparent !important;
- padding: 0;
- box-shadow: none !important;
- border-radius: 0 !important;
- }
- .field .ui.transparent.input > textarea {
- padding: @padding;
- }
-
- /* Transparent Icon */
- :not(.field) > .ui.transparent.icon.input > i.icon {
- width: @transparentIconWidth;
- }
- :not(.field) > .ui.ui.ui.transparent.icon.input > input {
- padding-left: 0;
- padding-right: @transparentIconMargin;
- }
- :not(.field) > .ui.ui.ui.transparent[class*="left icon"].input > input {
- padding-left: @transparentIconMargin;
- padding-right: 0;
- }
- & when (@variationInputInverted) {
- /* Transparent Inverted */
- .ui.transparent.inverted.input {
- color: @transparentInvertedColor;
- }
- .ui.ui.transparent.inverted.input > textarea,
- .ui.ui.transparent.inverted.input > input {
- color: inherit;
- }
-
- .ui.transparent.inverted.input > input::-webkit-input-placeholder {
- color: @transparentInvertedPlaceholderColor;
- }
- .ui.transparent.inverted.input > input::-moz-placeholder {
- color: @transparentInvertedPlaceholderColor;
- }
- .ui.transparent.inverted.input > input:-ms-input-placeholder {
- color: @transparentInvertedPlaceholderColor;
- }
- }
-}
-
-& when (@variationInputIcon) {
- /*--------------------
- Icon
- ---------------------*/
-
- .ui.icon.input > i.icon {
- cursor: default;
- position: absolute;
- line-height: 1;
- text-align: center;
- top: 0;
- right: 0;
- margin: 0;
- height: 100%;
-
- width: @iconWidth;
- opacity: @iconOpacity;
- border-radius: 0 @borderRadius @borderRadius 0;
- transition: @iconTransition;
- }
- .ui.icon.input > i.icon:not(.link) {
- pointer-events: none;
- }
- .ui.ui.ui.ui.icon.input > textarea,
- .ui.ui.ui.ui.icon.input > input {
- padding-right: @iconMargin;
- }
-
- .ui.icon.input > i.icon:before,
- .ui.icon.input > i.icon:after {
- left: 0;
- position: absolute;
- text-align: center;
- top: 50%;
- width: 100%;
- margin-top: @iconOffset;
- }
- .ui.icon.input > i.link.icon {
- cursor: pointer;
- }
- .ui.icon.input > i.circular.icon {
- top: @circularIconVerticalOffset;
- right: @circularIconHorizontalOffset;
- }
-
- /* Left Icon Input */
- .ui[class*="left icon"].input > i.icon {
- right: auto;
- left: @borderWidth;
- border-radius: @borderRadius 0 0 @borderRadius;
- }
- .ui[class*="left icon"].input > i.circular.icon {
- right: auto;
- left: @circularIconHorizontalOffset;
- }
- .ui.ui.ui.ui[class*="left icon"].input > textarea,
- .ui.ui.ui.ui[class*="left icon"].input > input {
- padding-left: @iconMargin;
- padding-right: @horizontalPadding;
- }
-
- /* Focus */
- .ui.icon.input > textarea:focus ~ i.icon,
- .ui.icon.input > input:focus ~ i.icon {
- opacity: 1;
- }
-}
-
-& when (@variationInputLabeled) {
- /*--------------------
- Labeled
- ---------------------*/
-
- /* Adjacent Label */
- .ui.labeled.input > .label {
- flex: 0 0 auto;
- margin: 0;
- font-size: @relativeMedium;
- }
- .ui.labeled.input > .label:not(.corner) {
- padding-top: @verticalPadding;
- padding-bottom: @verticalPadding;
- }
-
- /* Regular Label on Left */
- .ui.labeled.input:not([class*="corner labeled"]) .label:first-child {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- }
- .ui.labeled.input:not([class*="corner labeled"]) .label:first-child + input {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- border-left-color: transparent;
- }
- .ui.labeled.input:not([class*="corner labeled"]) .label:first-child + input:focus {
- border-left-color: @focusBorderColor;
- }
-
- /* Regular Label on Right */
- .ui[class*="right labeled"].input > input {
- border-top-right-radius: 0 !important;
- border-bottom-right-radius: 0 !important;
- border-right-color: transparent !important;
- }
- .ui[class*="right labeled"].input > input + .label {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- }
-
- .ui[class*="right labeled"].input > input:focus {
- border-right-color: @focusBorderColor !important;
- }
-}
-
-& when (@variationInputCorner) {
- /* Corner Label */
- .ui.labeled.input .corner.label {
- top: @labelCornerTop;
- right: @labelCornerRight;
- font-size: @labelCornerSize;
- border-radius: 0 @borderRadius 0 0;
- }
-
- /* Spacing with corner label */
- .ui[class*="corner labeled"]:not([class*="left corner labeled"]).labeled.input > textarea,
- .ui[class*="corner labeled"]:not([class*="left corner labeled"]).labeled.input > input {
- padding-right: @labeledMargin !important;
- }
- .ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"]) > textarea,
- .ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"]) > input {
- padding-right: @labeledIconInputMargin !important;
- }
- .ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"]) > .icon {
- margin-right: @labeledIconMargin;
- }
-
- /* Left Labeled */
- .ui[class*="left corner labeled"].labeled.input > textarea,
- .ui[class*="left corner labeled"].labeled.input > input {
- padding-left: @labeledMargin !important;
- }
- & when (@variationInputIcon) {
- .ui[class*="left corner labeled"].icon.input > textarea,
- .ui[class*="left corner labeled"].icon.input > input {
- padding-left: @labeledIconInputMargin !important;
- }
- .ui[class*="left corner labeled"].icon.input > .icon {
- margin-left: @labeledIconMargin;
- }
- }
-}
-& when (@variationInputIcon) {
- .ui.icon.input > textarea ~ .icon {
- height: @textareaIconHeight;
- }
- :not(.field) > .ui.transparent.icon.input > textarea ~ .icon {
- height: @transparentTextareaIconHeight;
- }
-}
-& when (@variationInputCorner) {
- /* Corner Label Position */
- .ui.input > .ui.corner.label {
- top: @borderWidth;
- right: @borderWidth;
- }
- .ui.input > .ui.left.corner.label {
- right: auto;
- left: @borderWidth;
- }
-}
-
-& when (@variationInputLabeled) or (@variationInputAction) {
- /* Labeled and action input states */
- each(@formStates, {
- @state: replace(@key, '@', '');
- @borderColor: @formStates[@@state][borderColor];
-
- .ui.form > .field.@{state} > .ui.action.input > .ui.button,
- .ui.form > .field.@{state} > .ui.labeled.input:not([class*="corner labeled"]) > .ui.label,
- .ui.action.input.@{state} > .ui.button,
- .ui.labeled.input.@{state}:not([class*="corner labeled"]) > .ui.label {
- border-top: @borderWidth solid @borderColor;
- border-bottom: @borderWidth solid @borderColor;
- }
- .ui.form > .field.@{state} > .ui.left.action.input > .ui.button,
- .ui.form > .field.@{state} > .ui.labeled.input:not(.right):not([class*="corner labeled"]) > .ui.label,
- .ui.left.action.input.@{state} > .ui.button,
- .ui.labeled.input.@{state}:not(.right):not([class*="corner labeled"]) > .ui.label {
- border-left: @borderWidth solid @borderColor;
- }
- .ui.form > .field.@{state} > .ui.action.input:not(.left) > input + .ui.button,
- .ui.form > .field.@{state} > .ui.right.labeled.input:not([class*="corner labeled"]) > input + .ui.label,
- .ui.action.input.@{state}:not(.left) > input + .ui.button,
- .ui.right.labeled.input.@{state}:not([class*="corner labeled"]) > input + .ui.label {
- border-right: @borderWidth solid @borderColor;
- }
- .ui.form > .field.@{state} > .ui.right.labeled.input:not([class*="corner labeled"]) > .ui.label:first-child,
- .ui.right.labeled.input.@{state}:not([class*="corner labeled"]) > .ui.label:first-child {
- border-left: @borderWidth solid @borderColor;
- }
- })
-}
-
-& when (@variationInputAction) {
- /*--------------------
- Action
- ---------------------*/
-
- .ui.action.input > .button,
- .ui.action.input > .buttons {
- display: flex;
- align-items: center;
- flex: 0 0 auto;
- }
- .ui.action.input > .button,
- .ui.action.input > .buttons > .button {
- padding-top: @verticalPadding;
- padding-bottom: @verticalPadding;
- margin: 0;
- }
-
- /* Input when ui Left*/
- .ui[class*="left action"].input > input {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- border-left-color: transparent;
- }
-
- /* Input when ui Right*/
- .ui.action.input:not([class*="left action"]) > input {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- border-right-color: transparent;
- }
-
- /* Button and Dropdown */
- .ui.action.input > .dropdown:first-child,
- .ui.action.input > .button:first-child,
- .ui.action.input > .buttons:first-child > .button {
- border-radius: @borderRadius 0 0 @borderRadius;
- }
- .ui.action.input > .dropdown:not(:first-child),
- .ui.action.input > .button:not(:first-child),
- .ui.action.input > .buttons:not(:first-child) > .button {
- border-radius: 0;
- }
- .ui.action.input > .dropdown:last-child,
- .ui.action.input > .button:last-child,
- .ui.action.input > .buttons:last-child > .button {
- border-radius: 0 @borderRadius @borderRadius 0;
- }
-
- /* Input Focus */
- .ui.action.input:not([class*="left action"]) > input:focus {
- border-right-color: @focusBorderColor;
- }
-
- .ui.ui[class*="left action"].input > input:focus {
- border-left-color: @focusBorderColor;
- }
-}
-
-& when (@variationInputInverted) {
- /*--------------------
- Inverted
- ---------------------*/
-
- /* Standard */
- .ui.inverted.input > input {
- border: none;
- }
-}
-
-& when (@variationInputFluid) {
- /*--------------------
- Fluid
- ---------------------*/
-
- .ui.fluid.input {
- display: flex;
- }
- .ui.fluid.input > input {
- width: 0 !important;
- }
-}
-
-/*--------------------
- Size
----------------------*/
-
-.ui.input {
- font-size: @relativeMedium;
-}
-& when not (@variationInputSizes = false) {
- each(@variationInputSizes, {
- @s: @{value}InputSize;
- .ui.@{value}.input {
- font-size: @@s;
- }
- })
-}
-
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/elements/label.less b/src-angular/assets/semantic/src/definitions/elements/label.less
deleted file mode 100644
index ee17fdb..0000000
--- a/src-angular/assets/semantic/src/definitions/elements/label.less
+++ /dev/null
@@ -1,989 +0,0 @@
-/*!
- * # Fomantic-UI - Label
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'element';
-@element : 'label';
-
-@import (multiple) '../../theme.config';
-
-/*******************************
- Label
-*******************************/
-
-.ui.label {
- display: inline-block;
- line-height: 1;
- vertical-align: @verticalAlign;
-
- margin: @verticalMargin @horizontalMargin;
-
- background-color: @backgroundColor;
- background-image: @backgroundImage;
- padding: @verticalPadding @horizontalPadding;
- color: @color;
-
- text-transform: @textTransform;
- font-weight: @fontWeight;
-
- border: @border;
- border-radius: @borderRadius;
- transition: @transition;
-}
-
-.ui.label:first-child {
- margin-left: 0;
-}
-.ui.label:last-child {
- margin-right: 0;
-}
-
-/* Link */
-a.ui.label {
- cursor: pointer;
-}
-
-/* Inside Link */
-.ui.label > a {
- cursor: pointer;
- color: inherit;
- opacity: @linkOpacity;
- transition: @linkTransition;
-}
-.ui.label > a:hover {
- opacity: 1;
-}
-
-/* Image */
-.ui.label > img {
- width: auto !important;
- vertical-align: middle;
- height: @imageHeight;
-}
-
-/* Icon */
-.ui.left.icon.label > .icon,
-.ui.label > .icon {
- width: auto;
- margin: 0 @iconDistance 0 0;
-}
-
-/* Detail */
-.ui.label > .detail {
- display: inline-block;
- vertical-align: top;
- font-weight: @detailFontWeight;
- margin-left: @detailMargin;
- opacity: @detailOpacity;
-}
-.ui.label > .detail .icon {
- margin: 0 @detailIconDistance 0 0;
-}
-
-/* Removable label */
-.ui.label > .close.icon,
-.ui.label > .delete.icon {
- cursor: pointer;
- font-size: @deleteSize;
- opacity: @deleteOpacity;
- transition: @deleteTransition;
-}
-.ui.label > .close.icon:hover,
-.ui.label > .delete.icon:hover {
- opacity: 1;
-}
-
-/* Backward compatible positioning */
-.ui.label.left.icon > .close.icon,
-.ui.label.left.icon > .delete.icon {
- margin: 0 @deleteMargin 0 0;
-}
-.ui.label:not(.icon) > .close.icon,
-.ui.label:not(.icon) > .delete.icon {
- margin: 0 0 0 @deleteMargin;
-}
-
-/* Label for only an icon */
-.ui.icon.label > .icon {
- margin: 0 auto;
-}
-
-/* Right Side Icon */
-.ui.right.icon.label > .icon {
- margin: 0 0 0 @iconDistance;
-}
-
-/*-------------------
- Group
---------------------*/
-
-.ui.labels > .label {
- margin: 0 @groupHorizontalMargin @groupVerticalMargin 0;
-}
-
-
-/*-------------------
- Coupling
---------------------*/
-
-.ui.header > .ui.label {
- margin-top: @lineHeightOffset;
-}
-
-
-/* Remove border radius on attached segment */
-.ui.attached.segment > .ui.top.left.attached.label,
-.ui.bottom.attached.segment > .ui.top.left.attached.label {
- border-top-left-radius: 0;
-}
-.ui.attached.segment > .ui.top.right.attached.label,
-.ui.bottom.attached.segment > .ui.top.right.attached.label {
- border-top-right-radius: 0;
-}
-.ui.top.attached.segment > .ui.bottom.left.attached.label {
- border-bottom-left-radius: 0;
-}
-.ui.top.attached.segment > .ui.bottom.right.attached.label {
- border-bottom-right-radius: 0;
-}
-
-/* Padding on next content after a label */
-.ui.top.attached.label ~ .ui.bottom.attached.label + :not(.attached),
-.ui.top.attached.label + :not(.attached) {
- margin-top: @attachedSegmentPadding !important;
-}
-.ui.bottom.attached.label ~ :last-child:not(.attached) {
- margin-top:0;
- margin-bottom: @attachedSegmentPadding !important;
-}
-
-
-/*******************************
- Types
-*******************************/
-& when (@variationLabelImage) {
- .ui.image.label {
- width: auto !important;
- margin-top: 0;
- margin-bottom: 0;
- max-width: 9999px;
- vertical-align: baseline;
- text-transform: none;
-
- background: @imageLabelBackground;
- padding: @imageLabelPadding;
- border-radius: @imageLabelBorderRadius;
- box-shadow: @imageLabelBoxShadow;
- }
-
- .ui.image.label img {
- display: inline-block;
- vertical-align: top;
-
- height: @imageLabelImageHeight;
- margin: @imageLabelImageMargin;
- border-radius: @imageLabelImageBorderRadius;
- }
-
- .ui.image.label .detail {
- background: @imageLabelDetailBackground;
- margin: @imageLabelDetailMargin;
- padding: @imageLabelDetailPadding;
- border-radius: 0 @imageLabelBorderRadius @imageLabelBorderRadius 0;
- }
-}
-
-& when (@variationLabelTag) {
-/*-------------------
- Tag
---------------------*/
-
- .ui.tag.labels .label,
- .ui.tag.label {
- margin-left: 1em;
- position: relative;
- padding-left: @tagHorizontalPadding;
- padding-right: @tagHorizontalPadding;
-
- border-radius: 0 @borderRadius @borderRadius 0;
- transition: @tagTransition;
- }
- .ui.tag.labels .label:before,
- .ui.tag.label:before {
- position: absolute;
- transform: translateY(-50%) translateX(50%) rotate(-45deg);
-
- top: @tagTriangleTopOffset;
- right: @tagTriangleRightOffset;
- content: '';
-
- background-color: inherit;
- background-image: @tagTriangleBackgroundImage;
-
- width: @tagTriangleSize;
- height: @tagTriangleSize;
- transition: @tagTransition;
- }
-
-
- .ui.tag.labels .label:after,
- .ui.tag.label:after {
- position: absolute;
- content: '';
- top: 50%;
- left: -(@tagCircleSize / 2);
-
- margin-top: -(@tagCircleSize / 2);
- background-color: @tagCircleColor;
- width: @tagCircleSize;
- height: @tagCircleSize;
-
- box-shadow: @tagCircleBoxShadow;
- border-radius: @circularRadius;
- }
- & when (@variationLabelBasic) {
- .ui.basic.tag.labels .label:before,
- .ui.basic.tag.label:before {
- border-color: inherit;
- border-width: @basicBorderWidth 0 0 @basicBorderWidth;
- border-style: inherit;
- right: @basicBorderFullWidthOffset;
- }
- .ui.basic.tag.labels .label:after,
- .ui.basic.tag.label:after {
- box-shadow: @basicTagCircleBoxShadow;
- }
- }
-}
-
-& when (@variationLabelCorner) {
-/*-------------------
- Corner Label
---------------------*/
-
- .ui.corner.label {
- position: absolute;
- top: 0;
- right: 0;
- margin: 0;
- padding: 0;
- text-align: center;
-
- border-color: @backgroundColor;
-
- width: @cornerTriangleSize;
- height: @cornerTriangleSize;
- z-index: @cornerTriangleZIndex;
- transition: @cornerTriangleTransition;
- }
-
- /* Icon Label */
- .ui.corner.label{
- background-color: transparent !important;
- }
- .ui.corner.label:after {
- position: absolute;
- content: "";
- right: 0;
- top: 0;
- z-index: -1;
-
- width: 0;
- height: 0;
- background-color: transparent;
-
- border-top: 0 solid transparent;
- border-right: @cornerTriangleSize solid transparent;
- border-bottom: @cornerTriangleSize solid transparent;
- border-left: 0 solid transparent;
-
- border-right-color: inherit;
- transition: @cornerTriangleTransition;
- }
-
- .ui.corner.label .icon {
- cursor: inherit;
- position: absolute;
- top: @cornerIconTopOffset;
- left: auto;
- right: @cornerIconRightOffset;
- font-size: @cornerIconSize;
- margin: 0;
- }
-
- /* Left Corner */
- .ui.left.corner.label,
- .ui.left.corner.label:after {
- right: auto;
- left: 0;
- }
- .ui.left.corner.label:after {
- border-top: @cornerTriangleSize solid transparent;
- border-right: @cornerTriangleSize solid transparent;
- border-bottom: 0 solid transparent;
- border-left: 0 solid transparent;
-
- border-top-color: inherit;
- }
- .ui.left.corner.label .icon {
- left: @cornerIconLeftOffset;
- right: auto;
- }
-
- /* Segment */
- .ui.segment > .ui.corner.label {
- top: -1px;
- right: -1px;
- }
- .ui.segment > .ui.left.corner.label {
- right: auto;
- left: -1px;
- }
-}
-
-& when (@variationLabelRibbon) {
- /*-------------------
- Ribbon
- --------------------*/
-
- .ui.ribbon.label {
- position: relative;
- margin: 0;
- min-width: max-content;
- border-radius: 0 @borderRadius @borderRadius 0;
- border-color: @ribbonShadowColor;
- }
-
- .ui.ribbon.label:after {
- position: absolute;
- content: '';
-
- top: 100%;
- left: 0;
- background-color: transparent;
-
- border-style: solid;
- border-width: 0 @ribbonTriangleSize @ribbonTriangleSize 0;
- border-color: transparent;
- border-right-color: inherit;
-
- width: 0;
- height: 0;
- }
- /* Positioning */
- .ui.ribbon.label {
- left: @ribbonOffset;
- margin-right: -@ribbonTriangleSize;
- padding-left: @ribbonDistance;
- padding-right: @ribbonTriangleSize;
- }
- .ui[class*="right ribbon"].label {
- left: @rightRibbonOffset;
- padding-left: @ribbonTriangleSize;
- padding-right: @ribbonDistance;
- }
- & when (@variationLabelBasic) {
- .ui.basic.ribbon.label {
- padding-top: @basicRibbonOffset;
- padding-bottom: @basicRibbonOffset;
- }
- .ui.basic.ribbon.label:not([class*="right ribbon"]) {
- padding-left: @basicRibbonTriangleSizeOffset;
- padding-right: @basicRibbonTriangleSize;
- }
- .ui.basic[class*="right ribbon"].label {
- padding-left: @basicRibbonTriangleSize;
- padding-right: @basicRibbonTriangleSizeOffset;
- }
- .ui.basic.ribbon.label::after {
- top: @basicBorderFullWidthOffset;
- }
- .ui.basic.ribbon.label:not([class*="right ribbon"])::after {
- left: @basicBorderWidthOffset;
- }
- .ui.basic[class*="right ribbon"].label::after {
- right: @basicBorderWidthOffset;
- }
- }
- /* Right Ribbon */
- .ui[class*="right ribbon"].label {
- text-align: left;
- transform: translateX(-100%);
- border-radius: @borderRadius 0 0 @borderRadius;
- }
- .ui[class*="right ribbon"].label:after {
- left: auto;
- right: 0;
-
- border-style: solid;
- border-width: @ribbonTriangleSize @ribbonTriangleSize 0 0;
- border-color: transparent;
- border-top-color: inherit;
- }
-
- /* Inside Table */
- .ui.image > .ribbon.label,
- .ui.card .image > .ribbon.label {
- position: absolute;
- top: @ribbonImageTopDistance;
- }
- .ui.card .image > .ui.ribbon.label,
- .ui.image > .ui.ribbon.label {
- left: @ribbonImageOffset;
- }
- .ui.card .image > .ui[class*="right ribbon"].label,
- .ui.image > .ui[class*="right ribbon"].label {
- left: @rightRibbonImageOffset;
- padding-left: @horizontalPadding;
- }
-
- /* Inside Table */
- .ui.table td > .ui.ribbon.label {
- left: @ribbonTableOffset;
- }
- .ui.table td > .ui[class*="right ribbon"].label {
- left: @rightRibbonTableOffset;
- padding-left: @horizontalPadding;
- }
-}
-
-& when (@variationLabelAttached) {
- /*-------------------
- Attached
- --------------------*/
-
- .ui[class*="top attached"].label,
- .ui.attached.label {
- width: 100%;
- position: absolute;
- margin: 0;
- top: 0;
- left: 0;
-
- padding: @attachedVerticalPadding @attachedHorizontalPadding;
-
- border-radius: @attachedCornerBorderRadius @attachedCornerBorderRadius 0 0;
- }
- .ui[class*="bottom attached"].label {
- top: auto;
- bottom: 0;
- border-radius: 0 0 @attachedCornerBorderRadius @attachedCornerBorderRadius;
- }
-
- .ui[class*="top left attached"].label {
- width: auto;
- margin-top: 0 !important;
- border-radius: @attachedCornerBorderRadius 0 @attachedBorderRadius 0;
- }
-
- .ui[class*="top right attached"].label {
- width: auto;
- left: auto;
- right: 0;
- border-radius: 0 @attachedCornerBorderRadius 0 @attachedBorderRadius;
- }
- .ui[class*="bottom left attached"].label {
- width: auto;
- top: auto;
- bottom: 0;
- border-radius: 0 @attachedBorderRadius 0 @attachedCornerBorderRadius;
- }
- .ui[class*="bottom right attached"].label {
- top: auto;
- bottom: 0;
- left: auto;
- right: 0;
- width: auto;
- border-radius: @attachedBorderRadius 0 @attachedCornerBorderRadius 0;
- }
-}
-
-/*******************************
- States
-*******************************/
-
-/*-------------------
- Disabled
---------------------*/
-& when (@variationLabelDisabled) {
- .ui.label.disabled {
- opacity: 0.5;
- }
-}
-/*-------------------
- Hover
---------------------*/
-
-.ui.labels a.label:hover,
-a.ui.label:hover {
- background-color: @labelHoverBackgroundColor;
- border-color: @labelHoverBackgroundColor;
-
- background-image: @labelHoverBackgroundImage;
- color: @labelHoverTextColor;
-}
-.ui.labels a.label:hover:before,
-a.ui.label:hover:before {
- color: @labelHoverTextColor;
-}
-
-/*-------------------
- Active
---------------------*/
-
-.ui.active.label {
- background-color: @labelActiveBackgroundColor;
- border-color: @labelActiveBackgroundColor;
-
- background-image: @labelActiveBackgroundImage;
- color: @labelActiveTextColor;
-}
-.ui.active.label:before {
- background-color: @labelActiveBackgroundColor;
- background-image: @labelActiveBackgroundImage;
- color: @labelActiveTextColor;
-}
-
-/*-------------------
- Active Hover
---------------------*/
-
-.ui.labels a.active.label:hover,
-a.ui.active.label:hover {
- background-color: @labelActiveHoverBackgroundColor;
- border-color: @labelActiveHoverBackgroundColor;
-
- background-image: @labelActiveHoverBackgroundImage;
- color: @labelActiveHoverTextColor;
-}
-.ui.labels a.active.label:hover:before,
-a.ui.active.label:hover:before {
- background-color: @labelActiveHoverBackgroundColor;
- background-image: @labelActiveHoverBackgroundImage;
- color: @labelActiveHoverTextColor;
-}
-
-
-/*-------------------
- Visible
---------------------*/
-
-.ui.labels.visible .label,
-.ui.label.visible:not(.dropdown) {
- display: inline-block !important;
-}
-
-/*-------------------
- Hidden
---------------------*/
-
-.ui.labels.hidden .label,
-.ui.label.hidden {
- display: none !important;
-}
-
-
-/*******************************
- Variations
-*******************************/
-
-
-& when (@variationLabelBasic) {
- /*-------------------
- Basic
- --------------------*/
-
- .ui.basic.labels .label,
- .ui.basic.label {
- background: @basicBackground;
- border: @basicBorder;
- color: @basicColor;
- box-shadow: @basicBoxShadow;
- }
-
- /* Link */
- .ui.basic.labels a.label:hover,
- a.ui.basic.label:hover {
- text-decoration: none;
- background: @basicHoverBackground;
- color: @basicHoverColor;
- box-shadow: @basicHoverBoxShadow;
- }
- & when (@variationLabelPointing) {
- /* Pointing */
- .ui.basic.pointing.label:before {
- border-color: inherit;
- }
- }
-}
-
-& when (@variationLabelFluid) {
- /*-------------------
- Fluid
- --------------------*/
-
- .ui.label.fluid,
- .ui.fluid.labels > .label {
- width: 100%;
- box-sizing: border-box;
- }
-}
-
-& when (@variationLabelInverted) {
- /*-------------------
- Inverted
- --------------------*/
-
- .ui.inverted.labels .label,
- .ui.inverted.label {
- color: @invertedTextColor;
- background-color: @invertedBackgroundColor;
- }
- .ui.inverted.corner.label {
- border-color: @invertedBackgroundColor;
- }
- .ui.inverted.corner.label:hover {
- border-color: @backgroundColor;
- transition: none;
- }
- .ui.inverted.basic.labels .label,
- .ui.inverted.basic.label,
- .ui.inverted.basic.label:hover {
- border-color: @basicInvertedBorderColor;
- background: @black;
- }
- .ui.inverted.basic.label:hover {
- color: @linkColor;
- }
-}
-
-/*-------------------
- Colors
---------------------*/
-
-each(@colors,{
- @color : replace(@key,'@','');
- @isDark : @colors[@@color][isDark];
- @_labelColor : @colors[@@color][color];
- @_labelInvertedColor : @colors[@@color][light];
- @_labelTextColor : @colors[@@color][text];
- @_labelHover : @colors[@@color][hover];
- @_labelInvertedHover : @colors[@@color][lightHover];
- @_labelHoverTextColor : @colors[@@color][hoverText];
- @_labelRibbonShadow : @colors[@@color][ribbon];
- @_labelInvertedRibbonShadow : @colors[@@color][invertedRibbon];
-
- .ui.@{color}.labels .label,
- .ui.ui.ui.@{color}.label {
- background-color: @_labelColor;
- border-color: @_labelColor;
- color: @_labelTextColor;
- }
- /* Link */
- .ui.@{color}.labels a.label:hover,
- a.ui.ui.ui.@{color}.label:hover{
- background-color: @_labelHover;
- border-color: @_labelHover;
- color: @_labelHoverTextColor;
- }
- & when (@variationLabelRibbon) {
- /* Ribbon */
- .ui.ui.ui.@{color}.ribbon.label {
- border-color: @_labelRibbonShadow;
- }
- }
- & when (@variationLabelBasic) {
- /* Basic */
- .ui.basic.labels .@{color}.label,
- .ui.ui.ui.basic.@{color}.label {
- background: @basicBackground;
- border-color: @_labelColor;
- color: @_labelColor;
- }
- .ui.basic.labels a.@{color}.label:hover,
- a.ui.ui.ui.basic.@{color}.label:hover {
- background: @basicBackground;
- border-color: @_labelHover;
- color: @_labelHover;
- }
- }
- & when (@variationLabelInverted) {
- /* Inverted */
- .ui.inverted.labels .@{color}.label,
- .ui.ui.ui.inverted.@{color}.label {
- background-color: @_labelInvertedColor;
- border-color: @_labelInvertedColor;
- color: @black;
- }
- /* Inverted Link */
- .ui.inverted.labels a.@{color}.label:hover,
- a.ui.ui.ui.inverted.@{color}.label:hover{
- background-color: @_labelInvertedHover;
- border-color: @_labelInvertedHover;
- & when not (@isDark) {
- color: @black;
- }
- & when (@isDark) {
- color: @_labelTextColor;
- }
- }
- & when (@variationLabelRibbon) {
- /* Inverted Ribbon */
- .ui.ui.ui.inverted.@{color}.ribbon.label {
- border-color: @_labelInvertedRibbonShadow;
- }
- }
- & when (@variationLabelBasic) {
- /* Inverted Basic */
- .ui.inverted.basic.labels .@{color}.label,
- .ui.ui.ui.inverted.basic.@{color}.label {
- background-color: @invertedBackground;
- border-color: @_labelInvertedColor;
- & when not (@isDark) {
- color: @_labelInvertedColor;
- }
- & when (@isDark) {
- color: @invertedTextColor;
- }
- }
- .ui.inverted.basic.labels a.@{color}.label:hover,
- a.ui.ui.ui.inverted.basic.@{color}.label:hover {
- border-color: @_labelInvertedHover;
- background-color: @invertedBackground;
- & when not (@isDark) {
- color: @_labelInvertedHover;
- }
- }
- & when (@variationLabelTag) {
- /* Inverted Basic Tags */
- .ui.inverted.basic.tag.labels .@{color}.label,
- .ui.ui.ui.inverted.@{color}.basic.tag.label {
- border: @invertedBorderSize solid @_labelInvertedColor;
- }
- .ui.inverted.basic.tag.labels .@{color}.label:before,
- .ui.ui.ui.inverted.@{color}.basic.tag.label:before {
- border-color: inherit;
- border-width: @invertedBorderSize 0 0 @invertedBorderSize;
- border-style: inherit;
- background-color: @invertedBackground;
- right: e(%("calc(100%% + %d)", @invertedBorderSize));
- }
- }
- }
- }
-})
-
-/*-------------------
- Horizontal
---------------------*/
-
-.ui.horizontal.labels .label,
-.ui.horizontal.label {
- margin: 0 @horizontalLabelMargin 0 0;
-
- padding: @horizontalLabelVerticalPadding @horizontalPadding;
- min-width: @horizontalLabelMinWidth;
- text-align: center;
-}
-
-& when (@variationLabelCircular) {
- /*-------------------
- Circular
- --------------------*/
-
- .ui.circular.labels .label,
- .ui.circular.label {
- min-width: @circularMinSize;
- min-height: @circularMinSize;
-
- padding: @circularPadding !important;
-
- line-height: 1em;
- text-align: center;
- border-radius: @circularRadius;
- }
- .ui.empty.circular.labels .label,
- .ui.empty.circular.label {
- min-width: 0;
- min-height: 0;
- overflow: hidden;
- width: @emptyCircleSize;
- height: @emptyCircleSize;
- vertical-align: baseline;
- }
-}
-
-& when (@variationLabelPointing) {
- /*-------------------
- Pointing
- --------------------*/
-
- .ui.pointing.label {
- position: relative;
- }
-
- .ui.attached.pointing.label {
- position: absolute;
- }
-
- .ui.pointing.label:before {
- background-color: inherit;
- background-image: inherit;
- border-width: 0;
- border-style: solid;
- border-color: @pointingBorderColor;
- }
- /* Arrow */
- .ui.pointing.label:before {
- position: absolute;
- content: '';
- transform: rotate(45deg);
- background-image: none;
-
- z-index: @pointingTriangleZIndex;
- width: @pointingTriangleSize;
- height: @pointingTriangleSize;
- transition: @pointingTriangleTransition;
- }
-
- /*--- Above ---*/
- .ui.pointing.label,
- .ui[class*="pointing above"].label {
- margin-top: @pointingVerticalDistance;
- }
- .ui.pointing.label:before,
- .ui[class*="pointing above"].label:before {
- border-width: @borderWidth 0 0 @borderWidth;
- transform: translateX(-50%) translateY(-50%) rotate(45deg);
- top: 0;
- left: 50%;
- }
- /*--- Below ---*/
- .ui[class*="bottom pointing"].label,
- .ui[class*="pointing below"].label {
- margin-top: 0;
- margin-bottom: @pointingVerticalDistance;
- }
- .ui[class*="bottom pointing"].label:before,
- .ui[class*="pointing below"].label:before {
- border-width: 0 @borderWidth @borderWidth 0;
- top: auto;
- right: auto;
- transform: translateX(-50%) translateY(-50%) rotate(45deg);
- top: 100%;
- left: 50%;
- }
- /*--- Left ---*/
- .ui[class*="left pointing"].label {
- margin-top: 0;
- margin-left: @pointingHorizontalDistance;
- }
- .ui[class*="left pointing"].label:before {
- border-width: 0 0 @borderWidth @borderWidth;
- transform: translateX(-50%) translateY(-50%) rotate(45deg);
- bottom: auto;
- right: auto;
- top: 50%;
- left: 0;
- }
- /*--- Right ---*/
- .ui[class*="right pointing"].label {
- margin-top: 0;
- margin-right: @pointingHorizontalDistance;
- }
- .ui[class*="right pointing"].label:before {
- border-width: @borderWidth @borderWidth 0 0;
- transform: translateX(50%) translateY(-50%) rotate(45deg);
- top: 50%;
- right: 0;
- bottom: auto;
- left: auto;
- }
- & when (@variationLabelBasic) {
- /* Basic Pointing */
-
- /*--- Above ---*/
- .ui.basic.pointing.label:before,
- .ui.basic[class*="pointing above"].label:before {
- margin-top: @basicPointingTriangleOffset;
- }
- /*--- Below ---*/
- .ui.basic[class*="bottom pointing"].label:before,
- .ui.basic[class*="pointing below"].label:before {
- bottom: auto;
- top: 100%;
- margin-top: -@basicPointingTriangleOffset;
- }
- /*--- Left ---*/
- .ui.basic[class*="left pointing"].label:before {
- top: 50%;
- left: @basicPointingTriangleOffset;
- }
- /*--- Right ---*/
- .ui.basic[class*="right pointing"].label:before {
- top: 50%;
- right: @basicPointingTriangleOffset;
- }
- }
-}
-
-& when (@variationLabelFloating) {
- /*------------------
- Floating Label
- -------------------*/
-
- .ui.floating.label {
- position: absolute;
- z-index: @floatingZIndex;
- top: @floatingTopOffset;
- right: 0;
- white-space: nowrap;
- transform: translateX(50%);
- }
- .ui.right.aligned.floating.label {
- transform: translateX(@floatingAlignOffset);
- }
- .ui.left.floating.label {
- left:0;
- right:auto;
- transform: translateX(-50%);
- }
- .ui.left.aligned.floating.label {
- transform: translateX(-@floatingAlignOffset);
- }
- .ui.bottom.floating.label {
- top: auto;
- bottom: @floatingBottomOffset;
- }
-}
-
-/*-------------------
- Sizes
---------------------*/
-
-.ui.labels .label,
-.ui.label {
- font-size: @medium;
-}
-& when not (@variationLabelSizes = false) {
- each(@variationLabelSizes, {
- @s: @@value;
- .ui.@{value}.labels .label,
- .ui.@{value}.label {
- font-size: @s;
- }
- })
-}
-
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/elements/list.less b/src-angular/assets/semantic/src/definitions/elements/list.less
deleted file mode 100644
index d70ab2e..0000000
--- a/src-angular/assets/semantic/src/definitions/elements/list.less
+++ /dev/null
@@ -1,1021 +0,0 @@
-/*!
- * # Fomantic-UI - List
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'element';
-@element : 'list';
-
-@import (multiple) '../../theme.config';
-
-/*******************************
- List
-*******************************/
-
-ul.ui.list,
-ol.ui.list,
-.ui.list {
- list-style-type: @listStyleType;
- margin: @margin;
- padding: @verticalPadding @horizontalPadding;
-}
-
-ul.ui.list:first-child,
-ol.ui.list:first-child,
-.ui.list:first-child {
- margin-top: 0;
- padding-top: 0;
-}
-
-ul.ui.list:last-child,
-ol.ui.list:last-child,
-.ui.list:last-child {
- margin-bottom: 0;
- padding-bottom: 0;
-}
-
-/*******************************
- Content
-*******************************/
-
-/* List Item */
-ul.ui.list li,
-ol.ui.list li,
-.ui.list > .item,
-.ui.list .list > .item {
- display: list-item;
- table-layout: fixed;
- list-style-type: @listStyleType;
- list-style-position: @listStylePosition;
-
- padding: @itemPadding;
- line-height: @itemLineHeight;
-}
-
-ul.ui.list > li:first-child:after,
-ol.ui.list > li:first-child:after,
-.ui.list > .list > .item:after,
-.ui.list > .item:after {
- content: '';
- display: block;
- height: 0;
- clear: both;
- visibility: hidden;
-}
-
-ul.ui.list li:first-child,
-ol.ui.list li:first-child,
-.ui.list .list > .item:first-child,
-.ui.list > .item:first-child {
- padding-top: 0;
-}
-ul.ui.list li:last-child,
-ol.ui.list li:last-child,
-.ui.list .list > .item:last-child,
-.ui.list > .item:last-child {
- padding-bottom: 0;
-}
-
-/* Child List */
-ul.ui.list ul,
-ol.ui.list ol,
-.ui.list .list:not(.icon) {
- clear: both;
- margin: 0;
- padding: @childListPadding;
-}
-
-/* Child Item */
-ul.ui.list ul li,
-ol.ui.list ol li,
-.ui.list .list > .item {
- padding: @childItemPadding;
- line-height: @childItemLineHeight;
-}
-
-& when (@variationListIcon) {
- /* Icon */
- .ui.list .list > .item > i.icon,
- .ui.list > .item > i.icon {
- display: table-cell;
- min-width: 1.55em;
- margin: 0;
- padding-top: @iconOffset;
- transition: @iconTransition;
- &:not(.loading) {
- padding-right: @iconDistance;
- vertical-align: @iconContentVerticalAlign;
- }
- }
- .ui.list .list > .item > i.icon:only-child,
- .ui.list > .item > i.icon:only-child {
- display: inline-block;
- min-width: auto;
- vertical-align: @iconVerticalAlign;
- }
-}
-
-& when (@variationListImage) {
- /* Image */
- .ui.list .list > .item > .image,
- .ui.list > .item > .image {
- display: table-cell;
- background-color: transparent;
- margin: 0;
- vertical-align: @imageAlign;
- }
- .ui.list .list > .item > .image:not(:only-child):not(img),
- .ui.list > .item > .image:not(:only-child):not(img) {
- padding-right: @imageDistance;
- }
- .ui.list .list > .item > .image img,
- .ui.list > .item > .image img {
- vertical-align: @imageAlign;
- }
-
- .ui.list .list > .item > img.image,
- .ui.list .list > .item > .image:only-child,
- .ui.list > .item > img.image,
- .ui.list > .item > .image:only-child {
- display: inline-block;
- }
-}
-
-/* Content */
-.ui.list .list > .item > .content,
-.ui.list > .item > .content {
- line-height: @contentLineHeight;
- color: @contentColor;
-}
-& when (@variationListImage) or (@variationListIcon) {
- .ui.list .list > .item > .image + .content,
- .ui.list .list > .item > .icon + .content,
- .ui.list > .item > .image + .content,
- .ui.list > .item > .icon + .content {
- display: table-cell;
- width: 100%;
- padding: 0 0 0 @contentDistance;
- vertical-align: @contentVerticalAlign;
- }
-}
-& when (@variationListIcon) {
- .ui.list .list > .item > .loading.icon + .content,
- .ui.list > .item > .loading.icon + .content {
- padding-left: e(%("calc(%d + %d)", @iconDistance, @contentDistance));
- }
-}
-& when (@variationListImage) {
- .ui.list .list > .item > img.image + .content,
- .ui.list > .item > img.image + .content {
- display: inline-block;
- width: auto;
- }
-}
-.ui.list .list > .item > .content > .list,
-.ui.list > .item > .content > .list {
- margin-left: 0;
- padding-left: 0;
-}
-
-/* Header */
-.ui.list .list > .item .header,
-.ui.list > .item .header {
- display: block;
- margin: 0;
- font-family: @itemHeaderFontFamily;
- font-weight: @itemHeaderFontWeight;
- color: @itemHeaderColor;
-}
-
-/* Description */
-.ui.list .list > .item .description,
-.ui.list > .item .description {
- display: block;
- color: @itemDescriptionColor;
-}
-
-/* Child Link */
-.ui.list > .item a,
-.ui.list .list > .item a {
- cursor: pointer;
-}
-
-/* Linking Item */
-.ui.list .list > a.item,
-.ui.list > a.item {
- cursor: pointer;
- color: @itemLinkColor;
-}
-.ui.list .list > a.item:hover,
-.ui.list > a.item:hover {
- color: @itemLinkHoverColor;
-}
-
-& when (@variationListIcon) {
- /* Linked Item Icons */
- .ui.list .list > a.item > i.icons,
- .ui.list > a.item > i.icons,
- .ui.list .list > a.item > i.icon,
- .ui.list > a.item > i.icon {
- color: @itemLinkIconColor;
- }
-}
-
-/* Header Link */
-.ui.list .list > .item a.header,
-.ui.list > .item a.header {
- cursor: pointer;
- color: @itemHeaderLinkColor !important;
-}
-.ui.list .list > .item > a.header:hover,
-.ui.list > .item > a.header:hover {
- color: @itemHeaderLinkHoverColor !important;
-}
-
-& when (@variationListFloated) {
- /* Floated Content */
- .ui[class*="left floated"].list {
- float: left;
- }
- .ui[class*="right floated"].list {
- float: right;
- }
-
- .ui.list .list > .item [class*="left floated"],
- .ui.list > .item [class*="left floated"] {
- float: left;
- margin: @leftFloatMargin;
- }
- .ui.list .list > .item [class*="right floated"],
- .ui.list > .item [class*="right floated"] {
- float: right;
- margin: @rightFloatMargin;
- }
-}
-
-/*******************************
- Coupling
-*******************************/
-
-.ui.menu .ui.list > .item,
-.ui.menu .ui.list .list > .item {
- display: list-item;
- table-layout: fixed;
- background-color: transparent;
-
- list-style-type: @listStyleType;
- list-style-position: @listStylePosition;
-
- padding: @itemVerticalPadding @itemHorizontalPadding;
- line-height: @itemLineHeight;
-}
-.ui.menu .ui.list .list > .item:before,
-.ui.menu .ui.list > .item:before {
- border: none;
- background: none;
-}
-.ui.menu .ui.list .list > .item:first-child,
-.ui.menu .ui.list > .item:first-child {
- padding-top: 0;
-}
-.ui.menu .ui.list .list > .item:last-child,
-.ui.menu .ui.list > .item:last-child {
- padding-bottom: 0;
-}
-
-
-/*******************************
- Types
-*******************************/
-
-& when (@variationListHorizontal) {
- /*-------------------
- Horizontal
- --------------------*/
-
- .ui.horizontal.list {
- display: inline-block;
- font-size: 0;
- }
- .ui.horizontal.list > .item {
- display: inline-block;
- margin-right: @horizontalSpacing;
- font-size: 1rem;
- }
- .ui.horizontal.list:not(.celled) > .item:last-child {
- margin-right: 0;
- padding-right: 0;
- }
- .ui.horizontal.list .list:not(.icon) {
- padding-left: 0;
- padding-bottom: 0;
- }
- .ui.horizontal.list > .item > .image,
- .ui.horizontal.list .list > .item > .image,
- .ui.horizontal.list > .item > .icon,
- .ui.horizontal.list .list > .item > .icon,
- .ui.horizontal.list > .item > .content,
- .ui.horizontal.list .list > .item > .content {
- vertical-align: @horizontalVerticalAlign;
- }
-
- /* Padding on all elements */
- .ui.horizontal.list > .item:first-child,
- .ui.horizontal.list > .item:last-child {
- padding-top: @itemVerticalPadding;
- padding-bottom: @itemVerticalPadding;
- }
- & when (@variationListIcon) {
- /* Horizontal List */
- .ui.horizontal.list > .item > i.icon ,
- .ui.horizontal.list .item > i.icons > i.icon {
- margin: 0;
- padding: 0 @horizontalIconDistance 0 0;
- }
- }
- & when (@variationListImage) or (@variationListIcon) {
- .ui.horizontal.list > .item > .image + .content,
- .ui.horizontal.list > .item > .icon,
- .ui.horizontal.list > .item > .icon + .content {
- float: none;
- display: inline-block;
- width: auto;
- }
- }
- & when (@variationListImage) {
- .ui.horizontal.list > .item > .image {
- display: inline-block;
- }
- }
-}
-
-/*******************************
- States
-*******************************/
-
-& when (@variationListDisabled) {
- /*-------------------
- Disabled
- --------------------*/
-
- .ui.list .list > .disabled.item,
- .ui.list > .disabled.item {
- pointer-events: none;
- color: @disabledColor !important;
- }
- & when (@variationListInverted) {
- .ui.inverted.list .list > .disabled.item,
- .ui.inverted.list > .disabled.item {
- color: @invertedDisabledColor !important;
- }
- }
-}
-
-/*-------------------
- Hover
---------------------*/
-& when (@variationListIcon) {
- .ui.list .list > a.item:hover > .icons,
- .ui.list > a.item:hover > .icons,
- .ui.list .list > a.item:hover > .icon,
- .ui.list > a.item:hover > .icon {
- color: @itemLinkIconHoverColor;
- }
-}
-
-/*******************************
- Variations
-*******************************/
-
-& when (@variationListInverted) {
- /*-------------------
- Inverted
- --------------------*/
- & when (@variationListIcon) {
- .ui.inverted.list .list > a.item > .icon,
- .ui.inverted.list > a.item > .icon {
- color: @invertedIconLinkColor;
- }
- }
- .ui.inverted.list .list > .item .header,
- .ui.inverted.list > .item .header {
- color: @invertedHeaderColor;
- }
- .ui.inverted.list .list > .item .description,
- .ui.inverted.list > .item .description {
- color: @invertedDescriptionColor;
- }
- .ui.inverted.list .list > .item > .content,
- .ui.inverted.list > .item > .content {
- color: @invertedContentColor;
- }
- /* Item Link */
- .ui.inverted.list .list > a.item,
- .ui.inverted.list > a.item {
- cursor: pointer;
- color: @invertedItemLinkColor;
- }
- .ui.inverted.list .list > a.item:hover,
- .ui.inverted.list > a.item:hover {
- color: @invertedItemLinkHoverColor;
- }
-
-
- /* Linking Content */
- .ui.inverted.list .item a:not(.ui) {
- color: @invertedItemLinkColor !important;
- }
- .ui.inverted.list .item a:not(.ui):hover {
- color: @invertedItemLinkHoverColor !important;
- }
-}
-
-& when (@variationListAligned) {
- /*-------------------
- Aligned
- --------------------*/
-
- .ui.list[class*="top aligned"] .image,
- .ui.list[class*="top aligned"] .content,
- .ui.list [class*="top aligned"] {
- vertical-align: top !important;
- }
- .ui.list[class*="middle aligned"] .image,
- .ui.list[class*="middle aligned"] .content,
- .ui.list [class*="middle aligned"] {
- vertical-align: middle !important;
- }
- .ui.list[class*="bottom aligned"] .image,
- .ui.list[class*="bottom aligned"] .content,
- .ui.list [class*="bottom aligned"] {
- vertical-align: bottom !important;
- }
-}
-
-& when (@variationListLink) {
- /*-------------------
- Link
- --------------------*/
-
- .ui.link.list .item,
- .ui.link.list a.item,
- .ui.link.list .item a:not(.ui) {
- color: @linkListItemColor;
- transition: @linkListTransition;
- }
- .ui.link.list.list a.item:hover,
- .ui.link.list.list .item a:not(.ui):hover {
- color: @linkListItemHoverColor;
- }
- .ui.link.list.list a.item:active,
- .ui.link.list.list .item a:not(.ui):active {
- color: @linkListItemDownColor;
- }
- .ui.link.list.list .active.item,
- .ui.link.list.list .active.item a:not(.ui) {
- color: @linkListItemActiveColor;
- }
- & when (@variationListInverted) {
- /* Inverted */
- .ui.inverted.link.list .item,
- .ui.inverted.link.list a.item,
- .ui.inverted.link.list .item a:not(.ui) {
- color: @invertedLinkListItemColor;
- }
- .ui.inverted.link.list.list a.item:hover,
- .ui.inverted.link.list.list .item a:not(.ui):hover {
- color: @invertedLinkListItemHoverColor;
- }
- .ui.inverted.link.list.list a.item:active,
- .ui.inverted.link.list.list .item a:not(.ui):active {
- color: @invertedLinkListItemDownColor;
- }
- .ui.inverted.link.list.list a.active.item,
- .ui.inverted.link.list.list .active.item a:not(.ui) {
- color: @invertedLinkListItemActiveColor;
- }
- }
-}
-
-& when (@variationListSelection) {
- /*-------------------
- Selection
- --------------------*/
-
- .ui.selection.list .list > .item,
- .ui.selection.list > .item {
- cursor: pointer;
- background: @selectionListBackground;
- padding: @selectionListItemVerticalPadding @selectionListItemHorizontalPadding;
- margin: @selectionListItemMargin;
- color: @selectionListColor;
- border-radius: @selectionListItemBorderRadius;
- transition: @selectionListTransition;
- }
- .ui.selection.list .list > .item:last-child,
- .ui.selection.list > .item:last-child {
- margin-bottom: 0;
- }
- .ui.selection.list .list > .item:hover,
- .ui.selection.list > .item:hover {
- background: @selectionListHoverBackground;
- color: @selectionListHoverColor;
- }
- .ui.selection.list .list > .item:active,
- .ui.selection.list > .item:active {
- background: @selectionListDownBackground;
- color: @selectionListDownColor;
- }
- .ui.selection.list .list > .item.active,
- .ui.selection.list > .item.active {
- background: @selectionListActiveBackground;
- color: @selectionListActiveColor;
- }
-
- & when (@variationListInverted) {
- /* Inverted */
- .ui.inverted.selection.list > .item {
- background: @invertedSelectionListBackground;
- color: @invertedSelectionListColor;
- }
- .ui.inverted.selection.list > .item:hover {
- background: @invertedSelectionListHoverBackground;
- color: @invertedSelectionListHoverColor;
- }
- .ui.inverted.selection.list > .item:active {
- background: @invertedSelectionListDownBackground;
- color: @invertedSelectionListDownColor;
- }
- .ui.inverted.selection.list > .item.active {
- background: @invertedSelectionListActiveBackground;
- color: @invertedSelectionListActiveColor;
- }
- }
-
- & when (@variationListCelled) or (@variationListDivided) {
- /* Celled / Divided Selection List */
- .ui.celled.selection.list .list > .item,
- .ui.divided.selection.list .list > .item,
- .ui.celled.selection.list > .item,
- .ui.divided.selection.list > .item {
- border-radius: 0;
- }
- }
-}
-
-& when (@variationListAnimated) {
- /*-------------------
- Animated
- --------------------*/
-
- .ui.animated.list > .item {
- transition: @animatedListTransition;
- }
- .ui.animated.list:not(.horizontal) > .item:hover {
- padding-left: @animatedListIndent;
- }
-}
-
-& when (@variationListFitted) {
- /*-------------------
- Fitted
- --------------------*/
- .ui.fitted.list:not(.selection) .list > .item,
- .ui.fitted.list:not(.selection) > .item {
- padding-left: 0;
- padding-right: 0;
- }
- .ui.fitted.selection.list .list > .item,
- .ui.fitted.selection.list > .item {
- margin-left: -@selectionListItemHorizontalPadding;
- margin-right: -@selectionListItemHorizontalPadding;
- }
-}
-
-& when (@variationListBulleted) {
- /*-------------------
- Bulleted
- --------------------*/
-
- ul.ui.list,
- .ui.bulleted.list {
- margin-left: @bulletDistance;
- }
- ul.ui.list li,
- .ui.bulleted.list .list > .item,
- .ui.bulleted.list > .item {
- position: relative;
- }
- ul.ui.list li:before,
- .ui.bulleted.list .list > .item:before,
- .ui.bulleted.list > .item:before {
- user-select: none;
- pointer-events: none;
- position: absolute;
- top: auto;
- left: auto;
- font-weight: @normal;
- margin-left: @bulletOffset;
- content: @bulletCharacter;
- opacity: @bulletOpacity;
- color: @bulletColor;
- vertical-align: @bulletVerticalAlign;
- }
-
- ul.ui.list li:before,
- .ui.bulleted.list .list > a.item:before,
- .ui.bulleted.list > a.item:before {
- color: @bulletLinkColor;
- }
-
- ul.ui.list ul,
- .ui.bulleted.list .list:not(.icon) {
- padding-left: @bulletChildDistance;
- }
-
- & when (@variationListHorizontal) {
- /* Horizontal Bulleted */
- ul.ui.horizontal.bulleted.list,
- .ui.horizontal.bulleted.list {
- margin-left: 0;
- }
- ul.ui.horizontal.bulleted.list li,
- .ui.horizontal.bulleted.list > .item {
- margin-left: @horizontalBulletSpacing;
- }
- ul.ui.horizontal.bulleted.list li:first-child,
- .ui.horizontal.bulleted.list > .item:first-child {
- margin-left: 0;
- }
- ul.ui.horizontal.bulleted.list li::before,
- .ui.horizontal.bulleted.list > .item::before {
- color: @horizontalBulletColor;
- }
- ul.ui.horizontal.bulleted.list li:first-child::before,
- .ui.horizontal.bulleted.list > .item:first-child::before {
- display: none;
- }
- }
-}
-
-& when (@variationListOrdered) {
- /*-------------------
- Ordered
- --------------------*/
-
- ol.ui.list,
- .ui.ordered.list,
- .ui.ordered.list .list:not(.icon),
- ol.ui.list ol {
- counter-reset: ordered;
- margin-left: @orderedCountDistance;
- list-style-type: none;
- }
- ol.ui.list li,
- .ui.ordered.list .list > .item,
- .ui.ordered.list > .item {
- list-style-type: none;
- position: relative;
- }
- ol.ui.list li:before,
- .ui.ordered.list .list > .item:before,
- .ui.ordered.list > .item:before {
- position: absolute;
- top: auto;
- left: auto;
- user-select: none;
- pointer-events: none;
- margin-left: -(@orderedCountDistance);
- counter-increment: @orderedCountName;
- content: @orderedCountContent;
- text-align: @orderedCountTextAlign;
- color: @orderedCountColor;
- vertical-align: @orderedCountVerticalAlign;
- opacity: @orderedCountOpacity;
- }
-
- & when (@variationListInverted) {
- ol.ui.inverted.list li:before,
- .ui.ordered.inverted.list .list > .item:before,
- .ui.ordered.inverted.list > .item:before {
- color: @orderedInvertedCountColor;
- }
- }
-
- /* Value */
- .ui.ordered.list .list > .item[data-value]:before,
- .ui.ordered.list > .item[data-value]:before {
- content: attr(data-value);
- }
- ol.ui.list li[value]:before {
- content: attr(value);
- }
-
- /* Child Lists */
- ol.ui.list ol,
- .ui.ordered.list .list:not(.icon) {
- margin-left: @orderedChildCountDistance;
- }
- ol.ui.list ol li:before,
- .ui.ordered.list .list > .item:before {
- margin-left: @orderedChildCountOffset;
- }
-
- & when (@variationListHorizontal) {
- /* Horizontal Ordered */
- ol.ui.horizontal.list,
- .ui.ordered.horizontal.list {
- margin-left: 0;
- }
- ol.ui.horizontal.list li:before,
- .ui.ordered.horizontal.list .list > .item:before,
- .ui.ordered.horizontal.list > .item:before {
- position: static;
- margin: 0 @horizontalOrderedCountDistance 0 0;
- }
- }
-}
-
-& when (@variationListSuffixed) {
- /* Suffixed Ordered */
- ol.ui.suffixed.list li:before,
- .ui.suffixed.ordered.list .list > .item:before,
- .ui.suffixed.ordered.list > .item:before {
- content: @orderedCountContentSuffixed;
- }
-}
-
-& when (@variationListDivided) {
- /*-------------------
- Divided
- --------------------*/
-
- .ui.divided.list > .item {
- border-top: @dividedBorder;
- }
- .ui.divided.list .list > .item {
- border-top: @dividedChildListBorder;
- }
- .ui.divided.list .item .list > .item {
- border-top: @dividedChildItemBorder;
- }
- .ui.divided.list .list > .item:first-child,
- .ui.divided.list > .item:first-child {
- border-top: none;
- }
-
- /* Sub Menu */
- .ui.divided.list:not(.horizontal) .list > .item:first-child {
- border-top-width: @dividedBorderWidth;
- }
-
- & when (@variationListBulleted) {
- /* Divided bulleted */
- .ui.divided.bulleted.list:not(.horizontal),
- .ui.divided.bulleted.list .list:not(.icon) {
- margin-left: 0;
- padding-left: 0;
- }
- .ui.divided.bulleted.list > .item:not(.horizontal) {
- padding-left: @bulletDistance;
- }
- }
-
- & when (@variationListOrdered) {
- /* Divided Ordered */
- .ui.divided.ordered.list {
- margin-left: 0;
- }
- .ui.divided.ordered.list .list > .item,
- .ui.divided.ordered.list > .item {
- padding-left: @orderedCountDistance;
- }
- .ui.divided.ordered.list .item .list:not(.icon) {
- margin-left: 0;
- margin-right: 0;
- padding-bottom: @itemVerticalPadding;
- }
- .ui.divided.ordered.list .item .list > .item {
- padding-left: @orderedChildCountDistance;
- }
- }
-
- & when (@variationListSelection) {
- /* Divided Selection */
-
- .ui.divided.selection.list .list > .item,
- .ui.divided.selection.list > .item {
- margin: 0;
- border-radius: 0;
- }
- }
-
- & when (@variationListHorizontal) {
- /* Divided horizontal */
- .ui.divided.horizontal.list {
- margin-left: 0;
- }
- .ui.divided.horizontal.list > .item {
- padding-left: @horizontalDividedSpacing;
- }
- .ui.divided.horizontal.list > .item:not(:last-child) {
- padding-right: @horizontalDividedSpacing;
- }
- .ui.divided.horizontal.list > .item {
- border-top: none;
- border-right: @dividedBorder;
- margin: 0;
- line-height: @horizontalDividedLineHeight;
- }
- .ui.horizontal.divided.list > .item:last-child {
- border-right: none;
- }
- }
-
- & when (@variationListInverted) {
- /* Inverted */
-
- .ui.divided.inverted.list > .item,
- .ui.divided.inverted.list > .list,
- .ui.divided.inverted.horizontal.list > .item {
- border-color: @dividedInvertedBorderColor;
- }
- }
-}
-
-& when (@variationListCelled) {
- /*-------------------
- Celled
- --------------------*/
-
- .ui.celled.list > .item,
- .ui.celled.list > .list {
- border-top: @celledBorder;
- padding-left: @celledHorizontalPadding;
- padding-right: @celledHorizontalPadding;
- }
- .ui.celled.list > .item:last-child {
- border-bottom: @celledBorder;
- }
-
- /* Padding on all elements */
- .ui.celled.list > .item:first-child,
- .ui.celled.list > .item:last-child {
- padding-top: @itemVerticalPadding;
- padding-bottom: @itemVerticalPadding;
- }
-
- /* Sub Menu */
- .ui.celled.list .item .list > .item {
- border-width: 0;
- }
- .ui.celled.list .list > .item:first-child {
- border-top-width: 0;
- }
-
- & when (@variationListBulleted) {
- /* Celled Bulleted */
- .ui.celled.bulleted.list {
- margin-left: 0;
- }
- .ui.celled.bulleted.list .list > .item,
- .ui.celled.bulleted.list > .item {
- padding-left: (@bulletDistance);
- }
- .ui.celled.bulleted.list .item .list:not(.icon) {
- margin-left: -(@bulletDistance);
- margin-right: -(@bulletDistance);
- padding-bottom: @itemVerticalPadding;
- }
- }
-
- & when (@variationListOrdered) {
- /* Celled Ordered */
- .ui.celled.ordered.list {
- margin-left: 0;
- }
- .ui.celled.ordered.list .list > .item,
- .ui.celled.ordered.list > .item {
- padding-left: @orderedCountDistance;
- }
- .ui.celled.ordered.list .item .list:not(.icon) {
- margin-left: 0;
- margin-right: 0;
- padding-bottom: @itemVerticalPadding;
- }
- .ui.celled.ordered.list .list > .item {
- padding-left: @orderedChildCountDistance;
- }
- }
-
- & when (@variationListHorizontal) {
- /* Celled Horizontal */
- .ui.horizontal.celled.list {
- margin-left: 0;
- }
- .ui.horizontal.celled.list .list > .item,
- .ui.horizontal.celled.list > .item {
- border-top: none;
- border-left: @celledBorder;
- margin: 0;
- padding-left: @horizontalCelledSpacing;
- padding-right: @horizontalCelledSpacing;
-
- line-height: @horizontalCelledLineHeight;
- }
- .ui.horizontal.celled.list .list > .item:last-child,
- .ui.horizontal.celled.list > .item:last-child {
- border-bottom: none;
- border-right: @celledBorder;
- }
- }
-
- & when (@variationListInverted) {
- /* Inverted */
- .ui.celled.inverted.list > .item,
- .ui.celled.inverted.list > .list {
- border-color: @celledInvertedBorder;
- }
- .ui.celled.inverted.horizontal.list .list > .item,
- .ui.celled.inverted.horizontal.list > .item {
- border-color: @celledInvertedBorder;
- }
- }
-}
-
-& when (@variationListRelaxed) {
- /*-------------------
- Relaxed
- --------------------*/
-
- .ui.relaxed.list:not(.horizontal) > .item:not(:first-child) {
- padding-top: @relaxedItemVerticalPadding;
- }
- .ui.relaxed.list:not(.horizontal) > .item:not(:last-child) {
- padding-bottom: @relaxedItemVerticalPadding;
- }
-
- & when (@variationListHorizontal) {
- .ui.horizontal.relaxed.list .list > .item:not(:first-child),
- .ui.horizontal.relaxed.list > .item:not(:first-child) {
- padding-left: @relaxedHorizontalPadding;
- }
- .ui.horizontal.relaxed.list .list > .item:not(:last-child),
- .ui.horizontal.relaxed.list > .item:not(:last-child) {
- padding-right: @relaxedHorizontalPadding;
- }
- }
-
- /* Very Relaxed */
- .ui[class*="very relaxed"].list:not(.horizontal) > .item:not(:first-child) {
- padding-top: @veryRelaxedItemVerticalPadding;
- }
- .ui[class*="very relaxed"].list:not(.horizontal) > .item:not(:last-child) {
- padding-bottom: @veryRelaxedItemVerticalPadding;
- }
-
- & when (@variationListHorizontal) {
- .ui.horizontal[class*="very relaxed"].list .list > .item:not(:first-child),
- .ui.horizontal[class*="very relaxed"].list > .item:not(:first-child) {
- padding-left: @veryRelaxedHorizontalPadding;
- }
- .ui.horizontal[class*="very relaxed"].list .list > .item:not(:last-child),
- .ui.horizontal[class*="very relaxed"].list > .item:not(:last-child) {
- padding-right: @veryRelaxedHorizontalPadding;
- }
- }
-}
-/*-------------------
- Sizes
---------------------*/
-
-.ui.list {
- font-size: @relativeMedium;
-}
-& when not (@variationListSizes = false) {
- each(@variationListSizes, {
- @rs: @{value}ListSize;
- @s: @@value;
- .ui.@{value}.list {
- font-size: @@rs;
- }
- & when (@variationListHorizontal) {
- .ui.@{value}.horizontal.list .list > .item,
- .ui.@{value}.horizontal.list > .item {
- font-size: @s;
- }
- }
- })
-}
-
-.loadUIOverrides();
-
diff --git a/src-angular/assets/semantic/src/definitions/elements/loader.less b/src-angular/assets/semantic/src/definitions/elements/loader.less
deleted file mode 100644
index 0b64a84..0000000
--- a/src-angular/assets/semantic/src/definitions/elements/loader.less
+++ /dev/null
@@ -1,416 +0,0 @@
-/*!
- * # Fomantic-UI - Loader
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-/*******************************
- Theme
-*******************************/
-
-@type : 'element';
-@element : 'loader';
-
-@import (multiple) '../../theme.config';
-
-/*******************************
- Loader
-*******************************/
-
-
-/* Standard Size */
-.ui.loader {
- display: none;
- position: absolute;
- top: @loaderTopOffset;
- left: @loaderLeftOffset;
- margin: 0;
- text-align: center;
- z-index: 1000;
- transform: translateX(-50%) translateY(-50%);
-}
-
-/* Static Shape */
-.ui.loader:before {
- position: absolute;
- content: '';
- top: 0;
- left: 50%;
- width: 100%;
- height: 100%;
-
- border-radius: @circularRadius;
- border: @loaderLineWidth solid @loaderFillColor;
-}
-
-/* Active Shape */
-.ui.loader:after {
- position: absolute;
- content: '';
- top: 0;
- left: 50%;
- width: 100%;
- height: 100%;
-
- animation: loader @loaderSpeed infinite linear;
- border: @loaderLineWidth solid @shapeBorderColor;
- border-radius: @circularRadius;
-
- box-shadow: 0 0 0 1px transparent;
-}
-
-& when (@variationLoaderSpeeds) {
- /* Speeds */
-
- .ui.fast.loading.loading:after,
- .ui.fast.loading.loading .input > i.icon:after,
- .ui.fast.loading.loading > i.icon:after,
- .ui.fast.loader:after {
- animation-duration: @loaderSpeedFast;
- }
-
- .ui.slow.loading.loading:after,
- .ui.slow.loading.loading .input > i.icon:after,
- .ui.slow.loading.loading > i.icon:after,
- .ui.slow.loader:after {
- animation-duration: @loaderSpeedSlow;
- }
-}
-
-/* Active Animation */
-@keyframes loader {
- 100% {
- transform: rotate(360deg);
- }
-}
-
-/*-------------------
- Coupling
---------------------*/
-
-/* Show inside active dimmer */
-.ui.dimmer > .loader {
- display: block;
-}
-
-/* Black Dimmer */
-.ui.dimmer > .ui.loader {
- color: @invertedLoaderTextColor;
-}
-.ui.dimmer > .ui.loader:not(.elastic):before {
- border-color: @invertedLoaderFillColor;
-}
-
-/* White Dimmer (Inverted) */
-.ui.inverted.dimmer > .ui.loader {
- color: @loaderTextColor;
-}
-.ui.inverted.dimmer > .ui.loader:not(.elastic):before {
- border-color: @loaderFillColor;
-}
-
-/*******************************
- Types
-*******************************/
-
-& when (@variationLoaderText) {
- /*-------------------
- Text
- --------------------*/
-
- .ui.ui.ui.ui.text.loader {
- width: auto;
- height: auto;
- text-align: center;
- font-style: normal;
- }
-}
-
-
-/*******************************
- States
-*******************************/
-& when (@variationLoaderIndeterminate) {
- .ui.indeterminate.loader:after {
- animation-direction: @indeterminateDirection;
- animation-duration: @indeterminateSpeed;
- }
-}
-
-.ui.loader.active,
-.ui.loader.visible {
- display: block;
-}
-.ui.loader.disabled,
-.ui.loader.hidden {
- display: none;
-}
-
-/*******************************
- Variations
-*******************************/
-
-
-/*-------------------
- Sizes
---------------------*/
-
-.ui.loader {
- width: @medium;
- height: @medium;
- font-size: @mediumFontSize;
-}
-.ui.loader:before,
-.ui.loader:after {
- width: @medium;
- height: @medium;
- margin: @mediumOffset;
-}
-& when (@variationLoaderText) {
- .ui.text.loader {
- min-width: @medium;
- padding-top: (@medium + @textDistance);
- }
-}
-& when not (@variationLoaderSizes = false) {
- each(@variationLoaderSizes, {
- @o: @{value}Offset;
- @f: @{value}FontSize;
- @s: @@value;
- .ui.@{value}.loader {
- width: @s;
- height: @s;
- font-size: @@f;
- }
- .ui.@{value}.loader:before,
- .ui.@{value}.loader:after {
- width: @s;
- height: @s;
- margin: @@o;
- }
- & when (@variationLoaderText) {
- .ui.@{value}.text.loader {
- min-width: @s;
- padding-top: (@s + @textDistance);
- }
- }
- })
-}
-
-/*-------------------
- Colors
---------------------*/
-
-each(@colors, {
- @color: replace(@key, '@', '');
- @c: @colors[@@color][color];
- @l: @colors[@@color][light];
-
- .ui.@{color}.elastic.loader.loader:before,
- .ui.@{color}.basic.elastic.loading.button:before,
- .ui.@{color}.basic.elastic.loading.button:after,
- .ui.@{color}.elastic.loading.loading.loading:not(.segment):before,
- .ui.@{color}.elastic.loading.loading.loading .input > i.icon:before,
- .ui.@{color}.elastic.loading.loading.loading.loading > i.icon:before,
- .ui.@{color}.loading.loading.loading.loading:not(.usual):not(.button):after,
- .ui.@{color}.loading.loading.loading.loading .input > i.icon:after,
- .ui.@{color}.loading.loading.loading.loading > i.icon:after,
- .ui.@{color}.loader.loader.loader:after {
- color: @c;
- }
- .ui.inverted.@{color}.elastic.loader:before,
- .ui.inverted.@{color}.elastic.loading.loading.loading:not(.segment):before,
- .ui.inverted.@{color}.elastic.loading.loading.loading .input > i.icon:before,
- .ui.inverted.@{color}.elastic.loading.loading.loading > i.icon:before,
- .ui.inverted.@{color}.loading.loading.loading.loading:not(.usual):after,
- .ui.inverted.@{color}.loading.loading.loading.loading .input > i.icon:after,
- .ui.inverted.@{color}.loading.loading.loading.loading > i.icon:after,
- .ui.inverted.@{color}.loader.loader.loader:after {
- color: @l;
- }
-})
-
-.ui.elastic.loader.loader:before,
-.ui.elastic.loading.loading.loading:before,
-.ui.elastic.loading.loading.loading .input > i.icon:before,
-.ui.elastic.loading.loading.loading > i.icon:before,
-.ui.loading.loading.loading.loading:not(.usual):after,
-.ui.loading.loading.loading.loading .input > i.icon:after,
-.ui.loading.loading.loading.loading > i.icon:after,
-.ui.loader.loader.loader:after {
- border-color: currentColor;
-}
-.ui.elastic.loading.loading.loading.loading.button:not(.inverted):not(.basic):before {
- color: @invertedLoaderLineColor;
-}
-.ui.elastic.basic.loading.button:before,
-.ui.elastic.basic.loading.button:after {
- color: @loaderLineColor;
-}
-.ui.double.loading.loading.loading.loading.button:after {
- border-bottom-color: currentColor;
-}
-
-& when (@variationLoaderInline) {
- /*-------------------
- Inline
- --------------------*/
-
- .ui.inline.loader {
- position: relative;
- vertical-align: @inlineVerticalAlign;
- margin: @inlineMargin;
- left: 0;
- top: 0;
- transform: none;
- }
-
- .ui.inline.loader.active,
- .ui.inline.loader.visible {
- display: inline-block;
- }
-
- /* Centered Inline */
- .ui.centered.inline.loader.active,
- .ui.centered.inline.loader.visible {
- display: block;
- margin-left: auto;
- margin-right: auto;
- }
-}
-
-.ui.loading.loading.loading.loading.loading.loading:after,
-.ui.loading.loading.loading.loading.loading.loading .input > i.icon:after,
-.ui.loading.loading.loading.loading.loading.loading > i.icon:after,
-.ui.loader.loader.loader.loader.loader:after {
- border-left-color:transparent;
- border-right-color:transparent;
-}
-.ui.loading.loading.loading.loading.loading.loading.loading:not(.double):after,
-.ui.loading.loading.loading.loading.loading.loading.loading:not(.double) .input > i.icon:after,
-.ui.loading.loading.loading.loading.loading.loading.loading:not(.double) > i.icon:after,
-.ui.loader.loader.loader.loader.loader.loader:not(.double):after {
- border-bottom-color: transparent;
-}
-.ui.loading.loading.loading.loading.loading.loading.segment:after,
-.ui.loading.loading.loading.loading.loading.loading.form:after {
- border-left-color:@loaderFillColor;
- border-right-color:@loaderFillColor;
-}
-.ui.loading.loading.loading.loading.loading.loading.segment:not(.double):after,
-.ui.loading.loading.loading.loading.loading.loading.form:not(.double):after {
- border-bottom-color: @loaderFillColor;
-}
-
-& when (@variationLoaderElastic) {
- /*-------------------
- Elastic
- --------------------*/
-
- .ui.dimmer > .ui.elastic.loader {
- color: @invertedLoaderLineColor;
- }
- .ui.inverted.dimmer > .ui.elastic.loader {
- color: @loaderLineColor;
- }
- .ui.elastic.loading.loading:not(.form):not(.segment):after,
- .ui.elastic.loading.loading .input > i.icon:after,
- .ui.elastic.loading.loading > i.icon:after,
- .ui.elastic.loader.loader:after {
- animation: loader 1s infinite cubic-bezier(.27, 1.05, .92, .61);
- animation-delay: 0.3s;
- }
- .ui.elastic.loading.loading.loading:not(.form):not(.segment):before,
- .ui.elastic.loading.loading.loading .input > i.icon:before,
- .ui.elastic.loading.loading.loading > i.icon:before,
- .ui.elastic.loader.loader:before {
- animation: elastic-loader 1s infinite cubic-bezier(.27, 1.05, .92, .61);
- -moz-animation: currentcolor-elastic-loader 1s infinite cubic-bezier(.27, 1.05, .92, .61);
- border-right-color: transparent;
- }
- & when (@variationLoaderInline) {
- .ui.elastic.inline.loader:empty {
- animation: loader 8s infinite linear;
- }
- }
- & when (@variationLoaderSpeeds) {
- .ui.slow.elastic.loading.loading:not(.form):not(.segment):after,
- .ui.slow.elastic.loading.loading .input > i.icon:after,
- .ui.slow.elastic.loading.loading > i.icon:after,
- .ui.slow.elastic.loader.loader:after {
- animation-duration: 1.5s;
- animation-delay: 0.45s;
- }
- .ui.slow.elastic.loading.loading.loading:not(.form):not(.segment):before,
- .ui.slow.elastic.loading.loading.loading .input > i.icon:before,
- .ui.slow.elastic.loading.loading.loading > i.icon:before,
- .ui.slow.elastic.loader.loader:before {
- animation-duration: 1.5s;
- }
- .ui.fast.elastic.loading.loading:not(.form):not(.segment):after,
- .ui.fast.elastic.loading.loading .input > i.icon:after,
- .ui.fast.elastic.loading.loading > i.icon:after,
- .ui.fast.elastic.loader.loader:after {
- animation-duration: 0.66s;
- animation-delay: 0.20s;
- }
- .ui.fast.elastic.loading.loading.loading:not(.form):not(.segment):before,
- .ui.fast.elastic.loading.loading.loading .input > i.icon:before,
- .ui.fast.elastic.loading.loading.loading > i.icon:before,
- .ui.fast.elastic.loader.loader:before {
- animation-duration: 0.66s;
- }
- }
- @keyframes elastic-loader {
- 0%, 1% {
- border-left-color: transparent;
- border-bottom-color: transparent
- }
- 1.1%, 50% {
- border-left-color: inherit;
- }
- 10%, 35.1%{
- border-bottom-color: transparent;
- }
- 10.1%, 35%{
- border-bottom-color: inherit;
- }
- 50.1%{
- border-left-color: transparent;
- }
- 100% {
- border-left-color: transparent;
- border-bottom-color: transparent;
- transform: rotate(360deg);
- }
- }
-
- @keyframes currentcolor-elastic-loader {
- 0%, 1% {
- border-left-color: transparent;
- border-bottom-color: transparent
- }
- 1.1%, 50% {
- border-left-color: currentColor;
- }
- 10%, 35.1%{
- border-bottom-color: transparent;
- }
- 10.1%, 35%{
- border-bottom-color: currentColor;
- }
- 50.1%{
- border-left-color: transparent;
- }
- 100% {
- border-left-color: transparent;
- border-bottom-color: transparent;
- transform: rotate(360deg);
- }
- }
-}
-
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/elements/placeholder.less b/src-angular/assets/semantic/src/definitions/elements/placeholder.less
deleted file mode 100644
index 5440612..0000000
--- a/src-angular/assets/semantic/src/definitions/elements/placeholder.less
+++ /dev/null
@@ -1,248 +0,0 @@
-/*!
- * # Fomantic-UI - Loader
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-/*******************************
- Theme
-*******************************/
-
-@type : 'element';
-@element : 'placeholder';
-
-@import (multiple) '../../theme.config';
-
-/*-------------------
- Content
---------------------*/
-
-.ui.placeholder {
- position: static;
- overflow: hidden;
- animation: placeholderShimmer @placeholderLoadingAnimationDuration linear;
- animation-iteration-count: infinite;
- background-color: @white;
- background-image: @placeholderLoadingGradient;
- background-size: @placeholderLoadingGradientWidth 100%;
- max-width: @placeholderMaxWidth;
-}
-
-@keyframes placeholderShimmer{
- 0% {
- background-position: -@placeholderLoadingGradientWidth 0
- }
- 100% {
- background-position: @placeholderLoadingGradientWidth 0
- }
-}
-
-.ui.placeholder + .ui.placeholder {
- margin-top: @consecutivePlaceholderSpacing;
-}
-.ui.placeholder + .ui.placeholder {
- animation-delay: @placeholderAnimationInterval;
-}
-.ui.placeholder + .ui.placeholder + .ui.placeholder {
- animation-delay: (@placeholderAnimationInterval * 2);
-}
-.ui.placeholder + .ui.placeholder + .ui.placeholder + .ui.placeholder {
- animation-delay: (@placeholderAnimationInterval * 3);
-}
-.ui.placeholder + .ui.placeholder + .ui.placeholder + .ui.placeholder + .ui.placeholder {
- animation-delay: (@placeholderAnimationInterval * 4);
-}
-
-.ui.placeholder,
-.ui.placeholder > :before,
-.ui.placeholder .image.header:after,
-.ui.placeholder .line,
-.ui.placeholder .line:after {
- background-color: @white;
-}
-
-.ui.placeholder.hidden {
- display:none;
-}
-
-& when (@variationPlaceholderImage) {
- /* Image */
- .ui.placeholder .image:not(.header):not(.ui):not(.icon) {
- height: @placeholderImageHeight;
- }
- .ui.placeholder .square.image:not(.header) {
- height: 0;
- overflow: hidden;
- /* 1/1 aspect ratio */
- padding-top: 100%;
- }
- .ui.placeholder .rectangular.image:not(.header) {
- height: 0;
- overflow: hidden;
- /* 4/3 aspect ratio */
- padding-top: 75%;
- }
-}
-
-& when (@variationPlaceholderLine) or (@variationPlaceholderHeader) {
- /* Lines */
- .ui.placeholder .line {
- position: relative;
- height: @placeholderLineMargin;
- }
- .ui.placeholder .line:before,
- .ui.placeholder .line:after {
- top: 100%;
- position: absolute;
- content: '';
- background-color: inherit;
- }
- .ui.placeholder .line:before {
- left: 0;
- }
- .ui.placeholder .line:after {
- right: 0;
- }
-
- /* Any Lines */
- .ui.placeholder .line {
- margin-bottom: @placeholderLineHeight;
- }
- .ui.placeholder .line:before,
- .ui.placeholder .line:after {
- height: @placeholderLineHeight;
- }
- .ui.placeholder .line:not(:first-child) {
- margin-top: @placeholderLineHeight;
- }
-
- /* Line Outdent */
- .ui.placeholder .line:nth-child(1):after {
- width: @placeholderLineOneOutdent;
- }
- .ui.placeholder .line:nth-child(2):after {
- width: @placeholderLineTwoOutdent;
- }
- .ui.placeholder .line:nth-child(3):after {
- width: @placeholderLineThreeOutdent;
- }
- .ui.placeholder .line:nth-child(4):after {
- width: @placeholderLineFourOutdent;
- }
- .ui.placeholder .line:nth-child(5):after {
- width: @placeholderLineFiveOutdent;
- }
-}
-
-& when (@variationPlaceholderHeader) {
- /* Header Image + 2 Lines */
- .ui.placeholder .header {
- position: relative;
- overflow: hidden;
- }
- /* Header Line 1 & 2*/
- .ui.placeholder .header .line {
- margin-bottom: @placeholderHeaderLineHeight;
- }
- .ui.placeholder .header .line:before,
- .ui.placeholder .header .line:after {
- height: @placeholderHeaderLineHeight;
- }
- .ui.placeholder .header .line:not(:first-child) {
- margin-top: @placeholderHeaderLineHeight;
- }
- .ui.placeholder .header .line:after {
- width: @placeholderHeaderLineOneOutdent;
- }
- .ui.placeholder .header .line:nth-child(2):after {
- width: @placeholderHeaderLineTwoOutdent;
- }
-
- & when (@variationPlaceholderImage) {
- /* Image Header */
- .ui.placeholder .image.header .line {
- margin-left: @placeholderImageWidth;
- }
- .ui.placeholder .image.header .line:before {
- width: @placeholderImageTextIndent;
- }
- .ui.placeholder .image.header:after {
- display: block;
- height: @placeholderLineMargin;
- content: '';
- margin-left: @placeholderImageWidth;
- }
- }
-}
-
-/* Spacing */
-.ui.placeholder .image .line:first-child,
-.ui.placeholder .paragraph .line:first-child,
-.ui.placeholder .header .line:first-child {
- height: 0.01px;
-}
-.ui.placeholder .image:not(:first-child):before,
-.ui.placeholder .paragraph:not(:first-child):before,
-.ui.placeholder .header:not(:first-child):before {
- height: @placeholderSpacing;
- content: '';
- display: block;
-}
-
-& when (@variationPlaceholderInverted) {
- /* Inverted Content Loader */
- .ui.inverted.placeholder {
- background-image: @placeholderInvertedLoadingGradient;
- }
- .ui.inverted.placeholder,
- .ui.inverted.placeholder > :before,
- .ui.inverted.placeholder .image.header:after,
- .ui.inverted.placeholder .line,
- .ui.inverted.placeholder .line:after {
- background-color: @black;
- }
-}
-
-/*******************************
- Variations
-*******************************/
-
-
-/*-------------------
- Sizes
---------------------*/
-& when (@variationPlaceholderLengths) {
- .ui.placeholder .full.line.line.line:after {
- width: @placeholderFullLineOutdent;
- }
- .ui.placeholder .very.long.line.line.line:after {
- width: @placeholderVeryLongLineOutdent;
- }
- .ui.placeholder .long.line.line.line:after {
- width: @placeholderLongLineOutdent;
- }
- .ui.placeholder .medium.line.line.line:after {
- width: @placeholderMediumLineOutdent;
- }
- .ui.placeholder .short.line.line.line:after {
- width: @placeholderShortLineOutdent;
- }
- .ui.placeholder .very.short.line.line.line:after {
- width: @placeholderVeryShortLineOutdent;
- }
-}
-
-& when (@variationPlaceholderFluid) {
- /*-------------------
- Fluid
- --------------------*/
-
- .ui.fluid.placeholder {
- max-width: none;
- }
-}
-
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/elements/rail.less b/src-angular/assets/semantic/src/definitions/elements/rail.less
deleted file mode 100644
index d7ffc51..0000000
--- a/src-angular/assets/semantic/src/definitions/elements/rail.less
+++ /dev/null
@@ -1,147 +0,0 @@
-/*!
- * # Fomantic-UI - Rail
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'element';
-@element : 'rail';
-
-@import (multiple) '../../theme.config';
-
-/*******************************
- Rails
-*******************************/
-
-.ui.rail {
- position: absolute;
- top: 0;
- width: @width;
- height: @height;
-}
-
-.ui.left.rail {
- left: auto;
- right: 100%;
- padding: 0 @splitDistance 0 0;
- margin: 0 @splitDistance 0 0;
-}
-
-.ui.right.rail {
- left: 100%;
- right: auto;
- padding: 0 0 0 @splitDistance;
- margin: 0 0 0 @splitDistance;
-}
-
-/*******************************
- Variations
-*******************************/
-
-& when (@variationRailInternal) {
- /*--------------
- Internal
- ---------------*/
-
- .ui.left.internal.rail {
- left: 0;
- right: auto;
- padding: 0 0 0 @splitDistance;
- margin: 0 0 0 @splitDistance;
- }
-
- .ui.right.internal.rail {
- left: auto;
- right: 0;
- padding: 0 @splitDistance 0 0;
- margin: 0 @splitDistance 0 0;
- }
-}
-
-& when (@variationRailDividing) {
- /*--------------
- Dividing
- ---------------*/
-
- .ui.dividing.rail {
- width: @dividingWidth;
- }
- .ui.left.dividing.rail {
- padding: 0 @splitDividingDistance 0 0;
- margin: 0 @splitDividingDistance 0 0;
- border-right: @dividingBorder;
- }
- .ui.right.dividing.rail {
- border-left: @dividingBorder;
- padding: 0 0 0 @splitDividingDistance;
- margin: 0 0 0 @splitDividingDistance;
- }
-}
-
-& when (@variationRailDistance) {
- /*--------------
- Distance
- ---------------*/
-
- .ui.close.rail {
- width: @closeWidth;
- }
- .ui.close.left.rail {
- padding: 0 @splitCloseDistance 0 0;
- margin: 0 @splitCloseDistance 0 0;
- }
- .ui.close.right.rail {
- padding: 0 0 0 @splitCloseDistance;
- margin: 0 0 0 @splitCloseDistance;
- }
-
- .ui.very.close.rail {
- width: @veryCloseWidth;
- }
- .ui.very.close.left.rail {
- padding: 0 @splitVeryCloseDistance 0 0;
- margin: 0 @splitVeryCloseDistance 0 0;
- }
- .ui.very.close.right.rail {
- padding: 0 0 0 @splitVeryCloseDistance;
- margin: 0 0 0 @splitVeryCloseDistance;
- }
-}
-
-& when (@variationRailAttached) {
- /*--------------
- Attached
- ---------------*/
-
- .ui.attached.left.rail,
- .ui.attached.right.rail {
- padding: 0;
- margin: 0;
- }
-}
-
-/*--------------
- Sizing
----------------*/
-
-.ui.rail {
- font-size: @medium;
-}
-& when not (@variationRailSizes = false) {
- each(@variationRailSizes, {
- @s: @@value;
- .ui.@{value}.rail {
- font-size: @s;
- }
- })
-}
-
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/elements/reveal.less b/src-angular/assets/semantic/src/definitions/elements/reveal.less
deleted file mode 100644
index 839668e..0000000
--- a/src-angular/assets/semantic/src/definitions/elements/reveal.less
+++ /dev/null
@@ -1,289 +0,0 @@
-/*!
- * # Fomantic-UI - Reveal
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'element';
-@element : 'reveal';
-
-@import (multiple) '../../theme.config';
-
-/*******************************
- Reveal
-*******************************/
-
-.ui.reveal {
- display: inherit;
- position: relative !important;
- font-size: 0;
-}
-
-.ui.reveal > .visible.content {
- position: absolute !important;
- top: 0 !important;
- left: 0 !important;
- z-index: @topZIndex !important;
- transition: @transition;
-}
-.ui.reveal > .hidden.content {
- position: relative !important;
- z-index: @bottomZIndex !important;
-}
-
-/* Make sure hovered element is on top of other reveal */
-.ui.active.reveal .visible.content,
-.ui.reveal:hover .visible.content {
- z-index: @activeZIndex !important;
-}
-
-
-/*******************************
- Types
-*******************************/
-
-& when (@variationRevealSlide) {
- /*--------------
- Slide
- ---------------*/
-
- .ui.slide.reveal {
- position: relative !important;
- overflow: hidden !important;
- white-space: nowrap;
- }
-
- .ui.slide.reveal > .content {
- display: block;
- width: 100%;
- white-space: normal;
- float: left;
-
- margin: 0;
- transition: @slideTransition;
- }
-
- .ui.slide.reveal > .visible.content {
- position: relative !important;
- }
- .ui.slide.reveal > .hidden.content {
- position: absolute !important;
- left: 0 !important;
- width: 100% !important;
- transform: translateX(100%) !important;
- }
- .ui.slide.active.reveal > .visible.content,
- .ui.slide.reveal:hover > .visible.content {
- transform: translateX(-100%) !important;
- }
- .ui.slide.active.reveal > .hidden.content,
- .ui.slide.reveal:hover > .hidden.content {
- transform: translateX(0%) !important;
- }
-
- .ui.slide.right.reveal > .visible.content {
- transform: translateX(0%) !important;
- }
- .ui.slide.right.reveal > .hidden.content {
- transform: translateX(-100%) !important;
- }
- .ui.slide.right.active.reveal > .visible.content,
- .ui.slide.right.reveal:hover > .visible.content {
- transform: translateX(100%) !important;
- }
- .ui.slide.right.active.reveal > .hidden.content,
- .ui.slide.right.reveal:hover > .hidden.content {
- transform: translateX(0%) !important;
- }
-
- .ui.slide.up.reveal > .hidden.content {
- transform: translateY(100%) !important;
- }
- .ui.slide.up.active.reveal > .visible.content,
- .ui.slide.up.reveal:hover > .visible.content {
- transform: translateY(-100%) !important;
- }
- .ui.slide.up.active.reveal > .hidden.content,
- .ui.slide.up.reveal:hover > .hidden.content {
- transform: translateY(0%) !important;
- }
-
- .ui.slide.down.reveal > .hidden.content {
- transform: translateY(-100%) !important;
- }
- .ui.slide.down.active.reveal > .visible.content,
- .ui.slide.down.reveal:hover > .visible.content {
- transform: translateY(100%) !important;
- }
- .ui.slide.down.active.reveal > .hidden.content,
- .ui.slide.down.reveal:hover > .hidden.content {
- transform: translateY(0%) !important;
- }
-}
-
-& when (@variationRevealFade) {
- /*--------------
- Fade
- ---------------*/
-
- .ui.fade.reveal > .visible.content {
- opacity: 1;
- }
- .ui.fade.active.reveal > .visible.content,
- .ui.fade.reveal:hover > .visible.content {
- opacity: 0;
- }
-}
-
-& when (@variationRevealMove) {
- /*--------------
- Move
- ---------------*/
-
- .ui.move.reveal {
- position: relative !important;
- overflow: hidden !important;
- white-space: nowrap;
- }
-
- .ui.move.reveal > .content {
- display: block;
- float: left;
- white-space: normal;
-
- margin: 0;
- transition: @moveTransition;
- }
-
- .ui.move.reveal > .visible.content {
- position: relative !important;
- }
- .ui.move.reveal > .hidden.content {
- position: absolute !important;
- left: 0 !important;
- width: 100% !important;
- }
- .ui.move.active.reveal > .visible.content,
- .ui.move.reveal:hover > .visible.content {
- transform: translateX(-100%) !important;
- }
- .ui.move.right.active.reveal > .visible.content,
- .ui.move.right.reveal:hover > .visible.content {
- transform: translateX(100%) !important;
- }
- .ui.move.up.active.reveal > .visible.content,
- .ui.move.up.reveal:hover > .visible.content {
- transform: translateY(-100%) !important;
- }
- .ui.move.down.active.reveal > .visible.content,
- .ui.move.down.reveal:hover > .visible.content {
- transform: translateY(100%) !important;
- }
-}
-
-
-& when (@variationRevealRotate) {
- /*--------------
- Rotate
- ---------------*/
-
- .ui.rotate.reveal > .visible.content {
- transition-duration: @transitionDuration;
- transform: rotate(0deg);
- }
-
- .ui.rotate.reveal > .visible.content,
- .ui.rotate.right.reveal > .visible.content {
- transform-origin: bottom right;
- }
- .ui.rotate.active.reveal > .visible.content,
- .ui.rotate.reveal:hover > .visible.content,
- .ui.rotate.right.active.reveal > .visible.content,
- .ui.rotate.right.reveal:hover > .visible.content {
- transform: rotate(@rotateDegrees);
- }
-
- .ui.rotate.left.reveal > .visible.content {
- transform-origin: bottom left;
- }
- .ui.rotate.left.active.reveal > .visible.content,
- .ui.rotate.left.reveal:hover > .visible.content {
- transform: rotate(-@rotateDegrees);
- }
-}
-
-/*******************************
- States
-*******************************/
-
-& when (@variationRevealDisabled) {
- .ui.disabled.reveal:hover > .visible.visible.content {
- position: static !important;
- display: block !important;
- opacity: 1 !important;
- top: 0 !important;
- left: 0 !important;
- right: auto !important;
- bottom: auto !important;
- transform: none !important;
- }
- .ui.disabled.reveal:hover > .hidden.hidden.content {
- display: none !important;
- }
-}
-
-
-/*******************************
- Coupling
-*******************************/
-
-.ui.reveal > .ui.ribbon.label {
- z-index: @overlayZIndex;
-}
-
-/*******************************
- Variations
-*******************************/
-
-/*--------------
- Visible
----------------*/
-
-.ui.visible.reveal {
- overflow: visible;
-}
-
-/*--------------
- Instant
----------------*/
-
-.ui.instant.reveal > .content {
- transition-delay: 0s !important;
-}
-
-
-/*--------------
- Sizing
----------------*/
-
-.ui.reveal > .content {
- font-size: @medium;
-}
-& when not (@variationRevealSizes = false) {
- each(@variationRevealSizes, {
- @s: @@value;
- .ui.@{value}.reveal > .content {
- font-size: @s;
- }
- })
-}
-
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/elements/segment.less b/src-angular/assets/semantic/src/definitions/elements/segment.less
deleted file mode 100644
index 0ca3517..0000000
--- a/src-angular/assets/semantic/src/definitions/elements/segment.less
+++ /dev/null
@@ -1,768 +0,0 @@
-/*!
- * # Fomantic-UI - Segment
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'element';
-@element : 'segment';
-
-@import (multiple) '../../theme.config';
-
-/*******************************
- Segment
-*******************************/
-
-.ui.segment {
- position: relative;
- background: @background;
- box-shadow: @boxShadow;
- margin: @margin;
- padding: @padding;
- border-radius: @borderRadius;
- border: @border;
-}
-
-.ui.segment:first-child {
- margin-top: 0;
-}
-.ui.segment:last-child {
- margin-bottom: 0;
-}
-
-& when (@variationSegmentVertical) {
- /* Vertical */
- .ui.vertical.segment {
- margin: 0;
- padding-left: 0;
- padding-right: 0;
-
- background: none transparent;
- border-radius: 0;
- box-shadow: none;
- border: none;
- border-bottom: @borderWidth solid @borderColor;
- }
- .ui.vertical.segment:last-child {
- border-bottom: none;
- }
-}
-
-
-/*-------------------
- Loose Coupling
---------------------*/
-& when (@variationSegmentInverted) {
- /* Header */
- .ui.inverted.segment > .ui.header > .sub.header,
- .ui.inverted.segment > .ui.header {
- color: @white;
- }
-}
-
-& when (@variationSegmentAttached) {
- /* Label */
- .ui[class*="bottom attached"].segment > [class*="top attached"].label {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- }
- .ui[class*="top attached"].segment > [class*="bottom attached"].label {
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
- }
- .ui.attached.segment:not(.top):not(.bottom) > [class*="top attached"].label {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- }
- .ui.attached.segment:not(.top):not(.bottom) > [class*="bottom attached"].label {
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
- }
-}
-
-/* Grid */
-.ui.page.grid.segment,
-.ui.grid > .row > .ui.segment.column,
-.ui.grid > .ui.segment.column {
- padding-top: @pageGridMargin;
- padding-bottom: @pageGridMargin;
-}
-.ui.grid.segment {
- margin: @margin;
- border-radius: @borderRadius;
-}
-
-/* Table */
-.ui.basic.table.segment {
- background: @background;
- border: @border;
- box-shadow: @boxShadow;
-}
-.ui[class*="very basic"].table.segment {
- padding: @padding;
-}
-
-/* Tab */
-.ui.segment.tab:last-child {
- margin-bottom: @verticalMargin;
-}
-
-/*******************************
- Types
-*******************************/
-
-& when (@variationSegmentPlaceholder) {
- /*-------------------
- Placeholder
- --------------------*/
-
- .ui.placeholder.segment {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: stretch;
- max-width: initial;
- animation: none;
- overflow: visible;
- padding: @placeholderPadding;
- min-height: @placeholderMinHeight;
- background: @placeholderBackground;
- border-color: @placeholderBorderColor;
- box-shadow: @placeholderBoxShadow;
- }
-
- .ui.placeholder.segment .button,
- .ui.placeholder.segment textarea {
- display: block;
- }
- .ui.placeholder.segment .field,
- .ui.placeholder.segment textarea,
- .ui.placeholder.segment > .ui.input,
- .ui.placeholder.segment .button {
- max-width: @placeholderContentMaxWidth;
- margin-left: auto;
- margin-right: auto;
- }
- .ui.placeholder.segment .column .button,
- .ui.placeholder.segment .column .field,
- .ui.placeholder.segment .column textarea,
- .ui.placeholder.segment .column > .ui.input {
- max-width: @placeholderContentMaxWidth;
- margin-left: auto;
- margin-right: auto;
- }
-
- .ui.placeholder.segment > .inline {
- align-self: center;
- }
- .ui.placeholder.segment > .inline > .button {
- display: inline-block;
- width: auto;
- margin: @placeholderContentInlineButtonMargin;
- }
- .ui.placeholder.segment > .inline > .button:last-child {
- margin-right: 0;
- }
-}
-
-& when (@variationSegmentPiled) {
- /*-------------------
- Piled
- --------------------*/
-
- .ui.piled.segments,
- .ui.piled.segment {
- margin: @piledMargin 0;
- box-shadow: @piledBoxShadow;
- z-index: @piledZIndex;
- }
- .ui.piled.segment:first-child {
- margin-top: 0;
- }
- .ui.piled.segment:last-child {
- margin-bottom: 0;
- }
- .ui.piled.segments:after,
- .ui.piled.segments:before,
- .ui.piled.segment:after,
- .ui.piled.segment:before {
- background-color: @white;
- visibility: visible;
- content: '';
- display: block;
- height: 100%;
- left: 0;
- position: absolute;
- width: 100%;
- border: @piledBorder;
- box-shadow: @piledBoxShadow;
- }
- .ui.piled.segments:before,
- .ui.piled.segment:before {
- transform: rotate(-@piledDegrees);
- top: 0;
- z-index: -2;
- }
- .ui.piled.segments:after,
- .ui.piled.segment:after {
- transform: rotate(@piledDegrees);
- top: 0;
- z-index: -1;
- }
- & when (@variationSegmentAttached) {
- /* Piled Attached */
- .ui[class*="top attached"].piled.segment {
- margin-top: @piledMargin;
- margin-bottom: 0;
- }
- .ui.piled.segment[class*="top attached"]:first-child {
- margin-top: 0;
- }
- .ui.piled.segment[class*="bottom attached"] {
- margin-top: 0;
- margin-bottom: @piledMargin;
- }
- .ui.piled.segment[class*="bottom attached"]:last-child {
- margin-bottom: 0;
- }
- }
-}
-
-& when (@variationSegmentStacked) {
- /*-------------------
- Stacked
- --------------------*/
-
- .ui.stacked.segment {
- padding-bottom: @stackedPadding;
- }
- .ui.stacked.segments:before,
- .ui.stacked.segments:after,
- .ui.stacked.segment:before,
- .ui.stacked.segment:after {
- content: '';
- position: absolute;
- bottom: -(@stackedHeight / 2);
- left: 0;
-
- border-top: 1px solid @borderColor;
- background: @stackedPageBackground;
-
- width: 100%;
- height: @stackedHeight;
- visibility: visible;
- }
- .ui.stacked.segments:before,
- .ui.stacked.segment:before {
- display: none;
- }
-
- /* Add additional page */
- .ui.tall.stacked.segments:before,
- .ui.tall.stacked.segment:before {
- display: block;
- bottom: 0;
- }
- & when (@variationSegmentInverted) {
- /* Inverted */
- .ui.stacked.inverted.segments:before,
- .ui.stacked.inverted.segments:after,
- .ui.stacked.inverted.segment:before,
- .ui.stacked.inverted.segment:after {
- background-color: @subtleTransparentBlack;
- border-top: 1px solid @selectedBorderColor;
- }
- }
-}
-
-& when (@variationSegmentPadded) {
- /*-------------------
- Padded
- --------------------*/
-
- .ui.padded.segment {
- padding: @paddedSegmentPadding;
- }
-
- .ui[class*="very padded"].segment {
- padding: @veryPaddedSegmentPadding;
- }
-
- & when (@variationSegmentVertical) {
- /* Padded vertical */
- .ui.padded.segment.vertical.segment,
- .ui[class*="very padded"].vertical.segment {
- padding-left: 0;
- padding-right: 0;
- }
- }
-}
-
-& when (@variationSegmentCompact) {
- /*-------------------
- Compact
- --------------------*/
-
- .ui.compact.segment {
- display: table;
- }
-
- /* Compact Group */
- .ui.compact.segments {
- display: inline-flex;
- }
- .ui.compact.segments .segment,
- .ui.segments .compact.segment {
- display: block;
- flex: 0 1 auto;
- }
-}
-
-& when (@variationSegmentCircular) {
- /*-------------------
- Circular
- --------------------*/
-
- .ui.circular.segment {
- display: table-cell;
- padding: @circularPadding;
- text-align: center;
- vertical-align: middle;
- border-radius: 500em;
- }
-}
-
-& when (@variationSegmentRaised) {
- /*-------------------
- Raised
- --------------------*/
-
- .ui.raised.raised.segments,
- .ui.raised.raised.segment {
- box-shadow: @raisedBoxShadow;
- }
-}
-
-& when (@variationSegmentGroups) {
- /*******************************
- Groups
- *******************************/
-
- /* Group */
- .ui.segments {
- flex-direction: column;
- position: relative;
- margin: @groupedMargin;
- border: @groupedBorder;
- box-shadow: @groupedBoxShadow;
- border-radius: @groupedBorderRadius;
- }
- .ui.segments:first-child {
- margin-top: 0;
- }
- .ui.segments:last-child {
- margin-bottom: 0;
- }
-
-
- /* Nested Segment */
- .ui.segments > .segment {
- top: 0;
- bottom: 0;
- border-radius: 0;
- margin: @groupedSegmentMargin;
- width: @groupedSegmentWidth;
- box-shadow: @groupedSegmentBoxShadow;
- border: @groupedSegmentBorder;
- border-top: @groupedSegmentDivider;
- }
-
- .ui.segments:not(.horizontal) > .segment:first-child {
- top: @attachedTopOffset;
- bottom: 0;
- border-top: none;
- margin-top: 0;
- margin-bottom: 0;
- border-radius: @borderRadius @borderRadius 0 0;
- }
-
- /* Bottom */
- .ui.segments:not(.horizontal) > .segment:last-child {
- top: @attachedBottomOffset;
- bottom: 0;
- margin-top: 0;
- margin-bottom: 0;
- box-shadow: @attachedBottomBoxShadow;
- border-radius: 0 0 @borderRadius @borderRadius;
- }
-
- /* Only */
- .ui.segments:not(.horizontal) > .segment:only-child {
- border-radius: @borderRadius;
- }
-
-
- /* Nested Group */
- .ui.segments > .ui.segments {
- border-top: @groupedSegmentDivider;
- margin: @nestedGroupMargin;
- }
- .ui.segments > .segments:first-child {
- border-top: none;
- }
- .ui.segments > .segment + .segments:not(.horizontal) {
- margin-top: 0;
- }
-
- & when (@variationSegmentHorizontal) {
- /* Horizontal Group */
- .ui.horizontal.segments {
- display: flex;
- flex-direction: row;
- background-color: transparent;
- padding: 0;
- box-shadow: @boxShadow;
- margin: @margin;
- border-radius: @borderRadius;
- border: @border;
- }
- .ui.stackable.horizontal.segments {
- flex-wrap: wrap;
- }
-
- /* Nested Horizontal Group */
- .ui.segments > .horizontal.segments {
- margin: 0;
- background-color: transparent;
- border-radius: 0;
- border: none;
- box-shadow: none;
- border-top: @groupedSegmentDivider;
- }
-
- /* Horizontal Segment */
- .ui.horizontal.segments:not(.compact) > .segment:not(.compact) {
- flex: 1 1 auto;
- -ms-flex: 1 1 0; /* Solves #2550 MS Flex */
- }
- .ui.horizontal.segments > .segment {
- margin: 0;
- min-width: 0;
- border-radius: 0;
- border: none;
- box-shadow: none;
- border-left: @borderWidth solid @borderColor;
- }
-
- /* Border Fixes */
- .ui.segments > .horizontal.segments:first-child {
- border-top: none;
- }
- .ui.horizontal.segments:not(.stackable) > .segment:first-child {
- border-left: none;
- }
- }
-}
-
-
-/*******************************
- States
-*******************************/
-
-& when (@variationSegmentDisabled) {
- /*--------------
- Disabled
- ---------------*/
-
- .ui.disabled.segment {
- opacity: @disabledOpacity;
- color: @disabledTextColor;
- }
-}
-
-& when (@variationSegmentLoading) {
- /*--------------
- Loading
- ---------------*/
-
- .ui.loading.segment {
- position: relative;
- cursor: default;
- pointer-events: none;
- text-shadow: none !important;
- transition: all 0s linear;
- }
- .ui.loading.segment:before {
- position: absolute;
- content: '';
- top: 0;
- left: 0;
- background: @loaderDimmerColor;
- width: 100%;
- height: 100%;
- border-radius: @borderRadius;
- z-index: @loaderDimmerZIndex;
- }
- .ui.loading.segment:after {
- position: absolute;
- content: '';
- top: 50%;
- left: 50%;
-
- margin: @loaderMargin;
- width: @loaderSize;
- height: @loaderSize;
-
- animation: loader @loaderSpeed infinite linear;
- border: @loaderLineWidth solid @loaderLineColor;
- border-radius: @circularRadius;
-
- box-shadow: 0 0 0 1px transparent;
- visibility: visible;
- z-index: @loaderLineZIndex;
- }
-}
-
-
-
-/*******************************
- Variations
-*******************************/
-
-& when (@variationSegmentBasic) {
- /*-------------------
- Basic
- --------------------*/
-
- .ui.basic.segment,
- .ui.segments .ui.basic.segment,
- .ui.basic.segments {
- background: @basicBackground;
- box-shadow: @basicBoxShadow;
- border: @basicBorder;
- border-radius: @basicBorderRadius;
- }
-}
-
-& when (@variationSegmentClearing) {
- /*-------------------
- Clearing
- --------------------*/
-
- .ui.clearing.segment:after {
- content: "";
- display: block;
- clear: both;
- }
-}
-
-/*-------------------
- Colors
---------------------*/
-
-each(@colors,{
- @color: replace(@key,'@','');
- @c: @colors[@@color][color];
- & when not (@color=primary) and not (@color=secondary) {
- .ui.@{color}.segment.segment.segment.segment.segment:not(.inverted) {
- border-top: @coloredBorderSize solid @c;
- }
- & when (@variationSegmentInverted) {
- .ui.inverted.@{color}.segment.segment.segment.segment.segment {
- background-color: @c;
- color: @white;
- }
- }
- }
-})
-
-& when (@variationSegmentAligned) {
- /*-------------------
- Aligned
- --------------------*/
-
- .ui[class*="left aligned"].segment {
- text-align: left;
- }
- .ui[class*="right aligned"].segment {
- text-align: right;
- }
- .ui[class*="center aligned"].segment {
- text-align: center;
- }
-}
-
-& when (@variationSegmentFloating) {
- /*-------------------
- Floated
- --------------------*/
-
- .ui.floated.segment,
- .ui[class*="left floated"].segment {
- float: left;
- margin-right: @floatedDistance;
- }
- .ui[class*="right floated"].segment {
- float: right;
- margin-left: @floatedDistance;
- }
-}
-
-& when (@variationSegmentInverted) {
- /*-------------------
- Inverted
- --------------------*/
-
- .ui.inverted.segment {
- border: none;
- box-shadow: none;
- }
- .ui.inverted.segment,
- .ui.primary.inverted.segment {
- background: @invertedBackground;
- color: @invertedTextColor;
- }
-
- /* Nested */
- .ui.inverted.segment .segment {
- color: @textColor;
- }
- .ui.inverted.segment .inverted.segment {
- color: @invertedTextColor;
- }
- & when (@variationSegmentAttached) {
- /* Attached */
- .ui.inverted.attached.segment {
- border-color: @solidWhiteBorderColor;
- }
- }
- & when (@variationSegmentLoading) {
- /* Loading */
- .ui.inverted.loading.segment {
- color: @invertedLoaderLineColor;
- }
- .ui.inverted.loading.segment:before {
- background: @loaderInvertedDimmerColor;
- }
- }
-}
-
-/*-------------------
- Emphasis
---------------------*/
-& when (@variationSegmentSecondary) {
- /* Secondary */
- .ui.secondary.segment {
- background: @secondaryBackground;
- color: @secondaryColor;
- }
- & when (@variationSegmentInverted) {
- .ui.secondary.inverted.segment {
- background: @secondaryInvertedBackground;
- color: @secondaryInvertedColor;
- }
- }
-}
-
-& when (@variationSegmentTertiary) {
- /* Tertiary */
- .ui.tertiary.segment {
- background: @tertiaryBackground;
- color: @tertiaryColor;
- }
- & when (@variationSegmentInverted) {
- .ui.tertiary.inverted.segment {
- background: @tertiaryInvertedBackground;
- color: @tertiaryInvertedColor;
- }
- }
-}
-
-& when (@variationSegmentAttached) {
- /*-------------------
- Attached
- --------------------*/
-
- /* Middle */
- .ui.attached.segment {
- top: 0;
- bottom: 0;
- border-radius: 0;
- margin: 0 @attachedHorizontalOffset;
- width: @attachedWidth;
- max-width: @attachedWidth;
- box-shadow: @attachedBoxShadow;
- border: @attachedBorder;
- }
- .ui.attached:not(.message) + .ui.attached.segment:not(.top) {
- border-top: none;
- }
-
- /* Top */
- .ui[class*="top attached"].segment {
- bottom: 0;
- margin-bottom: 0;
- top: @attachedTopOffset;
- margin-top: @verticalMargin;
- border-radius: @borderRadius @borderRadius 0 0;
- }
- .ui.segment[class*="top attached"]:first-child {
- margin-top: 0;
- }
-
- /* Bottom */
- .ui.segment[class*="bottom attached"] {
- bottom: 0;
- margin-top: 0;
- top: @attachedBottomOffset;
- margin-bottom: @verticalMargin;
- box-shadow: @attachedBottomBoxShadow;
- border-radius: 0 0 @borderRadius @borderRadius;
- }
- .ui.segment[class*="bottom attached"]:last-child {
- margin-bottom: @verticalMargin;
- }
-}
-
-& when (@variationSegmentFitted) {
- /*--------------
- Fitted
- ---------------*/
-
- .ui.fitted.segment:not(.horizontally) {
- padding-top: 0;
- padding-bottom: 0;
- }
- .ui.fitted.segment:not(.vertically) {
- padding-left: 0;
- padding-right: 0;
- }
-}
-
-/*-------------------
- Size
---------------------*/
-
-.ui.segments .segment,
-.ui.segment {
- font-size: @medium;
-}
-& when not (@variationSegmentSizes = false) {
- each(@variationSegmentSizes, {
- @s: @@value;
- .ui.@{value}.segments .segment,
- .ui.@{value}.segment {
- font-size: @s;
- }
- })
-}
-
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/elements/step.less b/src-angular/assets/semantic/src/definitions/elements/step.less
deleted file mode 100644
index 4f72c20..0000000
--- a/src-angular/assets/semantic/src/definitions/elements/step.less
+++ /dev/null
@@ -1,624 +0,0 @@
-/*!
- * # Fomantic-UI - Step
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-
-/*******************************
- Step
-*******************************/
-
-/*--------------
- Load Theme
----------------*/
-
-@type : 'element';
-@element : 'step';
-
-@import (multiple) '../../theme.config';
-
-/*******************************
- Plural
-*******************************/
-
-.ui.steps {
- display: inline-flex;
- flex-direction: row;
- align-items: stretch;
- margin: @stepMargin;
- background: @stepsBackground;
- box-shadow: @stepsBoxShadow;
- line-height: @lineHeight;
- border-radius: @stepsBorderRadius;
- border: @stepsBorder;
-}
-.ui.steps:not(.unstackable) {
- flex-wrap: wrap;
-}
-
-/* First Steps */
-.ui.steps:first-child {
- margin-top: 0;
-}
-
-/* Last Steps */
-.ui.steps:last-child {
- margin-bottom: 0;
-}
-
-
-/*******************************
- Singular
-*******************************/
-
-.ui.steps .step {
- position: relative;
- display: flex;
- flex: 1 0 auto;
- flex-wrap: wrap;
- flex-direction: row;
- vertical-align: middle;
- align-items: center;
- justify-content: @justifyContent;
-
- margin: @verticalMargin @horizontalMargin;
- padding: @verticalPadding @horizontalPadding;
- background: @background;
- color: @textColor;
- box-shadow: @boxShadow;
- border-radius: @borderRadius;
- border: @border;
- border-right: @divider;
- transition: @transition;
-}
-
-/* Arrow */
-.ui.steps .step:after {
- display: none;
- position: absolute;
- z-index: 2;
- content: '';
- top: @arrowTopOffset;
- right: @arrowRightOffset;
- background-color: @arrowBackgroundColor;
- width: @arrowSize;
- height: @arrowSize;
-
- border-style: solid;
- border-color: @borderColor;
- border-width: @arrowBorderWidth;
-
- transition: @transition;
- transform: translateY(-50%) translateX(50%) rotate(-45deg);
-}
-
-/* First Step */
-.ui.steps .step:first-child {
- padding-left: @horizontalPadding;
- border-radius: @stepsBorderRadius 0 0 @stepsBorderRadius;
-}
-
-/* Last Step */
-.ui.steps .step:last-child {
- border-radius: 0 @stepsBorderRadius @stepsBorderRadius 0;
- border-right: none;
- margin-right: 0;
-}
-
-/* Only Step */
-.ui.steps .step:only-child {
- border-radius: @stepsBorderRadius;
-}
-
-
-/*******************************
- Content
-*******************************/
-
-/* Title */
-.ui.steps .step .title {
- font-family: @titleFontFamily;
- font-size: @titleFontSize;
- font-weight: @titleFontWeight;
-}
-.ui.steps .step > .title {
- width: 100%;
-}
-
-/* Description */
-.ui.steps .step .description {
- font-weight: @descriptionFontWeight;
- font-size: @descriptionFontSize;
- color: @descriptionColor;
-}
-.ui.steps .step > .description {
- width: 100%;
-}
-.ui.steps .step .title ~ .description {
- margin-top: @descriptionDistance;
-}
-
-/* Icon */
-.ui.steps .step > .icon {
- line-height: 1;
- font-size: @iconSize;
- margin: 0 @iconDistance 0 0;
-}
-.ui.steps .step > .icon,
-.ui.steps .step > .icon ~ .content {
- display: block;
- flex: 0 1 auto;
- align-self: @iconAlign;
-}
-
-/* Horizontal Icon */
-.ui.steps:not(.vertical) .step > .icon {
- width: auto;
-}
-
-/* Link */
-.ui.steps .link.step,
-.ui.steps a.step {
- cursor: pointer;
-}
-
-/*******************************
- Types
-*******************************/
-
-& when (@variationStepOrdered) {
- /*--------------
- Ordered
- ---------------*/
-
- .ui.ordered.steps {
- counter-reset: ordered;
- }
- .ui.ordered.steps .step:before {
- display: block;
- position: static;
- text-align: center;
- content: counter(ordered);
- align-self: @iconAlign;
- margin-right: @iconDistance;
- font-size: @iconSize;
- counter-increment: ordered;
- font-family: @orderedFontFamily;
- font-weight: @orderedFontWeight;
- }
-
- .ui.ordered.steps .step > * {
- display: block;
- align-self: @iconAlign;
- }
-}
-
-& when (@variationStepVertical) {
- /*--------------
- Vertical
- ---------------*/
-
- .ui.vertical.steps {
- display: inline-flex;
- flex-direction: column;
- overflow: visible;
- }
- .ui.vertical.steps .step {
- justify-content: flex-start;
- border-radius: @borderRadius;
- padding: @verticalPadding @horizontalPadding;
- border-right: none;
- border-bottom: @verticalDivider;
- }
- .ui.vertical.steps .step:first-child {
- padding: @verticalPadding @horizontalPadding;
- border-radius: @stepsBorderRadius @stepsBorderRadius 0 0;
- }
- .ui.vertical.steps .step:last-child {
- border-bottom: none;
- border-radius: 0 0 @stepsBorderRadius @stepsBorderRadius;
- }
- .ui.vertical.steps .step:only-child {
- border-radius: @stepsBorderRadius;
- }
-
-
- /* Arrow */
- .ui.vertical.steps .step:after {
- top: @verticalArrowTopOffset;
- right: @verticalArrowRightOffset;
- border-width: @verticalArrowBorderWidth;
- display: @verticalArrowDisplay;
- }
-
- .ui.vertical.steps .active.step:after {
- display: @verticalActiveArrowDisplay;
- }
- .ui.vertical.steps .step:last-child:after {
- display: @verticalLastArrowDisplay;
- }
- .ui.vertical.steps .active.step:last-child:after {
- display: @verticalActiveLastArrowDisplay;
- }
-}
-
-
-/*---------------
- Responsive
-----------------*/
-
-/* Mobile (Default) */
-@media only screen and (max-width: (@largestMobileScreen)) {
-
- .ui.steps:not(.unstackable) {
- display: inline-flex;
- overflow: visible;
- flex-direction: column;
- }
- .ui.steps:not(.unstackable) .step {
- width: 100% !important;
- flex-direction: column;
- border-radius: @borderRadius;
- padding: @verticalPadding @horizontalPadding;
- border-right: none;
- border-bottom: @stepsBorder;
- }
- .ui.steps:not(.unstackable) .step:first-child {
- padding: @verticalPadding @horizontalPadding;
- border-radius: @stepsBorderRadius @stepsBorderRadius 0 0;
- }
- .ui.steps:not(.unstackable) .step:last-child {
- border-radius: 0 0 @stepsBorderRadius @stepsBorderRadius;
- border-bottom: none;
- }
-
- /* Arrow */
- .ui.steps:not(.unstackable) .step:after {
- top: unset;
- bottom: -@arrowSize;
- right: 50%;
- transform: translateY(-50%) translateX(50%) rotate(45deg);
- }
- .ui.vertical.steps .active.step:last-child:after {
- display: none;
- }
- /* Content */
- .ui.steps:not(.unstackable) .step .content {
- text-align: center;
- }
-
- /* Icon */
- .ui.steps:not(.unstackable) .step > .icon,
- .ui.ordered.steps:not(.unstackable) .step:before {
- margin: 0 0 @mobileIconDistance 0;
- }
-
-}
-
-/*******************************
- States
-*******************************/
-
-/* Link Hover */
-.ui.steps .link.step:hover::after,
-.ui.steps .link.step:hover,
-.ui.steps a.step:hover::after,
-.ui.steps a.step:hover {
- background: @hoverBackground;
- color: @hoverColor;
-}
-
-/* Link Down */
-.ui.steps .link.step:active::after,
-.ui.steps .link.step:active,
-.ui.steps a.step:active::after,
-.ui.steps a.step:active {
- background: @downBackground;
- color: @downColor;
-}
-
-/* Active */
-.ui.steps .step.active {
- cursor: auto;
- background: @activeBackground;
-}
-.ui.steps .step.active:after {
- background: @activeBackground;
-}
-.ui.steps .step.active .title {
- color: @activeColor;
-}
-.ui.ordered.steps .step.active:before,
-.ui.steps .active.step .icon {
- color: @activeIconColor;
-}
-
-/* Active Arrow */
-.ui.steps .step:after {
- display: @arrowDisplay;
-}
-.ui.steps .active.step:after {
- display: @activeArrowDisplay;
-}
-.ui.steps .step:last-child:after {
- display: @lastArrowDisplay;
-}
-.ui.steps .active.step:last-child:after {
- display: @activeLastArrowDisplay;
-}
-
-/* Active Hover */
-.ui.steps .link.active.step:hover::after,
-.ui.steps .link.active.step:hover,
-.ui.steps a.active.step:hover::after,
-.ui.steps a.active.step:hover {
- cursor: pointer;
- background: @activeHoverBackground;
- color: @activeHoverColor;
-}
-
-/* Completed */
-.ui.steps .step.completed > .icon:before,
-.ui.ordered.steps .step.completed:before {
- color: @completedColor;
-}
-
-& when (@variationStepDisabled) {
- /* Disabled */
- .ui.steps .disabled.step {
- cursor: auto;
- background: @disabledBackground;
- pointer-events: none;
- }
- .ui.steps .disabled.step,
- .ui.steps .disabled.step .title,
- .ui.steps .disabled.step .description {
- color: @disabledColor;
- }
- .ui.steps .disabled.step:after {
- background: @disabledBackground;
- }
-}
-
-
-/*******************************
- Variations
-*******************************/
-
-& when (@variationStepStackable) {
- /*--------------
- Stackable
- ---------------*/
-
- /* Tablet Or Below */
- @media only screen and (max-width: @largestTabletScreen) {
-
- .ui[class*="tablet stackable"].steps {
- display: inline-flex;
- overflow: visible;
- flex-direction: column;
- }
-
- /* Steps */
- .ui[class*="tablet stackable"].steps .step {
- flex-direction: column;
- border-radius: @borderRadius;
- padding: @verticalPadding @horizontalPadding;
- border-right: none;
- border-bottom: @stepsBorder;
- }
- .ui[class*="tablet stackable"].steps .step:first-child {
- padding: @verticalPadding @horizontalPadding;
- border-radius: @stepsBorderRadius @stepsBorderRadius 0 0;
- }
- .ui[class*="tablet stackable"].steps .step:last-child {
- border-radius: 0 0 @stepsBorderRadius @stepsBorderRadius;
- border-bottom: none;
- }
-
- /* Arrow */
- .ui[class*="tablet stackable"].steps .step:after {
- top: unset;
- bottom: -@arrowSize;
- right: 50%;
- transform: translateY(-50%) translateX(50%) rotate(45deg);
- }
-
- /* Content */
- .ui[class*="tablet stackable"].steps .step .content {
- text-align: center;
- }
-
- /* Icon */
- .ui[class*="tablet stackable"].steps .step > .icon,
- .ui[class*="tablet stackable"].ordered.steps .step:before {
- margin: 0 0 @mobileIconDistance 0;
- }
-
- }
-}
-
-& when (@variationStepFluid) {
- /*--------------
- Fluid
- ---------------*/
-
- /* Fluid */
- .ui.fluid.steps {
- display: flex;
- width: 100%;
- }
-}
-
-& when (@variationStepAttached) {
- /*--------------
- Attached
- ---------------*/
-
- /* Top */
- .ui.attached.steps {
- width: @attachedWidth !important;
- margin: 0 @attachedHorizontalOffset @attachedVerticalOffset;
- max-width: @attachedWidth;
- border-radius: @stepsBorderRadius @stepsBorderRadius 0 0;
- }
- .ui.attached.steps .step:first-child {
- border-radius: @stepsBorderRadius 0 0 0;
- }
- .ui.attached.steps .step:last-child {
- border-radius: 0 @stepsBorderRadius 0 0;
- }
-
- /* Bottom */
- .ui.bottom.attached.steps {
- margin: @attachedVerticalOffset @attachedHorizontalOffset 0;
- border-radius: 0 0 @stepsBorderRadius @stepsBorderRadius;
- }
- .ui.bottom.attached.steps .step:first-child {
- border-radius: 0 0 0 @stepsBorderRadius;
- }
- .ui.bottom.attached.steps .step:last-child {
- border-radius: 0 0 @stepsBorderRadius 0;
- }
-}
-
-/*-------------------
- Evenly Divided
---------------------*/
-
-.ui.one.steps,
-.ui.two.steps,
-.ui.three.steps,
-.ui.four.steps,
-.ui.five.steps,
-.ui.six.steps,
-.ui.seven.steps,
-.ui.eight.steps {
- width: 100%;
-}
-.ui.one.steps > .step,
-.ui.two.steps > .step,
-.ui.three.steps > .step,
-.ui.four.steps > .step,
-.ui.five.steps > .step,
-.ui.six.steps > .step,
-.ui.seven.steps > .step,
-.ui.eight.steps > .step {
- flex-wrap: nowrap;
-}
-.ui.one.steps > .step {
- width: 100%;
-}
-.ui.two.steps > .step {
- width: 50%;
-}
-.ui.three.steps > .step {
- width: 33.333%;
-}
-.ui.four.steps > .step {
- width: 25%;
-}
-.ui.five.steps > .step {
- width: 20%;
-}
-.ui.six.steps > .step {
- width: 16.666%;
-}
-.ui.seven.steps > .step {
- width: 14.285%;
-}
-.ui.eight.steps > .step {
- width: 12.500%;
-}
-
-/*-------------------
- Sizes
---------------------*/
-
-.ui.steps .step,
-.ui.step {
- font-size: @medium;
-}
-& when not (@variationStepSizes = false) {
- each(@variationStepSizes, {
- @s: @@value;
- .ui.@{value}.steps .step,
- .ui.@{value}.step {
- font-size: @s;
- }
- })
-}
-
-& when (@variationStepInverted) {
- /*--------------
- Inverted
- ---------------*/
-
- .ui.inverted.steps {
- border: 1px solid @solidWhiteBorderColor;
- }
-
- .ui.inverted.steps .step {
- color: @invertedTextColor;
- background: @black;
- border-color: @solidWhiteBorderColor;
- }
-
- .ui.inverted.steps .step:after {
- background-color: @black;
- border-color: @solidWhiteBorderColor;
- }
-
- .ui.inverted.steps .step .description {
- color: @invertedTextColor;
- }
-
- /* Active */
- .ui.inverted.steps .step.active,
- .ui.inverted.steps .step.active:after {
- background: @invertedActiveBackground;
- }
- .ui.inverted.ordered.steps .step.active:before,
- .ui.inverted.steps .active.step .icon {
- color: @invertedSelectedTextColor;
- }
-
- & when (@variationStepDisabled) {
- /* Disabled */
- .ui.inverted.steps .disabled.step,
- .ui.inverted.steps .disabled.step:after {
- background: @invertedDisabledBackground;
- }
- .ui.inverted.steps .disabled.step,
- .ui.inverted.steps .disabled.step .title,
- .ui.inverted.steps .disabled.step .description {
- color: @invertedDisabledTextColor;
- }
- }
-
- /* Link Hover */
- .ui.inverted.steps .link.step:hover::after,
- .ui.inverted.steps .link.step:hover,
- .ui.inverted.steps a.step:hover::after,
- .ui.inverted.steps a.step:hover {
- background: @invertedHoverBackground;
- color: @invertedHoveredTextColor;
- }
-
- /* Link Down */
- .ui.inverted.steps .link.step:active::after,
- .ui.inverted.steps .link.step:active,
- .ui.inverted.steps a.step:active::after,
- .ui.inverted.steps a.step:active {
- background: @invertedActiveHoverBackground;
- color: @invertedPressedTextColor;
- }
-}
-
-
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/elements/text.less b/src-angular/assets/semantic/src/definitions/elements/text.less
deleted file mode 100644
index 1cc70cc..0000000
--- a/src-angular/assets/semantic/src/definitions/elements/text.less
+++ /dev/null
@@ -1,60 +0,0 @@
-/*!
- * # Fomantic-UI - Text
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * https://github.com/fomantic/Fomantic-UI/blob/master/LICENSE.md
- *
- */
-
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'element';
-@element : 'text';
-
-@import (multiple) '../../theme.config';
-
-
-/*******************************
- Text
-*******************************/
-
-each(@colors, {
- @color: replace(@key, '@', '');
- @c: @colors[@@color][color];
- @l: @colors[@@color][light];
-
- span.ui.@{color}.text {
- color: @c;
- }
- & when (@variationTextInverted) {
- span.ui.inverted.@{color}.text {
- color: @l;
- }
- }
-})
-
-& when (@variationTextDisabled) {
- span.ui.disabled.text {
- opacity: @disabledOpacity;
- }
-}
-
-/* Sizes */
-span.ui.medium.text {
- font-size: @medium;
-}
-& when not (@variationTextSizes = false) {
- each(@variationTextSizes, {
- @s: @@value;
- span.ui.@{value}.text {
- font-size: @s;
- }
- })
-}
-
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/globals/reset.less b/src-angular/assets/semantic/src/definitions/globals/reset.less
deleted file mode 100644
index 1ebcf6b..0000000
--- a/src-angular/assets/semantic/src/definitions/globals/reset.less
+++ /dev/null
@@ -1,40 +0,0 @@
-/*!
- * # Fomantic-UI - Reset
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'global';
-@element : 'reset';
-
-@import (multiple) '../../theme.config';
-
-/*******************************
- Reset
-*******************************/
-
-/* Border-Box */
-*,
-*:before,
-*:after {
- box-sizing: inherit;
-}
-html {
- box-sizing: border-box;
-}
-
-/* iPad Input Shadows */
-input[type="text"], input[type="email"], input[type="search"], input[type="password"] {
- -webkit-appearance: none;
- -moz-appearance: none; /* mobile firefox too! */
-}
-
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/globals/site.js b/src-angular/assets/semantic/src/definitions/globals/site.js
deleted file mode 100644
index bc53e9f..0000000
--- a/src-angular/assets/semantic/src/definitions/globals/site.js
+++ /dev/null
@@ -1,493 +0,0 @@
-/*!
- * # Fomantic-UI - Site
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-;(function ($, window, document, undefined) {
-
-$.isFunction = $.isFunction || function(obj) {
- return typeof obj === "function" && typeof obj.nodeType !== "number";
-};
-
-$.site = $.fn.site = function(parameters) {
- var
- time = new Date().getTime(),
- performance = [],
-
- query = arguments[0],
- methodInvoked = (typeof query == 'string'),
- queryArguments = [].slice.call(arguments, 1),
-
- settings = ( $.isPlainObject(parameters) )
- ? $.extend(true, {}, $.site.settings, parameters)
- : $.extend({}, $.site.settings),
-
- namespace = settings.namespace,
- error = settings.error,
-
- moduleNamespace = 'module-' + namespace,
-
- $document = $(document),
- $module = $document,
- element = this,
- instance = $module.data(moduleNamespace),
-
- module,
- returnedValue
- ;
- module = {
-
- initialize: function() {
- module.instantiate();
- },
-
- instantiate: function() {
- module.verbose('Storing instance of site', module);
- instance = module;
- $module
- .data(moduleNamespace, module)
- ;
- },
-
- normalize: function() {
- module.fix.console();
- module.fix.requestAnimationFrame();
- },
-
- fix: {
- console: function() {
- module.debug('Normalizing window.console');
- if (console === undefined || console.log === undefined) {
- module.verbose('Console not available, normalizing events');
- module.disable.console();
- }
- if (typeof console.group == 'undefined' || typeof console.groupEnd == 'undefined' || typeof console.groupCollapsed == 'undefined') {
- module.verbose('Console group not available, normalizing events');
- window.console.group = function() {};
- window.console.groupEnd = function() {};
- window.console.groupCollapsed = function() {};
- }
- if (typeof console.markTimeline == 'undefined') {
- module.verbose('Mark timeline not available, normalizing events');
- window.console.markTimeline = function() {};
- }
- },
- consoleClear: function() {
- module.debug('Disabling programmatic console clearing');
- window.console.clear = function() {};
- },
- requestAnimationFrame: function() {
- module.debug('Normalizing requestAnimationFrame');
- if(window.requestAnimationFrame === undefined) {
- module.debug('RequestAnimationFrame not available, normalizing event');
- window.requestAnimationFrame = window.requestAnimationFrame
- || window.mozRequestAnimationFrame
- || window.webkitRequestAnimationFrame
- || window.msRequestAnimationFrame
- || function(callback) { setTimeout(callback, 0); }
- ;
- }
- }
- },
-
- moduleExists: function(name) {
- return ($.fn[name] !== undefined && $.fn[name].settings !== undefined);
- },
-
- enabled: {
- modules: function(modules) {
- var
- enabledModules = []
- ;
- modules = modules || settings.modules;
- $.each(modules, function(index, name) {
- if(module.moduleExists(name)) {
- enabledModules.push(name);
- }
- });
- return enabledModules;
- }
- },
-
- disabled: {
- modules: function(modules) {
- var
- disabledModules = []
- ;
- modules = modules || settings.modules;
- $.each(modules, function(index, name) {
- if(!module.moduleExists(name)) {
- disabledModules.push(name);
- }
- });
- return disabledModules;
- }
- },
-
- change: {
- setting: function(setting, value, modules, modifyExisting) {
- modules = (typeof modules === 'string')
- ? (modules === 'all')
- ? settings.modules
- : [modules]
- : modules || settings.modules
- ;
- modifyExisting = (modifyExisting !== undefined)
- ? modifyExisting
- : true
- ;
- $.each(modules, function(index, name) {
- var
- namespace = (module.moduleExists(name))
- ? $.fn[name].settings.namespace || false
- : true,
- $existingModules
- ;
- if(module.moduleExists(name)) {
- module.verbose('Changing default setting', setting, value, name);
- $.fn[name].settings[setting] = value;
- if(modifyExisting && namespace) {
- $existingModules = $(':data(module-' + namespace + ')');
- if($existingModules.length > 0) {
- module.verbose('Modifying existing settings', $existingModules);
- $existingModules[name]('setting', setting, value);
- }
- }
- }
- });
- },
- settings: function(newSettings, modules, modifyExisting) {
- modules = (typeof modules === 'string')
- ? [modules]
- : modules || settings.modules
- ;
- modifyExisting = (modifyExisting !== undefined)
- ? modifyExisting
- : true
- ;
- $.each(modules, function(index, name) {
- var
- $existingModules
- ;
- if(module.moduleExists(name)) {
- module.verbose('Changing default setting', newSettings, name);
- $.extend(true, $.fn[name].settings, newSettings);
- if(modifyExisting && namespace) {
- $existingModules = $(':data(module-' + namespace + ')');
- if($existingModules.length > 0) {
- module.verbose('Modifying existing settings', $existingModules);
- $existingModules[name]('setting', newSettings);
- }
- }
- }
- });
- }
- },
-
- enable: {
- console: function() {
- module.console(true);
- },
- debug: function(modules, modifyExisting) {
- modules = modules || settings.modules;
- module.debug('Enabling debug for modules', modules);
- module.change.setting('debug', true, modules, modifyExisting);
- },
- verbose: function(modules, modifyExisting) {
- modules = modules || settings.modules;
- module.debug('Enabling verbose debug for modules', modules);
- module.change.setting('verbose', true, modules, modifyExisting);
- }
- },
- disable: {
- console: function() {
- module.console(false);
- },
- debug: function(modules, modifyExisting) {
- modules = modules || settings.modules;
- module.debug('Disabling debug for modules', modules);
- module.change.setting('debug', false, modules, modifyExisting);
- },
- verbose: function(modules, modifyExisting) {
- modules = modules || settings.modules;
- module.debug('Disabling verbose debug for modules', modules);
- module.change.setting('verbose', false, modules, modifyExisting);
- }
- },
-
- console: function(enable) {
- if(enable) {
- if(instance.cache.console === undefined) {
- module.error(error.console);
- return;
- }
- module.debug('Restoring console function');
- window.console = instance.cache.console;
- }
- else {
- module.debug('Disabling console function');
- instance.cache.console = window.console;
- window.console = {
- clear : function(){},
- error : function(){},
- group : function(){},
- groupCollapsed : function(){},
- groupEnd : function(){},
- info : function(){},
- log : function(){},
- markTimeline : function(){},
- warn : function(){}
- };
- }
- },
-
- destroy: function() {
- module.verbose('Destroying previous site for', $module);
- $module
- .removeData(moduleNamespace)
- ;
- },
-
- cache: {},
-
- setting: function(name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, settings, name);
- }
- else if(value !== undefined) {
- settings[name] = value;
- }
- else {
- return settings[name];
- }
- },
- internal: function(name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, module, name);
- }
- else if(value !== undefined) {
- module[name] = value;
- }
- else {
- return module[name];
- }
- },
- debug: function() {
- if(settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.debug.apply(console, arguments);
- }
- }
- },
- verbose: function() {
- if(settings.verbose && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.verbose.apply(console, arguments);
- }
- }
- },
- error: function() {
- module.error = Function.prototype.bind.call(console.error, console, settings.name + ':');
- module.error.apply(console, arguments);
- },
- performance: {
- log: function(message) {
- var
- currentTime,
- executionTime,
- previousTime
- ;
- if(settings.performance) {
- currentTime = new Date().getTime();
- previousTime = time || currentTime;
- executionTime = currentTime - previousTime;
- time = currentTime;
- performance.push({
- 'Element' : element,
- 'Name' : message[0],
- 'Arguments' : [].slice.call(message, 1) || '',
- 'Execution Time' : executionTime
- });
- }
- clearTimeout(module.performance.timer);
- module.performance.timer = setTimeout(module.performance.display, 500);
- },
- display: function() {
- var
- title = settings.name + ':',
- totalTime = 0
- ;
- time = false;
- clearTimeout(module.performance.timer);
- $.each(performance, function(index, data) {
- totalTime += data['Execution Time'];
- });
- title += ' ' + totalTime + 'ms';
- if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) {
- console.groupCollapsed(title);
- if(console.table) {
- console.table(performance);
- }
- else {
- $.each(performance, function(index, data) {
- console.log(data['Name'] + ': ' + data['Execution Time']+'ms');
- });
- }
- console.groupEnd();
- }
- performance = [];
- }
- },
- invoke: function(query, passedArguments, context) {
- var
- object = instance,
- maxDepth,
- found,
- response
- ;
- passedArguments = passedArguments || queryArguments;
- context = element || context;
- if(typeof query == 'string' && object !== undefined) {
- query = query.split(/[\. ]/);
- maxDepth = query.length - 1;
- $.each(query, function(depth, value) {
- var camelCaseValue = (depth != maxDepth)
- ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
- : query
- ;
- if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
- object = object[camelCaseValue];
- }
- else if( object[camelCaseValue] !== undefined ) {
- found = object[camelCaseValue];
- return false;
- }
- else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
- object = object[value];
- }
- else if( object[value] !== undefined ) {
- found = object[value];
- return false;
- }
- else {
- module.error(error.method, query);
- return false;
- }
- });
- }
- if ( $.isFunction( found ) ) {
- response = found.apply(context, passedArguments);
- }
- else if(found !== undefined) {
- response = found;
- }
- if(Array.isArray(returnedValue)) {
- returnedValue.push(response);
- }
- else if(returnedValue !== undefined) {
- returnedValue = [returnedValue, response];
- }
- else if(response !== undefined) {
- returnedValue = response;
- }
- return found;
- }
- };
-
- if(methodInvoked) {
- if(instance === undefined) {
- module.initialize();
- }
- module.invoke(query);
- }
- else {
- if(instance !== undefined) {
- module.destroy();
- }
- module.initialize();
- }
- return (returnedValue !== undefined)
- ? returnedValue
- : this
- ;
-};
-
-$.site.settings = {
-
- name : 'Site',
- namespace : 'site',
-
- error : {
- console : 'Console cannot be restored, most likely it was overwritten outside of module',
- method : 'The method you called is not defined.'
- },
-
- debug : false,
- verbose : false,
- performance : true,
-
- modules: [
- 'accordion',
- 'api',
- 'calendar',
- 'checkbox',
- 'dimmer',
- 'dropdown',
- 'embed',
- 'form',
- 'modal',
- 'nag',
- 'popup',
- 'slider',
- 'rating',
- 'shape',
- 'sidebar',
- 'state',
- 'sticky',
- 'tab',
- 'toast',
- 'transition',
- 'visibility',
- 'visit'
- ],
-
- siteNamespace : 'site',
- namespaceStub : {
- cache : {},
- config : {},
- sections : {},
- section : {},
- utilities : {}
- }
-
-};
-
-// allows for selection of elements with data attributes
-$.extend($.expr[ ":" ], {
- data: ($.expr.createPseudo)
- ? $.expr.createPseudo(function(dataName) {
- return function(elem) {
- return !!$.data(elem, dataName);
- };
- })
- : function(elem, i, match) {
- // support: jQuery < 1.8
- return !!$.data(elem, match[ 3 ]);
- }
-});
-
-
-})( jQuery, window, document );
diff --git a/src-angular/assets/semantic/src/definitions/globals/site.less b/src-angular/assets/semantic/src/definitions/globals/site.less
deleted file mode 100644
index 876deb3..0000000
--- a/src-angular/assets/semantic/src/definitions/globals/site.less
+++ /dev/null
@@ -1,207 +0,0 @@
-/*!
- * # Fomantic-UI - Site
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'global';
-@element : 'site';
-
-@import (multiple) '../../theme.config';
-
-/*******************************
- Page
-*******************************/
-
-.loadFonts();
-
-html,
-body {
- height: 100%;
-}
-
-html {
- font-size: @emSize;
-}
-
-body {
- margin: 0;
- padding: 0;
- overflow-x: @pageOverflowX;
- min-width: @pageMinWidth;
- background: @pageBackground;
- font-family: @pageFont;
- font-size: @fontSize;
- line-height: @lineHeight;
- color: @textColor;
-}
-
-/*******************************
- Headers
-*******************************/
-
-h1,
-h2,
-h3,
-h4,
-h5 {
- font-family: @headerFont;
- line-height: @headerLineHeight;
- margin: @headerMargin;
- font-weight: @headerFontWeight;
- padding: 0;
-}
-
-h1 {
- min-height: 1rem;
- font-size: @h1;
-}
-h2 {
- font-size: @h2;
-}
-h3 {
- font-size: @h3;
-}
-h4 {
- font-size: @h4;
-}
-h5 {
- font-size: @h5;
-}
-
-h1:first-child,
-h2:first-child,
-h3:first-child,
-h4:first-child,
-h5:first-child {
- margin-top: 0;
-}
-
-h1:last-child,
-h2:last-child,
-h3:last-child,
-h4:last-child,
-h5:last-child {
- margin-bottom: 0;
-}
-
-
-/*******************************
- Text
-*******************************/
-
-p {
- margin: @paragraphMargin;
- line-height: @paragraphLineHeight;
-}
-p:first-child {
- margin-top: 0;
-}
-p:last-child {
- margin-bottom: 0;
-}
-
-/*-------------------
- Links
---------------------*/
-
-a {
- color: @linkColor;
- text-decoration: @linkUnderline;
-}
-a:hover {
- color: @linkHoverColor;
- text-decoration: @linkHoverUnderline;
-}
-
-
-/*******************************
- Scrollbars
-*******************************/
-
-.addScrollbars() when (@useCustomScrollbars) {
-
- /* Force Simple Scrollbars */
- body ::-webkit-scrollbar {
- -webkit-appearance: none;
- width: @customScrollbarWidth;
- height: @customScrollbarHeight;
- }
- body ::-webkit-scrollbar-track {
- background: @trackBackground;
- border-radius: @trackBorderRadius;
- }
- body ::-webkit-scrollbar-thumb {
- cursor: pointer;
- border-radius: @thumbBorderRadius;
- background: @thumbBackground;
- transition: @thumbTransition;
- }
- body ::-webkit-scrollbar-thumb:window-inactive {
- background: @thumbInactiveBackground;
- }
- body ::-webkit-scrollbar-thumb:hover {
- background: @thumbHoverBackground;
- }
-
- /* Inverted UI */
- body .ui.inverted:not(.dimmer)::-webkit-scrollbar-track {
- background: @trackInvertedBackground;
- }
- body .ui.inverted:not(.dimmer)::-webkit-scrollbar-thumb {
- background: @thumbInvertedBackground;
- }
- body .ui.inverted:not(.dimmer)::-webkit-scrollbar-thumb:window-inactive {
- background: @thumbInvertedInactiveBackground;
- }
- body .ui.inverted:not(.dimmer)::-webkit-scrollbar-thumb:hover {
- background: @thumbInvertedHoverBackground;
- }
-}
-
-/*******************************
- Highlighting
-*******************************/
-
-/* Site */
-::-webkit-selection {
- background-color: @highlightBackground;
- color: @highlightColor;
-}
-::-moz-selection {
- background-color: @highlightBackground;
- color: @highlightColor;
-}
-::selection {
- background-color: @highlightBackground;
- color: @highlightColor;
-}
-
-/* Form */
-textarea::-webkit-selection,
-input::-webkit-selection {
- background-color: @inputHighlightBackground;
- color: @inputHighlightColor;
-}
-textarea::-moz-selection,
-input::-moz-selection {
- background-color: @inputHighlightBackground;
- color: @inputHighlightColor;
-}
-textarea::selection,
-input::selection {
- background-color: @inputHighlightBackground;
- color: @inputHighlightColor;
-}
-
-.addScrollbars();
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/modules/accordion.js b/src-angular/assets/semantic/src/definitions/modules/accordion.js
deleted file mode 100644
index 392d498..0000000
--- a/src-angular/assets/semantic/src/definitions/modules/accordion.js
+++ /dev/null
@@ -1,618 +0,0 @@
-/*!
- * # Fomantic-UI - Accordion
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-;(function ($, window, document, undefined) {
-
-'use strict';
-
-$.isFunction = $.isFunction || function(obj) {
- return typeof obj === "function" && typeof obj.nodeType !== "number";
-};
-
-window = (typeof window != 'undefined' && window.Math == Math)
- ? window
- : (typeof self != 'undefined' && self.Math == Math)
- ? self
- : Function('return this')()
-;
-
-$.fn.accordion = function(parameters) {
- var
- $allModules = $(this),
-
- time = new Date().getTime(),
- performance = [],
-
- query = arguments[0],
- methodInvoked = (typeof query == 'string'),
- queryArguments = [].slice.call(arguments, 1),
-
- returnedValue
- ;
- $allModules
- .each(function() {
- var
- settings = ( $.isPlainObject(parameters) )
- ? $.extend(true, {}, $.fn.accordion.settings, parameters)
- : $.extend({}, $.fn.accordion.settings),
-
- className = settings.className,
- namespace = settings.namespace,
- selector = settings.selector,
- error = settings.error,
-
- eventNamespace = '.' + namespace,
- moduleNamespace = 'module-' + namespace,
- moduleSelector = $allModules.selector || '',
-
- $module = $(this),
- $title = $module.find(selector.title),
- $content = $module.find(selector.content),
-
- element = this,
- instance = $module.data(moduleNamespace),
- observer,
- module
- ;
-
- module = {
-
- initialize: function() {
- module.debug('Initializing', $module);
- module.bind.events();
- if(settings.observeChanges) {
- module.observeChanges();
- }
- module.instantiate();
- },
-
- instantiate: function() {
- instance = module;
- $module
- .data(moduleNamespace, module)
- ;
- },
-
- destroy: function() {
- module.debug('Destroying previous instance', $module);
- $module
- .off(eventNamespace)
- .removeData(moduleNamespace)
- ;
- },
-
- refresh: function() {
- $title = $module.find(selector.title);
- $content = $module.find(selector.content);
- },
-
- observeChanges: function() {
- if('MutationObserver' in window) {
- observer = new MutationObserver(function(mutations) {
- module.debug('DOM tree modified, updating selector cache');
- module.refresh();
- });
- observer.observe(element, {
- childList : true,
- subtree : true
- });
- module.debug('Setting up mutation observer', observer);
- }
- },
-
- bind: {
- events: function() {
- module.debug('Binding delegated events');
- $module
- .on(settings.on + eventNamespace, selector.trigger, module.event.click)
- ;
- }
- },
-
- event: {
- click: function() {
- module.toggle.call(this);
- }
- },
-
- toggle: function(query) {
- var
- $activeTitle = (query !== undefined)
- ? (typeof query === 'number')
- ? $title.eq(query)
- : $(query).closest(selector.title)
- : $(this).closest(selector.title),
- $activeContent = $activeTitle.next($content),
- isAnimating = $activeContent.hasClass(className.animating),
- isActive = $activeContent.hasClass(className.active),
- isOpen = (isActive && !isAnimating),
- isOpening = (!isActive && isAnimating)
- ;
- module.debug('Toggling visibility of content', $activeTitle);
- if(isOpen || isOpening) {
- if(settings.collapsible) {
- module.close.call($activeTitle);
- }
- else {
- module.debug('Cannot close accordion content collapsing is disabled');
- }
- }
- else {
- module.open.call($activeTitle);
- }
- },
-
- open: function(query) {
- var
- $activeTitle = (query !== undefined)
- ? (typeof query === 'number')
- ? $title.eq(query)
- : $(query).closest(selector.title)
- : $(this).closest(selector.title),
- $activeContent = $activeTitle.next($content),
- isAnimating = $activeContent.hasClass(className.animating),
- isActive = $activeContent.hasClass(className.active),
- isOpen = (isActive || isAnimating)
- ;
- if(isOpen) {
- module.debug('Accordion already open, skipping', $activeContent);
- return;
- }
- module.debug('Opening accordion content', $activeTitle);
- settings.onOpening.call($activeContent);
- settings.onChanging.call($activeContent);
- if(settings.exclusive) {
- module.closeOthers.call($activeTitle);
- }
- $activeTitle
- .addClass(className.active)
- ;
- $activeContent
- .stop(true, true)
- .addClass(className.animating)
- ;
- if(settings.animateChildren) {
- if($.fn.transition !== undefined && $module.transition('is supported')) {
- $activeContent
- .children()
- .transition({
- animation : 'fade in',
- queue : false,
- useFailSafe : true,
- debug : settings.debug,
- verbose : settings.verbose,
- duration : settings.duration,
- skipInlineHidden : true,
- onComplete: function() {
- $activeContent.children().removeClass(className.transition);
- }
- })
- ;
- }
- else {
- $activeContent
- .children()
- .stop(true, true)
- .animate({
- opacity: 1
- }, settings.duration, module.resetOpacity)
- ;
- }
- }
- $activeContent
- .slideDown(settings.duration, settings.easing, function() {
- $activeContent
- .removeClass(className.animating)
- .addClass(className.active)
- ;
- module.reset.display.call(this);
- settings.onOpen.call(this);
- settings.onChange.call(this);
- })
- ;
- },
-
- close: function(query) {
- var
- $activeTitle = (query !== undefined)
- ? (typeof query === 'number')
- ? $title.eq(query)
- : $(query).closest(selector.title)
- : $(this).closest(selector.title),
- $activeContent = $activeTitle.next($content),
- isAnimating = $activeContent.hasClass(className.animating),
- isActive = $activeContent.hasClass(className.active),
- isOpening = (!isActive && isAnimating),
- isClosing = (isActive && isAnimating)
- ;
- if((isActive || isOpening) && !isClosing) {
- module.debug('Closing accordion content', $activeContent);
- settings.onClosing.call($activeContent);
- settings.onChanging.call($activeContent);
- $activeTitle
- .removeClass(className.active)
- ;
- $activeContent
- .stop(true, true)
- .addClass(className.animating)
- ;
- if(settings.animateChildren) {
- if($.fn.transition !== undefined && $module.transition('is supported')) {
- $activeContent
- .children()
- .transition({
- animation : 'fade out',
- queue : false,
- useFailSafe : true,
- debug : settings.debug,
- verbose : settings.verbose,
- duration : settings.duration,
- skipInlineHidden : true
- })
- ;
- }
- else {
- $activeContent
- .children()
- .stop(true, true)
- .animate({
- opacity: 0
- }, settings.duration, module.resetOpacity)
- ;
- }
- }
- $activeContent
- .slideUp(settings.duration, settings.easing, function() {
- $activeContent
- .removeClass(className.animating)
- .removeClass(className.active)
- ;
- module.reset.display.call(this);
- settings.onClose.call(this);
- settings.onChange.call(this);
- })
- ;
- }
- },
-
- closeOthers: function(index) {
- var
- $activeTitle = (index !== undefined)
- ? $title.eq(index)
- : $(this).closest(selector.title),
- $parentTitles = $activeTitle.parents(selector.content).prev(selector.title),
- $activeAccordion = $activeTitle.closest(selector.accordion),
- activeSelector = selector.title + '.' + className.active + ':visible',
- activeContent = selector.content + '.' + className.active + ':visible',
- $openTitles,
- $nestedTitles,
- $openContents
- ;
- if(settings.closeNested) {
- $openTitles = $activeAccordion.find(activeSelector).not($parentTitles);
- $openContents = $openTitles.next($content);
- }
- else {
- $openTitles = $activeAccordion.find(activeSelector).not($parentTitles);
- $nestedTitles = $activeAccordion.find(activeContent).find(activeSelector).not($parentTitles);
- $openTitles = $openTitles.not($nestedTitles);
- $openContents = $openTitles.next($content);
- }
- if( ($openTitles.length > 0) ) {
- module.debug('Exclusive enabled, closing other content', $openTitles);
- $openTitles
- .removeClass(className.active)
- ;
- $openContents
- .removeClass(className.animating)
- .stop(true, true)
- ;
- if(settings.animateChildren) {
- if($.fn.transition !== undefined && $module.transition('is supported')) {
- $openContents
- .children()
- .transition({
- animation : 'fade out',
- useFailSafe : true,
- debug : settings.debug,
- verbose : settings.verbose,
- duration : settings.duration,
- skipInlineHidden : true
- })
- ;
- }
- else {
- $openContents
- .children()
- .stop(true, true)
- .animate({
- opacity: 0
- }, settings.duration, module.resetOpacity)
- ;
- }
- }
- $openContents
- .slideUp(settings.duration , settings.easing, function() {
- $(this).removeClass(className.active);
- module.reset.display.call(this);
- })
- ;
- }
- },
-
- reset: {
-
- display: function() {
- module.verbose('Removing inline display from element', this);
- $(this).css('display', '');
- if( $(this).attr('style') === '') {
- $(this)
- .attr('style', '')
- .removeAttr('style')
- ;
- }
- },
-
- opacity: function() {
- module.verbose('Removing inline opacity from element', this);
- $(this).css('opacity', '');
- if( $(this).attr('style') === '') {
- $(this)
- .attr('style', '')
- .removeAttr('style')
- ;
- }
- },
-
- },
-
- setting: function(name, value) {
- module.debug('Changing setting', name, value);
- if( $.isPlainObject(name) ) {
- $.extend(true, settings, name);
- }
- else if(value !== undefined) {
- if($.isPlainObject(settings[name])) {
- $.extend(true, settings[name], value);
- }
- else {
- settings[name] = value;
- }
- }
- else {
- return settings[name];
- }
- },
- internal: function(name, value) {
- module.debug('Changing internal', name, value);
- if(value !== undefined) {
- if( $.isPlainObject(name) ) {
- $.extend(true, module, name);
- }
- else {
- module[name] = value;
- }
- }
- else {
- return module[name];
- }
- },
- debug: function() {
- if(!settings.silent && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.debug.apply(console, arguments);
- }
- }
- },
- verbose: function() {
- if(!settings.silent && settings.verbose && settings.debug) {
- if(settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.verbose.apply(console, arguments);
- }
- }
- },
- error: function() {
- if(!settings.silent) {
- module.error = Function.prototype.bind.call(console.error, console, settings.name + ':');
- module.error.apply(console, arguments);
- }
- },
- performance: {
- log: function(message) {
- var
- currentTime,
- executionTime,
- previousTime
- ;
- if(settings.performance) {
- currentTime = new Date().getTime();
- previousTime = time || currentTime;
- executionTime = currentTime - previousTime;
- time = currentTime;
- performance.push({
- 'Name' : message[0],
- 'Arguments' : [].slice.call(message, 1) || '',
- 'Element' : element,
- 'Execution Time' : executionTime
- });
- }
- clearTimeout(module.performance.timer);
- module.performance.timer = setTimeout(module.performance.display, 500);
- },
- display: function() {
- var
- title = settings.name + ':',
- totalTime = 0
- ;
- time = false;
- clearTimeout(module.performance.timer);
- $.each(performance, function(index, data) {
- totalTime += data['Execution Time'];
- });
- title += ' ' + totalTime + 'ms';
- if(moduleSelector) {
- title += ' \'' + moduleSelector + '\'';
- }
- if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) {
- console.groupCollapsed(title);
- if(console.table) {
- console.table(performance);
- }
- else {
- $.each(performance, function(index, data) {
- console.log(data['Name'] + ': ' + data['Execution Time']+'ms');
- });
- }
- console.groupEnd();
- }
- performance = [];
- }
- },
- invoke: function(query, passedArguments, context) {
- var
- object = instance,
- maxDepth,
- found,
- response
- ;
- passedArguments = passedArguments || queryArguments;
- context = element || context;
- if(typeof query == 'string' && object !== undefined) {
- query = query.split(/[\. ]/);
- maxDepth = query.length - 1;
- $.each(query, function(depth, value) {
- var camelCaseValue = (depth != maxDepth)
- ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
- : query
- ;
- if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
- object = object[camelCaseValue];
- }
- else if( object[camelCaseValue] !== undefined ) {
- found = object[camelCaseValue];
- return false;
- }
- else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
- object = object[value];
- }
- else if( object[value] !== undefined ) {
- found = object[value];
- return false;
- }
- else {
- module.error(error.method, query);
- return false;
- }
- });
- }
- if ( $.isFunction( found ) ) {
- response = found.apply(context, passedArguments);
- }
- else if(found !== undefined) {
- response = found;
- }
- if(Array.isArray(returnedValue)) {
- returnedValue.push(response);
- }
- else if(returnedValue !== undefined) {
- returnedValue = [returnedValue, response];
- }
- else if(response !== undefined) {
- returnedValue = response;
- }
- return found;
- }
- };
- if(methodInvoked) {
- if(instance === undefined) {
- module.initialize();
- }
- module.invoke(query);
- }
- else {
- if(instance !== undefined) {
- instance.invoke('destroy');
- }
- module.initialize();
- }
- })
- ;
- return (returnedValue !== undefined)
- ? returnedValue
- : this
- ;
-};
-
-$.fn.accordion.settings = {
-
- name : 'Accordion',
- namespace : 'accordion',
-
- silent : false,
- debug : false,
- verbose : false,
- performance : true,
-
- on : 'click', // event on title that opens accordion
-
- observeChanges : true, // whether accordion should automatically refresh on DOM insertion
-
- exclusive : true, // whether a single accordion content panel should be open at once
- collapsible : true, // whether accordion content can be closed
- closeNested : false, // whether nested content should be closed when a panel is closed
- animateChildren : true, // whether children opacity should be animated
-
- duration : 350, // duration of animation
- easing : 'easeOutQuad', // easing equation for animation
-
- onOpening : function(){}, // callback before open animation
- onClosing : function(){}, // callback before closing animation
- onChanging : function(){}, // callback before closing or opening animation
-
- onOpen : function(){}, // callback after open animation
- onClose : function(){}, // callback after closing animation
- onChange : function(){}, // callback after closing or opening animation
-
- error: {
- method : 'The method you called is not defined'
- },
-
- className : {
- active : 'active',
- animating : 'animating',
- transition: 'transition'
- },
-
- selector : {
- accordion : '.accordion',
- title : '.title',
- trigger : '.title',
- content : '.content'
- }
-
-};
-
-// Adds easing
-$.extend( $.easing, {
- easeOutQuad: function (x, t, b, c, d) {
- return -c *(t/=d)*(t-2) + b;
- }
-});
-
-})( jQuery, window, document );
-
diff --git a/src-angular/assets/semantic/src/definitions/modules/accordion.less b/src-angular/assets/semantic/src/definitions/modules/accordion.less
deleted file mode 100644
index 7fe052f..0000000
--- a/src-angular/assets/semantic/src/definitions/modules/accordion.less
+++ /dev/null
@@ -1,219 +0,0 @@
-/*!
- * # Fomantic-UI - Accordion
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'module';
-@element : 'accordion';
-
-@import (multiple) '../../theme.config';
-
-/*******************************
- Accordion
-*******************************/
-
-.ui.accordion,
-.ui.accordion .accordion {
- max-width: 100%;
-}
-.ui.accordion .accordion {
- margin: @childAccordionMargin;
- padding: @childAccordionPadding;
-}
-
-/* Title */
-.ui.accordion .title,
-.ui.accordion .accordion .title {
- cursor: pointer;
-}
-
-/* Default Styling */
-.ui.accordion .title:not(.ui) {
- padding: @titlePadding;
- font-family: @titleFont;
- font-size: @titleFontSize;
- color: @titleColor;
-}
-
-/* Default Styling */
-.ui.accordion:not(.styled) .title ~ .content:not(.ui),
-.ui.accordion:not(.styled) .accordion .title ~ .content:not(.ui) {
- margin: @contentMargin;
- padding: @contentPadding;
-}
-.ui.accordion:not(.styled) .title ~ .content:not(.ui):last-child {
- padding-bottom: 0;
-}
-
-/* Arrow */
-.ui.accordion .title .dropdown.icon,
-.ui.accordion .accordion .title .dropdown.icon {
- display: @iconDisplay;
- float: @iconFloat;
- opacity: @iconOpacity;
- width: @iconWidth;
- height: @iconHeight;
- margin: @iconMargin;
- padding: @iconPadding;
- font-size: @iconFontSize;
- transition: @iconTransition;
- vertical-align: @iconVerticalAlign;
- transform: @iconTransform;
-}
-
-/*--------------
- Coupling
----------------*/
-
-/* Menu */
-.ui.accordion.menu .item .title {
- display: block;
- padding: @menuTitlePadding;
-}
-.ui.accordion.menu .item .title > .dropdown.icon {
- float: @menuIconFloat;
- margin: @menuIconMargin;
- transform: @menuIconTransform;
-}
-
-/* Header */
-.ui.accordion .ui.header .dropdown.icon {
- font-size: @iconFontSize;
- margin: @iconMargin;
-}
-
-/*******************************
- States
-*******************************/
-
-.ui.accordion .active.title .dropdown.icon,
-.ui.accordion .accordion .active.title .dropdown.icon {
- transform: @activeIconTransform;
-}
-
-.ui.accordion.menu .item .active.title > .dropdown.icon {
- transform: @activeIconTransform;
-}
-
-/*******************************
- Types
-*******************************/
-
-& when (@variationAccordionStyled) {
- /*--------------
- Styled
- ---------------*/
-
- .ui.styled.accordion {
- width: @styledWidth;
- }
-
- .ui.styled.accordion,
- .ui.styled.accordion .accordion {
- border-radius: @styledBorderRadius;
- background: @styledBackground;
- box-shadow: @styledBoxShadow;
- }
- .ui.styled.accordion .title,
- .ui.styled.accordion .accordion .title {
- margin: @styledTitleMargin;
- padding: @styledTitlePadding;
- color: @styledTitleColor;
- font-weight: @styledTitleFontWeight;
- border-top: @styledTitleBorder;
- transition: @styledTitleTransition;
- }
- .ui.styled.accordion > .title:first-child,
- .ui.styled.accordion .accordion .title:first-child {
- border-top: none;
- }
-
-
- /* Content */
- .ui.styled.accordion .content,
- .ui.styled.accordion .accordion .content {
- margin: @styledContentMargin;
- padding: @styledContentPadding;
- }
- .ui.styled.accordion .accordion .content {
- margin: @styledChildContentMargin;
- padding: @styledChildContentPadding;
- }
-
-
- /* Hover */
- .ui.styled.accordion .title:hover,
- .ui.styled.accordion .active.title,
- .ui.styled.accordion .accordion .title:hover,
- .ui.styled.accordion .accordion .active.title {
- background: @styledTitleHoverBackground;
- color: @styledTitleHoverColor;
- }
- .ui.styled.accordion .accordion .title:hover,
- .ui.styled.accordion .accordion .active.title {
- background: @styledHoverChildTitleBackground;
- color: @styledHoverChildTitleColor;
- }
-
-
- /* Active */
- .ui.styled.accordion .active.title {
- background: @styledActiveTitleBackground;
- color: @styledActiveTitleColor;
- }
- .ui.styled.accordion .accordion .active.title {
- background: @styledActiveChildTitleBackground;
- color: @styledActiveChildTitleColor;
- }
-}
-
-
-/*******************************
- States
-*******************************/
-
-/*--------------
- Not Active
----------------*/
-
-.ui.accordion .title ~ .content:not(.active),
-.ui.accordion .accordion .title ~ .content:not(.active) {
- display: none;
-}
-
-/*******************************
- Variations
-*******************************/
-
-& when (@variationAccordionFluid) {
- /*--------------
- Fluid
- ---------------*/
-
- .ui.fluid.accordion,
- .ui.fluid.accordion .accordion {
- width: 100%;
- }
-}
-
-& when (@variationAccordionInverted) {
- /*--------------
- Inverted
- ---------------*/
-
- .ui.inverted.accordion .title:not(.ui) {
- color: @invertedTitleColor;
- }
-}
-
-.loadUIOverrides();
-
diff --git a/src-angular/assets/semantic/src/definitions/modules/calendar.js b/src-angular/assets/semantic/src/definitions/modules/calendar.js
deleted file mode 100644
index ff6a125..0000000
--- a/src-angular/assets/semantic/src/definitions/modules/calendar.js
+++ /dev/null
@@ -1,1585 +0,0 @@
-/*!
- * # Fomantic-UI - Calendar
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-;(function ($, window, document, undefined) {
-
-'use strict';
-
-$.isFunction = $.isFunction || function(obj) {
- return typeof obj === "function" && typeof obj.nodeType !== "number";
-};
-
-window = (typeof window != 'undefined' && window.Math == Math)
- ? window
- : (typeof self != 'undefined' && self.Math == Math)
- ? self
- : Function('return this')()
-;
-
-$.fn.calendar = function(parameters) {
- var
- $allModules = $(this),
-
- moduleSelector = $allModules.selector || '',
-
- time = new Date().getTime(),
- performance = [],
-
- query = arguments[0],
- methodInvoked = (typeof query == 'string'),
- queryArguments = [].slice.call(arguments, 1),
- returnedValue,
- timeGapTable = {
- '5': {'row': 4, 'column': 3 },
- '10': {'row': 3, 'column': 2 },
- '15': {'row': 2, 'column': 2 },
- '20': {'row': 3, 'column': 1 },
- '30': {'row': 2, 'column': 1 }
- }
- ;
-
- $allModules
- .each(function () {
- var
- settings = ( $.isPlainObject(parameters) )
- ? $.extend(true, {}, $.fn.calendar.settings, parameters)
- : $.extend({}, $.fn.calendar.settings),
-
- className = settings.className,
- namespace = settings.namespace,
- selector = settings.selector,
- formatter = settings.formatter,
- parser = settings.parser,
- metadata = settings.metadata,
- timeGap = timeGapTable[settings.minTimeGap],
- error = settings.error,
-
- eventNamespace = '.' + namespace,
- moduleNamespace = 'module-' + namespace,
-
- $module = $(this),
- $input = $module.find(selector.input),
- $container = $module.find(selector.popup),
- $activator = $module.find(selector.activator),
-
- element = this,
- instance = $module.data(moduleNamespace),
-
- isTouch,
- isTouchDown = false,
- focusDateUsedForRange = false,
- module
- ;
-
- module = {
-
- initialize: function () {
- module.debug('Initializing calendar for', element, $module);
-
- isTouch = module.get.isTouch();
- module.setup.config();
- module.setup.popup();
- module.setup.inline();
- module.setup.input();
- module.setup.date();
- module.create.calendar();
-
- module.bind.events();
- module.instantiate();
- },
-
- instantiate: function () {
- module.verbose('Storing instance of calendar');
- instance = module;
- $module.data(moduleNamespace, instance);
- },
-
- destroy: function () {
- module.verbose('Destroying previous calendar for', element);
- $module.removeData(moduleNamespace);
- module.unbind.events();
- },
-
- setup: {
- config: function () {
- if (module.get.minDate() !== null) {
- module.set.minDate($module.data(metadata.minDate));
- }
- if (module.get.maxDate() !== null) {
- module.set.maxDate($module.data(metadata.maxDate));
- }
- module.setting('type', module.get.type());
- },
- popup: function () {
- if (settings.inline) {
- return;
- }
- if (!$activator.length) {
- $activator = $module.children().first();
- if (!$activator.length) {
- return;
- }
- }
- if ($.fn.popup === undefined) {
- module.error(error.popup);
- return;
- }
- if (!$container.length) {
- //prepend the popup element to the activator's parent so that it has less chance of messing with
- //the styling (eg input action button needs to be the last child to have correct border radius)
- var $activatorParent = $activator.parent(),
- domPositionFunction = $activatorParent.closest(selector.append).length !== 0 ? 'appendTo' : 'prependTo';
- $container = $('').addClass(className.popup)[domPositionFunction]($activatorParent);
- }
- $container.addClass(className.calendar);
- var onVisible = settings.onVisible;
- var onHidden = settings.onHidden;
- if (!$input.length) {
- //no input, $container has to handle focus/blur
- $container.attr('tabindex', '0');
- onVisible = function () {
- module.focus();
- return settings.onVisible.apply($container, arguments);
- };
- onHidden = function () {
- module.blur();
- return settings.onHidden.apply($container, arguments);
- };
- }
- var onShow = function () {
- //reset the focus date onShow
- module.set.focusDate(module.get.date());
- module.set.mode(settings.startMode);
- return settings.onShow.apply($container, arguments);
- };
- var on = settings.on || ($input.length ? 'focus' : 'click');
- var options = $.extend({}, settings.popupOptions, {
- popup: $container,
- on: on,
- hoverable: on === 'hover',
- onShow: onShow,
- onVisible: onVisible,
- onHide: settings.onHide,
- onHidden: onHidden
- });
- module.popup(options);
- },
- inline: function () {
- if ($activator.length && !settings.inline) {
- return;
- }
- $container = $('').addClass(className.calendar).appendTo($module);
- if (!$input.length) {
- $container.attr('tabindex', '0');
- }
- },
- input: function () {
- if (settings.touchReadonly && $input.length && isTouch) {
- $input.prop('readonly', true);
- }
- },
- date: function () {
- var date;
- if (settings.initialDate) {
- date = parser.date(settings.initialDate, settings);
- } else if ($module.data(metadata.date) !== undefined) {
- date = parser.date($module.data(metadata.date), settings);
- } else if ($input.length) {
- date = parser.date($input.val(), settings);
- }
- module.set.date(date, settings.formatInput, false);
- }
- },
-
- create: {
- calendar: function () {
- var i, r, c, p, row, cell, pageGrid;
-
- var mode = module.get.mode();
- var today = new Date();
- var date = module.get.date();
- var focusDate = module.get.focusDate();
- var display = focusDate || date || settings.initialDate || today;
- display = module.helper.dateInRange(display);
-
- if (!focusDate) {
- focusDate = display;
- module.set.focusDate(focusDate, false, false);
- }
-
- var isYear = mode === 'year';
- var isMonth = mode === 'month';
- var isDay = mode === 'day';
- var isHour = mode === 'hour';
- var isMinute = mode === 'minute';
- var isTimeOnly = settings.type === 'time';
-
- var multiMonth = Math.max(settings.multiMonth, 1);
- var monthOffset = !isDay ? 0 : module.get.monthOffset();
-
- var minute = display.getMinutes();
- var hour = display.getHours();
- var day = display.getDate();
- var startMonth = display.getMonth() + monthOffset;
- var year = display.getFullYear();
-
- var columns = isDay ? settings.showWeekNumbers ? 8 : 7 : isHour ? 4 : timeGap['column'];
- var rows = isDay || isHour ? 6 : timeGap['row'];
- var pages = isDay ? multiMonth : 1;
-
- var container = $container;
- var tooltipPosition = container.hasClass("left") ? "right center" : "left center";
- container.empty();
- if (pages > 1) {
- pageGrid = $('').addClass(className.grid).appendTo(container);
- }
-
- for (p = 0; p < pages; p++) {
- if (pages > 1) {
- var pageColumn = $('').addClass(className.column).appendTo(pageGrid);
- container = pageColumn;
- }
-
- var month = startMonth + p;
- var firstMonthDayColumn = (new Date(year, month, 1).getDay() - settings.firstDayOfWeek % 7 + 7) % 7;
- if (!settings.constantHeight && isDay) {
- var requiredCells = new Date(year, month + 1, 0).getDate() + firstMonthDayColumn;
- rows = Math.ceil(requiredCells / 7);
- }
-
- var yearChange = isYear ? 10 : isMonth ? 1 : 0;
- var monthChange = isDay ? 1 : 0;
- var dayChange = isHour || isMinute ? 1 : 0;
- var prevNextDay = isHour || isMinute ? day : 1;
- var prevDate = new Date(year - yearChange, month - monthChange, prevNextDay - dayChange, hour);
- var nextDate = new Date(year + yearChange, month + monthChange, prevNextDay + dayChange, hour);
-
- var prevLast = isYear ? new Date(Math.ceil(year / 10) * 10 - 9, 0, 0) :
- isMonth ? new Date(year, 0, 0) : isDay ? new Date(year, month, 0) : new Date(year, month, day, -1);
- var nextFirst = isYear ? new Date(Math.ceil(year / 10) * 10 + 1, 0, 1) :
- isMonth ? new Date(year + 1, 0, 1) : isDay ? new Date(year, month + 1, 1) : new Date(year, month, day + 1);
-
- var tempMode = mode;
- if (isDay && settings.showWeekNumbers){
- tempMode += ' andweek';
- }
- var table = $('').addClass(className.table).addClass(tempMode).appendTo(container);
- var textColumns = columns;
- //no header for time-only mode
- if (!isTimeOnly) {
- var thead = $('').appendTo(table);
-
- row = $('
').appendTo(thead);
- cell = $(' | ').attr('colspan', '' + columns).appendTo(row);
-
- var headerDate = isYear || isMonth ? new Date(year, 0, 1) :
- isDay ? new Date(year, month, 1) : new Date(year, month, day, hour, minute);
- var headerText = $('').addClass(className.link).appendTo(cell);
- headerText.text(formatter.header(headerDate, mode, settings));
- var newMode = isMonth ? (settings.disableYear ? 'day' : 'year') :
- isDay ? (settings.disableMonth ? 'year' : 'month') : 'day';
- headerText.data(metadata.mode, newMode);
-
- if (p === 0) {
- var prev = $('').addClass(className.prev).appendTo(cell);
- prev.data(metadata.focusDate, prevDate);
- prev.toggleClass(className.disabledCell, !module.helper.isDateInRange(prevLast, mode));
- $('').addClass(className.prevIcon).appendTo(prev);
- }
-
- if (p === pages - 1) {
- var next = $('').addClass(className.next).appendTo(cell);
- next.data(metadata.focusDate, nextDate);
- next.toggleClass(className.disabledCell, !module.helper.isDateInRange(nextFirst, mode));
- $('').addClass(className.nextIcon).appendTo(next);
- }
- if (isDay) {
- row = $('
').appendTo(thead);
- if(settings.showWeekNumbers) {
- cell = $(' | ').appendTo(row);
- cell.text(settings.text.weekNo);
- cell.addClass(className.weekCell);
- textColumns--;
- }
- for (i = 0; i < textColumns; i++) {
- cell = $(' | ').appendTo(row);
- cell.text(formatter.dayColumnHeader((i + settings.firstDayOfWeek) % 7, settings));
- }
- }
- }
-
- var tbody = $('').appendTo(table);
- i = isYear ? Math.ceil(year / 10) * 10 - 9 : isDay ? 1 - firstMonthDayColumn : 0;
- for (r = 0; r < rows; r++) {
- row = $('
').appendTo(tbody);
- if(isDay && settings.showWeekNumbers){
- cell = $(' | ').appendTo(row);
- cell.text(module.get.weekOfYear(year,month,i+1-settings.firstDayOfWeek));
- cell.addClass(className.weekCell);
- }
- for (c = 0; c < textColumns; c++, i++) {
- var cellDate = isYear ? new Date(i, month, 1, hour, minute) :
- isMonth ? new Date(year, i, 1, hour, minute) : isDay ? new Date(year, month, i, hour, minute) :
- isHour ? new Date(year, month, day, i) : new Date(year, month, day, hour, i * settings.minTimeGap);
- var cellText = isYear ? i :
- isMonth ? settings.text.monthsShort[i] : isDay ? cellDate.getDate() :
- formatter.time(cellDate, settings, true);
- cell = $(' | ').addClass(className.cell).appendTo(row);
- cell.text(cellText);
- cell.data(metadata.date, cellDate);
- var adjacent = isDay && cellDate.getMonth() !== ((month + 12) % 12);
- var disabled = (!settings.selectAdjacentDays && adjacent) || !module.helper.isDateInRange(cellDate, mode) || settings.isDisabled(cellDate, mode) || module.helper.isDisabled(cellDate, mode) || !module.helper.isEnabled(cellDate, mode);
- if (disabled) {
- var disabledDate = module.helper.findDayAsObject(cellDate, mode, settings.disabledDates);
- if (disabledDate !== null && disabledDate[metadata.message]) {
- cell.attr("data-tooltip", disabledDate[metadata.message]);
- cell.attr("data-position", tooltipPosition);
- }
- } else {
- var eventDate = module.helper.findDayAsObject(cellDate, mode, settings.eventDates);
- if (eventDate !== null) {
- cell.addClass(eventDate[metadata.class] || settings.eventClass);
- if (eventDate[metadata.message]) {
- cell.attr("data-tooltip", eventDate[metadata.message]);
- cell.attr("data-position", tooltipPosition);
- }
- }
- }
- var active = module.helper.dateEqual(cellDate, date, mode);
- var isToday = module.helper.dateEqual(cellDate, today, mode);
- cell.toggleClass(className.adjacentCell, adjacent);
- cell.toggleClass(className.disabledCell, disabled);
- cell.toggleClass(className.activeCell, active && !adjacent);
- if (!isHour && !isMinute) {
- cell.toggleClass(className.todayCell, !adjacent && isToday);
- }
-
- // Allow for external modifications of each cell
- var cellOptions = {
- mode: mode,
- adjacent: adjacent,
- disabled: disabled,
- active: active,
- today: isToday
- };
- formatter.cell(cell, cellDate, cellOptions);
-
- if (module.helper.dateEqual(cellDate, focusDate, mode)) {
- //ensure that the focus date is exactly equal to the cell date
- //so that, if selected, the correct value is set
- module.set.focusDate(cellDate, false, false);
- }
- }
- }
-
- if (settings.today) {
- var todayRow = $('
').appendTo(tbody);
- var todayButton = $(' | ').attr('colspan', '' + columns).addClass(className.today).appendTo(todayRow);
- todayButton.text(formatter.today(settings));
- todayButton.data(metadata.date, today);
- }
-
- module.update.focus(false, table);
- }
- }
- },
-
- update: {
- focus: function (updateRange, container) {
- container = container || $container;
- var mode = module.get.mode();
- var date = module.get.date();
- var focusDate = module.get.focusDate();
- var startDate = module.get.startDate();
- var endDate = module.get.endDate();
- var rangeDate = (updateRange ? focusDate : null) || date || (!isTouch ? focusDate : null);
-
- container.find('td').each(function () {
- var cell = $(this);
- var cellDate = cell.data(metadata.date);
- if (!cellDate) {
- return;
- }
- var disabled = cell.hasClass(className.disabledCell);
- var active = cell.hasClass(className.activeCell);
- var adjacent = cell.hasClass(className.adjacentCell);
- var focused = module.helper.dateEqual(cellDate, focusDate, mode);
- var inRange = !rangeDate ? false :
- ((!!startDate && module.helper.isDateInRange(cellDate, mode, startDate, rangeDate)) ||
- (!!endDate && module.helper.isDateInRange(cellDate, mode, rangeDate, endDate)));
- cell.toggleClass(className.focusCell, focused && (!isTouch || isTouchDown) && (!adjacent || (settings.selectAdjacentDays && adjacent)) && !disabled);
-
- if (module.helper.isTodayButton(cell)) {
- return;
- }
- cell.toggleClass(className.rangeCell, inRange && !active && !disabled);
- });
- }
- },
-
- refresh: function () {
- module.create.calendar();
- },
-
- bind: {
- events: function () {
- module.debug('Binding events');
- $container.on('mousedown' + eventNamespace, module.event.mousedown);
- $container.on('touchstart' + eventNamespace, module.event.mousedown);
- $container.on('mouseup' + eventNamespace, module.event.mouseup);
- $container.on('touchend' + eventNamespace, module.event.mouseup);
- $container.on('mouseover' + eventNamespace, module.event.mouseover);
- if ($input.length) {
- $input.on('input' + eventNamespace, module.event.inputChange);
- $input.on('focus' + eventNamespace, module.event.inputFocus);
- $input.on('blur' + eventNamespace, module.event.inputBlur);
- $input.on('click' + eventNamespace, module.event.inputClick);
- $input.on('keydown' + eventNamespace, module.event.keydown);
- } else {
- $container.on('keydown' + eventNamespace, module.event.keydown);
- }
- }
- },
-
- unbind: {
- events: function () {
- module.debug('Unbinding events');
- $container.off(eventNamespace);
- if ($input.length) {
- $input.off(eventNamespace);
- }
- }
- },
-
- event: {
- mouseover: function (event) {
- var target = $(event.target);
- var date = target.data(metadata.date);
- var mousedown = event.buttons === 1;
- if (date) {
- module.set.focusDate(date, false, true, mousedown);
- }
- },
- mousedown: function (event) {
- if ($input.length) {
- //prevent the mousedown on the calendar causing the input to lose focus
- event.preventDefault();
- }
- isTouchDown = event.type.indexOf('touch') >= 0;
- var target = $(event.target);
- var date = target.data(metadata.date);
- if (date) {
- module.set.focusDate(date, false, true, true);
- }
- },
- mouseup: function (event) {
- //ensure input has focus so that it receives keydown events for calendar navigation
- module.focus();
- event.preventDefault();
- event.stopPropagation();
- isTouchDown = false;
- var target = $(event.target);
- if (target.hasClass("disabled")) {
- return;
- }
- var parent = target.parent();
- if (parent.data(metadata.date) || parent.data(metadata.focusDate) || parent.data(metadata.mode)) {
- //clicked on a child element, switch to parent (used when clicking directly on prev/next icon element)
- target = parent;
- }
- var date = target.data(metadata.date);
- var focusDate = target.data(metadata.focusDate);
- var mode = target.data(metadata.mode);
- if (date && settings.onSelect.call(element, date, module.get.mode()) !== false) {
- var forceSet = target.hasClass(className.today);
- module.selectDate(date, forceSet);
- }
- else if (focusDate) {
- module.set.focusDate(focusDate);
- }
- else if (mode) {
- module.set.mode(mode);
- }
- },
- keydown: function (event) {
- var keyCode = event.which;
- if (keyCode === 27 || keyCode === 9) {
- //esc || tab
- module.popup('hide');
- }
-
- if (module.popup('is visible')) {
- if (keyCode === 37 || keyCode === 38 || keyCode === 39 || keyCode === 40) {
- //arrow keys
- var mode = module.get.mode();
- var bigIncrement = mode === 'day' ? 7 : mode === 'hour' ? 4 : mode === 'minute' ? timeGap['column'] : 3;
- var increment = keyCode === 37 ? -1 : keyCode === 38 ? -bigIncrement : keyCode == 39 ? 1 : bigIncrement;
- increment *= mode === 'minute' ? settings.minTimeGap : 1;
- var focusDate = module.get.focusDate() || module.get.date() || new Date();
- var year = focusDate.getFullYear() + (mode === 'year' ? increment : 0);
- var month = focusDate.getMonth() + (mode === 'month' ? increment : 0);
- var day = focusDate.getDate() + (mode === 'day' ? increment : 0);
- var hour = focusDate.getHours() + (mode === 'hour' ? increment : 0);
- var minute = focusDate.getMinutes() + (mode === 'minute' ? increment : 0);
- var newFocusDate = new Date(year, month, day, hour, minute);
- if (settings.type === 'time') {
- newFocusDate = module.helper.mergeDateTime(focusDate, newFocusDate);
- }
- if (module.helper.isDateInRange(newFocusDate, mode)) {
- module.set.focusDate(newFocusDate);
- }
- } else if (keyCode === 13) {
- //enter
- var mode = module.get.mode();
- var date = module.get.focusDate();
- if (date && !settings.isDisabled(date, mode) && !module.helper.isDisabled(date, mode) && module.helper.isEnabled(date, mode)) {
- module.selectDate(date);
- }
- //disable form submission:
- event.preventDefault();
- event.stopPropagation();
- }
- }
-
- if (keyCode === 38 || keyCode === 40) {
- //arrow-up || arrow-down
- event.preventDefault(); //don't scroll
- module.popup('show');
- }
- },
- inputChange: function () {
- var val = $input.val();
- var date = parser.date(val, settings);
- module.set.date(date, false);
- },
- inputFocus: function () {
- $container.addClass(className.active);
- },
- inputBlur: function () {
- $container.removeClass(className.active);
- if (settings.formatInput) {
- var date = module.get.date();
- var text = formatter.datetime(date, settings);
- $input.val(text);
- }
- },
- inputClick: function () {
- module.popup('show');
- }
- },
-
- get: {
- weekOfYear: function(weekYear,weekMonth,weekDay) {
- // adapted from http://www.merlyn.demon.co.uk/weekcalc.htm
- var ms1d = 864e5, // milliseconds in a day
- ms7d = 7 * ms1d; // milliseconds in a week
-
- return function() { // return a closure so constants get calculated only once
- var DC3 = Date.UTC(weekYear, weekMonth, weekDay + 3) / ms1d, // an Absolute Day Number
- AWN = Math.floor(DC3 / 7), // an Absolute Week Number
- Wyr = new Date(AWN * ms7d).getUTCFullYear();
-
- return AWN - Math.floor(Date.UTC(Wyr, 0, 7) / ms7d) + 1;
- }();
- },
- date: function () {
- return module.helper.sanitiseDate($module.data(metadata.date)) || null;
- },
- inputDate: function() {
- return $input.val();
- },
- focusDate: function () {
- return $module.data(metadata.focusDate) || null;
- },
- startDate: function () {
- var startModule = module.get.calendarModule(settings.startCalendar);
- return (startModule ? startModule.get.date() : $module.data(metadata.startDate)) || null;
- },
- endDate: function () {
- var endModule = module.get.calendarModule(settings.endCalendar);
- return (endModule ? endModule.get.date() : $module.data(metadata.endDate)) || null;
- },
- minDate: function() {
- return $module.data(metadata.minDate) || null;
- },
- maxDate: function() {
- return $module.data(metadata.maxDate) || null;
- },
- monthOffset: function () {
- return $module.data(metadata.monthOffset) || 0;
- },
- mode: function () {
- //only returns valid modes for the current settings
- var mode = $module.data(metadata.mode) || settings.startMode;
- var validModes = module.get.validModes();
- if ($.inArray(mode, validModes) >= 0) {
- return mode;
- }
- return settings.type === 'time' ? 'hour' :
- settings.type === 'month' ? 'month' :
- settings.type === 'year' ? 'year' : 'day';
- },
- type: function() {
- return $module.data(metadata.type) || settings.type;
- },
- validModes: function () {
- var validModes = [];
- if (settings.type !== 'time') {
- if (!settings.disableYear || settings.type === 'year') {
- validModes.push('year');
- }
- if (!(settings.disableMonth || settings.type === 'year') || settings.type === 'month') {
- validModes.push('month');
- }
- if (settings.type.indexOf('date') >= 0) {
- validModes.push('day');
- }
- }
- if (settings.type.indexOf('time') >= 0) {
- validModes.push('hour');
- if (!settings.disableMinute) {
- validModes.push('minute');
- }
- }
- return validModes;
- },
- isTouch: function () {
- try {
- document.createEvent('TouchEvent');
- return true;
- }
- catch (e) {
- return false;
- }
- },
- calendarModule: function (selector) {
- if (!selector) {
- return null;
- }
- if (!(selector instanceof $)) {
- selector = $(selector).first();
- }
- //assume range related calendars are using the same namespace
- return selector.data(moduleNamespace);
- }
- },
-
- set: {
- date: function (date, updateInput, fireChange) {
- updateInput = updateInput !== false;
- fireChange = fireChange !== false;
- date = module.helper.sanitiseDate(date);
- date = module.helper.dateInRange(date);
-
- var mode = module.get.mode();
- var text = formatter.datetime(date, settings);
-
- if (fireChange && settings.onBeforeChange.call(element, date, text, mode) === false) {
- return false;
- }
-
- module.set.focusDate(date);
-
- if (settings.isDisabled(date, mode)) {
- return false;
- }
-
- var endDate = module.get.endDate();
- if (!!endDate && !!date && date > endDate) {
- //selected date is greater than end date in range, so clear end date
- module.set.endDate(undefined);
- }
- module.set.dataKeyValue(metadata.date, date);
-
- if (updateInput && $input.length) {
- $input.val(text);
- }
-
- if (fireChange) {
- settings.onChange.call(element, date, text, mode);
- }
- },
- startDate: function (date, refreshCalendar) {
- date = module.helper.sanitiseDate(date);
- var startModule = module.get.calendarModule(settings.startCalendar);
- if (startModule) {
- startModule.set.date(date);
- }
- module.set.dataKeyValue(metadata.startDate, date, refreshCalendar);
- },
- endDate: function (date, refreshCalendar) {
- date = module.helper.sanitiseDate(date);
- var endModule = module.get.calendarModule(settings.endCalendar);
- if (endModule) {
- endModule.set.date(date);
- }
- module.set.dataKeyValue(metadata.endDate, date, refreshCalendar);
- },
- focusDate: function (date, refreshCalendar, updateFocus, updateRange) {
- date = module.helper.sanitiseDate(date);
- date = module.helper.dateInRange(date);
- var isDay = module.get.mode() === 'day';
- var oldFocusDate = module.get.focusDate();
- if (isDay && date && oldFocusDate) {
- var yearDelta = date.getFullYear() - oldFocusDate.getFullYear();
- var monthDelta = yearDelta * 12 + date.getMonth() - oldFocusDate.getMonth();
- if (monthDelta) {
- var monthOffset = module.get.monthOffset() - monthDelta;
- module.set.monthOffset(monthOffset, false);
- }
- }
- var changed = module.set.dataKeyValue(metadata.focusDate, date, refreshCalendar);
- updateFocus = (updateFocus !== false && changed && refreshCalendar === false) || focusDateUsedForRange != updateRange;
- focusDateUsedForRange = updateRange;
- if (updateFocus) {
- module.update.focus(updateRange);
- }
- },
- minDate: function (date) {
- date = module.helper.sanitiseDate(date);
- if (settings.maxDate !== null && settings.maxDate <= date) {
- module.verbose('Unable to set minDate variable bigger that maxDate variable', date, settings.maxDate);
- } else {
- module.setting('minDate', date);
- module.set.dataKeyValue(metadata.minDate, date);
- }
- },
- maxDate: function (date) {
- date = module.helper.sanitiseDate(date);
- if (settings.minDate !== null && settings.minDate >= date) {
- module.verbose('Unable to set maxDate variable lower that minDate variable', date, settings.minDate);
- } else {
- module.setting('maxDate', date);
- module.set.dataKeyValue(metadata.maxDate, date);
- }
- },
- monthOffset: function (monthOffset, refreshCalendar) {
- var multiMonth = Math.max(settings.multiMonth, 1);
- monthOffset = Math.max(1 - multiMonth, Math.min(0, monthOffset));
- module.set.dataKeyValue(metadata.monthOffset, monthOffset, refreshCalendar);
- },
- mode: function (mode, refreshCalendar) {
- module.set.dataKeyValue(metadata.mode, mode, refreshCalendar);
- },
- dataKeyValue: function (key, value, refreshCalendar) {
- var oldValue = $module.data(key);
- var equal = oldValue === value || (oldValue <= value && oldValue >= value); //equality test for dates and string objects
- if (value) {
- $module.data(key, value);
- } else {
- $module.removeData(key);
- }
- refreshCalendar = refreshCalendar !== false && !equal;
- if (refreshCalendar) {
- module.refresh();
- }
- return !equal;
- }
- },
-
- selectDate: function (date, forceSet) {
- module.verbose('New date selection', date);
- var mode = module.get.mode();
- var complete = forceSet || mode === 'minute' ||
- (settings.disableMinute && mode === 'hour') ||
- (settings.type === 'date' && mode === 'day') ||
- (settings.type === 'month' && mode === 'month') ||
- (settings.type === 'year' && mode === 'year');
- if (complete) {
- var canceled = module.set.date(date) === false;
- if (!canceled && settings.closable) {
- module.popup('hide');
- //if this is a range calendar, show the end date calendar popup and focus the input
- var endModule = module.get.calendarModule(settings.endCalendar);
- if (endModule) {
- endModule.popup('show');
- endModule.focus();
- }
- }
- } else {
- var newMode = mode === 'year' ? (!settings.disableMonth ? 'month' : 'day') :
- mode === 'month' ? 'day' : mode === 'day' ? 'hour' : 'minute';
- module.set.mode(newMode);
- if (mode === 'hour' || (mode === 'day' && module.get.date())) {
- //the user has chosen enough to consider a valid date/time has been chosen
- module.set.date(date);
- } else {
- module.set.focusDate(date);
- }
- }
- },
-
- changeDate: function (date) {
- module.set.date(date);
- },
-
- clear: function () {
- module.set.date(undefined);
- },
-
- popup: function () {
- return $activator.popup.apply($activator, arguments);
- },
-
- focus: function () {
- if ($input.length) {
- $input.focus();
- } else {
- $container.focus();
- }
- },
- blur: function () {
- if ($input.length) {
- $input.blur();
- } else {
- $container.blur();
- }
- },
-
- helper: {
- isDisabled: function(date, mode) {
- return mode === 'day' && ((settings.disabledDaysOfWeek.indexOf(date.getDay()) !== -1) || settings.disabledDates.some(function(d){
- if(typeof d === 'string') {
- d = module.helper.sanitiseDate(d);
- }
- if (d instanceof Date) {
- return module.helper.dateEqual(date, d, mode);
- }
- if (d !== null && typeof d === 'object' && d[metadata.date]) {
- return module.helper.dateEqual(date, module.helper.sanitiseDate(d[metadata.date]), mode);
- }
- }));
- },
- isEnabled: function(date, mode) {
- if (mode === 'day') {
- return settings.enabledDates.length === 0 || settings.enabledDates.some(function(d){
- if(typeof d === 'string') {
- d = module.helper.sanitiseDate(d);
- }
- if (d instanceof Date) {
- return module.helper.dateEqual(date, d, mode);
- }
- if (d !== null && typeof d === 'object' && d[metadata.date]) {
- return module.helper.dateEqual(date, module.helper.sanitiseDate(d[metadata.date]), mode);
- }
- });
- } else {
- return true;
- }
- },
- findDayAsObject: function(date, mode, dates) {
- if (mode === 'day') {
- var i = 0, il = dates.length;
- var d;
- for (; i < il; i++) {
- d = dates[i];
- if(typeof d === 'string') {
- d = module.helper.sanitiseDate(d);
- }
- if (d instanceof Date && module.helper.dateEqual(date, d, mode)) {
- var dateObject = {};
- dateObject[metadata.date] = d;
- return dateObject;
- }
- else if (d !== null && typeof d === 'object' && d[metadata.date] && module.helper.dateEqual(date,module.helper.sanitiseDate(d[metadata.date]), mode) ) {
- return d;
- }
- }
- }
- return null;
- },
- sanitiseDate: function (date) {
- if (!date) {
- return undefined;
- }
- if (!(date instanceof Date)) {
- date = parser.date('' + date, settings);
- }
- if (!date || date === null || isNaN(date.getTime())) {
- return undefined;
- }
- return date;
- },
- dateDiff: function (date1, date2, mode) {
- mode = mode || 'day';
- var isTimeOnly = settings.type === 'time';
- var isYear = mode === 'year';
- var isYearOrMonth = isYear || mode === 'month';
- var isMinute = mode === 'minute';
- var isHourOrMinute = isMinute || mode === 'hour';
- //only care about a minute accuracy of settings.minTimeGap
- date1 = new Date(
- isTimeOnly ? 2000 : date1.getFullYear(),
- isTimeOnly ? 0 : isYear ? 0 : date1.getMonth(),
- isTimeOnly ? 1 : isYearOrMonth ? 1 : date1.getDate(),
- !isHourOrMinute ? 0 : date1.getHours(),
- !isMinute ? 0 : settings.minTimeGap * Math.floor(date1.getMinutes() / settings.minTimeGap));
- date2 = new Date(
- isTimeOnly ? 2000 : date2.getFullYear(),
- isTimeOnly ? 0 : isYear ? 0 : date2.getMonth(),
- isTimeOnly ? 1 : isYearOrMonth ? 1 : date2.getDate(),
- !isHourOrMinute ? 0 : date2.getHours(),
- !isMinute ? 0 : settings.minTimeGap * Math.floor(date2.getMinutes() / settings.minTimeGap));
- return date2.getTime() - date1.getTime();
- },
- dateEqual: function (date1, date2, mode) {
- return !!date1 && !!date2 && module.helper.dateDiff(date1, date2, mode) === 0;
- },
- isDateInRange: function (date, mode, minDate, maxDate) {
- if (!minDate && !maxDate) {
- var startDate = module.get.startDate();
- minDate = startDate && settings.minDate ? new Date(Math.max(startDate, settings.minDate)) : startDate || settings.minDate;
- maxDate = settings.maxDate;
- }
- minDate = minDate && new Date(minDate.getFullYear(), minDate.getMonth(), minDate.getDate(), minDate.getHours(), settings.minTimeGap * Math.ceil(minDate.getMinutes() / settings.minTimeGap));
- return !(!date ||
- (minDate && module.helper.dateDiff(date, minDate, mode) > 0) ||
- (maxDate && module.helper.dateDiff(maxDate, date, mode) > 0));
- },
- dateInRange: function (date, minDate, maxDate) {
- if (!minDate && !maxDate) {
- var startDate = module.get.startDate();
- minDate = startDate && settings.minDate ? new Date(Math.max(startDate, settings.minDate)) : startDate || settings.minDate;
- maxDate = settings.maxDate;
- }
- minDate = minDate && new Date(minDate.getFullYear(), minDate.getMonth(), minDate.getDate(), minDate.getHours(), settings.minTimeGap * Math.ceil(minDate.getMinutes() / settings.minTimeGap));
- var isTimeOnly = settings.type === 'time';
- return !date ? date :
- (minDate && module.helper.dateDiff(date, minDate, 'minute') > 0) ?
- (isTimeOnly ? module.helper.mergeDateTime(date, minDate) : minDate) :
- (maxDate && module.helper.dateDiff(maxDate, date, 'minute') > 0) ?
- (isTimeOnly ? module.helper.mergeDateTime(date, maxDate) : maxDate) :
- date;
- },
- mergeDateTime: function (date, time) {
- return (!date || !time) ? time :
- new Date(date.getFullYear(), date.getMonth(), date.getDate(), time.getHours(), time.getMinutes());
- },
- isTodayButton: function(element) {
- return element.text() === settings.text.today;
- }
- },
-
- setting: function (name, value) {
- module.debug('Changing setting', name, value);
- if ($.isPlainObject(name)) {
- $.extend(true, settings, name);
- }
- else if (value !== undefined) {
- if ($.isPlainObject(settings[name])) {
- $.extend(true, settings[name], value);
- }
- else {
- settings[name] = value;
- }
- }
- else {
- return settings[name];
- }
- },
- internal: function (name, value) {
- if( $.isPlainObject(name) ) {
- $.extend(true, module, name);
- }
- else if(value !== undefined) {
- module[name] = value;
- }
- else {
- return module[name];
- }
- },
- debug: function () {
- if (!settings.silent && settings.debug) {
- if (settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.debug.apply(console, arguments);
- }
- }
- },
- verbose: function () {
- if (!settings.silent && settings.verbose && settings.debug) {
- if (settings.performance) {
- module.performance.log(arguments);
- }
- else {
- module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':');
- module.verbose.apply(console, arguments);
- }
- }
- },
- error: function () {
- if (!settings.silent) {
- module.error = Function.prototype.bind.call(console.error, console, settings.name + ':');
- module.error.apply(console, arguments);
- }
- },
- performance: {
- log: function (message) {
- var
- currentTime,
- executionTime,
- previousTime
- ;
- if (settings.performance) {
- currentTime = new Date().getTime();
- previousTime = time || currentTime;
- executionTime = currentTime - previousTime;
- time = currentTime;
- performance.push({
- 'Name': message[0],
- 'Arguments': [].slice.call(message, 1) || '',
- 'Element': element,
- 'Execution Time': executionTime
- });
- }
- clearTimeout(module.performance.timer);
- module.performance.timer = setTimeout(module.performance.display, 500);
- },
- display: function () {
- var
- title = settings.name + ':',
- totalTime = 0
- ;
- time = false;
- clearTimeout(module.performance.timer);
- $.each(performance, function (index, data) {
- totalTime += data['Execution Time'];
- });
- title += ' ' + totalTime + 'ms';
- if (moduleSelector) {
- title += ' \'' + moduleSelector + '\'';
- }
- if ((console.group !== undefined || console.table !== undefined) && performance.length > 0) {
- console.groupCollapsed(title);
- if (console.table) {
- console.table(performance);
- }
- else {
- $.each(performance, function (index, data) {
- console.log(data['Name'] + ': ' + data['Execution Time'] + 'ms');
- });
- }
- console.groupEnd();
- }
- performance = [];
- }
- },
- invoke: function (query, passedArguments, context) {
- var
- object = instance,
- maxDepth,
- found,
- response
- ;
- passedArguments = passedArguments || queryArguments;
- context = element || context;
- if (typeof query == 'string' && object !== undefined) {
- query = query.split(/[\. ]/);
- maxDepth = query.length - 1;
- $.each(query, function (depth, value) {
- var camelCaseValue = (depth != maxDepth)
- ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
- : query
- ;
- if ($.isPlainObject(object[camelCaseValue]) && (depth != maxDepth)) {
- object = object[camelCaseValue];
- }
- else if (object[camelCaseValue] !== undefined) {
- found = object[camelCaseValue];
- return false;
- }
- else if ($.isPlainObject(object[value]) && (depth != maxDepth)) {
- object = object[value];
- }
- else if (object[value] !== undefined) {
- found = object[value];
- return false;
- }
- else {
- module.error(error.method, query);
- return false;
- }
- });
- }
- if ($.isFunction(found)) {
- response = found.apply(context, passedArguments);
- }
- else if (found !== undefined) {
- response = found;
- }
- if (Array.isArray(returnedValue)) {
- returnedValue.push(response);
- }
- else if (returnedValue !== undefined) {
- returnedValue = [returnedValue, response];
- }
- else if (response !== undefined) {
- returnedValue = response;
- }
- return found;
- }
- };
-
- if (methodInvoked) {
- if (instance === undefined) {
- module.initialize();
- }
- module.invoke(query);
- }
- else {
- if (instance !== undefined) {
- instance.invoke('destroy');
- }
- module.initialize();
- }
- })
- ;
- return (returnedValue !== undefined)
- ? returnedValue
- : this
- ;
-};
-
-$.fn.calendar.settings = {
-
- name : 'Calendar',
- namespace : 'calendar',
-
- silent: false,
- debug: false,
- verbose: false,
- performance: false,
-
- type : 'datetime', // picker type, can be 'datetime', 'date', 'time', 'month', or 'year'
- firstDayOfWeek : 0, // day for first day column (0 = Sunday)
- constantHeight : true, // add rows to shorter months to keep day calendar height consistent (6 rows)
- today : false, // show a 'today/now' button at the bottom of the calendar
- closable : true, // close the popup after selecting a date/time
- monthFirst : true, // month before day when parsing/converting date from/to text
- touchReadonly : true, // set input to readonly on touch devices
- inline : false, // create the calendar inline instead of inside a popup
- on : null, // when to show the popup (defaults to 'focus' for input, 'click' for others)
- initialDate : null, // date to display initially when no date is selected (null = now)
- startMode : false, // display mode to start in, can be 'year', 'month', 'day', 'hour', 'minute' (false = 'day')
- minDate : null, // minimum date/time that can be selected, dates/times before are disabled
- maxDate : null, // maximum date/time that can be selected, dates/times after are disabled
- ampm : true, // show am/pm in time mode
- disableYear : false, // disable year selection mode
- disableMonth : false, // disable month selection mode
- disableMinute : false, // disable minute selection mode
- formatInput : true, // format the input text upon input blur and module creation
- startCalendar : null, // jquery object or selector for another calendar that represents the start date of a date range
- endCalendar : null, // jquery object or selector for another calendar that represents the end date of a date range
- multiMonth : 1, // show multiple months when in 'day' mode
- minTimeGap : 5,
- showWeekNumbers : null, // show Number of Week at the very first column of a dayView
- disabledDates : [], // specific day(s) which won't be selectable and contain additional information.
- disabledDaysOfWeek : [], // day(s) which won't be selectable(s) (0 = Sunday)
- enabledDates : [], // specific day(s) which will be selectable, all other days will be disabled
- eventDates : [], // specific day(s) which will be shown in a different color and using tooltips
- centuryBreak : 60, // starting short year until 99 where it will be assumed to belong to the last century
- currentCentury : 2000, // century to be added to 2-digit years (00 to {centuryBreak}-1)
- selectAdjacentDays : false, // The calendar can show dates from adjacent month. These adjacent month dates can also be made selectable.
- // popup options ('popup', 'on', 'hoverable', and show/hide callbacks are overridden)
- popupOptions: {
- position: 'bottom left',
- lastResort: 'bottom left',
- prefer: 'opposite',
- hideOnScroll: false
- },
-
- text: {
- days: ['S', 'M', 'T', 'W', 'T', 'F', 'S'],
- months: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
- monthsShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
- today: 'Today',
- now: 'Now',
- am: 'AM',
- pm: 'PM',
- weekNo: 'Week'
- },
-
- formatter: {
- header: function (date, mode, settings) {
- return mode === 'year' ? settings.formatter.yearHeader(date, settings) :
- mode === 'month' ? settings.formatter.monthHeader(date, settings) :
- mode === 'day' ? settings.formatter.dayHeader(date, settings) :
- mode === 'hour' ? settings.formatter.hourHeader(date, settings) :
- settings.formatter.minuteHeader(date, settings);
- },
- yearHeader: function (date, settings) {
- var decadeYear = Math.ceil(date.getFullYear() / 10) * 10;
- return (decadeYear - 9) + ' - ' + (decadeYear + 2);
- },
- monthHeader: function (date, settings) {
- return date.getFullYear();
- },
- dayHeader: function (date, settings) {
- var month = settings.text.months[date.getMonth()];
- var year = date.getFullYear();
- return month + ' ' + year;
- },
- hourHeader: function (date, settings) {
- return settings.formatter.date(date, settings);
- },
- minuteHeader: function (date, settings) {
- return settings.formatter.date(date, settings);
- },
- dayColumnHeader: function (day, settings) {
- return settings.text.days[day];
- },
- datetime: function (date, settings) {
- if (!date) {
- return '';
- }
- var day = settings.type === 'time' ? '' : settings.formatter.date(date, settings);
- var time = settings.type.indexOf('time') < 0 ? '' : settings.formatter.time(date, settings, false);
- var separator = settings.type === 'datetime' ? ' ' : '';
- return day + separator + time;
- },
- date: function (date, settings) {
- if (!date) {
- return '';
- }
- var day = date.getDate();
- var month = settings.text.months[date.getMonth()];
- var year = date.getFullYear();
- return settings.type === 'year' ? year :
- settings.type === 'month' ? month + ' ' + year :
- (settings.monthFirst ? month + ' ' + day : day + ' ' + month) + ', ' + year;
- },
- time: function (date, settings, forCalendar) {
- if (!date) {
- return '';
- }
- var hour = date.getHours();
- var minute = date.getMinutes();
- var ampm = '';
- if (settings.ampm) {
- ampm = ' ' + (hour < 12 ? settings.text.am : settings.text.pm);
- hour = hour === 0 ? 12 : hour > 12 ? hour - 12 : hour;
- }
- return hour + ':' + (minute < 10 ? '0' : '') + minute + ampm;
- },
- today: function (settings) {
- return settings.type === 'date' ? settings.text.today : settings.text.now;
- },
- cell: function (cell, date, cellOptions) {
- }
- },
-
- parser: {
- date: function (text, settings) {
- if (text instanceof Date) {
- return text;
- }
- if (!text) {
- return null;
- }
- text = ('' + text).trim().toLowerCase();
- if (text.length === 0) {
- return null;
- }
- // Reverse date and month in some cases
- text = settings.monthFirst ? text : text.replace(/[\/\-\.]/g,'/').replace(/([0-9]+)\/([0-9]+)/,'$2/$1');
- var textDate = new Date(text);
- if(!isNaN(textDate.getDate())) {
- return textDate;
- }
-
- var i, j, k;
- var minute = -1, hour = -1, day = -1, month = -1, year = -1;
- var isAm = undefined;
-
- var isTimeOnly = settings.type === 'time';
- var isDateOnly = settings.type.indexOf('time') < 0;
-
- var words = text.split(settings.regExp.dateWords), word;
- var numbers = text.split(settings.regExp.dateNumbers), number;
-
- var parts;
- var monthString;
-
- if (!isDateOnly) {
- //am/pm
- isAm = $.inArray(settings.text.am.toLowerCase(), words) >= 0 ? true :
- $.inArray(settings.text.pm.toLowerCase(), words) >= 0 ? false : undefined;
-
- //time with ':'
- for (i = 0; i < numbers.length; i++) {
- number = numbers[i];
- if (number.indexOf(':') >= 0) {
- if (hour < 0 || minute < 0) {
- parts = number.split(':');
- for (k = 0; k < Math.min(2, parts.length); k++) {
- j = parseInt(parts[k]);
- if (isNaN(j)) {
- j = 0;
- }
- if (k === 0) {
- hour = j % 24;
- } else {
- minute = j % 60;
- }
- }
- }
- numbers.splice(i, 1);
- }
- }
- }
-
- if (!isTimeOnly) {
- //textual month
- for (i = 0; i < words.length; i++) {
- word = words[i];
- if (word.length <= 0) {
- continue;
- }
- for (j = 0; j < settings.text.months.length; j++) {
- monthString = settings.text.months[j];
- monthString = monthString.substring(0, word.length).toLowerCase();
- if (monthString === word) {
- month = j + 1;
- break;
- }
- }
- if (month >= 0) {
- break;
- }
- }
-
- //year > settings.centuryBreak
- for (i = 0; i < numbers.length; i++) {
- j = parseInt(numbers[i]);
- if (isNaN(j)) {
- continue;
- }
- if (j >= settings.centuryBreak && i === numbers.length-1) {
- if (j <= 99) {
- j += settings.currentCentury - 100;
- }
- year = j;
- numbers.splice(i, 1);
- break;
- }
- }
-
- //numeric month
- if (month < 0) {
- for (i = 0; i < numbers.length; i++) {
- k = i > 1 || settings.monthFirst ? i : i === 1 ? 0 : 1;
- j = parseInt(numbers[k]);
- if (isNaN(j)) {
- continue;
- }
- if (1 <= j && j <= 12) {
- month = j;
- numbers.splice(k, 1);
- break;
- }
- }
- }
-
- //day
- for (i = 0; i < numbers.length; i++) {
- j = parseInt(numbers[i]);
- if (isNaN(j)) {
- continue;
- }
- if (1 <= j && j <= 31) {
- day = j;
- numbers.splice(i, 1);
- break;
- }
- }
-
- //year <= settings.centuryBreak
- if (year < 0) {
- for (i = numbers.length - 1; i >= 0; i--) {
- j = parseInt(numbers[i]);
- if (isNaN(j)) {
- continue;
- }
- if (j <= 99) {
- j += settings.currentCentury;
- }
- year = j;
- numbers.splice(i, 1);
- break;
- }
- }
- }
-
- if (!isDateOnly) {
- //hour
- if (hour < 0) {
- for (i = 0; i < numbers.length; i++) {
- j = parseInt(numbers[i]);
- if (isNaN(j)) {
- continue;
- }
- if (0 <= j && j <= 23) {
- hour = j;
- numbers.splice(i, 1);
- break;
- }
- }
- }
-
- //minute
- if (minute < 0) {
- for (i = 0; i < numbers.length; i++) {
- j = parseInt(numbers[i]);
- if (isNaN(j)) {
- continue;
- }
- if (0 <= j && j <= 59) {
- minute = j;
- numbers.splice(i, 1);
- break;
- }
- }
- }
- }
-
- if (minute < 0 && hour < 0 && day < 0 && month < 0 && year < 0) {
- return null;
- }
-
- if (minute < 0) {
- minute = 0;
- }
- if (hour < 0) {
- hour = 0;
- }
- if (day < 0) {
- day = 1;
- }
- if (month < 0) {
- month = 1;
- }
- if (year < 0) {
- year = new Date().getFullYear();
- }
-
- if (isAm !== undefined) {
- if (isAm) {
- if (hour === 12) {
- hour = 0;
- }
- } else if (hour < 12) {
- hour += 12;
- }
- }
-
- var date = new Date(year, month - 1, day, hour, minute);
- if (date.getMonth() !== month - 1 || date.getFullYear() !== year) {
- //month or year don't match up, switch to last day of the month
- date = new Date(year, month, 0, hour, minute);
- }
- return isNaN(date.getTime()) ? null : date;
- }
- },
-
- // callback before date is changed, return false to cancel the change
- onBeforeChange: function (date, text, mode) {
- return true;
- },
-
- // callback when date changes
- onChange: function (date, text, mode) {
- },
-
- // callback before show animation, return false to prevent show
- onShow: function () {
- },
-
- // callback after show animation
- onVisible: function () {
- },
-
- // callback before hide animation, return false to prevent hide
- onHide: function () {
- },
-
- // callback after hide animation
- onHidden: function () {
- },
-
- // callback before item is selected, return false to prevent selection
- onSelect: function (date, mode) {
- },
-
- // is the given date disabled?
- isDisabled: function (date, mode) {
- return false;
- },
-
- selector: {
- popup: '.ui.popup',
- input: 'input',
- activator: 'input',
- append: '.inline.field,.inline.fields'
- },
-
- regExp: {
- dateWords: /[^A-Za-z\u00C0-\u024F]+/g,
- dateNumbers: /[^\d:]+/g
- },
-
- error: {
- popup: 'UI Popup, a required component is not included in this page',
- method: 'The method you called is not defined.'
- },
-
- className: {
- calendar: 'calendar',
- active: 'active',
- popup: 'ui popup',
- grid: 'ui equal width grid',
- column: 'column',
- table: 'ui celled center aligned unstackable table',
- prev: 'prev link',
- next: 'next link',
- prevIcon: 'chevron left icon',
- nextIcon: 'chevron right icon',
- link: 'link',
- cell: 'link',
- disabledCell: 'disabled',
- weekCell: 'disabled',
- adjacentCell: 'adjacent',
- activeCell: 'active',
- rangeCell: 'range',
- focusCell: 'focus',
- todayCell: 'today',
- today: 'today link'
- },
-
- metadata: {
- date: 'date',
- focusDate: 'focusDate',
- startDate: 'startDate',
- endDate: 'endDate',
- minDate: 'minDate',
- maxDate: 'maxDate',
- mode: 'mode',
- type: 'type',
- monthOffset: 'monthOffset',
- message: 'message',
- class: 'class'
- },
-
- eventClass: 'blue'
-};
-
-})(jQuery, window, document);
diff --git a/src-angular/assets/semantic/src/definitions/modules/calendar.less b/src-angular/assets/semantic/src/definitions/modules/calendar.less
deleted file mode 100644
index bfbf894..0000000
--- a/src-angular/assets/semantic/src/definitions/modules/calendar.less
+++ /dev/null
@@ -1,186 +0,0 @@
-/*!
- * # Fomantic-UI - Calendar
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'module';
-@element : 'calendar';
-
-@import (multiple) '../../theme.config';
-
-/*******************************
- Popup
-*******************************/
-
-.ui.calendar .ui.popup {
- max-width: none;
- padding: 0;
- border: none;
- user-select: none;
-}
-
-/*******************************
- Calendar
-*******************************/
-
-.ui.calendar .calendar:focus {
- outline: 0;
-}
-
-/*******************************
- Grid
-*******************************/
-
-.ui.calendar .ui.popup .ui.grid {
- display: block;
- white-space: nowrap;
-}
-
-.ui.calendar .ui.popup .ui.grid > .column {
- width: auto;
-}
-
-/*******************************
- Table
-*******************************/
-
-.ui.calendar .ui.table.year,
-.ui.calendar .ui.table.month,
-.ui.calendar .ui.table.minute {
- min-width: 15em;
-}
-
-.ui.calendar .ui.table.day {
- min-width: 18em;
-}
-
-.ui.calendar .ui.table.day.andweek {
- min-width: 22em;
-}
-
-.ui.calendar .ui.table.hour {
- min-width: 20em;
-}
-
-.ui.calendar .ui.table tr th,
-.ui.calendar .ui.table tr td {
- padding: 0.5em;
- white-space: nowrap;
-}
-
-.ui.calendar .ui.table tr th {
- border-left: none;
-}
-
-.ui.calendar .ui.table tr th .icon {
- margin: 0;
-}
-
-.ui.calendar .ui.table tr:first-child th {
- position: relative;
- padding-left: 0;
- padding-right: 0;
-}
-
-.ui.calendar .ui.table.day tr:first-child th {
- border: none;
-}
-
-.ui.calendar .ui.table.day tr:nth-child(2) th {
- padding-top: 0.2em;
- padding-bottom: 0.3em;
-}
-
-.ui.calendar .ui.table tr td {
- padding-left: 0.1em;
- padding-right: 0.1em;
-}
-
-.ui.calendar .ui.table tr .link {
- cursor: pointer;
-}
-
-.ui.calendar .ui.table tr .prev.link {
- width: 14.28571429%;
- position: absolute;
- left: 0;
-}
-
-.ui.calendar .ui.table tr .next.link {
- width: 14.28571429%;
- position: absolute;
- right: 0;
-}
-
-.ui.calendar .ui.table tr .disabled {
- pointer-events: auto;
- cursor: default;
- color: @disabledTextColor;
-}
-
-.ui.calendar .ui.table tr .adjacent:not(.disabled) {
- color: @adjacentTextColor;
- background: @adjacentBackground;
-}
-
-/*--------------
- States
----------------*/
-
-.ui.calendar .ui.table tr td.today {
- font-weight: @todayFontWeight;
-}
-
-.ui.calendar .ui.table tr td.range {
- background: @rangeBackground;
- color: @rangeTextColor;
- box-shadow: @rangeBoxShadow;
-}
-
-.ui.calendar .ui.table.inverted tr td.range {
- background: @rangeInvertedBackground;
- color: @rangeInvertedTextColor;
- box-shadow: @rangeInvertedBoxShadow;
-}
-
-.ui.calendar:not(.disabled) .calendar:focus .ui.table tbody tr td.focus,
-.ui.calendar:not(.disabled) .calendar.active .ui.table tbody tr td.focus {
- box-shadow: @focusBoxShadow;
-}
-
-.ui.calendar:not(.disabled) .calendar:focus .ui.table.inverted tbody tr td.focus,
-.ui.calendar:not(.disabled) .calendar.active .ui.table.inverted tbody tr td.focus {
- box-shadow: @focusInvertedBoxShadow;
-}
-
-
-/*******************************
- States
-*******************************/
-
-& when (@variationCalendarDisabled) {
- /*--------------------
- Disabled
- ---------------------*/
-
- .ui.disabled.calendar {
- opacity: @disabledOpacity;
- }
-
- .ui.disabled.calendar > .input,
- .ui.disabled.calendar .ui.table tr .link {
- pointer-events: none;
- }
-}
-
-
-.loadUIOverrides();
diff --git a/src-angular/assets/semantic/src/definitions/modules/checkbox.js b/src-angular/assets/semantic/src/definitions/modules/checkbox.js
deleted file mode 100644
index 9222bfb..0000000
--- a/src-angular/assets/semantic/src/definitions/modules/checkbox.js
+++ /dev/null
@@ -1,876 +0,0 @@
-/*!
- * # Fomantic-UI - Checkbox
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-;(function ($, window, document, undefined) {
-
-'use strict';
-
-$.isFunction = $.isFunction || function(obj) {
- return typeof obj === "function" && typeof obj.nodeType !== "number";
-};
-
-window = (typeof window != 'undefined' && window.Math == Math)
- ? window
- : (typeof self != 'undefined' && self.Math == Math)
- ? self
- : Function('return this')()
-;
-
-$.fn.checkbox = function(parameters) {
- var
- $allModules = $(this),
- moduleSelector = $allModules.selector || '',
-
- time = new Date().getTime(),
- performance = [],
-
- query = arguments[0],
- methodInvoked = (typeof query == 'string'),
- queryArguments = [].slice.call(arguments, 1),
- returnedValue
- ;
-
- $allModules
- .each(function() {
- var
- settings = $.extend(true, {}, $.fn.checkbox.settings, parameters),
-
- className = settings.className,
- namespace = settings.namespace,
- selector = settings.selector,
- error = settings.error,
-
- eventNamespace = '.' + namespace,
- moduleNamespace = 'module-' + namespace,
-
- $module = $(this),
- $label = $(this).children(selector.label),
- $input = $(this).children(selector.input),
- input = $input[0],
-
- initialLoad = false,
- shortcutPressed = false,
- instance = $module.data(moduleNamespace),
-
- observer,
- element = this,
- module
- ;
-
- module = {
-
- initialize: function() {
- module.verbose('Initializing checkbox', settings);
-
- module.create.label();
- module.bind.events();
-
- module.set.tabbable();
- module.hide.input();
-
- module.observeChanges();
- module.instantiate();
- module.setup();
- },
-
- instantiate: function() {
- module.verbose('Storing instance of module', module);
- instance = module;
- $module
- .data(moduleNamespace, module)
- ;
- },
-
- destroy: function() {
- module.verbose('Destroying module');
- module.unbind.events();
- module.show.input();
- $module.removeData(moduleNamespace);
- },
-
- fix: {
- reference: function() {
- if( $module.is(selector.input) ) {
- module.debug('Behavior called on adjusting invoked element');
- $module = $module.closest(selector.checkbox);
- module.refresh();
- }
- }
- },
-
- setup: function() {
- module.set.initialLoad();
- if( module.is.indeterminate() ) {
- module.debug('Initial value is indeterminate');
- module.indeterminate();
- }
- else if( module.is.checked() ) {
- module.debug('Initial value is checked');
- module.check();
- }
- else {
- module.debug('Initial value is unchecked');
- module.uncheck();
- }
- module.remove.initialLoad();
- },
-
- refresh: function() {
- $label = $module.children(selector.label);
- $input = $module.children(selector.input);
- input = $input[0];
- },
-
- hide: {
- input: function() {
- module.verbose('Modifying z-index to be unselectable');
- $input.addClass(className.hidden);
- }
- },
- show: {
- input: function() {
- module.verbose('Modifying z-index to be selectable');
- $input.removeClass(className.hidden);
- }
- },
-
- observeChanges: function() {
- if('MutationObserver' in window) {
- observer = new MutationObserver(function(mutations) {
- module.debug('DOM tree modified, updating selector cache');
- module.refresh();
- });
- observer.observe(element, {
- childList : true,
- subtree : true
- });
- module.debug('Setting up mutation observer', observer);
- }
- },
-
- attachEvents: function(selector, event) {
- var
- $element = $(selector)
- ;
- event = $.isFunction(module[event])
- ? module[event]
- : module.toggle
- ;
- if($element.length > 0) {
- module.debug('Attaching checkbox events to element', selector, event);
- $element
- .on('click' + eventNamespace, event)
- ;
- }
- else {
- module.error(error.notFound);
- }
- },
-
- preventDefaultOnInputTarget: function() {
- if(typeof event !== 'undefined' && event !== null && $(event.target).is(selector.input)) {
- module.verbose('Preventing default check action after manual check action');
- event.preventDefault();
- }
- },
-
- event: {
- change: function(event) {
- if( !module.should.ignoreCallbacks() ) {
- settings.onChange.call(input);
- }
- },
- click: function(event) {
- var
- $target = $(event.target)
- ;
- if( $target.is(selector.input) ) {
- module.verbose('Using default check action on initialized checkbox');
- return;
- }
- if( $target.is(selector.link) ) {
- module.debug('Clicking link inside checkbox, skipping toggle');
- return;
- }
- module.toggle();
- $input.focus();
- event.preventDefault();
- },
- keydown: function(event) {
- var
- key = event.which,
- keyCode = {
- enter : 13,
- space : 32,
- escape : 27,
- left : 37,
- up : 38,
- right : 39,
- down : 40
- }
- ;
-
- var r = module.get.radios(),
- rIndex = r.index($module),
- rLen = r.length,
- checkIndex = false;
-
- if(key == keyCode.left || key == keyCode.up) {
- checkIndex = (rIndex === 0 ? rLen : rIndex) - 1;
- } else if(key == keyCode.right || key == keyCode.down) {
- checkIndex = rIndex === rLen-1 ? 0 : rIndex+1;
- }
-
- if (!module.should.ignoreCallbacks() && checkIndex !== false) {
- if(settings.beforeUnchecked.apply(input)===false) {
- module.verbose('Option not allowed to be unchecked, cancelling key navigation');
- return false;
- }
- if (settings.beforeChecked.apply($(r[checkIndex]).children(selector.input)[0])===false) {
- module.verbose('Next option should not allow check, cancelling key navigation');
- return false;
- }
- }
-
- if(key == keyCode.escape) {
- module.verbose('Escape key pressed blurring field');
- $input.blur();
- shortcutPressed = true;
- }
- else if(!event.ctrlKey && ( key == keyCode.space || (key == keyCode.enter && settings.enableEnterKey)) ) {
- module.verbose('Enter/space key pressed, toggling checkbox');
- module.toggle();
- shortcutPressed = true;
- }
- else {
- shortcutPressed = false;
- }
- },
- keyup: function(event) {
- if(shortcutPressed) {
- event.preventDefault();
- }
- }
- },
-
- check: function() {
- if( !module.should.allowCheck() ) {
- return;
- }
- module.debug('Checking checkbox', $input);
- module.set.checked();
- if( !module.should.ignoreCallbacks() ) {
- settings.onChecked.call(input);
- module.trigger.change();
- }
- module.preventDefaultOnInputTarget();
- },
-
- uncheck: function() {
- if( !module.should.allowUncheck() ) {
- return;
- }
- module.debug('Unchecking checkbox');
- module.set.unchecked();
- if( !module.should.ignoreCallbacks() ) {
- settings.onUnchecked.call(input);
- module.trigger.change();
- }
- module.preventDefaultOnInputTarget();
- },
-
- indeterminate: function() {
- if( module.should.allowIndeterminate() ) {
- module.debug('Checkbox is already indeterminate');
- return;
- }
- module.debug('Making checkbox indeterminate');
- module.set.indeterminate();
- if( !module.should.ignoreCallbacks() ) {
- settings.onIndeterminate.call(input);
- module.trigger.change();
- }
- },
-
- determinate: function() {
- if( module.should.allowDeterminate() ) {
- module.debug('Checkbox is already determinate');
- return;
- }
- module.debug('Making checkbox determinate');
- module.set.determinate();
- if( !module.should.ignoreCallbacks() ) {
- settings.onDeterminate.call(input);
- module.trigger.change();
- }
- },
-
- enable: function() {
- if( module.is.enabled() ) {
- module.debug('Checkbox is already enabled');
- return;
- }
- module.debug('Enabling checkbox');
- module.set.enabled();
- if( !module.should.ignoreCallbacks() ) {
- settings.onEnable.call(input);
- // preserve legacy callbacks
- settings.onEnabled.call(input);
- module.trigger.change();
- }
- },
-
- disable: function() {
- if( module.is.disabled() ) {
- module.debug('Checkbox is already disabled');
- return;
- }
- module.debug('Disabling checkbox');
- module.set.disabled();
- if( !module.should.ignoreCallbacks() ) {
- settings.onDisable.call(input);
- // preserve legacy callbacks
- settings.onDisabled.call(input);
- module.trigger.change();
- }
- },
-
- get: {
- radios: function() {
- var
- name = module.get.name()
- ;
- return $('input[name="' + name + '"]').closest(selector.checkbox);
- },
- otherRadios: function() {
- return module.get.radios().not($module);
- },
- name: function() {
- return $input.attr('name');
- }
- },
-
- is: {
- initialLoad: function() {
- return initialLoad;
- },
- radio: function() {
- return ($input.hasClass(className.radio) || $input.attr('type') == 'radio');
- },
- indeterminate: function() {
- return $input.prop('indeterminate') !== undefined && $input.prop('indeterminate');
- },
- checked: function() {
- return $input.prop('checked') !== undefined && $input.prop('checked');
- },
- disabled: function() {
- return $input.prop('disabled') !== undefined && $input.prop('disabled');
- },
- enabled: function() {
- return !module.is.disabled();
- },
- determinate: function() {
- return !module.is.indeterminate();
- },
- unchecked: function() {
- return !module.is.checked();
- }
- },
-
- should: {
- allowCheck: function() {
- if(module.is.determinate() && module.is.checked() && !module.is.initialLoad() ) {
- module.debug('Should not allow check, checkbox is already checked');
- return false;
- }
- if(!module.should.ignoreCallbacks() && settings.beforeChecked.apply(input) === false) {
- module.debug('Should not allow check, beforeChecked cancelled');
- return false;
- }
- return true;
- },
- allowUncheck: function() {
- if(module.is.determinate() && module.is.unchecked() && !module.is.initialLoad() ) {
- module.debug('Should not allow uncheck, checkbox is already unchecked');
- return false;
- }
- if(!module.should.ignoreCallbacks() && settings.beforeUnchecked.apply(input) === false) {
- module.debug('Should not allow uncheck, beforeUnchecked cancelled');
- return false;
- }
- return true;
- },
- allowIndeterminate: function() {
- if(module.is.indeterminate() && !module.is.initialLoad() ) {
- module.debug('Should not allow indeterminate, checkbox is already indeterminate');
- return false;
- }
- if(!module.should.ignoreCallbacks() && settings.beforeIndeterminate.apply(input) === false) {
- module.debug('Should not allow indeterminate, beforeIndeterminate cancelled');
- return false;
- }
- return true;
- },
- allowDeterminate: function() {
- if(module.is.determinate() && !module.is.initialLoad() ) {
- module.debug('Should not allow determinate, checkbox is already determinate');
- return false;
- }
- if(!module.should.ignoreCallbacks() && settings.beforeDeterminate.apply(input) === false) {
- module.debug('Should not allow determinate, beforeDeterminate cancelled');
- return false;
- }
- return true;
- },
- ignoreCallbacks: function() {
- return (initialLoad && !settings.fireOnInit);
- }
- },
-
- can: {
- change: function() {
- return !( $module.hasClass(className.disabled) || $module.hasClass(className.readOnly) || $input.prop('disabled') || $input.prop('readonly') );
- },
- uncheck: function() {
- return (typeof settings.uncheckable === 'boolean')
- ? settings.uncheckable
- : !module.is.radio()
- ;
- }
- },
-
- set: {
- initialLoad: function() {
- initialLoad = true;
- },
- checked: function() {
- module.verbose('Setting class to checked');
- $module
- .removeClass(className.indeterminate)
- .addClass(className.checked)
- ;
- if( module.is.radio() ) {
- module.uncheckOthers();
- }
- if(!module.is.indeterminate() && module.is.checked()) {
- module.debug('Input is already checked, skipping input property change');
- return;
- }
- module.verbose('Setting state to checked', input);
- $input
- .prop('indeterminate', false)
- .prop('checked', true)
- ;
- },
- unchecked: function() {
- module.verbose('Removing checked class');
- $module
- .removeClass(className.indeterminate)
- .removeClass(className.checked)
- ;
- if(!module.is.indeterminate() && module.is.unchecked() ) {
- module.debug('Input is already unchecked');
- return;
- }
- module.debug('Setting state to unchecked');
- $input
- .prop('indeterminate', false)
- .prop('checked', false)
- ;
- },
- indeterminate: function() {
- module.verbose('Setting class to indeterminate');
- $module
- .addClass(className.indeterminate)
- ;
- if( module.is.indeterminate() ) {
- module.debug('Input is already indeterminate, skipping input property change');
- return;
- }
- module.debug('Setting state to indeterminate');
- $input
- .prop('indeterminate', true)
- ;
- },
- determinate: function() {
- module.verbose('Removing indeterminate class');
- $module
- .removeClass(className.indeterminate)
- ;
- if( module.is.determinate() ) {
- module.debug('Input is already determinate, skipping input property change');
- return;
- }
- module.debug('Setting state to determinate');
- $input
- .prop('indeterminate', false)
- ;
- },
- disabled: function() {
- module.verbose('Setting class to disabled');
- $module
- .addClass(className.disabled)
- ;
- if( module.is.disabled() ) {
- module.debug('Input is already disabled, skipping input property change');
- return;
- }
- module.debug('Setting state to disabled');
- $input
- .prop('disabled', 'disabled')
- ;
- },
- enabled: function() {
- module.verbose('Removing disabled class');
- $module.removeClass(className.disabled);
- if( module.is.enabled() ) {
- module.debug('Input is already enabled, skipping input property change');
- return;
- }
- module.debug('Setting state to enabled');
- $input
- .prop('disabled', false)
- ;
- },
- tabbable: function() {
- module.verbose('Adding tabindex to checkbox');
- if( $input.attr('tabindex') === undefined) {
- $input.attr('tabindex', 0);
- }
- }
- },
-
- remove: {
- initialLoad: function() {
- initialLoad = false;
- }
- },
-
- trigger: {
- change: function() {
- var
- events = document.createEvent('HTMLEvents'),
- inputElement = $input[0]
- ;
- if(inputElement) {
- module.verbose('Triggering native change event');
- events.initEvent('change', true, false);
- inputElement.dispatchEvent(events);
- }
- }
- },
-
-
- create: {
- label: function() {
- if($input.prevAll(selector.label).length > 0) {
- $input.prev(selector.label).detach().insertAfter($input);
- module.debug('Moving existing label', $label);
- }
- else if( !module.has.label() ) {
- $label = $('