From 12f367054805ff593a0e1061c9763b4115ca4a57 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Wed, 19 Dec 2018 20:34:16 +0100 Subject: [PATCH 01/16] Fixed error in js --- front/src/utils/time.js | 2 +- front/stats.json | 0 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 front/stats.json diff --git a/front/src/utils/time.js b/front/src/utils/time.js index 028131cf4..ca3edbdea 100644 --- a/front/src/utils/time.js +++ b/front/src/utils/time.js @@ -16,7 +16,7 @@ export default { durationFormatted (v) { let duration = parseInt(v) if (duration % 1 !== 0) { - return time.parse(0) + return this.parse(0) } duration = Math.round(duration) return this.parse(duration) diff --git a/front/stats.json b/front/stats.json new file mode 100644 index 000000000..e69de29bb From ba68246e0d6fb10f36563b6cb9e37115685a8680 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Wed, 19 Dec 2018 21:45:12 +0100 Subject: [PATCH 02/16] Load translations separately to reduce bandwidth usage --- .gitignore | 1 + front/package.json | 5 +++-- front/scripts/i18n-compile.sh | 8 ++++++-- front/src/App.vue | 5 ++--- front/src/components/Footer.vue | 11 ++++++++++- front/src/main.js | 3 +-- front/vue.config.js | 6 ++++++ front/yarn.lock | 21 ++++++++++++++++++++- 8 files changed, 49 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index 44459f0f8..e62b1ce62 100644 --- a/.gitignore +++ b/.gitignore @@ -93,5 +93,6 @@ po/*.po docs/swagger _build front/src/translations.json +front/src/translations/*.json front/locales/en_US/LC_MESSAGES/app.po *.prof diff --git a/front/package.json b/front/package.json index 23894600e..61a80bee8 100644 --- a/front/package.json +++ b/front/package.json @@ -3,7 +3,7 @@ "version": "0.1.0", "private": true, "scripts": { - "serve": "scripts/i18n-compile.sh && vue-cli-service serve --port ${VUE_PORT:-8000} --host ${VUE_HOST:-0.0.0.0}", + "serve": "vue-cli-service serve --port ${VUE_PORT:-8000} --host ${VUE_HOST:-0.0.0.0}", "build": "scripts/i18n-compile.sh && vue-cli-service build", "lint": "vue-cli-service lint", "i18n-extract": "scripts/i18n-extract.sh", @@ -49,7 +49,8 @@ "node-sass": "^4.9.3", "sass-loader": "^7.1.0", "sinon": "^6.1.5", - "vue-template-compiler": "^2.5.17" + "vue-template-compiler": "^2.5.17", + "webpack-bundle-size-analyzer": "^3.0.0" }, "eslintConfig": { "root": true, diff --git a/front/scripts/i18n-compile.sh b/front/scripts/i18n-compile.sh index 955913393..a5713df83 100755 --- a/front/scripts/i18n-compile.sh +++ b/front/scripts/i18n-compile.sh @@ -1,3 +1,7 @@ #!/bin/bash -eux -locales=$(tail -n +2 src/locales.js | sed -e 's/export default //' | jq '.locales[].code' | xargs echo) -find locales -name '*.po' | xargs $(yarn bin)/gettext-compile --output src/translations.json +locales=$(tail -n +2 src/locales.js | sed -e 's/export default //' | jq '.locales[].code' | grep -v 'en_US' | xargs echo) +for locale in $locales; do + find "locales/$locale" -name '*.po' | $(yarn bin)/gettext-compile locales/$locale/LC_MESSAGES/app.po --output src/translations/$locale.json +done + +# find locales -name '*.po' | xargs $(yarn bin)/gettext-compile --output src/translations.json diff --git a/front/src/App.vue b/front/src/App.vue index 6e6f45ff6..39e80f784 100644 --- a/front/src/App.vue +++ b/front/src/App.vue @@ -61,13 +61,12 @@ import {mapState} from 'vuex' import { WebSocketBridge } from 'django-channels' import GlobalEvents from '@/components/utils/global-events' -import translations from '@/translations' - import Sidebar from '@/components/Sidebar' import AppFooter from '@/components/Footer' import Raven from '@/components/Raven' import ServiceMessages from '@/components/ServiceMessages' +import locales from './locales' import PlaylistModal from '@/components/playlists/PlaylistModal' import ShortcutsModal from '@/components/ShortcutsModal' @@ -139,7 +138,7 @@ export default { }, autodetectLanguage () { let userLanguage = navigator.language || navigator.userLanguage - let available = _.keys(translations) + let available = locales.locales.map(e => { return e.code }) let matching = available.filter((a) => { return userLanguage.replace('-', '_') === a }) diff --git a/front/src/components/Footer.vue b/front/src/components/Footer.vue index e0fa2d4bb..a0543e1e3 100644 --- a/front/src/components/Footer.vue +++ b/front/src/components/Footer.vue @@ -20,7 +20,7 @@
-
@@ -60,7 +60,9 @@ diff --git a/front/src/main.js b/front/src/main.js index 7390a6998..4cd38a6be 100644 --- a/front/src/main.js +++ b/front/src/main.js @@ -22,12 +22,9 @@ import globals from '@/components/globals' // eslint-disable-line sync(store, router) window.$ = window.jQuery = require('jquery') - -// this is absolutely dirty but at the moment, semantic UI does not -// play really nice with webpack and I want to get rid of Google Fonts -// require('./semantic/semantic.css') -require('semantic-ui-css/semantic.js') +require('./semantic.js') require('masonry-layout') + let availableLanguages = (function () { let l = {} locales.locales.forEach(c => { diff --git a/front/src/semantic.js b/front/src/semantic.js new file mode 100644 index 000000000..8e091af0d --- /dev/null +++ b/front/src/semantic.js @@ -0,0 +1,24 @@ +require('semantic-ui-css/components/accordion.min.js') +require('semantic-ui-css/components/api.min.js') +require('semantic-ui-css/components/checkbox.min.js') +require('semantic-ui-css/components/colorize.min.js') +require('semantic-ui-css/components/dimmer.min.js') +require('semantic-ui-css/components/dropdown.min.js') +require('semantic-ui-css/components/embed.min.js') +require('semantic-ui-css/components/form.min.js') +require('semantic-ui-css/components/modal.min.js') +require('semantic-ui-css/components/nag.min.js') +require('semantic-ui-css/components/popup.min.js') +require('semantic-ui-css/components/progress.min.js') +require('semantic-ui-css/components/rating.min.js') +require('semantic-ui-css/components/search.min.js') +require('semantic-ui-css/components/shape.min.js') +require('semantic-ui-css/components/sidebar.min.js') +require('semantic-ui-css/components/site.min.js') +require('semantic-ui-css/components/state.min.js') +require('semantic-ui-css/components/sticky.min.js') +require('semantic-ui-css/components/tab.min.js') +require('semantic-ui-css/components/transition.min.js') +require('semantic-ui-css/components/video.min.js') +require('semantic-ui-css/components/visibility.min.js') +require('semantic-ui-css/components/visit.min.js') diff --git a/front/src/semantic/semantic.css b/front/src/semantic/semantic.css deleted file mode 100755 index a6b276359..000000000 --- a/front/src/semantic/semantic.css +++ /dev/null @@ -1,39268 +0,0 @@ -/* -* # Semantic UI - 2.3.0 -* https://github.com/Semantic-Org/Semantic-UI -* http://www.semantic-ui.com/ -* -* Copyright 2014 Contributors -* 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'); */ -/*! -* # Semantic UI 2.3.0 - Reset -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Reset -*******************************/ - -/* Border-Box */ - -*, -*:before, -*:after { - -webkit-box-sizing: inherit; - box-sizing: inherit; -} - -html { - -webkit-box-sizing: border-box; - 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! */ -} - -/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */ - -/* Document - ========================================================================== */ - -/** -* 1. Correct the line height in all browsers. -* 2. Prevent adjustments of font size after orientation changes in -* IE on Windows Phone and in iOS. -*/ - -html { - line-height: 1.15; - /* 1 */ - -ms-text-size-adjust: 100%; - /* 2 */ - -webkit-text-size-adjust: 100%; - /* 2 */ -} - -/* Sections - ========================================================================== */ - -/** -* Remove the margin in all browsers (opinionated). -*/ - -body { - margin: 0; -} - -/** -* Add the correct display in IE 9-. -*/ - -article, -aside, -footer, -header, -nav, -section { - display: block; -} - -/** -* Correct the font size and margin on `h1` elements within `section` and -* `article` contexts in Chrome, Firefox, and Safari. -*/ - -h1 { - font-size: 2em; - margin: 0.67em 0; -} - -/* Grouping content - ========================================================================== */ - -/** -* Add the correct display in IE 9-. -* 1. Add the correct display in IE. -*/ - -figcaption, -figure, -main { - /* 1 */ - display: block; -} - -/** -* Add the correct margin in IE 8. -*/ - -figure { - margin: 1em 40px; -} - -/** -* 1. Add the correct box sizing in Firefox. -* 2. Show the overflow in Edge and IE. -*/ - -hr { - -webkit-box-sizing: content-box; - box-sizing: content-box; - /* 1 */ - height: 0; - /* 1 */ - overflow: visible; - /* 2 */ -} - -/** -* 1. Correct the inheritance and scaling of font size in all browsers. -* 2. Correct the odd `em` font sizing in all browsers. -*/ - -pre { - font-family: monospace, monospace; - /* 1 */ - font-size: 1em; - /* 2 */ -} - -/* Text-level semantics - ========================================================================== */ - -/** -* 1. Remove the gray background on active links in IE 10. -* 2. Remove gaps in links underline in iOS 8+ and Safari 8+. -*/ - -a { - background-color: transparent; - /* 1 */ - -webkit-text-decoration-skip: objects; - /* 2 */ -} - -/** -* 1. Remove the bottom border in Chrome 57- and Firefox 39-. -* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. -*/ - -abbr[title] { - border-bottom: none; - /* 1 */ - text-decoration: underline; - /* 2 */ - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; - /* 2 */ -} - -/** -* Prevent the duplicate application of `bolder` by the next rule in Safari 6. -*/ - -b, -strong { - font-weight: inherit; -} - -/** -* Add the correct font weight in Chrome, Edge, and Safari. -*/ - -b, -strong { - font-weight: bolder; -} - -/** -* 1. Correct the inheritance and scaling of font size in all browsers. -* 2. Correct the odd `em` font sizing in all browsers. -*/ - -code, -kbd, -samp { - font-family: monospace, monospace; - /* 1 */ - font-size: 1em; - /* 2 */ -} - -/** -* Add the correct font style in Android 4.3-. -*/ - -dfn { - font-style: italic; -} - -/** -* Add the correct background and color in IE 9-. -*/ - -mark { - background-color: #ff0; - color: #000; -} - -/** -* Add the correct font size in all browsers. -*/ - -small { - font-size: 80%; -} - -/** -* Prevent `sub` and `sup` elements from affecting the line height in -* all browsers. -*/ - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sub { - bottom: -0.25em; -} - -sup { - top: -0.5em; -} - -/* Embedded content - ========================================================================== */ - -/** -* Add the correct display in IE 9-. -*/ - -audio, -video { - display: inline-block; -} - -/** -* Add the correct display in iOS 4-7. -*/ - -audio:not([controls]) { - display: none; - height: 0; -} - -/** -* Remove the border on images inside links in IE 10-. -*/ - -img { - border-style: none; -} - -/** -* Hide the overflow in IE. -*/ - -svg:not(:root) { - overflow: hidden; -} - -/* Forms - ========================================================================== */ - -/** -* 1. Change the font styles in all browsers (opinionated). -* 2. Remove the margin in Firefox and Safari. -*/ - -button, -input, -optgroup, -select, -textarea { - font-family: sans-serif; - /* 1 */ - font-size: 100%; - /* 1 */ - line-height: 1.15; - /* 1 */ - margin: 0; - /* 2 */ -} - -/** -* Show the overflow in IE. -* 1. Show the overflow in Edge. -*/ - -button, -input { - /* 1 */ - overflow: visible; -} - -/** -* Remove the inheritance of text transform in Edge, Firefox, and IE. -* 1. Remove the inheritance of text transform in Firefox. -*/ - -button, -select { - /* 1 */ - text-transform: none; -} - -/** -* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video` -* controls in Android 4. -* 2. Correct the inability to style clickable types in iOS and Safari. -*/ - -button, -html [type="button"], -[type="reset"], -[type="submit"] { - -webkit-appearance: button; - /* 2 */ -} - -/** -* Remove the inner border and padding in Firefox. -*/ - -button::-moz-focus-inner, -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner { - border-style: none; - padding: 0; -} - -/** -* Restore the focus styles unset by the previous rule. -*/ - -button:-moz-focusring, -[type="button"]:-moz-focusring, -[type="reset"]:-moz-focusring, -[type="submit"]:-moz-focusring { - outline: 1px dotted ButtonText; -} - -/** -* Correct the padding in Firefox. -*/ - -fieldset { - padding: 0.35em 0.75em 0.625em; -} - -/** -* 1. Correct the text wrapping in Edge and IE. -* 2. Correct the color inheritance from `fieldset` elements in IE. -* 3. Remove the padding so developers are not caught out when they zero out -* `fieldset` elements in all browsers. -*/ - -legend { - -webkit-box-sizing: border-box; - box-sizing: border-box; - /* 1 */ - color: inherit; - /* 2 */ - display: table; - /* 1 */ - max-width: 100%; - /* 1 */ - padding: 0; - /* 3 */ - white-space: normal; - /* 1 */ -} - -/** -* 1. Add the correct display in IE 9-. -* 2. Add the correct vertical alignment in Chrome, Firefox, and Opera. -*/ - -progress { - display: inline-block; - /* 1 */ - vertical-align: baseline; - /* 2 */ -} - -/** -* Remove the default vertical scrollbar in IE. -*/ - -textarea { - overflow: auto; -} - -/** -* 1. Add the correct box sizing in IE 10-. -* 2. Remove the padding in IE 10-. -*/ - -[type="checkbox"], -[type="radio"] { - -webkit-box-sizing: border-box; - box-sizing: border-box; - /* 1 */ - padding: 0; - /* 2 */ -} - -/** -* Correct the cursor style of increment and decrement buttons in Chrome. -*/ - -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button { - height: auto; -} - -/** -* 1. Correct the odd appearance in Chrome and Safari. -* 2. Correct the outline style in Safari. -*/ - -[type="search"] { - -webkit-appearance: textfield; - /* 1 */ - outline-offset: -2px; - /* 2 */ -} - -/** -* Remove the inner padding and cancel buttons in Chrome and Safari on macOS. -*/ - -[type="search"]::-webkit-search-cancel-button, -[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -/** -* 1. Correct the inability to style clickable types in iOS and Safari. -* 2. Change font properties to `inherit` in Safari. -*/ - -::-webkit-file-upload-button { - -webkit-appearance: button; - /* 1 */ - font: inherit; - /* 2 */ -} - -/* Interactive - ========================================================================== */ - -/* -* Add the correct display in IE 9-. -* 1. Add the correct display in Edge, IE, and Firefox. -*/ - -details, -menu { - display: block; -} - -/* -* Add the correct display in all browsers. -*/ - -summary { - display: list-item; -} - -/* Scripting - ========================================================================== */ - -/** -* Add the correct display in IE 9-. -*/ - -canvas { - display: inline-block; -} - -/** -* Add the correct display in IE. -*/ - -template { - display: none; -} - -/* Hidden - ========================================================================== */ - -/** -* Add the correct display in IE 10-. -*/ - -[hidden] { - display: none; -} - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Site -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Page -*******************************/ - -html, -body { - height: 100%; -} - -html { - font-size: 14px; -} - -body { - margin: 0px; - padding: 0px; - overflow-x: hidden; - min-width: 320px; - background: #FFFFFF; - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - font-size: 14px; - line-height: 1.4285em; - color: rgba(0, 0, 0, 0.87); - font-smoothing: antialiased; -} - -/******************************* - Headers -*******************************/ - -h1, -h2, -h3, -h4, -h5 { - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - line-height: 1.28571429em; - margin: calc(2rem - 0.14285714em ) 0em 1rem; - font-weight: bold; - padding: 0em; -} - -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: 0em; -} - -h1:last-child, -h2:last-child, -h3:last-child, -h4:last-child, -h5:last-child { - margin-bottom: 0em; -} - -/******************************* - Text -*******************************/ - -p { - margin: 0em 0em 1em; - line-height: 1.4285em; -} - -p:first-child { - margin-top: 0em; -} - -p:last-child { - margin-bottom: 0em; -} - -/*------------------- - Links ---------------------*/ - -a { - color: #4183C4; - text-decoration: none; -} - -a:hover { - color: #1e70bf; - text-decoration: none; -} - -/******************************* - Scrollbars -*******************************/ - -/******************************* - Highlighting -*******************************/ - -/* Site */ - -::-webkit-selection { - background-color: #CCE2FF; - color: rgba(0, 0, 0, 0.87); -} - -::-moz-selection { - background-color: #CCE2FF; - color: rgba(0, 0, 0, 0.87); -} - -::selection { - background-color: #CCE2FF; - color: rgba(0, 0, 0, 0.87); -} - -/* Form */ - -textarea::-webkit-selection, -input::-webkit-selection { - background-color: rgba(100, 100, 100, 0.4); - color: rgba(0, 0, 0, 0.87); -} - -textarea::-moz-selection, -input::-moz-selection { - background-color: rgba(100, 100, 100, 0.4); - color: rgba(0, 0, 0, 0.87); -} - -textarea::selection, -input::selection { - background-color: rgba(100, 100, 100, 0.4); - color: rgba(0, 0, 0, 0.87); -} - -/* Force Simple Scrollbars */ - -body ::-webkit-scrollbar { - -webkit-appearance: none; - width: 10px; - height: 10px; -} - -body ::-webkit-scrollbar-track { - background: rgba(0, 0, 0, 0.1); - border-radius: 0px; -} - -body ::-webkit-scrollbar-thumb { - cursor: pointer; - border-radius: 5px; - background: rgba(0, 0, 0, 0.25); - -webkit-transition: color 0.2s ease; - transition: color 0.2s ease; -} - -body ::-webkit-scrollbar-thumb:window-inactive { - background: rgba(0, 0, 0, 0.15); -} - -body ::-webkit-scrollbar-thumb:hover { - background: rgba(128, 135, 139, 0.8); -} - -/* Inverted UI */ - -body .ui.inverted::-webkit-scrollbar-track { - background: rgba(255, 255, 255, 0.1); -} - -body .ui.inverted::-webkit-scrollbar-thumb { - background: rgba(255, 255, 255, 0.25); -} - -body .ui.inverted::-webkit-scrollbar-thumb:window-inactive { - background: rgba(255, 255, 255, 0.15); -} - -body .ui.inverted::-webkit-scrollbar-thumb:hover { - background: rgba(255, 255, 255, 0.35); -} - -/******************************* - Global Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Button -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Button -*******************************/ - -.ui.button { - cursor: pointer; - display: inline-block; - min-height: 1em; - outline: none; - border: none; - vertical-align: baseline; - background: #E0E1E2 none; - color: rgba(0, 0, 0, 0.6); - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - margin: 0em 0.25em 0em 0em; - padding: 0.78571429em 1.5em 0.78571429em; - text-transform: none; - text-shadow: none; - font-weight: bold; - line-height: 1em; - font-style: normal; - text-align: center; - text-decoration: none; - border-radius: 0.28571429rem; - -webkit-box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - -webkit-transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease; - transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease; - will-change: ''; - -webkit-tap-highlight-color: transparent; -} - -/******************************* - States -*******************************/ - -/*-------------- - Hover ----------------*/ - -.ui.button:hover { - background-color: #CACBCD; - background-image: none; - -webkit-box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - color: rgba(0, 0, 0, 0.8); -} - -.ui.button:hover .icon { - opacity: 0.85; -} - -/*-------------- - Focus ----------------*/ - -.ui.button:focus { - background-color: #CACBCD; - color: rgba(0, 0, 0, 0.8); - background-image: '' !important; - -webkit-box-shadow: '' !important; - box-shadow: '' !important; -} - -.ui.button:focus .icon { - opacity: 0.85; -} - -/*-------------- - Down ----------------*/ - -.ui.button:active, -.ui.active.button:active { - background-color: #BABBBC; - background-image: ''; - color: rgba(0, 0, 0, 0.9); - -webkit-box-shadow: 0px 0px 0px 1px transparent inset, none; - box-shadow: 0px 0px 0px 1px transparent inset, none; -} - -/*-------------- - Active ----------------*/ - -.ui.active.button { - background-color: #C0C1C2; - background-image: none; - -webkit-box-shadow: 0px 0px 0px 1px transparent inset; - box-shadow: 0px 0px 0px 1px transparent inset; - color: rgba(0, 0, 0, 0.95); -} - -.ui.active.button:hover { - background-color: #C0C1C2; - background-image: none; - color: rgba(0, 0, 0, 0.95); -} - -.ui.active.button:active { - background-color: #C0C1C2; - background-image: none; -} - -/*-------------- - Loading ----------------*/ - -/* Specificity hack */ - -.ui.loading.loading.loading.loading.loading.loading.button { - position: relative; - cursor: default; - text-shadow: none !important; - color: transparent !important; - opacity: 1; - pointer-events: auto; - -webkit-transition: all 0s linear, opacity 0.1s ease; - transition: all 0s linear, opacity 0.1s ease; -} - -.ui.loading.button:before { - position: absolute; - content: ''; - top: 50%; - left: 50%; - margin: -0.64285714em 0em 0em -0.64285714em; - width: 1.28571429em; - height: 1.28571429em; - border-radius: 500rem; - border: 0.2em solid rgba(0, 0, 0, 0.15); -} - -.ui.loading.button:after { - position: absolute; - content: ''; - top: 50%; - left: 50%; - margin: -0.64285714em 0em 0em -0.64285714em; - width: 1.28571429em; - height: 1.28571429em; - -webkit-animation: button-spin 0.6s linear; - animation: button-spin 0.6s linear; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; - border-radius: 500rem; - border-color: #FFFFFF transparent transparent; - border-style: solid; - border-width: 0.2em; - -webkit-box-shadow: 0px 0px 0px 1px transparent; - box-shadow: 0px 0px 0px 1px transparent; -} - -.ui.labeled.icon.loading.button .icon { - background-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; -} - -@-webkit-keyframes button-spin { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes button-spin { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -.ui.basic.loading.button:not(.inverted):before { - border-color: rgba(0, 0, 0, 0.1); -} - -.ui.basic.loading.button:not(.inverted):after { - border-top-color: #767676; -} - -/*------------------- - Disabled ---------------------*/ - -.ui.buttons .disabled.button, -.ui.disabled.button, -.ui.button:disabled, -.ui.disabled.button:hover, -.ui.disabled.active.button { - cursor: default; - opacity: 0.45 !important; - background-image: none !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; - pointer-events: none !important; -} - -/* Basic Group With Disabled */ - -.ui.basic.buttons .ui.disabled.button { - border-color: rgba(34, 36, 38, 0.5); -} - -/******************************* - Types -*******************************/ - -/*------------------- - Animated ---------------------*/ - -.ui.animated.button { - position: relative; - overflow: hidden; - padding-right: 0em !important; - vertical-align: middle; - z-index: 1; -} - -.ui.animated.button .content { - will-change: transform, opacity; -} - -.ui.animated.button .visible.content { - position: relative; - margin-right: 1.5em; -} - -.ui.animated.button .hidden.content { - position: absolute; - width: 100%; -} - -/* Horizontal */ - -.ui.animated.button .visible.content, -.ui.animated.button .hidden.content { - -webkit-transition: right 0.3s ease 0s; - transition: right 0.3s ease 0s; -} - -.ui.animated.button .visible.content { - left: auto; - right: 0%; -} - -.ui.animated.button .hidden.content { - top: 50%; - left: auto; - right: -100%; - margin-top: -0.5em; -} - -.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 { - -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease; - transition: top 0.3s ease, -webkit-transform 0.3s ease; - transition: top 0.3s ease, transform 0.3s ease; - transition: top 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease; -} - -.ui.vertical.animated.button .visible.content { - -webkit-transform: translateY(0%); - 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 { - -webkit-transform: translateY(200%); - 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 { - -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease; - transition: opacity 0.3s ease, -webkit-transform 0.3s ease; - transition: opacity 0.3s ease, transform 0.3s ease; - transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease; -} - -.ui.fade.animated.button .visible.content { - left: auto; - right: auto; - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); -} - -.ui.fade.animated.button .hidden.content { - opacity: 0; - left: 0%; - right: auto; - -webkit-transform: scale(1.5); - transform: scale(1.5); -} - -.ui.fade.animated.button:focus .visible.content, -.ui.fade.animated.button:hover .visible.content { - left: auto; - right: auto; - opacity: 0; - -webkit-transform: scale(0.75); - transform: scale(0.75); -} - -.ui.fade.animated.button:focus .hidden.content, -.ui.fade.animated.button:hover .hidden.content { - left: 0%; - right: auto; - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); -} - -/*------------------- - Inverted ---------------------*/ - -.ui.inverted.button { - -webkit-box-shadow: 0px 0px 0px 2px #FFFFFF inset !important; - box-shadow: 0px 0px 0px 2px #FFFFFF inset !important; - background: transparent none; - color: #FFFFFF; - text-shadow: none !important; -} - -/* Group */ - -.ui.inverted.buttons .button { - margin: 0px 0px 0px -2px; -} - -.ui.inverted.buttons .button:first-child { - margin-left: 0em; -} - -.ui.inverted.vertical.buttons .button { - margin: 0px 0px -2px 0px; -} - -.ui.inverted.vertical.buttons .button:first-child { - margin-top: 0em; -} - -/* States */ - -/* Hover */ - -.ui.inverted.button:hover { - background: #FFFFFF; - -webkit-box-shadow: 0px 0px 0px 2px #FFFFFF inset !important; - box-shadow: 0px 0px 0px 2px #FFFFFF inset !important; - color: rgba(0, 0, 0, 0.8); -} - -/* Active / Focus */ - -.ui.inverted.button:focus, -.ui.inverted.button.active { - background: #FFFFFF; - -webkit-box-shadow: 0px 0px 0px 2px #FFFFFF inset !important; - box-shadow: 0px 0px 0px 2px #FFFFFF inset !important; - color: rgba(0, 0, 0, 0.8); -} - -/* Active Focus */ - -.ui.inverted.button.active:focus { - background: #DCDDDE; - -webkit-box-shadow: 0px 0px 0px 2px #DCDDDE inset !important; - box-shadow: 0px 0px 0px 2px #DCDDDE inset !important; - color: rgba(0, 0, 0, 0.8); -} - -/*------------------- - Labeled Button ---------------------*/ - -.ui.labeled.button:not(.icon) { - 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; - background: none !important; - padding: 0px !important; - border: none !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; -} - -.ui.labeled.button > .button { - margin: 0px; -} - -.ui.labeled.button > .label { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0px 0px 0px -1px !important; - padding: ''; - font-size: 1em; - 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: 0px; - border-bottom-right-radius: 0px; -} - -.ui.labeled.button:not([class*="left labeled"]) > .label { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; -} - -/* Left Side */ - -.ui[class*="left labeled"].button > .button { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; -} - -.ui[class*="left labeled"].button > .label { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; -} - -/*------------------- - Social ---------------------*/ - -/* Facebook */ - -.ui.facebook.button { - background-color: #3B5998; - color: #FFFFFF; - text-shadow: none; - background-image: none; - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px 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: #55ACEE; - color: #FFFFFF; - text-shadow: none; - background-image: none; - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.twitter.button:hover { - background-color: #35a2f4; - color: #FFFFFF; - text-shadow: none; -} - -.ui.twitter.button:active { - background-color: #2795e9; - 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: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px 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: #1F88BE; - color: #FFFFFF; - text-shadow: none; -} - -.ui.linkedin.button:hover { - background-color: #147baf; - color: #FFFFFF; - text-shadow: none; -} - -.ui.linkedin.button:active { - background-color: #186992; - color: #FFFFFF; - text-shadow: none; -} - -/* YouTube */ - -.ui.youtube.button { - background-color: #FF0000; - color: #FFFFFF; - text-shadow: none; - background-image: none; - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px 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: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px 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: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px 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: #4D7198; - color: #FFFFFF; - background-image: none; - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.vk.button:hover { - background-color: #41648a; - color: #FFFFFF; -} - -.ui.vk.button:active { - background-color: #3c5876; - color: #FFFFFF; -} - -/*-------------- - Icon ----------------*/ - -.ui.button > .icon:not(.button) { - height: 0.85714286em; - opacity: 0.8; - margin: 0em 0.42857143em 0em -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) { - margin: 0em 0.42857143em 0em -0.21428571em; -} - -.ui.button:not(.icon) > .right.icon:not(.button):not(.dropdown) { - margin: 0em -0.21428571em 0em 0.42857143em; -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Floated ---------------------*/ - -.ui[class*="left floated"].buttons, -.ui[class*="left floated"].button { - float: left; - margin-left: 0em; - margin-right: 0.25em; -} - -.ui[class*="right floated"].buttons, -.ui[class*="right floated"].button { - float: right; - margin-right: 0em; - 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; -} - -/*------------------- - Sizes ---------------------*/ - -.ui.mini.buttons .button, -.ui.mini.buttons .or, -.ui.mini.button { - font-size: 0.78571429rem; -} - -.ui.tiny.buttons .button, -.ui.tiny.buttons .or, -.ui.tiny.button { - font-size: 0.85714286rem; -} - -.ui.small.buttons .button, -.ui.small.buttons .or, -.ui.small.button { - font-size: 0.92857143rem; -} - -.ui.buttons .button, -.ui.buttons .or, -.ui.button { - font-size: 1rem; -} - -.ui.large.buttons .button, -.ui.large.buttons .or, -.ui.large.button { - font-size: 1.14285714rem; -} - -.ui.big.buttons .button, -.ui.big.buttons .or, -.ui.big.button { - font-size: 1.28571429rem; -} - -.ui.huge.buttons .button, -.ui.huge.buttons .or, -.ui.huge.button { - font-size: 1.42857143rem; -} - -.ui.massive.buttons .button, -.ui.massive.buttons .or, -.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: 0em !important; - vertical-align: top; -} - -/*------------------- - Basic ---------------------*/ - -.ui.basic.buttons .button, -.ui.basic.button { - background: transparent none !important; - color: rgba(0, 0, 0, 0.6) !important; - font-weight: normal; - border-radius: 0.28571429rem; - text-transform: none; - text-shadow: none !important; - -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0px 0px 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: 0em; -} - -.ui.basic.buttons .button:hover, -.ui.basic.button:hover { - background: #FFFFFF !important; - color: rgba(0, 0, 0, 0.8) !important; - -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.basic.buttons .button:focus, -.ui.basic.button:focus { - background: #FFFFFF !important; - color: rgba(0, 0, 0, 0.8) !important; - -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.basic.buttons .button:active, -.ui.basic.button:active { - background: #F8F8F8 !important; - color: rgba(0, 0, 0, 0.9) !important; - -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.basic.buttons .active.button, -.ui.basic.active.button { - background: rgba(0, 0, 0, 0.05) !important; - -webkit-box-shadow: '' !important; - box-shadow: '' !important; - color: rgba(0, 0, 0, 0.95) !important; -} - -.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: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset inset; - box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset inset; -} - -.ui.basic.buttons .button:active { - -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(34, 36, 38, 0.15) inset inset; - box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(34, 36, 38, 0.15) inset inset; -} - -.ui.basic.buttons .active.button { - -webkit-box-shadow: '' !important; - box-shadow: '' !important; -} - -/* Standard Basic Inverted */ - -.ui.basic.inverted.buttons .button, -.ui.basic.inverted.button { - background-color: transparent !important; - color: #F9FAFB !important; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; -} - -.ui.basic.inverted.buttons .button:hover, -.ui.basic.inverted.button:hover { - color: #FFFFFF !important; - -webkit-box-shadow: 0px 0px 0px 2px #ffffff inset !important; - box-shadow: 0px 0px 0px 2px #ffffff inset !important; -} - -.ui.basic.inverted.buttons .button:focus, -.ui.basic.inverted.button:focus { - color: #FFFFFF !important; - -webkit-box-shadow: 0px 0px 0px 2px #ffffff inset !important; - box-shadow: 0px 0px 0px 2px #ffffff inset !important; -} - -.ui.basic.inverted.buttons .button:active, -.ui.basic.inverted.button:active { - background-color: rgba(255, 255, 255, 0.08) !important; - color: #FFFFFF !important; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.9) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.9) inset !important; -} - -.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: 0px 0px 0px 2px rgba(255, 255, 255, 0.7) inset; - box-shadow: 0px 0px 0px 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: 0px 0px 0px 2px #ffffff inset !important; - box-shadow: 0px 0px 0px 2px #ffffff inset !important; -} - -/* 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; -} - -.ui.basic.vertical.buttons .button { - border-left-width: 0px; - border-top: 1px solid rgba(34, 36, 38, 0.15); -} - -.ui.basic.vertical.buttons .button:first-child { - border-top-width: 0px; -} - -/*-------------- - 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; - height: 100%; - line-height: 1; - border-radius: 0px; - border-top-left-radius: inherit; - border-bottom-left-radius: inherit; - text-align: center; - margin: 0em; - width: 2.57142857em; - background-color: rgba(0, 0, 0, 0.05); - color: ''; - -webkit-box-shadow: -1px 0px 0px 0px transparent inset; - box-shadow: -1px 0px 0px 0px transparent inset; -} - -/* Left Labeled */ - -.ui.labeled.icon.buttons > .button > .icon, -.ui.labeled.icon.button > .icon { - top: 0em; - left: 0em; -} - -/* 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: 0em; - border-radius: 0px; - border-top-right-radius: inherit; - border-bottom-right-radius: inherit; - -webkit-box-shadow: 1px 0px 0px 0px transparent inset; - box-shadow: 1px 0px 0px 0px 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: absolute; - width: 100%; - top: 50%; - text-align: center; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); -} - -.ui.labeled.icon.buttons .button > .icon { - border-radius: 0em; -} - -.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: 0em; - border-top-left-radius: 0.28571429rem; -} - -.ui.vertical.labeled.icon.buttons .button:last-child > .icon { - border-radius: 0em; - border-bottom-left-radius: 0.28571429rem; -} - -/* Fluid Labeled */ - -.ui.fluid[class*="left labeled"].icon.button, -.ui.fluid[class*="right labeled"].icon.button { - padding-left: 1.5em !important; - padding-right: 1.5em !important; -} - -/*-------------- - 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 !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; - text-shadow: none; - color: #FFFFFF !important; -} - -.ui.button.toggle.active:hover { - background-color: #16ab39 !important; - text-shadow: none; - color: #FFFFFF !important; -} - -/*-------------- - 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: 0px 0px 0px 1px transparent inset; - box-shadow: 0px 0px 0px 1px transparent inset; -} - -.ui.buttons .or[data-text]:before { - content: attr(data-text); -} - -/* Fluid Or */ - -.ui.fluid.buttons .or { - width: 0em !important; -} - -.ui.fluid.buttons .or:after { - display: none; -} - -/*------------------- - Attached ---------------------*/ - -/* Singular */ - -.ui.attached.button { - position: relative; - display: block; - margin: 0em; - border-radius: 0em; - -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) !important; - box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) !important; -} - -/* Top / Bottom */ - -.ui.attached.top.button { - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -.ui.attached.bottom.button { - border-radius: 0em 0em 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 0em 0em 0.28571429rem; -} - -.ui.right.attached.button { - display: inline-block; - text-align: left; - padding-left: 0.75em; - border-radius: 0em 0.28571429rem 0.28571429rem 0em; -} - -/* Plural */ - -.ui.attached.buttons { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - border-radius: 0em; - width: auto !important; - z-index: 2; - margin-left: -1px; - margin-right: -1px; -} - -.ui.attached.buttons .button { - margin: 0em; -} - -.ui.attached.buttons .button:first-child { - border-radius: 0em; -} - -.ui.attached.buttons .button:last-child { - border-radius: 0em; -} - -/* Top / Bottom */ - -.ui[class*="top attached"].buttons { - margin-bottom: -1px; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -.ui[class*="top attached"].buttons .button:first-child { - border-radius: 0.28571429rem 0em 0em 0em; -} - -.ui[class*="top attached"].buttons .button:last-child { - border-radius: 0em 0.28571429rem 0em 0em; -} - -.ui[class*="bottom attached"].buttons { - margin-top: -1px; - border-radius: 0em 0em 0.28571429rem 0.28571429rem; -} - -.ui[class*="bottom attached"].buttons .button:first-child { - border-radius: 0em 0em 0em 0.28571429rem; -} - -.ui[class*="bottom attached"].buttons .button:last-child { - border-radius: 0em 0em 0.28571429rem 0em; -} - -/* Left / Right */ - -.ui[class*="left attached"].buttons { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - margin-right: 0em; - margin-left: -1px; - border-radius: 0em 0.28571429rem 0.28571429rem 0em; -} - -.ui[class*="left attached"].buttons .button:first-child { - margin-left: -1px; - border-radius: 0em 0.28571429rem 0em 0em; -} - -.ui[class*="left attached"].buttons .button:last-child { - margin-left: -1px; - border-radius: 0em 0em 0.28571429rem 0em; -} - -.ui[class*="right attached"].buttons { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - margin-left: 0em; - margin-right: -1px; - border-radius: 0.28571429rem 0em 0em 0.28571429rem; -} - -.ui[class*="right attached"].buttons .button:first-child { - margin-left: -1px; - border-radius: 0.28571429rem 0em 0em 0em; -} - -.ui[class*="right attached"].buttons .button:last-child { - margin-left: -1px; - border-radius: 0em 0em 0em 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.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: -webkit-box; - display: -ms-flexbox; - display: flex; - width: auto; -} - -.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 ---------------------*/ - -/*--- Black ---*/ - -.ui.black.buttons .button, -.ui.black.button { - background-color: #1B1C1D; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.black.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px 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 { - -webkit-box-shadow: 0px 0px 0px 1px #1B1C1D inset !important; - box-shadow: 0px 0px 0px 1px #1B1C1D inset !important; - color: #1B1C1D !important; -} - -.ui.basic.black.buttons .button:hover, -.ui.basic.black.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #27292a inset !important; - box-shadow: 0px 0px 0px 1px #27292a inset !important; - color: #27292a !important; -} - -.ui.basic.black.buttons .button:focus, -.ui.basic.black.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #2f3032 inset !important; - box-shadow: 0px 0px 0px 1px #2f3032 inset !important; - color: #27292a !important; -} - -.ui.basic.black.buttons .active.button, -.ui.basic.black.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #0f0f10 inset !important; - box-shadow: 0px 0px 0px 1px #0f0f10 inset !important; - color: #343637 !important; -} - -.ui.basic.black.buttons .button:active, -.ui.basic.black.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #343637 inset !important; - box-shadow: 0px 0px 0px 1px #343637 inset !important; - color: #343637 !important; -} - -.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: 0px 0px 0px 2px #D4D4D5 inset !important; - box-shadow: 0px 0px 0px 2px #D4D4D5 inset !important; - 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 !important; - box-shadow: none !important; - 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: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.black.basic.buttons .button:hover, -.ui.inverted.black.buttons .basic.button:hover, -.ui.inverted.black.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #000000 inset !important; - box-shadow: 0px 0px 0px 2px #000000 inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.black.basic.buttons .button:focus, -.ui.inverted.black.basic.buttons .button:focus, -.ui.inverted.black.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #000000 inset !important; - box-shadow: 0px 0px 0px 2px #000000 inset !important; - color: #545454 !important; -} - -.ui.inverted.black.basic.buttons .active.button, -.ui.inverted.black.buttons .basic.active.button, -.ui.inverted.black.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #000000 inset !important; - box-shadow: 0px 0px 0px 2px #000000 inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.black.basic.buttons .button:active, -.ui.inverted.black.buttons .basic.button:active, -.ui.inverted.black.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #000000 inset !important; - box-shadow: 0px 0px 0px 2px #000000 inset !important; - color: #FFFFFF !important; -} - -/*--- Grey ---*/ - -.ui.grey.buttons .button, -.ui.grey.button { - background-color: #767676; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.grey.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px 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 { - -webkit-box-shadow: 0px 0px 0px 1px #767676 inset !important; - box-shadow: 0px 0px 0px 1px #767676 inset !important; - color: #767676 !important; -} - -.ui.basic.grey.buttons .button:hover, -.ui.basic.grey.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #838383 inset !important; - box-shadow: 0px 0px 0px 1px #838383 inset !important; - color: #838383 !important; -} - -.ui.basic.grey.buttons .button:focus, -.ui.basic.grey.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #8a8a8a inset !important; - box-shadow: 0px 0px 0px 1px #8a8a8a inset !important; - color: #838383 !important; -} - -.ui.basic.grey.buttons .active.button, -.ui.basic.grey.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #696969 inset !important; - box-shadow: 0px 0px 0px 1px #696969 inset !important; - color: #909090 !important; -} - -.ui.basic.grey.buttons .button:active, -.ui.basic.grey.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #909090 inset !important; - box-shadow: 0px 0px 0px 1px #909090 inset !important; - color: #909090 !important; -} - -.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: 0px 0px 0px 2px #D4D4D5 inset !important; - box-shadow: 0px 0px 0px 2px #D4D4D5 inset !important; - 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 !important; - box-shadow: none !important; - color: rgba(0, 0, 0, 0.6); -} - -.ui.inverted.grey.buttons .button:hover, -.ui.inverted.grey.button:hover { - background-color: #cfd0d2; -} - -.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: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.grey.basic.buttons .button:hover, -.ui.inverted.grey.buttons .basic.button:hover, -.ui.inverted.grey.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important; - box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.grey.basic.buttons .button:focus, -.ui.inverted.grey.basic.buttons .button:focus, -.ui.inverted.grey.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #c7c9cb inset !important; - box-shadow: 0px 0px 0px 2px #c7c9cb inset !important; - color: #DCDDDE !important; -} - -.ui.inverted.grey.basic.buttons .active.button, -.ui.inverted.grey.buttons .basic.active.button, -.ui.inverted.grey.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important; - box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.grey.basic.buttons .button:active, -.ui.inverted.grey.buttons .basic.button:active, -.ui.inverted.grey.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #c2c4c5 inset !important; - box-shadow: 0px 0px 0px 2px #c2c4c5 inset !important; - color: #FFFFFF !important; -} - -/*--- Brown ---*/ - -.ui.brown.buttons .button, -.ui.brown.button { - background-color: #A5673F; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.brown.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px 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 { - -webkit-box-shadow: 0px 0px 0px 1px #A5673F inset !important; - box-shadow: 0px 0px 0px 1px #A5673F inset !important; - color: #A5673F !important; -} - -.ui.basic.brown.buttons .button:hover, -.ui.basic.brown.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #975b33 inset !important; - box-shadow: 0px 0px 0px 1px #975b33 inset !important; - color: #975b33 !important; -} - -.ui.basic.brown.buttons .button:focus, -.ui.basic.brown.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #90532b inset !important; - box-shadow: 0px 0px 0px 1px #90532b inset !important; - color: #975b33 !important; -} - -.ui.basic.brown.buttons .active.button, -.ui.basic.brown.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #995a31 inset !important; - box-shadow: 0px 0px 0px 1px #995a31 inset !important; - color: #805031 !important; -} - -.ui.basic.brown.buttons .button:active, -.ui.basic.brown.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #805031 inset !important; - box-shadow: 0px 0px 0px 1px #805031 inset !important; - color: #805031 !important; -} - -.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: 0px 0px 0px 2px #D67C1C inset !important; - box-shadow: 0px 0px 0px 2px #D67C1C inset !important; - 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 !important; - box-shadow: none !important; - color: #FFFFFF; -} - -.ui.inverted.brown.buttons .button:hover, -.ui.inverted.brown.button:hover { - background-color: #c86f11; -} - -.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: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.brown.basic.buttons .button:hover, -.ui.inverted.brown.buttons .basic.button:hover, -.ui.inverted.brown.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #c86f11 inset !important; - box-shadow: 0px 0px 0px 2px #c86f11 inset !important; - color: #D67C1C !important; -} - -.ui.inverted.brown.basic.buttons .button:focus, -.ui.inverted.brown.basic.buttons .button:focus, -.ui.inverted.brown.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #c16808 inset !important; - box-shadow: 0px 0px 0px 2px #c16808 inset !important; - color: #D67C1C !important; -} - -.ui.inverted.brown.basic.buttons .active.button, -.ui.inverted.brown.buttons .basic.active.button, -.ui.inverted.brown.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #cc6f0d inset !important; - box-shadow: 0px 0px 0px 2px #cc6f0d inset !important; - color: #D67C1C !important; -} - -.ui.inverted.brown.basic.buttons .button:active, -.ui.inverted.brown.buttons .basic.button:active, -.ui.inverted.brown.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #a96216 inset !important; - box-shadow: 0px 0px 0px 2px #a96216 inset !important; - color: #D67C1C !important; -} - -/*--- Blue ---*/ - -.ui.blue.buttons .button, -.ui.blue.button { - background-color: #2185D0; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.blue.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px 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 { - -webkit-box-shadow: 0px 0px 0px 1px #2185D0 inset !important; - box-shadow: 0px 0px 0px 1px #2185D0 inset !important; - color: #2185D0 !important; -} - -.ui.basic.blue.buttons .button:hover, -.ui.basic.blue.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #1678c2 inset !important; - box-shadow: 0px 0px 0px 1px #1678c2 inset !important; - color: #1678c2 !important; -} - -.ui.basic.blue.buttons .button:focus, -.ui.basic.blue.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #0d71bb inset !important; - box-shadow: 0px 0px 0px 1px #0d71bb inset !important; - color: #1678c2 !important; -} - -.ui.basic.blue.buttons .active.button, -.ui.basic.blue.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #1279c6 inset !important; - box-shadow: 0px 0px 0px 1px #1279c6 inset !important; - color: #1a69a4 !important; -} - -.ui.basic.blue.buttons .button:active, -.ui.basic.blue.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #1a69a4 inset !important; - box-shadow: 0px 0px 0px 1px #1a69a4 inset !important; - color: #1a69a4 !important; -} - -.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: 0px 0px 0px 2px #54C8FF inset !important; - box-shadow: 0px 0px 0px 2px #54C8FF inset !important; - 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 !important; - box-shadow: none !important; - color: #FFFFFF; -} - -.ui.inverted.blue.buttons .button:hover, -.ui.inverted.blue.button:hover { - background-color: #3ac0ff; -} - -.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: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.blue.basic.buttons .button:hover, -.ui.inverted.blue.buttons .basic.button:hover, -.ui.inverted.blue.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #3ac0ff inset !important; - box-shadow: 0px 0px 0px 2px #3ac0ff inset !important; - color: #54C8FF !important; -} - -.ui.inverted.blue.basic.buttons .button:focus, -.ui.inverted.blue.basic.buttons .button:focus, -.ui.inverted.blue.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #2bbbff inset !important; - box-shadow: 0px 0px 0px 2px #2bbbff inset !important; - color: #54C8FF !important; -} - -.ui.inverted.blue.basic.buttons .active.button, -.ui.inverted.blue.buttons .basic.active.button, -.ui.inverted.blue.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #3ac0ff inset !important; - box-shadow: 0px 0px 0px 2px #3ac0ff inset !important; - color: #54C8FF !important; -} - -.ui.inverted.blue.basic.buttons .button:active, -.ui.inverted.blue.buttons .basic.button:active, -.ui.inverted.blue.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #21b8ff inset !important; - box-shadow: 0px 0px 0px 2px #21b8ff inset !important; - color: #54C8FF !important; -} - -/*--- Green ---*/ - -.ui.green.buttons .button, -.ui.green.button { - background-color: #21BA45; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.green.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px 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 { - -webkit-box-shadow: 0px 0px 0px 1px #21BA45 inset !important; - box-shadow: 0px 0px 0px 1px #21BA45 inset !important; - color: #21BA45 !important; -} - -.ui.basic.green.buttons .button:hover, -.ui.basic.green.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #16ab39 inset !important; - box-shadow: 0px 0px 0px 1px #16ab39 inset !important; - color: #16ab39 !important; -} - -.ui.basic.green.buttons .button:focus, -.ui.basic.green.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #0ea432 inset !important; - box-shadow: 0px 0px 0px 1px #0ea432 inset !important; - color: #16ab39 !important; -} - -.ui.basic.green.buttons .active.button, -.ui.basic.green.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #13ae38 inset !important; - box-shadow: 0px 0px 0px 1px #13ae38 inset !important; - color: #198f35 !important; -} - -.ui.basic.green.buttons .button:active, -.ui.basic.green.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #198f35 inset !important; - box-shadow: 0px 0px 0px 1px #198f35 inset !important; - color: #198f35 !important; -} - -.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: 0px 0px 0px 2px #2ECC40 inset !important; - box-shadow: 0px 0px 0px 2px #2ECC40 inset !important; - 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 !important; - box-shadow: none !important; - color: #FFFFFF; -} - -.ui.inverted.green.buttons .button:hover, -.ui.inverted.green.button:hover { - background-color: #22be34; -} - -.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: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.green.basic.buttons .button:hover, -.ui.inverted.green.buttons .basic.button:hover, -.ui.inverted.green.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #22be34 inset !important; - box-shadow: 0px 0px 0px 2px #22be34 inset !important; - color: #2ECC40 !important; -} - -.ui.inverted.green.basic.buttons .button:focus, -.ui.inverted.green.basic.buttons .button:focus, -.ui.inverted.green.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #19b82b inset !important; - box-shadow: 0px 0px 0px 2px #19b82b inset !important; - color: #2ECC40 !important; -} - -.ui.inverted.green.basic.buttons .active.button, -.ui.inverted.green.buttons .basic.active.button, -.ui.inverted.green.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #1fc231 inset !important; - box-shadow: 0px 0px 0px 2px #1fc231 inset !important; - color: #2ECC40 !important; -} - -.ui.inverted.green.basic.buttons .button:active, -.ui.inverted.green.buttons .basic.button:active, -.ui.inverted.green.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #25a233 inset !important; - box-shadow: 0px 0px 0px 2px #25a233 inset !important; - color: #2ECC40 !important; -} - -/*--- Orange ---*/ - -.ui.orange.buttons .button, -.ui.orange.button { - background-color: #F2711C; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.orange.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px 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 { - -webkit-box-shadow: 0px 0px 0px 1px #F2711C inset !important; - box-shadow: 0px 0px 0px 1px #F2711C inset !important; - color: #F2711C !important; -} - -.ui.basic.orange.buttons .button:hover, -.ui.basic.orange.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #f26202 inset !important; - box-shadow: 0px 0px 0px 1px #f26202 inset !important; - color: #f26202 !important; -} - -.ui.basic.orange.buttons .button:focus, -.ui.basic.orange.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #e55b00 inset !important; - box-shadow: 0px 0px 0px 1px #e55b00 inset !important; - color: #f26202 !important; -} - -.ui.basic.orange.buttons .active.button, -.ui.basic.orange.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #f56100 inset !important; - box-shadow: 0px 0px 0px 1px #f56100 inset !important; - color: #cf590c !important; -} - -.ui.basic.orange.buttons .button:active, -.ui.basic.orange.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #cf590c inset !important; - box-shadow: 0px 0px 0px 1px #cf590c inset !important; - color: #cf590c !important; -} - -.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: 0px 0px 0px 2px #FF851B inset !important; - box-shadow: 0px 0px 0px 2px #FF851B inset !important; - 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 !important; - box-shadow: none !important; - color: #FFFFFF; -} - -.ui.inverted.orange.buttons .button:hover, -.ui.inverted.orange.button:hover { - background-color: #ff7701; -} - -.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: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.orange.basic.buttons .button:hover, -.ui.inverted.orange.buttons .basic.button:hover, -.ui.inverted.orange.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #ff7701 inset !important; - box-shadow: 0px 0px 0px 2px #ff7701 inset !important; - color: #FF851B !important; -} - -.ui.inverted.orange.basic.buttons .button:focus, -.ui.inverted.orange.basic.buttons .button:focus, -.ui.inverted.orange.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #f17000 inset !important; - box-shadow: 0px 0px 0px 2px #f17000 inset !important; - color: #FF851B !important; -} - -.ui.inverted.orange.basic.buttons .active.button, -.ui.inverted.orange.buttons .basic.active.button, -.ui.inverted.orange.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #ff7701 inset !important; - box-shadow: 0px 0px 0px 2px #ff7701 inset !important; - color: #FF851B !important; -} - -.ui.inverted.orange.basic.buttons .button:active, -.ui.inverted.orange.buttons .basic.button:active, -.ui.inverted.orange.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #e76b00 inset !important; - box-shadow: 0px 0px 0px 2px #e76b00 inset !important; - color: #FF851B !important; -} - -/*--- Pink ---*/ - -.ui.pink.buttons .button, -.ui.pink.button { - background-color: #E03997; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.pink.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px 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 { - -webkit-box-shadow: 0px 0px 0px 1px #E03997 inset !important; - box-shadow: 0px 0px 0px 1px #E03997 inset !important; - color: #E03997 !important; -} - -.ui.basic.pink.buttons .button:hover, -.ui.basic.pink.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #e61a8d inset !important; - box-shadow: 0px 0px 0px 1px #e61a8d inset !important; - color: #e61a8d !important; -} - -.ui.basic.pink.buttons .button:focus, -.ui.basic.pink.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #e10f85 inset !important; - box-shadow: 0px 0px 0px 1px #e10f85 inset !important; - color: #e61a8d !important; -} - -.ui.basic.pink.buttons .active.button, -.ui.basic.pink.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #ea158d inset !important; - box-shadow: 0px 0px 0px 1px #ea158d inset !important; - color: #c71f7e !important; -} - -.ui.basic.pink.buttons .button:active, -.ui.basic.pink.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #c71f7e inset !important; - box-shadow: 0px 0px 0px 1px #c71f7e inset !important; - color: #c71f7e !important; -} - -.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: 0px 0px 0px 2px #FF8EDF inset !important; - box-shadow: 0px 0px 0px 2px #FF8EDF inset !important; - 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 !important; - box-shadow: none !important; - color: #FFFFFF; -} - -.ui.inverted.pink.buttons .button:hover, -.ui.inverted.pink.button:hover { - background-color: #ff74d8; -} - -.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: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.pink.basic.buttons .button:hover, -.ui.inverted.pink.buttons .basic.button:hover, -.ui.inverted.pink.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #ff74d8 inset !important; - box-shadow: 0px 0px 0px 2px #ff74d8 inset !important; - color: #FF8EDF !important; -} - -.ui.inverted.pink.basic.buttons .button:focus, -.ui.inverted.pink.basic.buttons .button:focus, -.ui.inverted.pink.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #ff65d3 inset !important; - box-shadow: 0px 0px 0px 2px #ff65d3 inset !important; - color: #FF8EDF !important; -} - -.ui.inverted.pink.basic.buttons .active.button, -.ui.inverted.pink.buttons .basic.active.button, -.ui.inverted.pink.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #ff74d8 inset !important; - box-shadow: 0px 0px 0px 2px #ff74d8 inset !important; - color: #FF8EDF !important; -} - -.ui.inverted.pink.basic.buttons .button:active, -.ui.inverted.pink.buttons .basic.button:active, -.ui.inverted.pink.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #ff5bd1 inset !important; - box-shadow: 0px 0px 0px 2px #ff5bd1 inset !important; - color: #FF8EDF !important; -} - -/*--- Violet ---*/ - -.ui.violet.buttons .button, -.ui.violet.button { - background-color: #6435C9; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.violet.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px 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 { - -webkit-box-shadow: 0px 0px 0px 1px #6435C9 inset !important; - box-shadow: 0px 0px 0px 1px #6435C9 inset !important; - color: #6435C9 !important; -} - -.ui.basic.violet.buttons .button:hover, -.ui.basic.violet.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #5829bb inset !important; - box-shadow: 0px 0px 0px 1px #5829bb inset !important; - color: #5829bb !important; -} - -.ui.basic.violet.buttons .button:focus, -.ui.basic.violet.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #4f20b5 inset !important; - box-shadow: 0px 0px 0px 1px #4f20b5 inset !important; - color: #5829bb !important; -} - -.ui.basic.violet.buttons .active.button, -.ui.basic.violet.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #5626bf inset !important; - box-shadow: 0px 0px 0px 1px #5626bf inset !important; - color: #502aa1 !important; -} - -.ui.basic.violet.buttons .button:active, -.ui.basic.violet.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #502aa1 inset !important; - box-shadow: 0px 0px 0px 1px #502aa1 inset !important; - color: #502aa1 !important; -} - -.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: 0px 0px 0px 2px #A291FB inset !important; - box-shadow: 0px 0px 0px 2px #A291FB inset !important; - 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 !important; - box-shadow: none !important; - color: #FFFFFF; -} - -.ui.inverted.violet.buttons .button:hover, -.ui.inverted.violet.button:hover { - background-color: #8a73ff; -} - -.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: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.violet.basic.buttons .button:hover, -.ui.inverted.violet.buttons .basic.button:hover, -.ui.inverted.violet.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #8a73ff inset !important; - box-shadow: 0px 0px 0px 2px #8a73ff inset !important; - color: #A291FB !important; -} - -.ui.inverted.violet.basic.buttons .button:focus, -.ui.inverted.violet.basic.buttons .button:focus, -.ui.inverted.violet.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #7d64ff inset !important; - box-shadow: 0px 0px 0px 2px #7d64ff inset !important; - color: #A291FB !important; -} - -.ui.inverted.violet.basic.buttons .active.button, -.ui.inverted.violet.buttons .basic.active.button, -.ui.inverted.violet.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #8a73ff inset !important; - box-shadow: 0px 0px 0px 2px #8a73ff inset !important; - color: #A291FB !important; -} - -.ui.inverted.violet.basic.buttons .button:active, -.ui.inverted.violet.buttons .basic.button:active, -.ui.inverted.violet.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #7860f9 inset !important; - box-shadow: 0px 0px 0px 2px #7860f9 inset !important; - color: #A291FB !important; -} - -/*--- Purple ---*/ - -.ui.purple.buttons .button, -.ui.purple.button { - background-color: #A333C8; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.purple.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px 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 { - -webkit-box-shadow: 0px 0px 0px 1px #A333C8 inset !important; - box-shadow: 0px 0px 0px 1px #A333C8 inset !important; - color: #A333C8 !important; -} - -.ui.basic.purple.buttons .button:hover, -.ui.basic.purple.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #9627ba inset !important; - box-shadow: 0px 0px 0px 1px #9627ba inset !important; - color: #9627ba !important; -} - -.ui.basic.purple.buttons .button:focus, -.ui.basic.purple.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #8f1eb4 inset !important; - box-shadow: 0px 0px 0px 1px #8f1eb4 inset !important; - color: #9627ba !important; -} - -.ui.basic.purple.buttons .active.button, -.ui.basic.purple.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #9724be inset !important; - box-shadow: 0px 0px 0px 1px #9724be inset !important; - color: #82299f !important; -} - -.ui.basic.purple.buttons .button:active, -.ui.basic.purple.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #82299f inset !important; - box-shadow: 0px 0px 0px 1px #82299f inset !important; - color: #82299f !important; -} - -.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: 0px 0px 0px 2px #DC73FF inset !important; - box-shadow: 0px 0px 0px 2px #DC73FF inset !important; - 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 !important; - box-shadow: none !important; - color: #FFFFFF; -} - -.ui.inverted.purple.buttons .button:hover, -.ui.inverted.purple.button:hover { - background-color: #d65aff; -} - -.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: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.purple.basic.buttons .button:hover, -.ui.inverted.purple.buttons .basic.button:hover, -.ui.inverted.purple.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #d65aff inset !important; - box-shadow: 0px 0px 0px 2px #d65aff inset !important; - color: #DC73FF !important; -} - -.ui.inverted.purple.basic.buttons .button:focus, -.ui.inverted.purple.basic.buttons .button:focus, -.ui.inverted.purple.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #d24aff inset !important; - box-shadow: 0px 0px 0px 2px #d24aff inset !important; - color: #DC73FF !important; -} - -.ui.inverted.purple.basic.buttons .active.button, -.ui.inverted.purple.buttons .basic.active.button, -.ui.inverted.purple.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #d65aff inset !important; - box-shadow: 0px 0px 0px 2px #d65aff inset !important; - color: #DC73FF !important; -} - -.ui.inverted.purple.basic.buttons .button:active, -.ui.inverted.purple.buttons .basic.button:active, -.ui.inverted.purple.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #cf40ff inset !important; - box-shadow: 0px 0px 0px 2px #cf40ff inset !important; - color: #DC73FF !important; -} - -/*--- Red ---*/ - -.ui.red.buttons .button, -.ui.red.button { - background-color: #DB2828; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.red.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px 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 { - -webkit-box-shadow: 0px 0px 0px 1px #DB2828 inset !important; - box-shadow: 0px 0px 0px 1px #DB2828 inset !important; - color: #DB2828 !important; -} - -.ui.basic.red.buttons .button:hover, -.ui.basic.red.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #d01919 inset !important; - box-shadow: 0px 0px 0px 1px #d01919 inset !important; - color: #d01919 !important; -} - -.ui.basic.red.buttons .button:focus, -.ui.basic.red.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #ca1010 inset !important; - box-shadow: 0px 0px 0px 1px #ca1010 inset !important; - color: #d01919 !important; -} - -.ui.basic.red.buttons .active.button, -.ui.basic.red.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #d41515 inset !important; - box-shadow: 0px 0px 0px 1px #d41515 inset !important; - color: #b21e1e !important; -} - -.ui.basic.red.buttons .button:active, -.ui.basic.red.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #b21e1e inset !important; - box-shadow: 0px 0px 0px 1px #b21e1e inset !important; - color: #b21e1e !important; -} - -.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: 0px 0px 0px 2px #FF695E inset !important; - box-shadow: 0px 0px 0px 2px #FF695E inset !important; - 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 !important; - box-shadow: none !important; - color: #FFFFFF; -} - -.ui.inverted.red.buttons .button:hover, -.ui.inverted.red.button:hover { - background-color: #ff5144; -} - -.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: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.red.basic.buttons .button:hover, -.ui.inverted.red.buttons .basic.button:hover, -.ui.inverted.red.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #ff5144 inset !important; - box-shadow: 0px 0px 0px 2px #ff5144 inset !important; - color: #FF695E !important; -} - -.ui.inverted.red.basic.buttons .button:focus, -.ui.inverted.red.basic.buttons .button:focus, -.ui.inverted.red.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #ff4335 inset !important; - box-shadow: 0px 0px 0px 2px #ff4335 inset !important; - color: #FF695E !important; -} - -.ui.inverted.red.basic.buttons .active.button, -.ui.inverted.red.buttons .basic.active.button, -.ui.inverted.red.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #ff5144 inset !important; - box-shadow: 0px 0px 0px 2px #ff5144 inset !important; - color: #FF695E !important; -} - -.ui.inverted.red.basic.buttons .button:active, -.ui.inverted.red.buttons .basic.button:active, -.ui.inverted.red.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #ff392b inset !important; - box-shadow: 0px 0px 0px 2px #ff392b inset !important; - color: #FF695E !important; -} - -/*--- Teal ---*/ - -.ui.teal.buttons .button, -.ui.teal.button { - background-color: #00B5AD; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.teal.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px 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 { - -webkit-box-shadow: 0px 0px 0px 1px #00B5AD inset !important; - box-shadow: 0px 0px 0px 1px #00B5AD inset !important; - color: #00B5AD !important; -} - -.ui.basic.teal.buttons .button:hover, -.ui.basic.teal.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #009c95 inset !important; - box-shadow: 0px 0px 0px 1px #009c95 inset !important; - color: #009c95 !important; -} - -.ui.basic.teal.buttons .button:focus, -.ui.basic.teal.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #008c86 inset !important; - box-shadow: 0px 0px 0px 1px #008c86 inset !important; - color: #009c95 !important; -} - -.ui.basic.teal.buttons .active.button, -.ui.basic.teal.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #009c95 inset !important; - box-shadow: 0px 0px 0px 1px #009c95 inset !important; - color: #00827c !important; -} - -.ui.basic.teal.buttons .button:active, -.ui.basic.teal.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #00827c inset !important; - box-shadow: 0px 0px 0px 1px #00827c inset !important; - color: #00827c !important; -} - -.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: 0px 0px 0px 2px #6DFFFF inset !important; - box-shadow: 0px 0px 0px 2px #6DFFFF inset !important; - 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 !important; - box-shadow: none !important; - color: rgba(0, 0, 0, 0.6); -} - -.ui.inverted.teal.buttons .button:hover, -.ui.inverted.teal.button:hover { - background-color: #54ffff; -} - -.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: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.teal.basic.buttons .button:hover, -.ui.inverted.teal.buttons .basic.button:hover, -.ui.inverted.teal.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #54ffff inset !important; - box-shadow: 0px 0px 0px 2px #54ffff inset !important; - color: #6DFFFF !important; -} - -.ui.inverted.teal.basic.buttons .button:focus, -.ui.inverted.teal.basic.buttons .button:focus, -.ui.inverted.teal.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #44ffff inset !important; - box-shadow: 0px 0px 0px 2px #44ffff inset !important; - color: #6DFFFF !important; -} - -.ui.inverted.teal.basic.buttons .active.button, -.ui.inverted.teal.buttons .basic.active.button, -.ui.inverted.teal.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #54ffff inset !important; - box-shadow: 0px 0px 0px 2px #54ffff inset !important; - color: #6DFFFF !important; -} - -.ui.inverted.teal.basic.buttons .button:active, -.ui.inverted.teal.buttons .basic.button:active, -.ui.inverted.teal.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #3affff inset !important; - box-shadow: 0px 0px 0px 2px #3affff inset !important; - color: #6DFFFF !important; -} - -/*--- Olive ---*/ - -.ui.olive.buttons .button, -.ui.olive.button { - background-color: #B5CC18; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.olive.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px 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 { - -webkit-box-shadow: 0px 0px 0px 1px #B5CC18 inset !important; - box-shadow: 0px 0px 0px 1px #B5CC18 inset !important; - color: #B5CC18 !important; -} - -.ui.basic.olive.buttons .button:hover, -.ui.basic.olive.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #a7bd0d inset !important; - box-shadow: 0px 0px 0px 1px #a7bd0d inset !important; - color: #a7bd0d !important; -} - -.ui.basic.olive.buttons .button:focus, -.ui.basic.olive.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #a0b605 inset !important; - box-shadow: 0px 0px 0px 1px #a0b605 inset !important; - color: #a7bd0d !important; -} - -.ui.basic.olive.buttons .active.button, -.ui.basic.olive.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #aac109 inset !important; - box-shadow: 0px 0px 0px 1px #aac109 inset !important; - color: #8d9e13 !important; -} - -.ui.basic.olive.buttons .button:active, -.ui.basic.olive.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #8d9e13 inset !important; - box-shadow: 0px 0px 0px 1px #8d9e13 inset !important; - color: #8d9e13 !important; -} - -.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: 0px 0px 0px 2px #D9E778 inset !important; - box-shadow: 0px 0px 0px 2px #D9E778 inset !important; - 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 !important; - box-shadow: none !important; - color: rgba(0, 0, 0, 0.6); -} - -.ui.inverted.olive.buttons .button:hover, -.ui.inverted.olive.button:hover { - background-color: #d8ea5c; -} - -.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: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.olive.basic.buttons .button:hover, -.ui.inverted.olive.buttons .basic.button:hover, -.ui.inverted.olive.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #d8ea5c inset !important; - box-shadow: 0px 0px 0px 2px #d8ea5c inset !important; - color: #D9E778 !important; -} - -.ui.inverted.olive.basic.buttons .button:focus, -.ui.inverted.olive.basic.buttons .button:focus, -.ui.inverted.olive.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #daef47 inset !important; - box-shadow: 0px 0px 0px 2px #daef47 inset !important; - color: #D9E778 !important; -} - -.ui.inverted.olive.basic.buttons .active.button, -.ui.inverted.olive.buttons .basic.active.button, -.ui.inverted.olive.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #daed59 inset !important; - box-shadow: 0px 0px 0px 2px #daed59 inset !important; - color: #D9E778 !important; -} - -.ui.inverted.olive.basic.buttons .button:active, -.ui.inverted.olive.buttons .basic.button:active, -.ui.inverted.olive.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #cddf4d inset !important; - box-shadow: 0px 0px 0px 2px #cddf4d inset !important; - color: #D9E778 !important; -} - -/*--- Yellow ---*/ - -.ui.yellow.buttons .button, -.ui.yellow.button { - background-color: #FBBD08; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.yellow.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px 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 { - -webkit-box-shadow: 0px 0px 0px 1px #FBBD08 inset !important; - box-shadow: 0px 0px 0px 1px #FBBD08 inset !important; - color: #FBBD08 !important; -} - -.ui.basic.yellow.buttons .button:hover, -.ui.basic.yellow.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #eaae00 inset !important; - box-shadow: 0px 0px 0px 1px #eaae00 inset !important; - color: #eaae00 !important; -} - -.ui.basic.yellow.buttons .button:focus, -.ui.basic.yellow.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #daa300 inset !important; - box-shadow: 0px 0px 0px 1px #daa300 inset !important; - color: #eaae00 !important; -} - -.ui.basic.yellow.buttons .active.button, -.ui.basic.yellow.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #eaae00 inset !important; - box-shadow: 0px 0px 0px 1px #eaae00 inset !important; - color: #cd9903 !important; -} - -.ui.basic.yellow.buttons .button:active, -.ui.basic.yellow.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #cd9903 inset !important; - box-shadow: 0px 0px 0px 1px #cd9903 inset !important; - color: #cd9903 !important; -} - -.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: 0px 0px 0px 2px #FFE21F inset !important; - box-shadow: 0px 0px 0px 2px #FFE21F inset !important; - 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 !important; - box-shadow: none !important; - color: rgba(0, 0, 0, 0.6); -} - -.ui.inverted.yellow.buttons .button:hover, -.ui.inverted.yellow.button:hover { - background-color: #ffdf05; -} - -.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: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.yellow.basic.buttons .button:hover, -.ui.inverted.yellow.buttons .basic.button:hover, -.ui.inverted.yellow.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #ffdf05 inset !important; - box-shadow: 0px 0px 0px 2px #ffdf05 inset !important; - color: #FFE21F !important; -} - -.ui.inverted.yellow.basic.buttons .button:focus, -.ui.inverted.yellow.basic.buttons .button:focus, -.ui.inverted.yellow.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #f5d500 inset !important; - box-shadow: 0px 0px 0px 2px #f5d500 inset !important; - color: #FFE21F !important; -} - -.ui.inverted.yellow.basic.buttons .active.button, -.ui.inverted.yellow.buttons .basic.active.button, -.ui.inverted.yellow.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #ffdf05 inset !important; - box-shadow: 0px 0px 0px 2px #ffdf05 inset !important; - color: #FFE21F !important; -} - -.ui.inverted.yellow.basic.buttons .button:active, -.ui.inverted.yellow.buttons .basic.button:active, -.ui.inverted.yellow.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #ebcd00 inset !important; - box-shadow: 0px 0px 0px 2px #ebcd00 inset !important; - color: #FFE21F !important; -} - -/*------------------- - Primary ---------------------*/ - -/*--- Standard ---*/ - -.ui.primary.buttons .button, -.ui.primary.button { - background-color: #2185D0; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.primary.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px 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 { - -webkit-box-shadow: 0px 0px 0px 1px #2185D0 inset !important; - box-shadow: 0px 0px 0px 1px #2185D0 inset !important; - color: #2185D0 !important; -} - -.ui.basic.primary.buttons .button:hover, -.ui.basic.primary.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #1678c2 inset !important; - box-shadow: 0px 0px 0px 1px #1678c2 inset !important; - color: #1678c2 !important; -} - -.ui.basic.primary.buttons .button:focus, -.ui.basic.primary.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #0d71bb inset !important; - box-shadow: 0px 0px 0px 1px #0d71bb inset !important; - color: #1678c2 !important; -} - -.ui.basic.primary.buttons .active.button, -.ui.basic.primary.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #1279c6 inset !important; - box-shadow: 0px 0px 0px 1px #1279c6 inset !important; - color: #1a69a4 !important; -} - -.ui.basic.primary.buttons .button:active, -.ui.basic.primary.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #1a69a4 inset !important; - box-shadow: 0px 0px 0px 1px #1a69a4 inset !important; - color: #1a69a4 !important; -} - -.ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) { - margin-left: -1px; -} - -/*------------------- - Secondary ---------------------*/ - -/* Standard */ - -.ui.secondary.buttons .button, -.ui.secondary.button { - background-color: #1B1C1D; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.secondary.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px 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 { - -webkit-box-shadow: 0px 0px 0px 1px #1B1C1D inset !important; - box-shadow: 0px 0px 0px 1px #1B1C1D inset !important; - color: #1B1C1D !important; -} - -.ui.basic.secondary.buttons .button:hover, -.ui.basic.secondary.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #27292a inset !important; - box-shadow: 0px 0px 0px 1px #27292a inset !important; - color: #27292a !important; -} - -.ui.basic.secondary.buttons .button:focus, -.ui.basic.secondary.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #2e3032 inset !important; - box-shadow: 0px 0px 0px 1px #2e3032 inset !important; - color: #27292a !important; -} - -.ui.basic.secondary.buttons .active.button, -.ui.basic.secondary.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #27292a inset !important; - box-shadow: 0px 0px 0px 1px #27292a inset !important; - color: #343637 !important; -} - -.ui.basic.secondary.buttons .button:active, -.ui.basic.secondary.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #343637 inset !important; - box-shadow: 0px 0px 0px 1px #343637 inset !important; - color: #343637 !important; -} - -.ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) { - margin-left: -1px; -} - -/*--------------- - 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: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px 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 { - -webkit-box-shadow: 0px 0px 0px 1px #21BA45 inset !important; - box-shadow: 0px 0px 0px 1px #21BA45 inset !important; - color: #21BA45 !important; -} - -.ui.basic.positive.buttons .button:hover, -.ui.basic.positive.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #16ab39 inset !important; - box-shadow: 0px 0px 0px 1px #16ab39 inset !important; - color: #16ab39 !important; -} - -.ui.basic.positive.buttons .button:focus, -.ui.basic.positive.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #0ea432 inset !important; - box-shadow: 0px 0px 0px 1px #0ea432 inset !important; - color: #16ab39 !important; -} - -.ui.basic.positive.buttons .active.button, -.ui.basic.positive.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #13ae38 inset !important; - box-shadow: 0px 0px 0px 1px #13ae38 inset !important; - color: #198f35 !important; -} - -.ui.basic.positive.buttons .button:active, -.ui.basic.positive.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #198f35 inset !important; - box-shadow: 0px 0px 0px 1px #198f35 inset !important; - color: #198f35 !important; -} - -.ui.buttons:not(.vertical) > .basic.primary.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: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px 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 { - -webkit-box-shadow: 0px 0px 0px 1px #DB2828 inset !important; - box-shadow: 0px 0px 0px 1px #DB2828 inset !important; - color: #DB2828 !important; -} - -.ui.basic.negative.buttons .button:hover, -.ui.basic.negative.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #d01919 inset !important; - box-shadow: 0px 0px 0px 1px #d01919 inset !important; - color: #d01919 !important; -} - -.ui.basic.negative.buttons .button:focus, -.ui.basic.negative.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #ca1010 inset !important; - box-shadow: 0px 0px 0px 1px #ca1010 inset !important; - color: #d01919 !important; -} - -.ui.basic.negative.buttons .active.button, -.ui.basic.negative.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #d41515 inset !important; - box-shadow: 0px 0px 0px 1px #d41515 inset !important; - color: #b21e1e !important; -} - -.ui.basic.negative.buttons .button:active, -.ui.basic.negative.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #b21e1e inset !important; - box-shadow: 0px 0px 0px 1px #b21e1e inset !important; - color: #b21e1e !important; -} - -.ui.buttons:not(.vertical) > .basic.primary.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: 0em; - vertical-align: baseline; - margin: 0em 0.25em 0em 0em; -} - -.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; - margin: 0em; - border-radius: 0em; - margin: 0px 0px 0px 0px; -} - -.ui.buttons > .ui.button:not(.basic):not(.inverted), -.ui.buttons:not(.basic):not(.inverted) > .button { - -webkit-box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.buttons .button:first-child { - border-left: none; - margin-left: 0em; - 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: 0px 0px 0px 0px; - -webkit-box-shadow: none; - box-shadow: none; - border-radius: 0em; -} - -.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: 0px; - 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 -*******************************/ -/*! -* # Semantic UI 2.3.0 - Container -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Container -*******************************/ - -/* All Sizes */ - -.ui.container { - display: block; - max-width: 100% !important; -} - -/* Mobile */ - -@media only screen and (max-width: 767px) { - .ui.container { - width: auto !important; - margin-left: 1em !important; - margin-right: 1em !important; - } - - .ui.grid.container { - width: auto !important; - } - - .ui.relaxed.grid.container { - width: auto !important; - } - - .ui.very.relaxed.grid.container { - width: auto !important; - } -} - -/* Tablet */ - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ui.container { - width: 723px; - margin-left: auto !important; - margin-right: auto !important; - } - - .ui.grid.container { - width: calc( 723px + 2rem ) !important; - } - - .ui.relaxed.grid.container { - width: calc( 723px + 3rem ) !important; - } - - .ui.very.relaxed.grid.container { - width: calc( 723px + 5rem ) !important; - } -} - -/* Small Monitor */ - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ui.container { - width: 933px; - margin-left: auto !important; - margin-right: auto !important; - } - - .ui.grid.container { - width: calc( 933px + 2rem ) !important; - } - - .ui.relaxed.grid.container { - width: calc( 933px + 3rem ) !important; - } - - .ui.very.relaxed.grid.container { - width: calc( 933px + 5rem ) !important; - } -} - -/* Large Monitor */ - -@media only screen and (min-width: 1200px) { - .ui.container { - width: 1127px; - margin-left: auto !important; - margin-right: auto !important; - } - - .ui.grid.container { - width: calc( 1127px + 2rem ) !important; - } - - .ui.relaxed.grid.container { - width: calc( 1127px + 3rem ) !important; - } - - .ui.very.relaxed.grid.container { - width: calc( 1127px + 5rem ) !important; - } -} - -/******************************* - Types -*******************************/ - -/* Text Container */ - -.ui.text.container { - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - max-width: 700px !important; - line-height: 1.5; -} - -.ui.text.container { - 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 -*******************************/ -/*! -* # Semantic UI 2.3.0 - Divider -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Divider -*******************************/ - -.ui.divider { - margin: 1rem 0rem; - line-height: 1; - height: 0em; - 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: 0rem; - padding: 0em; - width: auto; - height: 50%; - line-height: 0em; - 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: 0px; -} - -/* Inside grid */ - -@media only screen and (max-width: 767px) { - .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 { - position: static; - 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: 0rem; - font-size: 1rem; - height: 1em; - vertical-align: middle; -} - -/******************************* - 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: 0em; -} - -/*-------------- - Clearing ----------------*/ - -.ui.clearing.divider { - clear: both; -} - -/*-------------- - Section ----------------*/ - -.ui.section.divider { - margin-top: 2rem; - margin-bottom: 2rem; -} - -/*-------------- - Sizes ----------------*/ - -.ui.divider { - font-size: 1rem; -} - -/******************************* - 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 -*******************************/ -/*! -* # Semantic UI 2.3.0 - Flag -* http://github.com/semantic-org/semantic-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: 0em 0.5em 0em 0em; - text-decoration: inherit; - speak: none; - 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 -*******************************/ - -i.flag.ad:before, -i.flag.andorra:before { - background-position: 0px 0px; -} - -i.flag.ae:before, -i.flag.united.arab.emirates:before, -i.flag.uae:before { - background-position: 0px -26px; -} - -i.flag.af:before, -i.flag.afghanistan:before { - background-position: 0px -52px; -} - -i.flag.ag:before, -i.flag.antigua:before { - background-position: 0px -78px; -} - -i.flag.ai:before, -i.flag.anguilla:before { - background-position: 0px -104px; -} - -i.flag.al:before, -i.flag.albania:before { - background-position: 0px -130px; -} - -i.flag.am:before, -i.flag.armenia:before { - background-position: 0px -156px; -} - -i.flag.an:before, -i.flag.netherlands.antilles:before { - background-position: 0px -182px; -} - -i.flag.ao:before, -i.flag.angola:before { - background-position: 0px -208px; -} - -i.flag.ar:before, -i.flag.argentina:before { - background-position: 0px -234px; -} - -i.flag.as:before, -i.flag.american.samoa:before { - background-position: 0px -260px; -} - -i.flag.at:before, -i.flag.austria:before { - background-position: 0px -286px; -} - -i.flag.au:before, -i.flag.australia:before { - background-position: 0px -312px; -} - -i.flag.aw:before, -i.flag.aruba:before { - background-position: 0px -338px; -} - -i.flag.ax:before, -i.flag.aland.islands:before { - background-position: 0px -364px; -} - -i.flag.az:before, -i.flag.azerbaijan:before { - background-position: 0px -390px; -} - -i.flag.ba:before, -i.flag.bosnia:before { - background-position: 0px -416px; -} - -i.flag.bb:before, -i.flag.barbados:before { - background-position: 0px -442px; -} - -i.flag.bd:before, -i.flag.bangladesh:before { - background-position: 0px -468px; -} - -i.flag.be:before, -i.flag.belgium:before { - background-position: 0px -494px; -} - -i.flag.bf:before, -i.flag.burkina.faso:before { - background-position: 0px -520px; -} - -i.flag.bg:before, -i.flag.bulgaria:before { - background-position: 0px -546px; -} - -i.flag.bh:before, -i.flag.bahrain:before { - background-position: 0px -572px; -} - -i.flag.bi:before, -i.flag.burundi:before { - background-position: 0px -598px; -} - -i.flag.bj:before, -i.flag.benin:before { - background-position: 0px -624px; -} - -i.flag.bm:before, -i.flag.bermuda:before { - background-position: 0px -650px; -} - -i.flag.bn:before, -i.flag.brunei:before { - background-position: 0px -676px; -} - -i.flag.bo:before, -i.flag.bolivia:before { - background-position: 0px -702px; -} - -i.flag.br:before, -i.flag.brazil:before { - background-position: 0px -728px; -} - -i.flag.bs:before, -i.flag.bahamas:before { - background-position: 0px -754px; -} - -i.flag.bt:before, -i.flag.bhutan:before { - background-position: 0px -780px; -} - -i.flag.bv:before, -i.flag.bouvet.island:before { - background-position: 0px -806px; -} - -i.flag.bw:before, -i.flag.botswana:before { - background-position: 0px -832px; -} - -i.flag.by:before, -i.flag.belarus:before { - background-position: 0px -858px; -} - -i.flag.bz:before, -i.flag.belize:before { - background-position: 0px -884px; -} - -i.flag.ca:before, -i.flag.canada:before { - background-position: 0px -910px; -} - -i.flag.cc:before, -i.flag.cocos.islands:before { - background-position: 0px -962px; -} - -i.flag.cd:before, -i.flag.congo:before { - background-position: 0px -988px; -} - -i.flag.cf:before, -i.flag.central.african.republic:before { - background-position: 0px -1014px; -} - -i.flag.cg:before, -i.flag.congo.brazzaville:before { - background-position: 0px -1040px; -} - -i.flag.ch:before, -i.flag.switzerland:before { - background-position: 0px -1066px; -} - -i.flag.ci:before, -i.flag.cote.divoire:before { - background-position: 0px -1092px; -} - -i.flag.ck:before, -i.flag.cook.islands:before { - background-position: 0px -1118px; -} - -i.flag.cl:before, -i.flag.chile:before { - background-position: 0px -1144px; -} - -i.flag.cm:before, -i.flag.cameroon:before { - background-position: 0px -1170px; -} - -i.flag.cn:before, -i.flag.china:before { - background-position: 0px -1196px; -} - -i.flag.co:before, -i.flag.colombia:before { - background-position: 0px -1222px; -} - -i.flag.cr:before, -i.flag.costa.rica:before { - background-position: 0px -1248px; -} - -i.flag.cs:before, -i.flag.serbia:before { - background-position: 0px -1274px; -} - -i.flag.cu:before, -i.flag.cuba:before { - background-position: 0px -1300px; -} - -i.flag.cv:before, -i.flag.cape.verde:before { - background-position: 0px -1326px; -} - -i.flag.cx:before, -i.flag.christmas.island:before { - background-position: 0px -1352px; -} - -i.flag.cy:before, -i.flag.cyprus:before { - background-position: 0px -1378px; -} - -i.flag.cz:before, -i.flag.czech.republic:before { - background-position: 0px -1404px; -} - -i.flag.de:before, -i.flag.germany:before { - background-position: 0px -1430px; -} - -i.flag.dj:before, -i.flag.djibouti:before { - background-position: 0px -1456px; -} - -i.flag.dk:before, -i.flag.denmark:before { - background-position: 0px -1482px; -} - -i.flag.dm:before, -i.flag.dominica:before { - background-position: 0px -1508px; -} - -i.flag.do:before, -i.flag.dominican.republic:before { - background-position: 0px -1534px; -} - -i.flag.dz:before, -i.flag.algeria:before { - background-position: 0px -1560px; -} - -i.flag.ec:before, -i.flag.ecuador:before { - background-position: 0px -1586px; -} - -i.flag.ee:before, -i.flag.estonia:before { - background-position: 0px -1612px; -} - -i.flag.eg:before, -i.flag.egypt:before { - background-position: 0px -1638px; -} - -i.flag.eh:before, -i.flag.western.sahara:before { - background-position: 0px -1664px; -} - -i.flag.gb.eng:before, -i.flag.england:before { - background-position: 0px -1690px; -} - -i.flag.er:before, -i.flag.eritrea:before { - background-position: 0px -1716px; -} - -i.flag.es:before, -i.flag.spain:before { - background-position: 0px -1742px; -} - -i.flag.et:before, -i.flag.ethiopia:before { - background-position: 0px -1768px; -} - -i.flag.eu:before, -i.flag.european.union:before { - background-position: 0px -1794px; -} - -i.flag.fi:before, -i.flag.finland:before { - background-position: 0px -1846px; -} - -i.flag.fj:before, -i.flag.fiji:before { - background-position: 0px -1872px; -} - -i.flag.fk:before, -i.flag.falkland.islands:before { - background-position: 0px -1898px; -} - -i.flag.fm:before, -i.flag.micronesia:before { - background-position: 0px -1924px; -} - -i.flag.fo:before, -i.flag.faroe.islands:before { - background-position: 0px -1950px; -} - -i.flag.fr:before, -i.flag.france:before { - background-position: 0px -1976px; -} - -i.flag.ga:before, -i.flag.gabon:before { - background-position: -36px 0px; -} - -i.flag.gb: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: -73px -1821px; -} - -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 0px; -} - -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 0px; -} - -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; -} - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Header -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Header -*******************************/ - -/* Standard */ - -.ui.header { - border: none; - margin: calc(2rem - 0.14285714em ) 0em 1rem; - padding: 0em 0em; - 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: 0em; -} - -/*-------------- - Sub Header ----------------*/ - -.ui.header .sub.header { - display: block; - font-weight: normal; - padding: 0em; - margin: 0em; - 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: 0em; - vertical-align: middle; -} - -/* With Text Node */ - -.ui.header .icon:only-child { - display: inline-block; - padding: 0em; - 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: 0em; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Page ----------------*/ - -h1.ui.header { - font-size: 2rem; -} - -h2.ui.header { - font-size: 1.71428571rem; -} - -h3.ui.header { - font-size: 1.28571429rem; -} - -h4.ui.header { - font-size: 1.07142857rem; -} - -h5.ui.header { - font-size: 1rem; -} - -/* Sub Header */ - -h1.ui.header .sub.header { - font-size: 1.14285714rem; -} - -h2.ui.header .sub.header { - font-size: 1.14285714rem; -} - -h3.ui.header .sub.header { - font-size: 1rem; -} - -h4.ui.header .sub.header { - font-size: 1rem; -} - -h5.ui.header .sub.header { - font-size: 0.92857143rem; -} - -/*-------------- -Content Heading ----------------*/ - -.ui.huge.header { - min-height: 1em; - font-size: 2em; -} - -.ui.large.header { - font-size: 1.71428571em; -} - -.ui.medium.header { - font-size: 1.28571429em; -} - -.ui.small.header { - font-size: 1.07142857em; -} - -.ui.tiny.header { - font-size: 1em; -} - -/* Sub Header */ - -.ui.huge.header .sub.header { - font-size: 1.14285714rem; -} - -.ui.large.header .sub.header { - font-size: 1.14285714rem; -} - -.ui.header .sub.header { - font-size: 1rem; -} - -.ui.small.header .sub.header { - font-size: 1rem; -} - -.ui.tiny.header .sub.header { - font-size: 0.92857143rem; -} - -/*-------------- - Sub Heading ----------------*/ - -.ui.sub.header { - padding: 0em; - margin-bottom: 0.14285714rem; - font-weight: bold; - font-size: 0.85714286em; - text-transform: uppercase; - color: ''; -} - -.ui.small.sub.header { - font-size: 0.78571429em; -} - -.ui.sub.header { - font-size: 0.85714286em; -} - -.ui.large.sub.header { - font-size: 0.92857143em; -} - -.ui.huge.sub.header { - font-size: 1em; -} - -/*------------------- - Icon ---------------------*/ - -.ui.icon.header { - display: inline-block; - text-align: center; - margin: 2rem 0em 1rem; -} - -.ui.icon.header:after { - content: ''; - display: block; - height: 0px; - clear: both; - visibility: hidden; -} - -.ui.icon.header:first-child { - margin-top: 0em; -} - -.ui.icon.header .icon { - float: none; - display: block; - width: auto; - height: auto; - line-height: 1; - padding: 0em; - font-size: 3em; - margin: 0em auto 0.5rem; - opacity: 1; -} - -.ui.icon.header .content { - display: block; - padding: 0em; -} - -.ui.icon.header .circular.icon { - font-size: 2em; -} - -.ui.icon.header .square.icon { - font-size: 2em; -} - -.ui.block.icon.header .icon { - margin-bottom: 0em; -} - -.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: #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-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; -} - -.ui.inverted.block.header { - border-bottom: none; -} - -/*------------------- - Colors ---------------------*/ - -/*--- Red ---*/ - -.ui.red.header { - color: #DB2828 !important; -} - -a.ui.red.header:hover { - color: #d01919 !important; -} - -.ui.red.dividing.header { - border-bottom: 2px solid #DB2828; -} - -/* Inverted */ - -.ui.inverted.red.header { - color: #FF695E !important; -} - -a.ui.inverted.red.header:hover { - color: #ff5144 !important; -} - -/*--- Orange ---*/ - -.ui.orange.header { - color: #F2711C !important; -} - -a.ui.orange.header:hover { - color: #f26202 !important; -} - -.ui.orange.dividing.header { - border-bottom: 2px solid #F2711C; -} - -/* Inverted */ - -.ui.inverted.orange.header { - color: #FF851B !important; -} - -a.ui.inverted.orange.header:hover { - color: #ff7701 !important; -} - -/*--- Olive ---*/ - -.ui.olive.header { - color: #B5CC18 !important; -} - -a.ui.olive.header:hover { - color: #a7bd0d !important; -} - -.ui.olive.dividing.header { - border-bottom: 2px solid #B5CC18; -} - -/* Inverted */ - -.ui.inverted.olive.header { - color: #D9E778 !important; -} - -a.ui.inverted.olive.header:hover { - color: #d8ea5c !important; -} - -/*--- Yellow ---*/ - -.ui.yellow.header { - color: #FBBD08 !important; -} - -a.ui.yellow.header:hover { - color: #eaae00 !important; -} - -.ui.yellow.dividing.header { - border-bottom: 2px solid #FBBD08; -} - -/* Inverted */ - -.ui.inverted.yellow.header { - color: #FFE21F !important; -} - -a.ui.inverted.yellow.header:hover { - color: #ffdf05 !important; -} - -/*--- Green ---*/ - -.ui.green.header { - color: #21BA45 !important; -} - -a.ui.green.header:hover { - color: #16ab39 !important; -} - -.ui.green.dividing.header { - border-bottom: 2px solid #21BA45; -} - -/* Inverted */ - -.ui.inverted.green.header { - color: #2ECC40 !important; -} - -a.ui.inverted.green.header:hover { - color: #22be34 !important; -} - -/*--- Teal ---*/ - -.ui.teal.header { - color: #00B5AD !important; -} - -a.ui.teal.header:hover { - color: #009c95 !important; -} - -.ui.teal.dividing.header { - border-bottom: 2px solid #00B5AD; -} - -/* Inverted */ - -.ui.inverted.teal.header { - color: #6DFFFF !important; -} - -a.ui.inverted.teal.header:hover { - color: #54ffff !important; -} - -/*--- Blue ---*/ - -.ui.blue.header { - color: #2185D0 !important; -} - -a.ui.blue.header:hover { - color: #1678c2 !important; -} - -.ui.blue.dividing.header { - border-bottom: 2px solid #2185D0; -} - -/* Inverted */ - -.ui.inverted.blue.header { - color: #54C8FF !important; -} - -a.ui.inverted.blue.header:hover { - color: #3ac0ff !important; -} - -/*--- Violet ---*/ - -.ui.violet.header { - color: #6435C9 !important; -} - -a.ui.violet.header:hover { - color: #5829bb !important; -} - -.ui.violet.dividing.header { - border-bottom: 2px solid #6435C9; -} - -/* Inverted */ - -.ui.inverted.violet.header { - color: #A291FB !important; -} - -a.ui.inverted.violet.header:hover { - color: #8a73ff !important; -} - -/*--- Purple ---*/ - -.ui.purple.header { - color: #A333C8 !important; -} - -a.ui.purple.header:hover { - color: #9627ba !important; -} - -.ui.purple.dividing.header { - border-bottom: 2px solid #A333C8; -} - -/* Inverted */ - -.ui.inverted.purple.header { - color: #DC73FF !important; -} - -a.ui.inverted.purple.header:hover { - color: #d65aff !important; -} - -/*--- Pink ---*/ - -.ui.pink.header { - color: #E03997 !important; -} - -a.ui.pink.header:hover { - color: #e61a8d !important; -} - -.ui.pink.dividing.header { - border-bottom: 2px solid #E03997; -} - -/* Inverted */ - -.ui.inverted.pink.header { - color: #FF8EDF !important; -} - -a.ui.inverted.pink.header:hover { - color: #ff74d8 !important; -} - -/*--- Brown ---*/ - -.ui.brown.header { - color: #A5673F !important; -} - -a.ui.brown.header:hover { - color: #975b33 !important; -} - -.ui.brown.dividing.header { - border-bottom: 2px solid #A5673F; -} - -/* Inverted */ - -.ui.inverted.brown.header { - color: #D67C1C !important; -} - -a.ui.inverted.brown.header:hover { - color: #c86f11 !important; -} - -/*--- Grey ---*/ - -.ui.grey.header { - color: #767676 !important; -} - -a.ui.grey.header:hover { - color: #838383 !important; -} - -.ui.grey.dividing.header { - border-bottom: 2px solid #767676; -} - -/* Inverted */ - -.ui.inverted.grey.header { - color: #DCDDDE !important; -} - -a.ui.inverted.grey.header:hover { - color: #cfd0d2 !important; -} - -/*------------------- - 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: 0em; - margin-right: 0.5em; -} - -.ui[class*="right floated"].header { - float: right; - margin-top: 0em; - margin-left: 0.5em; -} - -/*------------------- - Fitted ---------------------*/ - -.ui.fitted.header { - padding: 0em; -} - -/*------------------- - 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: 0em; -} - -.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.tiny.block.header { - font-size: 0.85714286rem; -} - -.ui.small.block.header { - font-size: 0.92857143rem; -} - -.ui.block.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) { - font-size: 1rem; -} - -.ui.large.block.header { - font-size: 1.14285714rem; -} - -.ui.huge.block.header { - font-size: 1.42857143rem; -} - -/*------------------- - Attached ---------------------*/ - -.ui.attached.header { - background: #FFFFFF; - padding: 0.78571429rem 1rem; - margin-left: -1px; - margin-right: -1px; - -webkit-box-shadow: none; - box-shadow: none; - border: 1px solid #D4D4D5; -} - -.ui.attached.block.header { - background: #F3F4F5; -} - -.ui.attached:not(.top):not(.bottom).header { - margin-top: 0em; - margin-bottom: 0em; - border-top: none; - border-radius: 0em; -} - -.ui.top.attached.header { - margin-bottom: 0em; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -.ui.bottom.attached.header { - margin-top: 0em; - border-top: none; - border-radius: 0em 0em 0.28571429rem 0.28571429rem; -} - -/* Attached Sizes */ - -.ui.tiny.attached.header { - font-size: 0.85714286em; -} - -.ui.small.attached.header { - font-size: 0.92857143em; -} - -.ui.attached.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) { - font-size: 1em; -} - -.ui.large.attached.header { - font-size: 1.14285714em; -} - -.ui.huge.attached.header { - font-size: 1.42857143em; -} - -/*------------------- - Sizing ---------------------*/ - -.ui.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) { - font-size: 1.28571429em; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Icon -* http://github.com/semantic-org/semantic-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: 0em 0.25rem 0em 0em; - width: 1.18em; - height: 1em; - font-family: 'Icons'; - font-style: normal; - font-weight: normal; - text-decoration: inherit; - text-align: center; - speak: none; - font-smoothing: antialiased; - -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: icon-loading 2s linear infinite; - animation: icon-loading 2s linear infinite; -} - -@-webkit-keyframes icon-loading { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes icon-loading { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -/******************************* - States -*******************************/ - -i.icon.hover { - opacity: 1 !important; -} - -i.icon.active { - opacity: 1 !important; -} - -i.emphasized.icon { - opacity: 1 !important; -} - -i.disabled.icon { - opacity: 0.45 !important; -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Fitted ---------------------*/ - -i.fitted.icon { - width: auto; - margin: 0em; -} - -/*------------------- - Link ---------------------*/ - -i.link.icon, -i.link.icons { - 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 !important; -} - -/*------------------- - Circular ---------------------*/ - -i.circular.icon { - border-radius: 500em !important; - line-height: 1 !important; - padding: 0.5em 0.5em !important; - -webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset; - box-shadow: 0em 0em 0em 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); -} - -/*------------------- - Bordered ---------------------*/ - -i.bordered.icon { - line-height: 1; - vertical-align: baseline; - width: 2em; - height: 2em; - padding: 0.5em 0.41em !important; - -webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset; - box-shadow: 0em 0em 0em 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 !important; - color: #FFFFFF !important; -} - -i.inverted.icon { - color: #FFFFFF; -} - -/*------------------- - Colors ---------------------*/ - -/* Red */ - -i.red.icon { - color: #DB2828 !important; -} - -i.inverted.red.icon { - color: #FF695E !important; -} - -i.inverted.bordered.red.icon, -i.inverted.circular.red.icon { - background-color: #DB2828 !important; - color: #FFFFFF !important; -} - -/* Orange */ - -i.orange.icon { - color: #F2711C !important; -} - -i.inverted.orange.icon { - color: #FF851B !important; -} - -i.inverted.bordered.orange.icon, -i.inverted.circular.orange.icon { - background-color: #F2711C !important; - color: #FFFFFF !important; -} - -/* Yellow */ - -i.yellow.icon { - color: #FBBD08 !important; -} - -i.inverted.yellow.icon { - color: #FFE21F !important; -} - -i.inverted.bordered.yellow.icon, -i.inverted.circular.yellow.icon { - background-color: #FBBD08 !important; - color: #FFFFFF !important; -} - -/* Olive */ - -i.olive.icon { - color: #B5CC18 !important; -} - -i.inverted.olive.icon { - color: #D9E778 !important; -} - -i.inverted.bordered.olive.icon, -i.inverted.circular.olive.icon { - background-color: #B5CC18 !important; - color: #FFFFFF !important; -} - -/* Green */ - -i.green.icon { - color: #21BA45 !important; -} - -i.inverted.green.icon { - color: #2ECC40 !important; -} - -i.inverted.bordered.green.icon, -i.inverted.circular.green.icon { - background-color: #21BA45 !important; - color: #FFFFFF !important; -} - -/* Teal */ - -i.teal.icon { - color: #00B5AD !important; -} - -i.inverted.teal.icon { - color: #6DFFFF !important; -} - -i.inverted.bordered.teal.icon, -i.inverted.circular.teal.icon { - background-color: #00B5AD !important; - color: #FFFFFF !important; -} - -/* Blue */ - -i.blue.icon { - color: #2185D0 !important; -} - -i.inverted.blue.icon { - color: #54C8FF !important; -} - -i.inverted.bordered.blue.icon, -i.inverted.circular.blue.icon { - background-color: #2185D0 !important; - color: #FFFFFF !important; -} - -/* Violet */ - -i.violet.icon { - color: #6435C9 !important; -} - -i.inverted.violet.icon { - color: #A291FB !important; -} - -i.inverted.bordered.violet.icon, -i.inverted.circular.violet.icon { - background-color: #6435C9 !important; - color: #FFFFFF !important; -} - -/* Purple */ - -i.purple.icon { - color: #A333C8 !important; -} - -i.inverted.purple.icon { - color: #DC73FF !important; -} - -i.inverted.bordered.purple.icon, -i.inverted.circular.purple.icon { - background-color: #A333C8 !important; - color: #FFFFFF !important; -} - -/* Pink */ - -i.pink.icon { - color: #E03997 !important; -} - -i.inverted.pink.icon { - color: #FF8EDF !important; -} - -i.inverted.bordered.pink.icon, -i.inverted.circular.pink.icon { - background-color: #E03997 !important; - color: #FFFFFF !important; -} - -/* Brown */ - -i.brown.icon { - color: #A5673F !important; -} - -i.inverted.brown.icon { - color: #D67C1C !important; -} - -i.inverted.bordered.brown.icon, -i.inverted.circular.brown.icon { - background-color: #A5673F !important; - color: #FFFFFF !important; -} - -/* Grey */ - -i.grey.icon { - color: #767676 !important; -} - -i.inverted.grey.icon { - color: #DCDDDE !important; -} - -i.inverted.bordered.grey.icon, -i.inverted.circular.grey.icon { - background-color: #767676 !important; - color: #FFFFFF !important; -} - -/* Black */ - -i.black.icon { - color: #1B1C1D !important; -} - -i.inverted.black.icon { - color: #545454 !important; -} - -i.inverted.bordered.black.icon, -i.inverted.circular.black.icon { - background-color: #1B1C1D !important; - color: #FFFFFF !important; -} - -/*------------------- - Sizes ---------------------*/ - -i.mini.icon, -i.mini.icons { - line-height: 1; - font-size: 0.4em; -} - -i.tiny.icon, -i.tiny.icons { - line-height: 1; - font-size: 0.5em; -} - -i.small.icon, -i.small.icons { - line-height: 1; - font-size: 0.75em; -} - -i.icon, -i.icons { - font-size: 1em; -} - -i.large.icon, -i.large.icons { - line-height: 1; - vertical-align: middle; - font-size: 1.5em; -} - -i.big.icon, -i.big.icons { - line-height: 1; - vertical-align: middle; - font-size: 2em; -} - -i.huge.icon, -i.huge.icons { - line-height: 1; - vertical-align: middle; - font-size: 4em; -} - -i.massive.icon, -i.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: 0em; - margin: 0; -} - -i.icons .icon:first-child { - position: static; - width: auto; - height: auto; - vertical-align: top; - -webkit-transform: none; - transform: none; - margin-right: 0.25rem; -} - -/* 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 .top.right.corner.icon { - top: 0; - left: auto; - right: 0; - bottom: auto; -} - -i.icons .top.left.corner.icon { - top: 0; - left: 0; - right: auto; - bottom: auto; -} - -i.icons .bottom.left.corner.icon { - top: auto; - left: 0; - right: auto; - bottom: 0; -} - -i.icons .bottom.right.corner.icon { - 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.0.6 by @fontawesome - http://fontawesome.io - @fontawesome -* License - https://fontawesome.com/license (Icons: CC BY 4.0 License, Fonts: SIL OFL 1.1 License, CSS: MIT License) -*/ - -/******************************* - -Semantic-UI integration of font-awesome : - -///class names are separated -i.icon.circle => i.icon.circle -i.icon.circle-o => i.icon.circle.outline - -//abbreviation are replaced by full letters: -i.icon.ellipsis-h => i.icon.ellipsis.horizontal -i.icon.ellipsis-v => i.icon.ellipsis.vertical -.alpha => .i.icon.alphabet -.asc => .i.icon.ascending -.desc => .i.icon.descending -.alt =>.alternate - -ASCII order is conserved for easier maintenance. - -Icons that only have one style 'outline', 'square' etc do not require this class -for instance `lemon icon` not `lemon outline icon` since there is only one lemon - -*******************************/ - -/******************************* - Icons -*******************************/ - -/* Accessibility */ - -i.icon.american.sign.language.interpreting:before { - content: "\f2a3"; -} - -i.icon.assistive.listening.systems:before { - content: "\f2a2"; -} - -i.icon.audio.description:before { - content: "\f29e"; -} - -i.icon.blind:before { - content: "\f29d"; -} - -i.icon.braille:before { - content: "\f2a1"; -} - -i.icon.closed.captioning.outline:before { - content: "\f327"; -} - -i.icon.closed.captioning:before { - content: "\f20a"; -} - -i.icon.deaf:before { - content: "\f2a4"; -} - -i.icon.low.vision:before { - content: "\f2a8"; -} - -i.icon.phone.volume:before { - content: "\f2a0"; -} - -i.icon.question.circle.outline:before { - content: "\f628"; -} - -i.icon.question.circle:before { - content: "\f059"; -} - -i.icon.sign.language:before { - content: "\f2a7"; -} - -i.icon.tty:before { - content: "\f1e4"; -} - -i.icon.universal.access:before { - content: "\f29a"; -} - -i.icon.wheelchair:before { - content: "\f193"; -} - -/* Arrows */ - -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.arrow.alternate.circle.down.outline:before { - content: "\f608"; -} - -i.icon.arrow.alternate.circle.down:before { - content: "\f358"; -} - -i.icon.arrow.alternate.circle.left.outline:before { - content: "\f605"; -} - -i.icon.arrow.alternate.circle.left:before { - content: "\f359"; -} - -i.icon.arrow.alternate.circle.right.outline:before { - content: "\f304"; -} - -i.icon.arrow.alternate.circle.right:before { - content: "\f35a"; -} - -i.icon.arrow.alternate.circle.up.outline:before { - content: "\f305"; -} - -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.down:before { - content: "\f063"; -} - -i.icon.arrow.left:before { - content: "\f060"; -} - -i.icon.arrow.right:before { - content: "\f061"; -} - -i.icon.arrow.up:before { - content: "\f062"; -} - -i.icon.arrows.alternate.horizontal:before { - content: "\f337"; -} - -i.icon.arrows.alternate.vertical:before { - content: "\f338"; -} - -i.icon.arrows.alternate:before { - content: "\f0b2"; -} - -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.outline:before { - content: "\f316"; -} - -i.icon.caret.square.down:before { - content: "\f150"; -} - -i.icon.caret.square.left.outline:before { - content: "\f317"; -} - -i.icon.caret.square.left:before { - content: "\f191"; -} - -i.icon.caret.square.right.outline:before { - content: "\f318"; -} - -i.icon.caret.square.right:before { - content: "\f152"; -} - -i.icon.caret.square.up.outline:before { - content: "\f319"; -} - -i.icon.caret.square.up:before { - content: "\f151"; -} - -i.icon.caret.up:before { - content: "\f0d8"; -} - -i.icon.cart.arrow.down:before { - content: "\f218"; -} - -i.icon.chart.line:before { - content: "\f201"; -} - -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.cloud.download.alternate:before { - content: "\f600"; -} - -i.icon.cloud.upload.alternate:before { - content: "\f601"; -} - -i.icon.download:before { - content: "\f019"; -} - -i.icon.exchange.alternate:before { - content: "\f362"; -} - -i.icon.expand.arrows.alternate:before { - content: "\f31e"; -} - -i.icon.external.link.alternate:before { - content: "\f35d"; -} - -i.icon.external.link.square.alternate:before { - content: "\f360"; -} - -i.icon.hand.point.down.outline:before { - content: "\f602"; -} - -i.icon.hand.point.down:before { - content: "\f0a7"; -} - -i.icon.hand.point.left.outline:before { - content: "\f361"; -} - -i.icon.hand.point.left:before { - content: "\f0a5"; -} - -i.icon.hand.point.right.outline:before { - content: "\f362"; -} - -i.icon.hand.point.right:before { - content: "\f0a4"; -} - -i.icon.hand.point.up.outline:before { - content: "\f363"; -} - -i.icon.hand.point.up:before { - content: "\f0a6"; -} - -i.icon.hand.pointer.outline:before { - content: "\f364"; -} - -i.icon.hand.pointer:before { - content: "\f25a"; -} - -i.icon.history:before { - content: "\f1da"; -} - -i.icon.level.down.alternate:before { - content: "\f3be"; -} - -i.icon.level.up.alternate:before { - content: "\f3bf"; -} - -i.icon.location.arrow:before { - content: "\f124"; -} - -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.mouse.pointer:before { - content: "\f245"; -} - -i.icon.play:before { - content: "\f04b"; -} - -i.icon.random:before { - content: "\f074"; -} - -i.icon.recycle:before { - content: "\f1b8"; -} - -i.icon.redo.alternate:before { - content: "\f2f9"; -} - -i.icon.redo:before { - content: "\f01e"; -} - -i.icon.reply.all:before { - content: "\f122"; -} - -i.icon.reply:before { - content: "\f3e5"; -} - -i.icon.retweet:before { - content: "\f079"; -} - -i.icon.share.square.outline:before { - content: "\f631"; -} - -i.icon.share.square:before { - content: "\f14d"; -} - -i.icon.share:before { - content: "\f064"; -} - -i.icon.sign.in.alternate:before { - content: "\f2f6"; -} - -i.icon.sign.out.alternate:before { - content: "\f2f5"; -} - -i.icon.sort.alphabet.down:before { - content: "\f15d"; -} - -i.icon.sort.alphabet.up:before { - content: "\f15e"; -} - -i.icon.sort.amount.down:before { - content: "\f160"; -} - -i.icon.sort.amount.up:before { - content: "\f161"; -} - -i.icon.sort.down:before { - content: "\f0dd"; -} - -i.icon.sort.numeric.down:before { - content: "\f162"; -} - -i.icon.sort.numeric.up:before { - content: "\f163"; -} - -i.icon.sort.up:before { - content: "\f0de"; -} - -i.icon.sort:before { - content: "\f0dc"; -} - -i.icon.sync.alternate:before { - content: "\f2f1"; -} - -i.icon.sync:before { - content: "\f021"; -} - -i.icon.text.height:before { - content: "\f034"; -} - -i.icon.text.width:before { - content: "\f035"; -} - -i.icon.undo.alternate:before { - content: "\f2ea"; -} - -i.icon.undo:before { - content: "\f0e2"; -} - -i.icon.upload:before { - content: "\f093"; -} - -/* Audio & Video */ - -i.icon.backward:before { - content: "\f04a"; -} - -i.icon.circle.outline:before { - content: "\f323"; -} - -i.icon.circle:before { - content: "\f111"; -} - -i.icon.compress:before { - content: "\f066"; -} - -i.icon.eject:before { - content: "\f052"; -} - -i.icon.expand:before { - content: "\f065"; -} - -i.icon.fast.backward:before { - content: "\f049"; -} - -i.icon.fast.forward:before { - content: "\f050"; -} - -i.icon.file.audio.outline:before { - content: "\f342"; -} - -i.icon.file.audio:before { - content: "\f1c7"; -} - -i.icon.file.video.outline:before { - content: "\f348"; -} - -i.icon.file.video:before { - content: "\f1c8"; -} - -i.icon.film:before { - content: "\f008"; -} - -i.icon.forward:before { - content: "\f04e"; -} - -i.icon.headphones:before { - content: "\f025"; -} - -i.icon.microphone.slash:before { - content: "\f131"; -} - -i.icon.microphone:before { - content: "\f130"; -} - -i.icon.music:before { - content: "\f001"; -} - -i.icon.pause.circle.outline:before { - content: "\f625"; -} - -i.icon.pause.circle:before { - content: "\f28b"; -} - -i.icon.pause:before { - content: "\f04c"; -} - -i.icon.play.circle.outline:before { - content: "\f626"; -} - -i.icon.play.circle:before { - content: "\f144"; -} - -i.icon.podcast:before { - content: "\f2ce"; -} - -i.icon.rss.square:before { - content: "\f143"; -} - -i.icon.rss:before { - content: "\f09e"; -} - -i.icon.step.backward:before { - content: "\f048"; -} - -i.icon.step.forward:before { - content: "\f051"; -} - -i.icon.stop.circle.outline:before { - content: "\f636"; -} - -i.icon.stop.circle:before { - content: "\f28d"; -} - -i.icon.stop:before { - content: "\f04d"; -} - -i.icon.video:before { - content: "\f03d"; -} - -i.icon.volume.down:before { - content: "\f027"; -} - -i.icon.volume.off:before { - content: "\f026"; -} - -i.icon.volume.up:before { - content: "\f028"; -} - -/* Business */ - -i.icon.address.book.outline:before { - content: "\f300"; -} - -i.icon.address.book:before { - content: "\f2b9"; -} - -i.icon.address.card.outline:before { - content: "\f301"; -} - -i.icon.address.card:before { - content: "\f2bb"; -} - -i.icon.archive:before { - content: "\f187"; -} - -i.icon.balance.scale:before { - content: "\f24e"; -} - -i.icon.birthday.cake:before { - content: "\f1fd"; -} - -i.icon.book:before { - content: "\f02d"; -} - -i.icon.briefcase:before { - content: "\f0b1"; -} - -i.icon.building.outline:before { - content: "\f603"; -} - -i.icon.building:before { - content: "\f1ad"; -} - -i.icon.bullhorn:before { - content: "\f0a1"; -} - -i.icon.calculator:before { - content: "\f1ec"; -} - -i.icon.calendar.alternate.outline:before { - content: "\f310"; -} - -i.icon.calendar.alternate:before { - content: "\f073"; -} - -i.icon.calendar.outline:before { - content: "\f315"; -} - -i.icon.calendar:before { - content: "\f133"; -} - -i.icon.certificate:before { - content: "\f0a3"; -} - -i.icon.chart.area:before { - content: "\f1fe"; -} - -i.icon.chart.bar.outline:before { - content: "\f320"; -} - -i.icon.chart.bar:before { - content: "\f080"; -} - -i.icon.chart.pie:before { - content: "\f200"; -} - -i.icon.clipboard.outline:before { - content: "\f324"; -} - -i.icon.clipboard:before { - content: "\f328"; -} - -i.icon.coffee:before { - content: "\f0f4"; -} - -i.icon.columns:before { - content: "\f0db"; -} - -i.icon.compass.outline:before { - content: "\f331"; -} - -i.icon.compass:before { - content: "\f14e"; -} - -i.icon.copy.outline:before { - content: "\f332"; -} - -i.icon.copy:before { - content: "\f0c5"; -} - -i.icon.copyright.outline:before { - content: "\f333"; -} - -i.icon.copyright:before { - content: "\f1f9"; -} - -i.icon.cut:before { - content: "\f0c4"; -} - -i.icon.edit.outline:before { - content: "\f336"; -} - -i.icon.edit:before { - content: "\f044"; -} - -i.icon.envelope.open.outline:before { - content: "\f337"; -} - -i.icon.envelope.open:before { - content: "\f2b6"; -} - -i.icon.envelope.outline:before { - content: "\f338"; -} - -i.icon.envelope.square:before { - content: "\f199"; -} - -i.icon.envelope:before { - content: "\f0e0"; -} - -i.icon.eraser:before { - content: "\f12d"; -} - -i.icon.fax:before { - content: "\f1ac"; -} - -i.icon.file.alternate.outline:before { - content: "\f340"; -} - -i.icon.file.alternate:before { - content: "\f15c"; -} - -i.icon.file.outline:before { - content: "\f350"; -} - -i.icon.file:before { - content: "\f15b"; -} - -i.icon.folder.open.outline:before { - content: "\f352"; -} - -i.icon.folder.open:before { - content: "\f07c"; -} - -i.icon.folder.outline:before { - content: "\f353"; -} - -i.icon.folder:before { - content: "\f07b"; -} - -i.icon.globe:before { - content: "\f0ac"; -} - -i.icon.industry:before { - content: "\f275"; -} - -i.icon.paperclip:before { - content: "\f0c6"; -} - -i.icon.paste:before { - content: "\f0ea"; -} - -i.icon.pen.square:before { - content: "\f14b"; -} - -i.icon.pencil.alternate:before { - content: "\f303"; -} - -i.icon.percent:before { - content: "\f295"; -} - -i.icon.phone.square:before { - content: "\f098"; -} - -i.icon.phone:before { - content: "\f095"; -} - -i.icon.registered.outline:before { - content: "\f629"; -} - -i.icon.registered:before { - content: "\f25d"; -} - -i.icon.save.outline:before { - content: "\f630"; -} - -i.icon.save:before { - content: "\f0c7"; -} - -i.icon.sitemap:before { - content: "\f0e8"; -} - -i.icon.sticky.note.outline:before { - content: "\f635"; -} - -i.icon.sticky.note:before { - content: "\f249"; -} - -i.icon.suitcase:before { - content: "\f0f2"; -} - -i.icon.table:before { - content: "\f0ce"; -} - -i.icon.tag:before { - content: "\f02b"; -} - -i.icon.tags:before { - content: "\f02c"; -} - -i.icon.tasks:before { - content: "\f0ae"; -} - -i.icon.thumbtack:before { - content: "\f08d"; -} - -i.icon.trademark:before { - content: "\f25c"; -} - -/* Chess */ - -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.rock:before { - content: "\f447"; -} - -i.icon.square.full:before { - content: "\f45c"; -} - -/* Code */ - -i.icon.barcode:before { - content: "\f02a"; -} - -i.icon.bath:before { - content: "\f2cd"; -} - -i.icon.bug:before { - content: "\f188"; -} - -i.icon.code:before { - content: "\f121"; -} - -i.icon.code.branch:before { - content: "\f126"; -} - -i.icon.file.code.outline:before { - content: "\f343"; -} - -i.icon.file.code:before { - content: "\f1c9"; -} - -i.icon.filter:before { - content: "\f0b0"; -} - -i.icon.fire.extinguisher:before { - content: "\f134"; -} - -i.icon.keyboard.outline:before { - content: "\f377"; -} - -i.icon.keyboard:before { - content: "\f11c"; -} - -i.icon.microchip:before { - content: "\f2db"; -} - -i.icon.qrcode:before { - content: "\f029"; -} - -i.icon.shield.alternate:before { - content: "\f3ed"; -} - -i.icon.terminal:before { - content: "\f120"; -} - -i.icon.user.secret:before { - content: "\f21b"; -} - -i.icon.window.close.outline:before { - content: "\f642"; -} - -i.icon.window.close:before { - content: "\f410"; -} - -i.icon.window.maximize.outline:before { - content: "\f644"; -} - -i.icon.window.maximize:before { - content: "\f2d0"; -} - -i.icon.window.minimize.outline:before { - content: "\f643"; -} - -i.icon.window.minimize:before { - content: "\f2d1"; -} - -i.icon.window.restore.outline:before { - content: "\f416"; -} - -i.icon.window.restore:before { - content: "\f2d2"; -} - -/* Communication */ - -i.icon.at:before { - content: "\f1fa"; -} - -i.icon.bell.outline:before { - content: "\f307"; -} - -i.icon.bell.slash.outline:before { - content: "\f306"; -} - -i.icon.bell.slash:before { - content: "\f1f6"; -} - -i.icon.bell:before { - content: "\f0f3"; -} - -i.icon.comment.alternate.outline:before { - content: "\f604"; -} - -i.icon.comment.alternate:before { - content: "\f27a"; -} - -i.icon.comment.outline:before { - content: "\f329"; -} - -i.icon.comment:before { - content: "\f075"; -} - -i.icon.comments.outline:before { - content: "\f330"; -} - -i.icon.comments:before { - content: "\f086"; -} - -i.icon.inbox:before { - content: "\f01c"; -} - -i.icon.language:before { - content: "\f1ab"; -} - -i.icon.mobile.alternate:before { - content: "\f3cd"; -} - -i.icon.mobile:before { - content: "\f10b"; -} - -i.icon.paper.plane.outline:before { - content: "\f390"; -} - -i.icon.paper.plane:before { - content: "\f1d8"; -} - -i.icon.wifi:before { - content: "\f1eb"; -} - -/* Computers */ - -i.icon.desktop:before { - content: "\f108"; -} - -i.icon.hdd.outline:before { - content: "\f611"; -} - -i.icon.hdd:before { - content: "\f0a0"; -} - -i.icon.laptop:before { - content: "\f109"; -} - -i.icon.plug:before { - content: "\f1e6"; -} - -i.icon.power.off:before { - content: "\f011"; -} - -i.icon.print:before { - content: "\f02f"; -} - -i.icon.server:before { - content: "\f233"; -} - -i.icon.tablet.alternate:before { - content: "\f3fa"; -} - -i.icon.tablet:before { - content: "\f10a"; -} - -i.icon.tv:before { - content: "\f26c"; -} - -/* Currency */ - -i.icon.dollar.sign:before { - content: "\f155"; -} - -i.icon.euro.sign:before { - content: "\f153"; -} - -i.icon.lira.sign:before { - content: "\f195"; -} - -i.icon.money.bill.alternate.outline:before { - content: "\f623"; -} - -i.icon.money.bill.alternate:before { - content: "\f3d1"; -} - -i.icon.pound.sign:before { - content: "\f154"; -} - -i.icon.ruble.sign:before { - content: "\f158"; -} - -i.icon.rupee.sign:before { - content: "\f156"; -} - -i.icon.shekel.sign:before { - content: "\f20b"; -} - -i.icon.won.sign:before { - content: "\f159"; -} - -i.icon.yen.sign:before { - content: "\f157"; -} - -/* Date & Time */ - -i.icon.calendar.check.outline:before { - content: "\f311"; -} - -i.icon.calendar.check:before { - content: "\f274"; -} - -i.icon.calendar.minus.outline:before { - content: "\f312"; -} - -i.icon.calendar.minus:before { - content: "\f272"; -} - -i.icon.calendar.plus.outline:before { - content: "\f313"; -} - -i.icon.calendar.plus:before { - content: "\f271"; -} - -i.icon.calendar.times.outline:before { - content: "\f314"; -} - -i.icon.calendar.times:before { - content: "\f273"; -} - -i.icon.clock.outline:before { - content: "\f325"; -} - -i.icon.clock:before { - content: "\f017"; -} - -i.icon.hourglass.end:before { - content: "\f253"; -} - -i.icon.hourglass.half:before { - content: "\f252"; -} - -i.icon.hourglass.outline:before { - content: "\f614"; -} - -i.icon.hourglass.start:before { - content: "\f251"; -} - -i.icon.hourglass:before { - content: "\f254"; -} - -i.icon.stopwatch:before { - content: "\f2f2"; -} - -/* Design */ - -i.icon.adjust:before { - content: "\f042"; -} - -i.icon.clone.outline:before { - content: "\f326"; -} - -i.icon.clone:before { - content: "\f24d"; -} - -i.icon.crop:before { - content: "\f125"; -} - -i.icon.crosshairs:before { - content: "\f05b"; -} - -i.icon.eye.dropper:before { - content: "\f1fb"; -} - -i.icon.eye.slash.outline:before { - content: "\f339"; -} - -i.icon.eye.slash:before { - content: "\f070"; -} - -i.icon.eye:before { - content: "\f06e"; -} - -i.icon.object.group.outline:before { - content: "\f624"; -} - -i.icon.object.group:before { - content: "\f247"; -} - -i.icon.object.ungroup.outline:before { - content: "\f389"; -} - -i.icon.object.ungroup:before { - content: "\f248"; -} - -i.icon.paint.brush:before { - content: "\f1fc"; -} - -i.icon.tint:before { - content: "\f043"; -} - -/* Editors */ - -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.bold:before { - content: "\f032"; -} - -i.icon.font:before { - content: "\f031"; -} - -i.icon.heading:before { - content: "\f1dc"; -} - -i.icon.i.cursor:before { - content: "\f246"; -} - -i.icon.indent:before { - content: "\f03c"; -} - -i.icon.italic:before { - content: "\f033"; -} - -i.icon.link:before { - content: "\f0c1"; -} - -i.icon.list.alternate.outline:before { - content: "\f381"; -} - -i.icon.list.alternate:before { - content: "\f022"; -} - -i.icon.ordered.list:before { - content: "\f0cb"; -} - -i.icon.unordered.list:before { - content: "\f0ca"; -} - -i.icon.list:before { - content: "\f03a"; -} - -i.icon.outdent:before { - content: "\f03b"; -} - -i.icon.paragraph:before { - content: "\f1dd"; -} - -i.icon.quote.left:before { - content: "\f10d"; -} - -i.icon.quote.right:before { - content: "\f10e"; -} - -i.icon.strikethrough:before { - content: "\f0cc"; -} - -i.icon.subscript:before { - content: "\f12c"; -} - -i.icon.superscript:before { - content: "\f12b"; -} - -i.icon.th.large:before { - content: "\f009"; -} - -i.icon.th.list:before { - content: "\f00b"; -} - -i.icon.th:before { - content: "\f00a"; -} - -i.icon.trash.alternate.outline:before { - content: "\f640"; -} - -i.icon.trash.alternate:before { - content: "\f2ed"; -} - -i.icon.trash:before { - content: "\f1f8"; -} - -i.icon.underline:before { - content: "\f0cd"; -} - -i.icon.unlink:before { - content: "\f127"; -} - -/* Files */ - -i.icon.file.archive.outline:before { - content: "\f341"; -} - -i.icon.file.archive:before { - content: "\f1c6"; -} - -i.icon.file.excel.outline:before { - content: "\f344"; -} - -i.icon.file.excel:before { - content: "\f1c3"; -} - -i.icon.file.image.outline:before { - content: "\f617"; -} - -i.icon.file.image:before { - content: "\f1c5"; -} - -i.icon.file.pdf.outline:before { - content: "\f346"; -} - -i.icon.file.pdf:before { - content: "\f1c1"; -} - -i.icon.file.powerpoint.outline:before { - content: "\f347"; -} - -i.icon.file.powerpoint:before { - content: "\f1c4"; -} - -i.icon.file.word.outline:before { - content: "\f349"; -} - -i.icon.file.word:before { - content: "\f1c2"; -} - -/* Genders */ - -i.icon.genderless:before { - content: "\f22d"; -} - -i.icon.mars.double:before { - content: "\f227"; -} - -i.icon.mars.stroke.horizontal:before { - content: "\f22b"; -} - -i.icon.mars.stroke.vertical:before { - content: "\f22a"; -} - -i.icon.mars.stroke:before { - content: "\f229"; -} - -i.icon.mars:before { - content: "\f222"; -} - -i.icon.mercury:before { - content: "\f223"; -} - -i.icon.neuter:before { - content: "\f22c"; -} - -i.icon.transgender.alternate:before { - content: "\f225"; -} - -i.icon.transgender:before { - content: "\f224"; -} - -i.icon.venus.double:before { - content: "\f226"; -} - -i.icon.venus.mars:before { - content: "\f228"; -} - -i.icon.venus:before { - content: "\f221"; -} - -/* Hands */ - -i.icon.hand.lizard.outline:before { - content: "\f357"; -} - -i.icon.hand.lizard:before { - content: "\f258"; -} - -i.icon.hand.paper.outline:before { - content: "\f358"; -} - -i.icon.hand.paper:before { - content: "\f256"; -} - -i.icon.hand.peace.outline:before { - content: "\f359"; -} - -i.icon.hand.peace:before { - content: "\f25b"; -} - -i.icon.hand.rock.outline:before { - content: "\f365"; -} - -i.icon.hand.rock:before { - content: "\f255"; -} - -i.icon.hand.scissors.outline:before { - content: "\f366"; -} - -i.icon.hand.scissors:before { - content: "\f257"; -} - -i.icon.hand.spock.outline:before { - content: "\f367"; -} - -i.icon.hand.spock:before { - content: "\f259"; -} - -i.icon.handshake.outline:before { - content: "\f610"; -} - -i.icon.handshake:before { - content: "\f2b5"; -} - -i.icon.thumbs.down.outline:before { - content: "\f406"; -} - -i.icon.thumbs.down:before { - content: "\f165"; -} - -i.icon.thumbs.up.outline:before { - content: "\f638"; -} - -i.icon.thumbs.up:before { - content: "\f164"; -} - -/* Health */ - -i.icon.ambulance:before { - content: "\f0f9"; -} - -i.icon.h.square:before { - content: "\f0fd"; -} - -i.icon.heart.outline:before { - content: "\f612"; -} - -i.icon.heart:before { - content: "\f004"; -} - -i.icon.heartbeat:before { - content: "\f21e"; -} - -i.icon.hospital.outline:before { - content: "\f613"; -} - -i.icon.hospital:before { - content: "\f0f8"; -} - -i.icon.medkit:before { - content: "\f0fa"; -} - -i.icon.plus.square.outline:before { - content: "\f627"; -} - -i.icon.plus.square:before { - content: "\f0fe"; -} - -i.icon.stethoscope:before { - content: "\f0f1"; -} - -i.icon.user.doctor:before { - content: "\f0f0"; -} - -/* Images */ - -i.icon.bolt:before { - content: "\f0e7"; -} - -i.icon.camera.retro:before { - content: "\f083"; -} - -i.icon.camera:before { - content: "\f030"; -} - -i.icon.id.badge.outline:before { - content: "\f615"; -} - -i.icon.id.badge:before { - content: "\f2c1"; -} - -i.icon.id.card.outline:before { - content: "\f616"; -} - -i.icon.id.card:before { - content: "\f2c2"; -} - -i.icon.image.outline:before { - content: "\f617"; -} - -i.icon.image:before { - content: "\f03e"; -} - -i.icon.images.outline:before { - content: "\f376"; -} - -i.icon.images:before { - content: "\f302"; -} - -i.icon.sliders.horizontal:before { - content: "\f1de"; -} - -/* Interfaces */ - -i.icon.ban:before { - content: "\f05e"; -} - -i.icon.bars:before { - content: "\f0c9"; -} - -i.icon.beer:before { - content: "\f0fc"; -} - -i.icon.bullseye:before { - content: "\f140"; -} - -i.icon.check.circle.outline:before { - content: "\f321"; -} - -i.icon.check.circle:before { - content: "\f058"; -} - -i.icon.check.square.outline:before { - content: "\f322"; -} - -i.icon.check.square:before { - content: "\f14a"; -} - -i.icon.check:before { - content: "\f00c"; -} - -i.icon.cloud:before { - content: "\f0c2"; -} - -i.icon.cog:before { - content: "\f013"; -} - -i.icon.cogs:before { - content: "\f085"; -} - -i.icon.database:before { - content: "\f1c0"; -} - -i.icon.dot.circle.outline:before { - content: "\f335"; -} - -i.icon.dot.circle:before { - content: "\f192"; -} - -i.icon.ellipsis.horizontal:before { - content: "\f141"; -} - -i.icon.ellipsis.vertical:before { - content: "\f142"; -} - -i.icon.exclamation.circle:before { - content: "\f06a"; -} - -i.icon.exclamation.triangle:before { - content: "\f071"; -} - -i.icon.exclamation:before { - content: "\f12a"; -} - -i.icon.flag.checkered:before { - content: "\f11e"; -} - -i.icon.flag.outline:before { - content: "\f351"; -} - -i.icon.flag:before { - content: "\f024"; -} - -i.icon.frown.outline:before { - content: "\f354"; -} - -i.icon.frown:before { - content: "\f119"; -} - -i.icon.hashtag:before { - content: "\f292"; -} - -i.icon.home:before { - content: "\f015"; -} - -i.icon.info.circle:before { - content: "\f05a"; -} - -i.icon.info:before { - content: "\f129"; -} - -i.icon.magic:before { - content: "\f0d0"; -} - -i.icon.meh.outline:before { - content: "\f621"; -} - -i.icon.meh:before { - content: "\f11a"; -} - -i.icon.minus.circle:before { - content: "\f056"; -} - -i.icon.minus.square.outline:before { - content: "\f622"; -} - -i.icon.minus.square:before { - content: "\f146"; -} - -i.icon.minus:before { - content: "\f068"; -} - -i.icon.plus.circle:before { - content: "\f055"; -} - -i.icon.plus:before { - content: "\f067"; -} - -i.icon.question:before { - content: "\f128"; -} - -i.icon.search.minus:before { - content: "\f010"; -} - -i.icon.search.plus:before { - content: "\f00e"; -} - -i.icon.search:before { - content: "\f002"; -} - -i.icon.share.alternate.square:before { - content: "\f1e1"; -} - -i.icon.share.alternate:before { - content: "\f1e0"; -} - -i.icon.shield:before { - content: "\f3ed"; -} - -i.icon.signal:before { - content: "\f012"; -} - -i.icon.smile.outline:before { - content: "\f398"; -} - -i.icon.smile:before { - content: "\f118"; -} - -i.icon.star.half.outline:before { - content: "\f401"; -} - -i.icon.star.half:before { - content: "\f089"; -} - -i.icon.star.outline:before { - content: "\f634"; -} - -i.icon.star:before { - content: "\f005"; -} - -i.icon.times.circle.outline:before { - content: "\f639"; -} - -i.icon.times.circle:before { - content: "\f057"; -} - -i.icon.times:before { - content: "\f00d"; -} - -i.icon.toggle.off:before { - content: "\f204"; -} - -i.icon.toggle.on:before { - content: "\f205"; -} - -i.icon.trophy:before { - content: "\f091"; -} - -i.icon.user.circle.outline:before { - content: "\f606"; -} - -i.icon.user.circle:before { - content: "\f2bd"; -} - -i.icon.user.outline:before { - content: "\f641"; -} - -i.icon.user:before { - content: "\f007"; -} - -/* Maps */ - -i.icon.anchor:before { - content: "\f13d"; -} - -i.icon.bed:before { - content: "\f236"; -} - -i.icon.bicycle:before { - content: "\f206"; -} - -i.icon.binoculars:before { - content: "\f1e5"; -} - -i.icon.bomb:before { - content: "\f1e2"; -} - -i.icon.bookmark.outline:before { - content: "\f308"; -} - -i.icon.bookmark:before { - content: "\f02e"; -} - -i.icon.car:before { - content: "\f1b9"; -} - -i.icon.fighter.jet:before { - content: "\f0fb"; -} - -i.icon.fire:before { - content: "\f06d"; -} - -i.icon.flask:before { - content: "\f0c3"; -} - -i.icon.gamepad:before { - content: "\f11b"; -} - -i.icon.gavel:before { - content: "\f0e3"; -} - -i.icon.gift:before { - content: "\f06b"; -} - -i.icon.glass.martini:before { - content: "\f000"; -} - -i.icon.graduation.cap:before { - content: "\f19d"; -} - -i.icon.key:before { - content: "\f084"; -} - -i.icon.leaf:before { - content: "\f06c"; -} - -i.icon.lemon.outline:before { - content: "\f618"; -} - -i.icon.lemon:before { - content: "\f094"; -} - -i.icon.life.ring.outline:before { - content: "\f619"; -} - -i.icon.life.ring:before { - content: "\f1cd"; -} - -i.icon.lightbulb.outline:before { - content: "\f620"; -} - -i.icon.lightbulb:before { - content: "\f0eb"; -} - -i.icon.magnet:before { - content: "\f076"; -} - -i.icon.male:before { - content: "\f183"; -} - -i.icon.map.marker.alternate:before { - content: "\f3c5"; -} - -i.icon.map.marker:before { - content: "\f041"; -} - -i.icon.map.outline:before { - content: "\f382"; -} - -i.icon.map.pin:before { - content: "\f276"; -} - -i.icon.map.signs:before { - content: "\f277"; -} - -i.icon.map:before { - content: "\f279"; -} - -i.icon.motorcycle:before { - content: "\f21c"; -} - -i.icon.newspaper.outline:before { - content: "\f387"; -} - -i.icon.newspaper:before { - content: "\f1ea"; -} - -i.icon.paw:before { - content: "\f1b0"; -} - -i.icon.plane:before { - content: "\f072"; -} - -i.icon.road:before { - content: "\f018"; -} - -i.icon.rocket:before { - content: "\f135"; -} - -i.icon.ship:before { - content: "\f21a"; -} - -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.street.view:before { - content: "\f21d"; -} - -i.icon.subway:before { - content: "\f239"; -} - -i.icon.taxi:before { - content: "\f1ba"; -} - -i.icon.ticket.alternate:before { - content: "\f3ff"; -} - -i.icon.train:before { - content: "\f238"; -} - -i.icon.tree:before { - content: "\f1bb"; -} - -i.icon.truck:before { - content: "\f0d1"; -} - -i.icon.umbrella:before { - content: "\f0e9"; -} - -i.icon.university:before { - content: "\f19c"; -} - -i.icon.utensil.spoon:before { - content: "\f2e5"; -} - -i.icon.utensils:before { - content: "\f2e7"; -} - -i.icon.wrench:before { - content: "\f0ad"; -} - -/* Objects */ - -i.icon.bus:before { - content: "\f207"; -} - -i.icon.cube:before { - content: "\f1b2"; -} - -i.icon.cubes:before { - content: "\f1b3"; -} - -i.icon.futbol.outline:before { - content: "\f633"; -} - -i.icon.futbol:before { - content: "\f1e3"; -} - -i.icon.gem.outline:before { - content: "\f356"; -} - -i.icon.gem:before { - content: "\f3a5"; -} - -i.icon.lock.open:before { - content: "\f3c1"; -} - -i.icon.lock:before { - content: "\f023"; -} - -i.icon.moon.outline:before { - content: "\f386"; -} - -i.icon.moon:before { - content: "\f186"; -} - -i.icon.puzzle:before { - content: "\f12e"; -} - -i.icon.snowflake.outline:before { - content: "\f632"; -} - -i.icon.snowflake:before { - content: "\f2dc"; -} - -i.icon.space.shuttle:before { - content: "\f197"; -} - -i.icon.sun.outline:before { - content: "\f637"; -} - -i.icon.sun:before { - content: "\f185"; -} - -i.icon.tachometer.alternate:before { - content: "\f3fd"; -} - -i.icon.unlock.alternate:before { - content: "\f13e"; -} - -i.icon.unlock:before { - content: "\f09c"; -} - -/* Payments & Shopping */ - -i.icon.cart.plus:before { - content: "\f217"; -} - -i.icon.credit.card.outline:before { - content: "\f334"; -} - -i.icon.credit.card:before { - content: "\f09d"; -} - -/* Shapes */ - -i.icon.square.outline:before { - content: "\f400"; -} - -i.icon.square:before { - content: "\f0c8"; -} - -/* Spinners */ - -i.icon.asterisk:before { - content: "\f069"; -} - -i.icon.circle.notch:before { - content: "\f1ce"; -} - -i.icon.spinner:before { - content: "\f110"; -} - -/* Sports */ - -i.icon.baseball.ball:before { - content: "\f433"; -} - -i.icon.basketball.ball:before { - content: "\f434"; -} - -i.icon.bowling.ball:before { - content: "\f436"; -} - -i.icon.football.ball:before { - content: "\f44e"; -} - -i.icon.golf.ball:before { - content: "\f450"; -} - -i.icon.hockey.puck:before { - content: "\f453"; -} - -i.icon.quidditch:before { - content: "\f458"; -} - -i.icon.table.tennis:before { - content: "\f45d"; -} - -i.icon.volleyball.ball:before { - content: "\f45f"; -} - -/* Status */ - -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.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"; -} - -/* Users & People */ - -i.icon.child:before { - content: "\f1ae"; -} - -i.icon.female:before { - content: "\f182"; -} - -i.icon.user.circle.outline:before { - content: "\f410"; -} - -i.icon.user.plus:before { - content: "\f234"; -} - -i.icon.user.times:before { - content: "\f235"; -} - -i.icon.users:before { - content: "\f0c0"; -} - -/* Brands */ - -i.icon.\35 00px:before { - content: "\f26e"; -} - -i.icon.accessible.icon:before { - content: "\f368"; -} - -i.icon.accusoft:before { - content: "\f369"; -} - -i.icon.adn:before { - content: "\f170"; -} - -i.icon.adversal:before { - content: "\f36a"; -} - -i.icon.affiliatetheme:before { - content: "\f36b"; -} - -i.icon.algolia:before { - content: "\f36c"; -} - -i.icon.amazon.pay:before { - content: "\f42c"; -} - -i.icon.amazon:before { - content: "\f270"; -} - -i.icon.amilia:before { - content: "\f36d"; -} - -i.icon.android:before { - content: "\f17b"; -} - -i.icon.angellist:before { - content: "\f209"; -} - -i.icon.angrycreative:before { - content: "\f36e"; -} - -i.icon.angular:before { - content: "\f420"; -} - -i.icon.app.store.ios:before { - content: "\f370"; -} - -i.icon.app.store:before { - content: "\f36f"; -} - -i.icon.apper:before { - content: "\f371"; -} - -i.icon.apple.pay:before { - content: "\f609"; -} - -i.icon.apple:before { - content: "\f179"; -} - -i.icon.asymmetrik:before { - content: "\f372"; -} - -i.icon.audible:before { - content: "\f373"; -} - -i.icon.autoprefixer:before { - content: "\f41c"; -} - -i.icon.avianex:before { - content: "\f374"; -} - -i.icon.aviato:before { - content: "\f421"; -} - -i.icon.aws:before { - content: "\f375"; -} - -i.icon.bandcamp:before { - content: "\f2d5"; -} - -i.icon.behance.square:before { - content: "\f1b5"; -} - -i.icon.behance:before { - content: "\f1b4"; -} - -i.icon.bimobject:before { - content: "\f378"; -} - -i.icon.bitbucket:before { - content: "\f171"; -} - -i.icon.bitcoin:before { - content: "\f379"; -} - -i.icon.bity:before { - content: "\f37a"; -} - -i.icon.black.tie:before { - content: "\f27e"; -} - -i.icon.blackberry:before { - content: "\f37b"; -} - -i.icon.blogger.b:before { - content: "\f37d"; -} - -i.icon.blogger:before { - content: "\f37c"; -} - -i.icon.bluetooth.b:before { - content: "\f294"; -} - -i.icon.bluetooth:before { - content: "\f293"; -} - -i.icon.btc:before { - content: "\f15a"; -} - -i.icon.buromobelexperte:before { - content: "\f37f"; -} - -i.icon.buysellads:before { - content: "\f20d"; -} - -i.icon.credit.card.amazon.pay:before { - content: "\f42d"; -} - -i.icon.credit.card.american.express:before { - content: "\f1f3"; -} - -i.icon.credit.card.apple.pay:before { - content: "\f607"; -} - -i.icon.credit.card.diners.club:before { - content: "\f24c"; -} - -i.icon.credit.card.discover:before { - content: "\f1f2"; -} - -i.icon.credit.card.jcb:before { - content: "\f24b"; -} - -i.icon.credit.card.mastercard:before { - content: "\f1f1"; -} - -i.icon.credit.card.paypal:before { - content: "\f1f4"; -} - -i.icon.credit.card.stripe:before { - content: "\f1f5"; -} - -i.icon.credit.card.visa:before { - content: "\f1f0"; -} - -i.icon.centercode:before { - content: "\f380"; -} - -i.icon.chrome:before { - content: "\f268"; -} - -i.icon.cloudscale:before { - content: "\f383"; -} - -i.icon.cloudsmith:before { - content: "\f384"; -} - -i.icon.cloudversify:before { - content: "\f385"; -} - -i.icon.codepen:before { - content: "\f1cb"; -} - -i.icon.codiepie:before { - content: "\f284"; -} - -i.icon.connectdevelop:before { - content: "\f20e"; -} - -i.icon.contao:before { - content: "\f26d"; -} - -i.icon.cpanel:before { - content: "\f388"; -} - -i.icon.creative.commons:before { - content: "\f25e"; -} - -i.icon.css3.alternate:before { - content: "\f38b"; -} - -i.icon.css3:before { - content: "\f13c"; -} - -i.icon.cuttlefish:before { - content: "\f38c"; -} - -i.icon.d.and.d:before { - content: "\f38d"; -} - -i.icon.dashcube:before { - content: "\f210"; -} - -i.icon.delicious:before { - content: "\f1a5"; -} - -i.icon.deploydog:before { - content: "\f38e"; -} - -i.icon.deskpro:before { - content: "\f38f"; -} - -i.icon.deviantart:before { - content: "\f1bd"; -} - -i.icon.digg:before { - content: "\f1a6"; -} - -i.icon.digital.ocean:before { - content: "\f391"; -} - -i.icon.discord:before { - content: "\f392"; -} - -i.icon.discourse:before { - content: "\f393"; -} - -i.icon.dochub:before { - content: "\f394"; -} - -i.icon.docker:before { - content: "\f395"; -} - -i.icon.draft2digital:before { - content: "\f396"; -} - -i.icon.dribbble.square:before { - content: "\f397"; -} - -i.icon.dribbble:before { - content: "\f17d"; -} - -i.icon.dropbox:before { - content: "\f16b"; -} - -i.icon.drupal:before { - content: "\f1a9"; -} - -i.icon.dyalog:before { - content: "\f399"; -} - -i.icon.earlybirds:before { - content: "\f39a"; -} - -i.icon.edge:before { - content: "\f282"; -} - -i.icon.elementor:before { - content: "\f430"; -} - -i.icon.ember:before { - content: "\f423"; -} - -i.icon.empire:before { - content: "\f1d1"; -} - -i.icon.envira:before { - content: "\f299"; -} - -i.icon.erlang:before { - content: "\f39d"; -} - -i.icon.ethereum:before { - content: "\f42e"; -} - -i.icon.etsy:before { - content: "\f2d7"; -} - -i.icon.expeditedssl:before { - content: "\f23e"; -} - -i.icon.facebook.f:before { - content: "\f39e"; -} - -i.icon.facebook.messenger:before { - content: "\f39f"; -} - -i.icon.facebook.square:before { - content: "\f082"; -} - -i.icon.facebook:before { - content: "\f09a"; -} - -i.icon.firefox:before { - content: "\f269"; -} - -i.icon.first.order:before { - content: "\f2b0"; -} - -i.icon.firstdraft:before { - content: "\f3a1"; -} - -i.icon.flickr:before { - content: "\f16e"; -} - -i.icon.flipboard:before { - content: "\f44d"; -} - -i.icon.fly:before { - content: "\f417"; -} - -i.icon.font.awesome.alternate:before { - content: "\f35c"; -} - -i.icon.font.awesome.flag:before { - content: "\f425"; -} - -i.icon.font.awesome:before { - content: "\f2b4"; -} - -i.icon.fonticons.fi:before { - content: "\f3a2"; -} - -i.icon.fonticons:before { - content: "\f280"; -} - -i.icon.fort.awesome.alternate:before { - content: "\f3a3"; -} - -i.icon.fort.awesome:before { - content: "\f286"; -} - -i.icon.forumbee:before { - content: "\f211"; -} - -i.icon.foursquare:before { - content: "\f180"; -} - -i.icon.free.code.camp:before { - content: "\f2c5"; -} - -i.icon.freebsd:before { - content: "\f3a4"; -} - -i.icon.get.pocket:before { - content: "\f265"; -} - -i.icon.gg.circle:before { - content: "\f261"; -} - -i.icon.gg:before { - content: "\f260"; -} - -i.icon.git.square:before { - content: "\f1d2"; -} - -i.icon.git:before { - content: "\f1d3"; -} - -i.icon.github.alternate:before { - content: "\f113"; -} - -i.icon.github.square:before { - content: "\f092"; -} - -i.icon.github:before { - content: "\f09b"; -} - -i.icon.gitkraken:before { - content: "\f3a6"; -} - -i.icon.gitlab:before { - content: "\f296"; -} - -i.icon.gitter:before { - content: "\f426"; -} - -i.icon.glide.g:before { - content: "\f2a6"; -} - -i.icon.glide:before { - content: "\f2a5"; -} - -i.icon.gofore:before { - content: "\f3a7"; -} - -i.icon.goodreads.g:before { - content: "\f3a9"; -} - -i.icon.goodreads:before { - content: "\f3a8"; -} - -i.icon.google.drive:before { - content: "\f3aa"; -} - -i.icon.google.play:before { - content: "\f3ab"; -} - -i.icon.google.plus.g:before { - content: "\f0d5"; -} - -i.icon.google.plus.square:before { - content: "\f0d4"; -} - -i.icon.google.plus:before { - content: "\f2b3"; -} - -i.icon.google.wallet:before { - content: "\f1ee"; -} - -i.icon.google:before { - content: "\f1a0"; -} - -i.icon.gratipay:before { - content: "\f184"; -} - -i.icon.grav:before { - content: "\f2d6"; -} - -i.icon.gripfire:before { - content: "\f3ac"; -} - -i.icon.grunt:before { - content: "\f3ad"; -} - -i.icon.gulp:before { - content: "\f3ae"; -} - -i.icon.hacker.news.square:before { - content: "\f3af"; -} - -i.icon.hacker.news:before { - content: "\f1d4"; -} - -i.icon.hips:before { - content: "\f452"; -} - -i.icon.hire.a.helper:before { - content: "\f3b0"; -} - -i.icon.hooli:before { - content: "\f427"; -} - -i.icon.hotjar:before { - content: "\f3b1"; -} - -i.icon.houzz:before { - content: "\f27c"; -} - -i.icon.html5:before { - content: "\f13b"; -} - -i.icon.hubspot:before { - content: "\f3b2"; -} - -i.icon.imdb:before { - content: "\f2d8"; -} - -i.icon.instagram:before { - content: "\f16d"; -} - -i.icon.internet.explorer:before { - content: "\f26b"; -} - -i.icon.ioxhost:before { - content: "\f208"; -} - -i.icon.itunes.note:before { - content: "\f3b5"; -} - -i.icon.itunes:before { - content: "\f3b4"; -} - -i.icon.jenkins:before { - content: "\f3b6"; -} - -i.icon.joget:before { - content: "\f3b7"; -} - -i.icon.joomla:before { - content: "\f1aa"; -} - -i.icon.js.square:before { - content: "\f3b9"; -} - -i.icon.js:before { - content: "\f3b8"; -} - -i.icon.jsfiddle:before { - content: "\f1cc"; -} - -i.icon.keycdn:before { - content: "\f3ba"; -} - -i.icon.kickstarter.k:before { - content: "\f3bc"; -} - -i.icon.kickstarter:before { - content: "\f3bb"; -} - -i.icon.korvue:before { - content: "\f42f"; -} - -i.icon.laravel:before { - content: "\f3bd"; -} - -i.icon.lastfm.square:before { - content: "\f203"; -} - -i.icon.lastfm:before { - content: "\f202"; -} - -i.icon.leanpub:before { - content: "\f212"; -} - -i.icon.less:before { - content: "\f41d"; -} - -i.icon.line:before { - content: "\f3c0"; -} - -i.icon.linkedin.in:before { - content: "\f0e1"; -} - -i.icon.linkedin:before { - content: "\f08c"; -} - -i.icon.linode:before { - content: "\f2b8"; -} - -i.icon.linux:before { - content: "\f17c"; -} - -i.icon.lyft:before { - content: "\f3c3"; -} - -i.icon.magento:before { - content: "\f3c4"; -} - -i.icon.maxcdn:before { - content: "\f136"; -} - -i.icon.medapps:before { - content: "\f3c6"; -} - -i.icon.medium.m:before { - content: "\f3c7"; -} - -i.icon.medium:before { - content: "\f23a"; -} - -i.icon.medrt:before { - content: "\f3c8"; -} - -i.icon.meetup:before { - content: "\f2e0"; -} - -i.icon.microsoft:before { - content: "\f3ca"; -} - -i.icon.mix:before { - content: "\f3cb"; -} - -i.icon.mixcloud:before { - content: "\f289"; -} - -i.icon.mizuni:before { - content: "\f3cc"; -} - -i.icon.modx:before { - content: "\f285"; -} - -i.icon.monero:before { - content: "\f3d0"; -} - -i.icon.napster:before { - content: "\f3d2"; -} - -i.icon.nintendo.switch:before { - content: "\f418"; -} - -i.icon.node.js:before { - content: "\f3d3"; -} - -i.icon.node:before { - content: "\f419"; -} - -i.icon.npm:before { - content: "\f3d4"; -} - -i.icon.ns8:before { - content: "\f3d5"; -} - -i.icon.nutritionix:before { - content: "\f3d6"; -} - -i.icon.odnoklassniki.square:before { - content: "\f264"; -} - -i.icon.odnoklassniki:before { - content: "\f263"; -} - -i.icon.opencart:before { - content: "\f23d"; -} - -i.icon.openid:before { - content: "\f19b"; -} - -i.icon.opera:before { - content: "\f26a"; -} - -i.icon.optin.monster:before { - content: "\f23c"; -} - -i.icon.osi:before { - content: "\f41a"; -} - -i.icon.page4:before { - content: "\f3d7"; -} - -i.icon.pagelines:before { - content: "\f18c"; -} - -i.icon.palfed:before { - content: "\f3d8"; -} - -i.icon.patreon:before { - content: "\f3d9"; -} - -i.icon.paypal:before { - content: "\f1ed"; -} - -i.icon.periscope:before { - content: "\f3da"; -} - -i.icon.phabricator:before { - content: "\f3db"; -} - -i.icon.phoenix.framework:before { - content: "\f3dc"; -} - -i.icon.php:before { - content: "\f457"; -} - -i.icon.pied.piper.alternate:before { - content: "\f1a8"; -} - -i.icon.pied.piper.pp:before { - content: "\f1a7"; -} - -i.icon.pied.piper:before { - content: "\f2ae"; -} - -i.icon.pinterest.p:before { - content: "\f231"; -} - -i.icon.pinterest.square:before { - content: "\f0d3"; -} - -i.icon.pinterest:before { - content: "\f0d2"; -} - -i.icon.playstation:before { - content: "\f3df"; -} - -i.icon.product.hunt:before { - content: "\f288"; -} - -i.icon.pushed:before { - content: "\f3e1"; -} - -i.icon.python:before { - content: "\f3e2"; -} - -i.icon.qq:before { - content: "\f1d6"; -} - -i.icon.quinscape:before { - content: "\f459"; -} - -i.icon.quora:before { - content: "\f2c4"; -} - -i.icon.ravelry:before { - content: "\f2d9"; -} - -i.icon.react:before { - content: "\f41b"; -} - -i.icon.rebel:before { - content: "\f1d0"; -} - -i.icon.redriver:before { - content: "\f3e3"; -} - -i.icon.reddit.alien:before { - content: "\f281"; -} - -i.icon.reddit.square:before { - content: "\f1a2"; -} - -i.icon.reddit:before { - content: "\f1a1"; -} - -i.icon.rendact:before { - content: "\f3e4"; -} - -i.icon.renren:before { - content: "\f18b"; -} - -i.icon.replyd:before { - content: "\f3e6"; -} - -i.icon.resolving:before { - content: "\f3e7"; -} - -i.icon.rocketchat:before { - content: "\f3e8"; -} - -i.icon.rockrms:before { - content: "\f3e9"; -} - -i.icon.safari:before { - content: "\f267"; -} - -i.icon.sass:before { - content: "\f41e"; -} - -i.icon.schlix:before { - content: "\f3ea"; -} - -i.icon.scribd:before { - content: "\f28a"; -} - -i.icon.searchengin:before { - content: "\f3eb"; -} - -i.icon.sellcast:before { - content: "\f2da"; -} - -i.icon.sellsy:before { - content: "\f213"; -} - -i.icon.servicestack:before { - content: "\f3ec"; -} - -i.icon.shirtsinbulk:before { - content: "\f214"; -} - -i.icon.simplybuilt:before { - content: "\f215"; -} - -i.icon.sistrix:before { - content: "\f3ee"; -} - -i.icon.skyatlas:before { - content: "\f216"; -} - -i.icon.skype:before { - content: "\f17e"; -} - -i.icon.slack.hash:before { - content: "\f3ef"; -} - -i.icon.slack:before { - content: "\f198"; -} - -i.icon.slideshare:before { - content: "\f1e7"; -} - -i.icon.snapchat.ghost:before { - content: "\f2ac"; -} - -i.icon.snapchat.square:before { - content: "\f2ad"; -} - -i.icon.snapchat:before { - content: "\f2ab"; -} - -i.icon.soundcloud:before { - content: "\f1be"; -} - -i.icon.speakap:before { - content: "\f3f3"; -} - -i.icon.spotify:before { - content: "\f1bc"; -} - -i.icon.stack.exchange:before { - content: "\f18d"; -} - -i.icon.stack.overflow:before { - content: "\f16c"; -} - -i.icon.staylinked:before { - content: "\f3f5"; -} - -i.icon.steam.square:before { - content: "\f1b7"; -} - -i.icon.steam.symbol:before { - content: "\f3f6"; -} - -i.icon.steam:before { - content: "\f1b6"; -} - -i.icon.sticker.mule:before { - content: "\f3f7"; -} - -i.icon.strava:before { - content: "\f428"; -} - -i.icon.stripe.s:before { - content: "\f42a"; -} - -i.icon.stripe:before { - content: "\f429"; -} - -i.icon.studiovinari:before { - content: "\f3f8"; -} - -i.icon.stumbleupon.circle:before { - content: "\f1a3"; -} - -i.icon.stumbleupon:before { - content: "\f1a4"; -} - -i.icon.superpowers:before { - content: "\f2dd"; -} - -i.icon.supple:before { - content: "\f3f9"; -} - -i.icon.telegram.plane:before { - content: "\f3fe"; -} - -i.icon.telegram:before { - content: "\f2c6"; -} - -i.icon.tencent.weibo:before { - content: "\f1d5"; -} - -i.icon.themeisle:before { - content: "\f2b2"; -} - -i.icon.trello:before { - content: "\f181"; -} - -i.icon.tripadvisor:before { - content: "\f262"; -} - -i.icon.tumblr.square:before { - content: "\f174"; -} - -i.icon.tumblr:before { - content: "\f173"; -} - -i.icon.twitch:before { - content: "\f1e8"; -} - -i.icon.twitter.square:before { - content: "\f081"; -} - -i.icon.twitter:before { - content: "\f099"; -} - -i.icon.typo3:before { - content: "\f42b"; -} - -i.icon.uber:before { - content: "\f402"; -} - -i.icon.uikit:before { - content: "\f403"; -} - -i.icon.uniregistry:before { - content: "\f404"; -} - -i.icon.untappd:before { - content: "\f405"; -} - -i.icon.usb:before { - content: "\f287"; -} - -i.icon.ussunnah:before { - content: "\f407"; -} - -i.icon.vaadin:before { - content: "\f408"; -} - -i.icon.viacoin:before { - content: "\f237"; -} - -i.icon.viadeo.square:before { - content: "\f2aa"; -} - -i.icon.viadeo:before { - content: "\f2a9"; -} - -i.icon.viber:before { - content: "\f409"; -} - -i.icon.vimeo.square:before { - content: "\f194"; -} - -i.icon.vimeo.v:before { - content: "\f27d"; -} - -i.icon.vimeo:before { - content: "\f40a"; -} - -i.icon.vine:before { - content: "\f1ca"; -} - -i.icon.vk:before { - content: "\f189"; -} - -i.icon.vnv:before { - content: "\f40b"; -} - -i.icon.vuejs:before { - content: "\f41f"; -} - -i.icon.weibo:before { - content: "\f18a"; -} - -i.icon.weixin:before { - content: "\f1d7"; -} - -i.icon.whatsapp.square:before { - content: "\f40c"; -} - -i.icon.whatsapp:before { - content: "\f232"; -} - -i.icon.whmcs:before { - content: "\f40d"; -} - -i.icon.wikipedia.w:before { - content: "\f266"; -} - -i.icon.windows:before { - content: "\f17a"; -} - -i.icon.wordpress.simple:before { - content: "\f411"; -} - -i.icon.wordpress:before { - content: "\f19a"; -} - -i.icon.wpbeginner:before { - content: "\f297"; -} - -i.icon.wpexplorer:before { - content: "\f2de"; -} - -i.icon.wpforms:before { - content: "\f298"; -} - -i.icon.xbox:before { - content: "\f412"; -} - -i.icon.xing.square:before { - content: "\f169"; -} - -i.icon.xing:before { - content: "\f168"; -} - -i.icon.y.combinator:before { - content: "\f23b"; -} - -i.icon.yahoo:before { - content: "\f19e"; -} - -i.icon.yandex.international:before { - content: "\f414"; -} - -i.icon.yandex:before { - content: "\f413"; -} - -i.icon.yelp:before { - content: "\f1e9"; -} - -i.icon.yoast:before { - content: "\f2b1"; -} - -i.icon.youtube.square:before { - content: "\f431"; -} - -i.icon.youtube:before { - content: "\f167"; -} - -/* Aliases */ - -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.add:before { - content: "\f067"; -} - -i.icon.alarm.mute:before { - content: "\f1f6"; -} - -i.icon.alarm:before { - content: "\f0f3"; -} - -i.icon.ald:before { - content: "\f2a2"; -} - -i.icon.als:before { - content: "\f2a2"; -} - -i.icon.american.express.card:before { - content: "\f1f3"; -} - -i.icon.american.express:before { - content: "\f1f3"; -} - -i.icon.amex:before { - content: "\f1f3"; -} - -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.interpreting:before { - content: "\f2a3"; -} - -i.icon.asl: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.chart:before { - content: "\f080"; -} - -i.icon.bar.graph:before { - content: "\f080"; -} - -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.bluetooth.alternative:before { - content: "\f294"; -} - -i.icon.broken.chain:before { - content: "\f127"; -} - -i.icon.browser:before { - content: "\f022"; -} - -i.icon.call.square:before { - content: "\f098"; -} - -i.icon.call:before { - content: "\f095"; -} - -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.circle.notched:before { - content: "\f1ce"; -} - -i.icon.close:before { - content: "\f00d"; -} - -i.icon.cny:before { - content: "\f157"; -} - -i.icon.cocktail:before { - content: "\f000"; -} - -i.icon.commenting:before { - content: "\f27a"; -} - -i.icon.computer:before { - content: "\f108"; -} - -i.icon.configure:before { - content: "\f0ad"; -} - -i.icon.content:before { - content: "\f0c9"; -} - -i.icon.deafness:before { - content: "\f2a4"; -} - -i.icon.delete.calendar:before { - content: "\f273"; -} - -i.icon.delete:before { - content: "\f00d"; -} - -i.icon.detective:before { - content: "\f21b"; -} - -i.icon.diners.club.card:before { - content: "\f24c"; -} - -i.icon.diners.club:before { - content: "\f24c"; -} - -i.icon.discover.card:before { - content: "\f1f2"; -} - -i.icon.discover:before { - content: "\f1f2"; -} - -i.icon.discussions:before { - content: "\f086"; -} - -i.icon.doctor:before { - content: "\f0f0"; -} - -i.icon.dollar:before { - content: "\f155"; -} - -i.icon.dont:before { - content: "\f05e"; -} - -i.icon.dribble:before { - content: "\f17d"; -} - -i.icon.drivers.license:before { - content: "\f2c2"; -} - -i.icon.dropdown:before { - content: "\f0d7"; -} - -i.icon.eercast:before { - content: "\f2da"; -} - -i.icon.emergency:before { - content: "\f0f9"; -} - -i.icon.envira.gallery:before { - content: "\f299"; -} - -i.icon.erase:before { - content: "\f12d"; -} - -i.icon.eur:before { - content: "\f153"; -} - -i.icon.euro:before { - content: "\f153"; -} - -i.icon.eyedropper:before { - content: "\f1fb"; -} - -i.icon.fa:before { - content: "\f2b4"; -} - -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.five.hundred.pixels:before { - content: "\f26e"; -} - -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.gittip:before { - content: "\f184"; -} - -i.icon.google.plus.circle:before { - content: "\f2b3"; -} - -i.icon.google.plus.official:before { - content: "\f2b3"; -} - -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.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.help.circle:before { - content: "\f059"; -} - -i.icon.help:before { - content: "\f128"; -} - -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.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.japan.credit.bureau.card:before { - content: "\f24b"; -} - -i.icon.japan.credit.bureau:before { - content: "\f24b"; -} - -i.icon.jcb:before { - content: "\f24b"; -} - -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.lightning:before { - content: "\f0e7"; -} - -i.icon.like:before { - content: "\f004"; -} - -i.icon.line.chart:before { - content: "\f201"; -} - -i.icon.line.graph:before { - content: "\f201"; -} - -i.icon.linkedin.square:before { - content: "\f08c"; -} - -i.icon.linkify:before { - content: "\f0c1"; -} - -i.icon.lira:before { - content: "\f195"; -} - -i.icon.list.layout:before { - content: "\f00b"; -} - -i.icon.magnify:before { - content: "\f00e"; -} - -i.icon.mail.forward:before { - content: "\f064"; -} - -i.icon.mail.square:before { - content: "\f199"; -} - -i.icon.mail:before { - content: "\f0e0"; -} - -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.mastercard.card:before { - content: "\f1f1"; -} - -i.icon.mastercard:before { - content: "\f1f1"; -} - -i.icon.maximize:before { - content: "\f0b2"; -} - -i.icon.microsoft.edge:before { - content: "\f282"; -} - -i.icon.military:before { - content: "\f0fb"; -} - -i.icon.minimize:before { - content: "\f066"; -} - -i.icon.ms.edge:before { - content: "\f282"; -} - -i.icon.mute:before { - content: "\f131"; -} - -i.icon.new.pied.piper:before { - content: "\f2ae"; -} - -i.icon.non.binary.transgender:before { - content: "\f223"; -} - -i.icon.numbered.list:before { - content: "\f0cb"; -} - -i.icon.optinmonster:before { - content: "\f23c"; -} - -i.icon.options:before { - content: "\f1de"; -} - -i.icon.other.gender.horizontal:before { - content: "\f22b"; -} - -i.icon.other.gender.vertical:before { - content: "\f22a"; -} - -i.icon.other.gender:before { - content: "\f229"; -} - -i.icon.payment:before { - content: "\f09d"; -} - -i.icon.paypal.card:before { - content: "\f1f4"; -} - -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.pied.piper.hat:before { - content: "\f2ae"; -} - -i.icon.pin:before { - content: "\f08d"; -} - -i.icon.plus.cart:before { - content: "\f217"; -} - -i.icon.pocket:before { - content: "\f265"; -} - -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.cord:before { - content: "\f1e6"; -} - -i.icon.power:before { - content: "\f011"; -} - -i.icon.privacy:before { - content: "\f084"; -} - -i.icon.r.circle:before { - content: "\f25d"; -} - -i.icon.rain:before { - content: "\f0e9"; -} - -i.icon.record:before { - content: "\f03d"; -} - -i.icon.refresh:before { - content: "\f021"; -} - -i.icon.remove.circle:before { - content: "\f057"; -} - -i.icon.remove.from.calendar:before { - content: "\f272"; -} - -i.icon.remove.user:before { - content: "\f235"; -} - -i.icon.remove:before { - content: "\f00d"; -} - -i.icon.repeat:before { - content: "\f01e"; -} - -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.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.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.spy:before { - content: "\f21b"; -} - -i.icon.stripe.card:before { - content: "\f1f5"; -} - -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.isle:before { - content: "\f2b2"; -} - -i.icon.theme:before { - content: "\f043"; -} - -i.icon.thermometer:before { - content: "\f2c7"; -} - -i.icon.thumb.tack:before { - content: "\f08d"; -} - -i.icon.time:before { - content: "\f017"; -} - -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.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.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.visa.card:before { - content: "\f1f0"; -} - -i.icon.visa:before { - content: "\f1f0"; -} - -i.icon.volume.control.phone:before { - content: "\f2a0"; -} - -i.icon.wait:before { - content: "\f017"; -} - -i.icon.warning.circle:before { - content: "\f06a"; -} - -i.icon.warning.sign:before { - content: "\f071"; -} - -i.icon.warning:before { - content: "\f12a"; -} - -i.icon.wechat:before { - content: "\f1d7"; -} - -i.icon.wi-fi:before { - content: "\f1eb"; -} - -i.icon.wikipedia:before { - content: "\f266"; -} - -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.wordpress.beginner:before { - content: "\f297"; -} - -i.icon.wordpress.forms:before { - content: "\f298"; -} - -i.icon.world:before { - content: "\f0ac"; -} - -i.icon.write.square:before { - content: "\f14b"; -} - -i.icon.x:before { - content: "\f00d"; -} - -i.icon.yc:before { - content: "\f23b"; -} - -i.icon.ycombinator:before { - content: "\f23b"; -} - -i.icon.yen:before { - content: "\f157"; -} - -i.icon.zip:before { - content: "\f187"; -} - -i.icon.zoom.in:before { - content: "\f00e"; -} - -i.icon.zoom.out:before { - content: "\f010"; -} - -i.icon.zoom:before { - content: "\f00e"; -} - -/* - Icons which where removed in FontAwesome 5 - (Added the classes but pointed them to another icon which matches or is similar for compatibility reasons) -*/ - -i.icon.bitbucket.square:before { - content: "\f171"; -} - -i.icon.checkmark.box:before { - content: "\f14a"; -} - -i.icon.circle.thin:before { - content: "\f111"; -} - -i.icon.cloud.download:before { - content: "\f381"; -} - -i.icon.cloud.upload:before { - content: "\f382"; -} - -i.icon.compose:before { - content: "\f303"; -} - -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.diamond:before { - content: "\f3a5"; -} - -i.icon.disk.outline:before { - content: "\f369"; -} - -i.icon.disk:before { - content: "\f0a0"; -} - -i.icon.exchange:before { - content: "\f362"; -} - -i.icon.external.share:before { - content: "\f14d"; -} - -i.icon.external.square:before { - content: "\f360"; -} - -i.icon.external:before { - content: "\f35d"; -} - -i.icon.facebook.official:before { - content: "\f082"; -} - -i.icon.food:before { - content: "\f2e7"; -} - -i.icon.heart.empty:before { - content: "\f004"; -} - -i.icon.hourglass.zero:before { - content: "\f253"; -} - -i.icon.level.down:before { - content: "\f3be"; -} - -i.icon.level.up:before { - content: "\f3bf"; -} - -i.icon.log.out:before { - content: "\f2f5"; -} - -i.icon.meanpath:before { - content: "\f0c8"; -} - -i.icon.money:before { - content: "\f3d1"; -} - -i.icon.move:before { - content: "\f0b2"; -} - -i.icon.pencil:before { - content: "\f303"; -} - -i.icon.protect:before { - content: "\f023"; -} - -i.icon.radio:before { - content: "\f192"; -} - -i.icon.remove.bookmark:before { - content: "\f02e"; -} - -i.icon.resize.horizontal:before { - content: "\f337"; -} - -i.icon.resize.vertical:before { - content: "\f338"; -} - -i.icon.sign.in:before { - content: "\f2f6"; -} - -i.icon.sign.out:before { - content: "\f2f5"; -} - -i.icon.spoon:before { - content: "\f2e5"; -} - -i.icon.star.empty:before { - content: "\f089"; -} - -i.icon.star.half.empty:before { - content: "\f089"; -} - -i.icon.star.half.full:before { - content: "\f089"; -} - -i.icon.ticket:before { - content: "\f3ff"; -} - -i.icon.times.rectangle:before { - content: "\f410"; -} - -i.icon.write:before { - content: "\f303"; -} - -i.icon.youtube.play:before { - content: "\f167"; -} - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Image -* http://github.com/semantic-org/semantic-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.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: 0em; -} - -.ui[class*="right spaced"].image { - margin-left: 0em; - 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: 0em; - margin-bottom: 1em; - margin-left: 1em; -} - -.ui.floated.images:last-child, -.ui.floated.image:last-child { - margin-bottom: 0em; -} - -.ui.centered.images, -.ui.centered.image { - margin-left: auto; - margin-right: auto; -} - -/*-------------- - Sizes ----------------*/ - -.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.medium.images .image, -.ui.medium.images img, -.ui.medium.images svg, -.ui.medium.image { - width: 300px; - height: auto; - font-size: 1rem; -} - -.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: 0em; - margin: 0em -0.25rem 0rem; -} - -.ui.images .image, -.ui.images img, -.ui.images svg { - display: inline-block; - margin: 0em 0.25rem 0.5rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Input -* http://github.com/semantic-org/semantic-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: 0em; - 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 0em 0em -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 0em 0em -0.64285714em; - width: 1.28571429em; - height: 1.28571429em; - -webkit-animation: button-spin 0.6s linear; - animation: button-spin 0.6s linear; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; - border-radius: 500rem; - border-color: #767676 transparent transparent; - border-style: solid; - border-width: 0.2em; - -webkit-box-shadow: 0px 0px 0px 1px transparent; - box-shadow: 0px 0px 0px 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); -} - -/*-------------------- - Error ----------------------*/ - -.ui.input.error > input { - background-color: #FFF6F6; - border-color: #E0B4B4; - color: #9F3A38; - -webkit-box-shadow: none; - box-shadow: none; -} - -/* Error 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 !important; -} - -/* Focused Error 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 !important; -} - -/******************************* - Variations -*******************************/ - -/*-------------------- - Transparent ----------------------*/ - -.ui.transparent.input > input { - border-color: transparent !important; - background-color: transparent !important; - padding: 0em !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; - border-radius: 0px !important; -} - -/* Transparent Icon */ - -.ui.transparent.icon.input > i.icon { - width: 1.1em; -} - -.ui.transparent.icon.input > input { - padding-left: 0em !important; - padding-right: 2em !important; -} - -.ui.transparent[class*="left icon"].input > input { - padding-left: 2em !important; - padding-right: 0em !important; -} - -/* Transparent Inverted */ - -.ui.transparent.inverted.input { - color: #FFFFFF; -} - -.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: 0px; - right: 0px; - margin: 0em; - height: 100%; - width: 2.67142857em; - opacity: 0.5; - border-radius: 0em 0.28571429rem 0.28571429rem 0em; - -webkit-transition: opacity 0.3s ease; - transition: opacity 0.3s ease; -} - -.ui.icon.input > i.icon:not(.link) { - pointer-events: none; -} - -.ui.icon.input > input { - padding-right: 2.67142857em !important; -} - -.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 0em 0em 0.28571429rem; -} - -.ui[class*="left icon"].input > i.circular.icon { - right: auto; - left: 0.5em; -} - -.ui[class*="left icon"].input > input { - padding-left: 2.67142857em !important; - padding-right: 1em !important; -} - -/* Focus */ - -.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: 0px; - border-bottom-right-radius: 0px; -} - -.ui.labeled.input:not([class*="corner labeled"]) .label:first-child + input { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; - 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: 0px !important; - border-bottom-right-radius: 0px !important; - border-right-color: transparent !important; -} - -.ui[class*="right labeled"].input > input + .label { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; -} - -.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: 0em 0.28571429rem 0em 0em; -} - -/* Spacing with corner label */ - -.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"]) > 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 > input { - padding-left: 2.5em !important; -} - -.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; -} - -/* Corner Label Position */ - -.ui.input > .ui.corner.label { - top: 1px; - right: 1px; -} - -.ui.input > .ui.left.corner.label { - right: auto; - left: 1px; -} - -/*-------------------- - 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; -} - -/* Button on Right */ - -.ui.action.input:not([class*="left action"]) > input { - border-top-right-radius: 0px !important; - border-bottom-right-radius: 0px !important; - border-right-color: transparent !important; -} - -.ui.action.input:not([class*="left action"]) > .dropdown:not(:first-child), -.ui.action.input:not([class*="left action"]) > .button:not(:first-child), -.ui.action.input:not([class*="left action"]) > .buttons:not(:first-child) > .button { - border-radius: 0px; -} - -.ui.action.input:not([class*="left action"]) > .dropdown:last-child, -.ui.action.input:not([class*="left action"]) > .button:last-child, -.ui.action.input:not([class*="left action"]) > .buttons:last-child > .button { - border-radius: 0px 0.28571429rem 0.28571429rem 0px; -} - -/* Input Focus */ - -.ui.action.input:not([class*="left action"]) > input:focus { - border-right-color: #85B7D9 !important; -} - -/* Button on Left */ - -.ui[class*="left action"].input > input { - border-top-left-radius: 0px !important; - border-bottom-left-radius: 0px !important; - border-left-color: transparent !important; -} - -.ui[class*="left action"].input > .dropdown, -.ui[class*="left action"].input > .button, -.ui[class*="left action"].input > .buttons > .button { - border-radius: 0px; -} - -.ui[class*="left action"].input > .dropdown:first-child, -.ui[class*="left action"].input > .button:first-child, -.ui[class*="left action"].input > .buttons:first-child > .button { - border-radius: 0.28571429rem 0px 0px 0.28571429rem; -} - -/* Input Focus */ - -.ui[class*="left action"].input > input:focus { - border-left-color: #85B7D9 !important; -} - -/*-------------------- - 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: 0px !important; -} - -/*-------------------- - Size ----------------------*/ - -.ui.mini.input { - font-size: 0.78571429em; -} - -.ui.small.input { - font-size: 0.92857143em; -} - -.ui.input { - font-size: 1em; -} - -.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 -*******************************/ -/*! -* # Semantic UI 2.3.0 - Label -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Label -*******************************/ - -.ui.label { - display: inline-block; - line-height: 1; - vertical-align: baseline; - margin: 0em 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: 0px solid transparent; - border-radius: 0.28571429rem; - -webkit-transition: background 0.1s ease; - transition: background 0.1s ease; -} - -.ui.label:first-child { - margin-left: 0em; -} - -.ui.label:last-child { - margin-right: 0em; -} - -/* 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 !important; -} - -/* Icon */ - -.ui.label > .icon { - width: auto; - margin: 0em 0.75em 0em 0em; -} - -/* Detail */ - -.ui.label > .detail { - display: inline-block; - vertical-align: top; - font-weight: bold; - margin-left: 1em; - opacity: 0.8; -} - -.ui.label > .detail .icon { - margin: 0em 0.25em 0em 0em; -} - -/* Removable label */ - -.ui.label > .close.icon, -.ui.label > .delete.icon { - cursor: pointer; - margin-right: 0em; - margin-left: 0.5em; - font-size: 0.92857143em; - opacity: 0.5; - -webkit-transition: background 0.1s ease; - transition: background 0.1s ease; -} - -.ui.label > .delete.icon:hover { - opacity: 1; -} - -/*------------------- - Group ---------------------*/ - -.ui.labels > .label { - margin: 0em 0.5em 0.5em 0em; -} - -/*------------------- - 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:first-child + :not(.attached), -.ui.top.attached.label + [class*="right floated"] + * { - margin-top: 2rem !important; -} - -.ui.bottom.attached.label:first-child ~ :last-child:not(.attached) { - margin-top: 0em; - margin-bottom: 2rem !important; -} - -/******************************* - Types -*******************************/ - -.ui.image.label { - width: auto !important; - margin-top: 0em; - margin-bottom: 0em; - 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 0em 0em 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: 0em 0.28571429rem 0.28571429rem 0em; -} - -/*------------------- - Tag ---------------------*/ - -.ui.tag.labels .label, -.ui.tag.label { - margin-left: 1em; - position: relative; - padding-left: 1.5em; - padding-right: 1.5em; - border-radius: 0em 0.28571429rem 0.28571429rem 0em; - -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 !important; - 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; -} - -/*------------------- - Corner Label ---------------------*/ - -.ui.corner.label { - position: absolute; - top: 0em; - right: 0em; - margin: 0em; - padding: 0em; - 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: 0em; - top: 0em; - z-index: -1; - width: 0em; - height: 0em; - background-color: transparent !important; - border-top: 0em solid transparent; - border-right: 4em solid transparent; - border-bottom: 4em solid transparent; - border-left: 0em solid transparent; - border-right-color: inherit; - -webkit-transition: border-color 0.1s ease; - transition: border-color 0.1s ease; -} - -.ui.corner.label .icon { - cursor: default; - position: relative; - top: 0.64285714em; - left: 0.78571429em; - font-size: 1.14285714em; - margin: 0em; -} - -/* Left Corner */ - -.ui.left.corner.label, -.ui.left.corner.label:after { - right: auto; - left: 0em; -} - -.ui.left.corner.label:after { - border-top: 4em solid transparent; - border-right: 4em solid transparent; - border-bottom: 0em solid transparent; - border-left: 0em solid transparent; - border-top-color: inherit; -} - -.ui.left.corner.label .icon { - left: -0.78571429em; -} - -/* 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: 0em; - min-width: -webkit-max-content; - min-width: -moz-max-content; - min-width: max-content; - border-radius: 0em 0.28571429rem 0.28571429rem 0em; - border-color: rgba(0, 0, 0, 0.15); -} - -.ui.ribbon.label:after { - position: absolute; - content: ''; - top: 100%; - left: 0%; - background-color: transparent !important; - border-style: solid; - border-width: 0em 1.2em 1.2em 0em; - border-color: transparent; - border-right-color: inherit; - width: 0em; - height: 0em; -} - -/* 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 ); -} - -/* Right Ribbon */ - -.ui[class*="right ribbon"].label { - text-align: left; - -webkit-transform: translateX(-100%); - transform: translateX(-100%); - border-radius: 0.28571429rem 0em 0em 0.28571429rem; -} - -.ui[class*="right ribbon"].label:after { - left: auto; - right: 0%; - border-style: solid; - border-width: 1.2em 1.2em 0em 0em; - 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( -0.78571429em - 1.2em ); -} - -.ui.table td > .ui[class*="right ribbon"].label { - left: calc(100% + 0.78571429em + 1.2em ); - padding-left: 0.833em; -} - -/*------------------- - Attached ---------------------*/ - -.ui[class*="top attached"].label, -.ui.attached.label { - width: 100%; - position: absolute; - margin: 0em; - top: 0em; - left: 0em; - padding: 0.75em 1em; - border-radius: 0.21428571rem 0.21428571rem 0em 0em; -} - -.ui[class*="bottom attached"].label { - top: auto; - bottom: 0em; - border-radius: 0em 0em 0.21428571rem 0.21428571rem; -} - -.ui[class*="top left attached"].label { - width: auto; - margin-top: 0em !important; - border-radius: 0.21428571rem 0em 0.28571429rem 0em; -} - -.ui[class*="top right attached"].label { - width: auto; - left: auto; - right: 0em; - border-radius: 0em 0.21428571rem 0em 0.28571429rem; -} - -.ui[class*="bottom left attached"].label { - width: auto; - top: auto; - bottom: 0em; - border-radius: 0em 0.28571429rem 0em 0.21428571rem; -} - -.ui[class*="bottom right attached"].label { - top: auto; - bottom: 0em; - left: auto; - right: 0em; - width: auto; - border-radius: 0.28571429rem 0em 0.21428571rem 0em; -} - -/******************************* - States -*******************************/ - -/*------------------- - Disabled ---------------------*/ - -.ui.label.disabled { - opacity: 0.5; -} - -/*------------------- - Hover ---------------------*/ - -a.ui.labels .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 ---------------------*/ - -a.ui.labels .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:ActiveHover:before, -a.ui.active.label:ActiveHover: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 -*******************************/ - -/*------------------- - Colors ---------------------*/ - -/*--- Red ---*/ - -.ui.red.labels .label, -.ui.red.label { - background-color: #DB2828 !important; - border-color: #DB2828 !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.red.labels .label:hover, -a.ui.red.label:hover { - background-color: #d01919 !important; - border-color: #d01919 !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.red.corner.label, -.ui.red.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.red.ribbon.label { - border-color: #b21e1e !important; -} - -/* Basic */ - -.ui.basic.red.label { - background-color: #FFFFFF !important; - color: #DB2828 !important; - border-color: #DB2828 !important; -} - -.ui.basic.red.labels a.label:hover, -a.ui.basic.red.label:hover { - background-color: #FFFFFF !important; - color: #d01919 !important; - border-color: #d01919 !important; -} - -/*--- Orange ---*/ - -.ui.orange.labels .label, -.ui.orange.label { - background-color: #F2711C !important; - border-color: #F2711C !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.orange.labels .label:hover, -a.ui.orange.label:hover { - background-color: #f26202 !important; - border-color: #f26202 !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.orange.corner.label, -.ui.orange.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.orange.ribbon.label { - border-color: #cf590c !important; -} - -/* Basic */ - -.ui.basic.orange.label { - background-color: #FFFFFF !important; - color: #F2711C !important; - border-color: #F2711C !important; -} - -.ui.basic.orange.labels a.label:hover, -a.ui.basic.orange.label:hover { - background-color: #FFFFFF !important; - color: #f26202 !important; - border-color: #f26202 !important; -} - -/*--- Yellow ---*/ - -.ui.yellow.labels .label, -.ui.yellow.label { - background-color: #FBBD08 !important; - border-color: #FBBD08 !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.yellow.labels .label:hover, -a.ui.yellow.label:hover { - background-color: #eaae00 !important; - border-color: #eaae00 !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.yellow.corner.label, -.ui.yellow.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.yellow.ribbon.label { - border-color: #cd9903 !important; -} - -/* Basic */ - -.ui.basic.yellow.label { - background-color: #FFFFFF !important; - color: #FBBD08 !important; - border-color: #FBBD08 !important; -} - -.ui.basic.yellow.labels a.label:hover, -a.ui.basic.yellow.label:hover { - background-color: #FFFFFF !important; - color: #eaae00 !important; - border-color: #eaae00 !important; -} - -/*--- Olive ---*/ - -.ui.olive.labels .label, -.ui.olive.label { - background-color: #B5CC18 !important; - border-color: #B5CC18 !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.olive.labels .label:hover, -a.ui.olive.label:hover { - background-color: #a7bd0d !important; - border-color: #a7bd0d !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.olive.corner.label, -.ui.olive.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.olive.ribbon.label { - border-color: #198f35 !important; -} - -/* Basic */ - -.ui.basic.olive.label { - background-color: #FFFFFF !important; - color: #B5CC18 !important; - border-color: #B5CC18 !important; -} - -.ui.basic.olive.labels a.label:hover, -a.ui.basic.olive.label:hover { - background-color: #FFFFFF !important; - color: #a7bd0d !important; - border-color: #a7bd0d !important; -} - -/*--- Green ---*/ - -.ui.green.labels .label, -.ui.green.label { - background-color: #21BA45 !important; - border-color: #21BA45 !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.green.labels .label:hover, -a.ui.green.label:hover { - background-color: #16ab39 !important; - border-color: #16ab39 !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.green.corner.label, -.ui.green.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.green.ribbon.label { - border-color: #198f35 !important; -} - -/* Basic */ - -.ui.basic.green.label { - background-color: #FFFFFF !important; - color: #21BA45 !important; - border-color: #21BA45 !important; -} - -.ui.basic.green.labels a.label:hover, -a.ui.basic.green.label:hover { - background-color: #FFFFFF !important; - color: #16ab39 !important; - border-color: #16ab39 !important; -} - -/*--- Teal ---*/ - -.ui.teal.labels .label, -.ui.teal.label { - background-color: #00B5AD !important; - border-color: #00B5AD !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.teal.labels .label:hover, -a.ui.teal.label:hover { - background-color: #009c95 !important; - border-color: #009c95 !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.teal.corner.label, -.ui.teal.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.teal.ribbon.label { - border-color: #00827c !important; -} - -/* Basic */ - -.ui.basic.teal.label { - background-color: #FFFFFF !important; - color: #00B5AD !important; - border-color: #00B5AD !important; -} - -.ui.basic.teal.labels a.label:hover, -a.ui.basic.teal.label:hover { - background-color: #FFFFFF !important; - color: #009c95 !important; - border-color: #009c95 !important; -} - -/*--- Blue ---*/ - -.ui.blue.labels .label, -.ui.blue.label { - background-color: #2185D0 !important; - border-color: #2185D0 !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.blue.labels .label:hover, -a.ui.blue.label:hover { - background-color: #1678c2 !important; - border-color: #1678c2 !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.blue.corner.label, -.ui.blue.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.blue.ribbon.label { - border-color: #1a69a4 !important; -} - -/* Basic */ - -.ui.basic.blue.label { - background-color: #FFFFFF !important; - color: #2185D0 !important; - border-color: #2185D0 !important; -} - -.ui.basic.blue.labels a.label:hover, -a.ui.basic.blue.label:hover { - background-color: #FFFFFF !important; - color: #1678c2 !important; - border-color: #1678c2 !important; -} - -/*--- Violet ---*/ - -.ui.violet.labels .label, -.ui.violet.label { - background-color: #6435C9 !important; - border-color: #6435C9 !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.violet.labels .label:hover, -a.ui.violet.label:hover { - background-color: #5829bb !important; - border-color: #5829bb !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.violet.corner.label, -.ui.violet.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.violet.ribbon.label { - border-color: #502aa1 !important; -} - -/* Basic */ - -.ui.basic.violet.label { - background-color: #FFFFFF !important; - color: #6435C9 !important; - border-color: #6435C9 !important; -} - -.ui.basic.violet.labels a.label:hover, -a.ui.basic.violet.label:hover { - background-color: #FFFFFF !important; - color: #5829bb !important; - border-color: #5829bb !important; -} - -/*--- Purple ---*/ - -.ui.purple.labels .label, -.ui.purple.label { - background-color: #A333C8 !important; - border-color: #A333C8 !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.purple.labels .label:hover, -a.ui.purple.label:hover { - background-color: #9627ba !important; - border-color: #9627ba !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.purple.corner.label, -.ui.purple.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.purple.ribbon.label { - border-color: #82299f !important; -} - -/* Basic */ - -.ui.basic.purple.label { - background-color: #FFFFFF !important; - color: #A333C8 !important; - border-color: #A333C8 !important; -} - -.ui.basic.purple.labels a.label:hover, -a.ui.basic.purple.label:hover { - background-color: #FFFFFF !important; - color: #9627ba !important; - border-color: #9627ba !important; -} - -/*--- Pink ---*/ - -.ui.pink.labels .label, -.ui.pink.label { - background-color: #E03997 !important; - border-color: #E03997 !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.pink.labels .label:hover, -a.ui.pink.label:hover { - background-color: #e61a8d !important; - border-color: #e61a8d !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.pink.corner.label, -.ui.pink.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.pink.ribbon.label { - border-color: #c71f7e !important; -} - -/* Basic */ - -.ui.basic.pink.label { - background-color: #FFFFFF !important; - color: #E03997 !important; - border-color: #E03997 !important; -} - -.ui.basic.pink.labels a.label:hover, -a.ui.basic.pink.label:hover { - background-color: #FFFFFF !important; - color: #e61a8d !important; - border-color: #e61a8d !important; -} - -/*--- Brown ---*/ - -.ui.brown.labels .label, -.ui.brown.label { - background-color: #A5673F !important; - border-color: #A5673F !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.brown.labels .label:hover, -a.ui.brown.label:hover { - background-color: #975b33 !important; - border-color: #975b33 !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.brown.corner.label, -.ui.brown.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.brown.ribbon.label { - border-color: #805031 !important; -} - -/* Basic */ - -.ui.basic.brown.label { - background-color: #FFFFFF !important; - color: #A5673F !important; - border-color: #A5673F !important; -} - -.ui.basic.brown.labels a.label:hover, -a.ui.basic.brown.label:hover { - background-color: #FFFFFF !important; - color: #975b33 !important; - border-color: #975b33 !important; -} - -/*--- Grey ---*/ - -.ui.grey.labels .label, -.ui.grey.label { - background-color: #767676 !important; - border-color: #767676 !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.grey.labels .label:hover, -a.ui.grey.label:hover { - background-color: #838383 !important; - border-color: #838383 !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.grey.corner.label, -.ui.grey.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.grey.ribbon.label { - border-color: #805031 !important; -} - -/* Basic */ - -.ui.basic.grey.label { - background-color: #FFFFFF !important; - color: #767676 !important; - border-color: #767676 !important; -} - -.ui.basic.grey.labels a.label:hover, -a.ui.basic.grey.label:hover { - background-color: #FFFFFF !important; - color: #838383 !important; - border-color: #838383 !important; -} - -/*--- Black ---*/ - -.ui.black.labels .label, -.ui.black.label { - background-color: #1B1C1D !important; - border-color: #1B1C1D !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.black.labels .label:hover, -a.ui.black.label:hover { - background-color: #27292a !important; - border-color: #27292a !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.black.corner.label, -.ui.black.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.black.ribbon.label { - border-color: #805031 !important; -} - -/* Basic */ - -.ui.basic.black.label { - background-color: #FFFFFF !important; - color: #1B1C1D !important; - border-color: #1B1C1D !important; -} - -.ui.basic.black.labels a.label:hover, -a.ui.basic.black.label:hover { - background-color: #FFFFFF !important; - color: #27292a !important; - border-color: #27292a !important; -} - -/*------------------- - Basic ---------------------*/ - -.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 */ - -a.ui.basic.label:hover { - text-decoration: none; - background: none #FFFFFF; - color: #1e70bf; - -webkit-box-shadow: 1px solid rgba(34, 36, 38, 0.15); - box-shadow: 1px solid rgba(34, 36, 38, 0.15); - -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) !important; -} - -/*------------------- - Horizontal ---------------------*/ - -.ui.horizontal.labels .label, -.ui.horizontal.label { - margin: 0em 0.5em 0em 0em; - 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: 0em; - min-height: 0em; - 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: none; - 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: background 0.1s ease; - transition: background 0.1s ease; -} - -/*--- 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 0px 0px 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: 0em; - margin-bottom: 1em; -} - -.ui[class*="bottom pointing"].label:before, -.ui[class*="pointing below"].label:before { - border-width: 0px 1px 1px 0px; - 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: 0em; - margin-left: 0.6666em; -} - -.ui[class*="left pointing"].label:before { - border-width: 0px 0px 1px 1px; - -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg); - transform: translateX(-50%) translateY(-50%) rotate(45deg); - bottom: auto; - right: auto; - top: 50%; - left: 0em; -} - -/*--- Right ---*/ - -.ui[class*="right pointing"].label { - margin-top: 0em; - margin-right: 0.6666em; -} - -.ui[class*="right pointing"].label:before { - border-width: 1px 1px 0px 0px; - -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; - left: 100%; - margin: 0em 0em 0em -1.5em !important; -} - -/*------------------- - Sizes ---------------------*/ - -.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.labels .label, -.ui.label { - font-size: 0.85714286rem; -} - -.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 -*******************************/ -/*! -* # Semantic UI 2.3.0 - List -* http://github.com/semantic-org/semantic-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 0em; - padding: 0em 0em; -} - -ul.ui.list:first-child, -ol.ui.list:first-child, -.ui.list:first-child { - margin-top: 0em; - padding-top: 0em; -} - -ul.ui.list:last-child, -ol.ui.list:last-child, -.ui.list:last-child { - margin-bottom: 0em; - padding-bottom: 0em; -} - -/******************************* - 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 0em; - line-height: 1.14285714em; -} - -ul.ui.list > li:first-child:after, -ol.ui.list > li:first-child:after, -.ui.list > .list > .item, -.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: 0em; -} - -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: 0em; -} - -/* Child List */ - -ul.ui.list ul, -ol.ui.list ol, -.ui.list .list { - clear: both; - margin: 0em; - padding: 0.75em 0em 0.25em 0.5em; -} - -/* Child Item */ - -ul.ui.list ul li, -ol.ui.list ol li, -.ui.list .list > .item { - padding: 0.14285714em 0em; - line-height: inherit; -} - -/* Icon */ - -.ui.list .list > .item > i.icon, -.ui.list > .item > i.icon { - display: table-cell; - margin: 0em; - padding-top: 0em; - padding-right: 0.28571429em; - vertical-align: top; - -webkit-transition: color 0.1s ease; - transition: color 0.1s ease; -} - -.ui.list .list > .item > i.icon:only-child, -.ui.list > .item > i.icon:only-child { - display: inline-block; - vertical-align: top; -} - -/* Image */ - -.ui.list .list > .item > .image, -.ui.list > .item > .image { - display: table-cell; - background-color: transparent; - margin: 0em; - 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; -} - -.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; - padding: 0em 0em 0em 0.5em; - vertical-align: top; -} - -.ui.list .list > .item > img.image + .content, -.ui.list > .item > img.image + .content { - display: inline-block; -} - -.ui.list .list > .item > .content > .list, -.ui.list > .item > .content > .list { - margin-left: 0em; - padding-left: 0em; -} - -/* Header */ - -.ui.list .list > .item .header, -.ui.list > .item .header { - display: block; - margin: 0em; - 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.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: 0em 1em 0em 0em; -} - -.ui.list .list > .item [class*="right floated"], -.ui.list > .item [class*="right floated"] { - float: right; - margin: 0em 0em 0em 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 0em; - 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: 0em; -} - -.ui.menu .ui.list .list > .item:last-child, -.ui.menu .ui.list > .item:last-child { - padding-bottom: 0em; -} - -/******************************* - Types -*******************************/ - -/*------------------- - Horizontal ---------------------*/ - -.ui.horizontal.list { - display: inline-block; - font-size: 0em; -} - -.ui.horizontal.list > .item { - display: inline-block; - margin-left: 1em; - font-size: 1rem; -} - -.ui.horizontal.list:not(.celled) > .item:first-child { - margin-left: 0em !important; - padding-left: 0em !important; -} - -.ui.horizontal.list .list { - padding-left: 0em; - padding-bottom: 0em; -} - -.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 { - margin: 0em; - padding: 0em 0.25em 0em 0em; -} - -.ui.horizontal.list > .item > .icon, -.ui.horizontal.list > .item > .icon + .content { - float: none; - 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 .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); -} - -/* 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: 0em; - 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: 0em; -} - -.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, -.ui.inverted.selection.list > .item { - background: transparent; - color: rgba(255, 255, 255, 0.5); -} - -.ui.inverted.selection.list > .item:hover, -.ui.inverted.selection.list > .item:hover { - background: rgba(255, 255, 255, 0.02); - color: #ffffff; -} - -.ui.inverted.selection.list > .item:active, -.ui.inverted.selection.list > .item:active { - background: rgba(255, 255, 255, 0.08); - color: #ffffff; -} - -.ui.inverted.selection.list > .item.active, -.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: 0em; -} - -/*------------------- - 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: 0em; - padding-right: 0em; -} - -.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: '•'; - 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 { - padding-left: 1.25rem; -} - -/* Horizontal Bulleted */ - -ul.ui.horizontal.bulleted.list, -.ui.horizontal.bulleted.list { - margin-left: 0em; -} - -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: 0em; -} - -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, -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], -.ui.ordered.list > .item[data-value] { - content: attr(data-value); -} - -ol.ui.list li[value]:before { - content: attr(value); -} - -/* Child Lists */ - -ol.ui.list ol, -.ui.ordered.list .list { - 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: 0em; -} - -ol.ui.horizontal.list li:before, -.ui.ordered.horizontal.list .list > .item:before, -.ui.ordered.horizontal.list > .item:before { - position: static; - margin: 0em 0.5em 0em 0em; -} - -/*------------------- - 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 { - margin-left: 0em; - padding-left: 0em; -} - -.ui.divided.bulleted.list > .item:not(.horizontal) { - padding-left: 1.25rem; -} - -/* Divided Ordered */ - -.ui.divided.ordered.list { - margin-left: 0em; -} - -.ui.divided.ordered.list .list > .item, -.ui.divided.ordered.list > .item { - padding-left: 1.25rem; -} - -.ui.divided.ordered.list .item .list { - margin-left: 0em; - margin-right: 0em; - 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: 0em; - border-radius: 0em; -} - -/* Divided horizontal */ - -.ui.divided.horizontal.list { - margin-left: 0em; -} - -.ui.divided.horizontal.list > .item:not(:first-child) { - 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-left: 1px solid rgba(34, 36, 38, 0.15); - margin: 0em; - line-height: 0.6; -} - -.ui.horizontal.divided.list > .item:first-child { - border-left: 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: 0px; -} - -.ui.celled.list .list > .item:first-child { - border-top-width: 0px; -} - -/* Celled Bulleted */ - -.ui.celled.bulleted.list { - margin-left: 0em; -} - -.ui.celled.bulleted.list .list > .item, -.ui.celled.bulleted.list > .item { - padding-left: 1.25rem; -} - -.ui.celled.bulleted.list .item .list { - margin-left: -1.25rem; - margin-right: -1.25rem; - padding-bottom: 0.21428571em; -} - -/* Celled Ordered */ - -.ui.celled.ordered.list { - margin-left: 0em; -} - -.ui.celled.ordered.list .list > .item, -.ui.celled.ordered.list > .item { - padding-left: 1.25rem; -} - -.ui.celled.ordered.list .item .list { - margin-left: 0em; - margin-right: 0em; - padding-bottom: 0.21428571em; -} - -.ui.celled.ordered.list .list > .item { - padding-left: 1em; -} - -/* Celled Horizontal */ - -.ui.horizontal.celled.list { - margin-left: 0em; -} - -.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: 0em; - 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: 1px solid rgba(255, 255, 255, 0.1); -} - -.ui.celled.inverted.horizontal.list .list > .item, -.ui.celled.inverted.horizontal.list > .item { - border-color: 1px solid 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.mini.list { - font-size: 0.78571429em; -} - -.ui.tiny.list { - font-size: 0.85714286em; -} - -.ui.small.list { - font-size: 0.92857143em; -} - -.ui.list { - font-size: 1em; -} - -.ui.large.list { - font-size: 1.14285714em; -} - -.ui.big.list { - font-size: 1.28571429em; -} - -.ui.huge.list { - font-size: 1.42857143em; -} - -.ui.massive.list { - font-size: 1.71428571em; -} - -.ui.mini.horizontal.list .list > .item, -.ui.mini.horizontal.list > .item { - font-size: 0.78571429rem; -} - -.ui.tiny.horizontal.list .list > .item, -.ui.tiny.horizontal.list > .item { - font-size: 0.85714286rem; -} - -.ui.small.horizontal.list .list > .item, -.ui.small.horizontal.list > .item { - font-size: 0.92857143rem; -} - -.ui.horizontal.list .list > .item, -.ui.horizontal.list > .item { - font-size: 1rem; -} - -.ui.large.horizontal.list .list > .item, -.ui.large.horizontal.list > .item { - font-size: 1.14285714rem; -} - -.ui.big.horizontal.list .list > .item, -.ui.big.horizontal.list > .item { - font-size: 1.28571429rem; -} - -.ui.huge.horizontal.list .list > .item, -.ui.huge.horizontal.list > .item { - font-size: 1.42857143rem; -} - -.ui.massive.horizontal.list .list > .item, -.ui.massive.horizontal.list > .item { - font-size: 1.71428571rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Variable Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Loader -* http://github.com/semantic-org/semantic-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: 0px; - 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 linear; - animation: loader 0.6s linear; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; - border-radius: 500rem; - border-color: #767676 transparent transparent; - border-style: solid; - border-width: 0.2em; - -webkit-box-shadow: 0px 0px 0px 1px transparent; - box-shadow: 0px 0px 0px 1px transparent; -} - -/* Active Animation */ - -@-webkit-keyframes loader { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes loader { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -/* Sizes */ - -.ui.mini.loader:before, -.ui.mini.loader:after { - width: 1rem; - height: 1rem; - margin: 0em 0em 0em -0.5rem; -} - -.ui.tiny.loader:before, -.ui.tiny.loader:after { - width: 1.14285714rem; - height: 1.14285714rem; - margin: 0em 0em 0em -0.57142857rem; -} - -.ui.small.loader:before, -.ui.small.loader:after { - width: 1.71428571rem; - height: 1.71428571rem; - margin: 0em 0em 0em -0.85714286rem; -} - -.ui.loader:before, -.ui.loader:after { - width: 2.28571429rem; - height: 2.28571429rem; - margin: 0em 0em 0em -1.14285714rem; -} - -.ui.large.loader:before, -.ui.large.loader:after { - width: 3.42857143rem; - height: 3.42857143rem; - margin: 0em 0em 0em -1.71428571rem; -} - -.ui.big.loader:before, -.ui.big.loader:after { - width: 3.71428571rem; - height: 3.71428571rem; - margin: 0em 0em 0em -1.85714286rem; -} - -.ui.huge.loader:before, -.ui.huge.loader:after { - width: 4.14285714rem; - height: 4.14285714rem; - margin: 0em 0em 0em -2.07142857rem; -} - -.ui.massive.loader:before, -.ui.massive.loader:after { - width: 4.57142857rem; - height: 4.57142857rem; - margin: 0em 0em 0em -2.28571429rem; -} - -/*------------------- - 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:before { - border-color: rgba(255, 255, 255, 0.15); -} - -.ui.dimmer .ui.loader:after { - border-color: #FFFFFF transparent transparent; -} - -/* White Dimmer (Inverted) */ - -.ui.inverted.dimmer .ui.loader { - color: rgba(0, 0, 0, 0.87); -} - -.ui.inverted.dimmer .ui.loader:before { - border-color: rgba(0, 0, 0, 0.1); -} - -.ui.inverted.dimmer .ui.loader:after { - border-color: #767676 transparent transparent; -} - -/******************************* - Types -*******************************/ - -/*------------------- - Text ---------------------*/ - -.ui.text.loader { - width: auto !important; - height: auto !important; - 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 ---------------------*/ - -/* Loader */ - -.ui.inverted.dimmer .ui.mini.loader, -.ui.mini.loader { - width: 1rem; - height: 1rem; - font-size: 0.78571429em; -} - -.ui.inverted.dimmer .ui.tiny.loader, -.ui.tiny.loader { - width: 1.14285714rem; - height: 1.14285714rem; - font-size: 0.85714286em; -} - -.ui.inverted.dimmer .ui.small.loader, -.ui.small.loader { - width: 1.71428571rem; - height: 1.71428571rem; - font-size: 0.92857143em; -} - -.ui.inverted.dimmer .ui.loader, -.ui.loader { - width: 2.28571429rem; - height: 2.28571429rem; - font-size: 1em; -} - -.ui.inverted.dimmer .ui.large.loader, -.ui.large.loader { - width: 3.42857143rem; - height: 3.42857143rem; - font-size: 1.14285714em; -} - -.ui.inverted.dimmer .ui.big.loader, -.ui.big.loader { - width: 3.71428571rem; - height: 3.71428571rem; - font-size: 1.28571429em; -} - -.ui.inverted.dimmer .ui.huge.loader, -.ui.huge.loader { - width: 4.14285714rem; - height: 4.14285714rem; - font-size: 1.42857143em; -} - -.ui.inverted.dimmer .ui.massive.loader, -.ui.massive.loader { - width: 4.57142857rem; - height: 4.57142857rem; - font-size: 1.71428571em; -} - -/* Text Loader */ - -.ui.mini.text.loader { - min-width: 1rem; - padding-top: 1.78571429rem; -} - -.ui.tiny.text.loader { - min-width: 1.14285714rem; - padding-top: 1.92857143rem; -} - -.ui.small.text.loader { - min-width: 1.71428571rem; - padding-top: 2.5rem; -} - -.ui.text.loader { - min-width: 2.28571429rem; - padding-top: 3.07142857rem; -} - -.ui.large.text.loader { - min-width: 3.42857143rem; - padding-top: 4.21428571rem; -} - -.ui.big.text.loader { - min-width: 3.71428571rem; - padding-top: 4.5rem; -} - -.ui.huge.text.loader { - min-width: 4.14285714rem; - padding-top: 4.92857143rem; -} - -.ui.massive.text.loader { - min-width: 4.57142857rem; - padding-top: 5.35714286rem; -} - -/*------------------- - Inverted ---------------------*/ - -.ui.inverted.loader { - color: rgba(255, 255, 255, 0.9); -} - -.ui.inverted.loader:before { - border-color: rgba(255, 255, 255, 0.15); -} - -.ui.inverted.loader:after { - border-top-color: #FFFFFF; -} - -/*------------------- - Inline ---------------------*/ - -.ui.inline.loader { - position: relative; - vertical-align: middle; - margin: 0em; - left: 0em; - top: 0em; - -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; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Rail -* http://github.com/semantic-org/semantic-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: 0em 2rem 0em 0em; - margin: 0em 2rem 0em 0em; -} - -.ui.right.rail { - left: 100%; - right: auto; - padding: 0em 0em 0em 2rem; - margin: 0em 0em 0em 2rem; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Internal ----------------*/ - -.ui.left.internal.rail { - left: 0%; - right: auto; - padding: 0em 0em 0em 2rem; - margin: 0em 0em 0em 2rem; -} - -.ui.right.internal.rail { - left: auto; - right: 0%; - padding: 0em 2rem 0em 0em; - margin: 0em 2rem 0em 0em; -} - -/*-------------- - Dividing ----------------*/ - -.ui.dividing.rail { - width: 302.5px; -} - -.ui.left.dividing.rail { - padding: 0em 2.5rem 0em 0em; - margin: 0em 2.5rem 0em 0em; - 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: 0em 0em 0em 2.5rem; - margin: 0em 0em 0em 2.5rem; -} - -/*-------------- - Distance ----------------*/ - -.ui.close.rail { - width: calc( 300px + 1em ); -} - -.ui.close.left.rail { - padding: 0em 1em 0em 0em; - margin: 0em 1em 0em 0em; -} - -.ui.close.right.rail { - padding: 0em 0em 0em 1em; - margin: 0em 0em 0em 1em; -} - -.ui.very.close.rail { - width: calc( 300px + 0.5em ); -} - -.ui.very.close.left.rail { - padding: 0em 0.5em 0em 0em; - margin: 0em 0.5em 0em 0em; -} - -.ui.very.close.right.rail { - padding: 0em 0em 0em 0.5em; - margin: 0em 0em 0em 0.5em; -} - -/*-------------- - Attached ----------------*/ - -.ui.attached.left.rail, -.ui.attached.right.rail { - padding: 0em; - margin: 0em; -} - -/*-------------- - Sizing ----------------*/ - -.ui.mini.rail { - font-size: 0.78571429rem; -} - -.ui.tiny.rail { - font-size: 0.85714286rem; -} - -.ui.small.rail { - font-size: 0.92857143rem; -} - -.ui.rail { - font-size: 1rem; -} - -.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 -*******************************/ -/*! -* # Semantic UI 2.3.0 - Reveal -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Reveal -*******************************/ - -.ui.reveal { - display: inherit; - position: relative !important; - font-size: 0em !important; -} - -.ui.reveal > .visible.content { - position: absolute !important; - top: 0em !important; - left: 0em !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%; - float: left; - margin: 0em; - -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; - margin: 0em; - -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 !important; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Segment -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Segment -*******************************/ - -.ui.segment { - position: relative; - background: #FFFFFF; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); - margin: 1rem 0em; - padding: 1em 1em; - border-radius: 0.28571429rem; - border: 1px solid rgba(34, 36, 38, 0.15); -} - -.ui.segment:first-child { - margin-top: 0em; -} - -.ui.segment:last-child { - margin-bottom: 0em; -} - -/* Vertical */ - -.ui.vertical.segment { - margin: 0em; - padding-left: 0em; - padding-right: 0em; - background: none transparent; - border-radius: 0px; - -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 { - color: #FFFFFF; -} - -/* Label */ - -.ui[class*="bottom attached"].segment > [class*="top attached"].label { - border-top-left-radius: 0em; - border-top-right-radius: 0em; -} - -.ui[class*="top attached"].segment > [class*="bottom attached"].label { - border-bottom-left-radius: 0em; - border-bottom-right-radius: 0em; -} - -.ui.attached.segment:not(.top):not(.bottom) > [class*="top attached"].label { - border-top-left-radius: 0em; - border-top-right-radius: 0em; -} - -.ui.attached.segment:not(.top):not(.bottom) > [class*="bottom attached"].label { - border-bottom-left-radius: 0em; - border-bottom-right-radius: 0em; -} - -/* 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 0em; - border-radius: 0.28571429rem; -} - -/* Table */ - -.ui.basic.table.segment { - background: #FFFFFF; - border: 1px solid rgba(34, 36, 38, 0.15); - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); -} - -.ui[class*="very basic"].table.segment { - padding: 1em 1em; -} - -/******************************* - Types -*******************************/ - -/*------------------- - Piled ---------------------*/ - -.ui.piled.segments, -.ui.piled.segment { - margin: 3em 0em; - -webkit-box-shadow: ''; - box-shadow: ''; - z-index: auto; -} - -.ui.piled.segment:first-child { - margin-top: 0em; -} - -.ui.piled.segment:last-child { - margin-bottom: 0em; -} - -.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: 0px; - 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: 0em; -} - -.ui.piled.segment[class*="top attached"]:first-child { - margin-top: 0em; -} - -.ui.piled.segment[class*="bottom attached"] { - margin-top: 0em; - margin-bottom: 3em; -} - -.ui.piled.segment[class*="bottom attached"]:last-child { - margin-bottom: 0em; -} - -/*------------------- - 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: 0px; -} - -/* 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: 0px; - padding-right: 0px; -} - -/*------------------- - 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.segments, -.ui.raised.segment { - -webkit-box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px 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 0em; - border: 1px solid rgba(34, 36, 38, 0.15); - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); - border-radius: 0.28571429rem; -} - -.ui.segments:first-child { - margin-top: 0em; -} - -.ui.segments:last-child { - margin-bottom: 0em; -} - -/* Nested Segment */ - -.ui.segments > .segment { - top: 0px; - bottom: 0px; - border-radius: 0px; - margin: 0em; - 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 { - border-top: none; - margin-top: 0em; - bottom: 0px; - margin-bottom: 0em; - top: 0px; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -/* Bottom */ - -.ui.segments:not(.horizontal) > .segment:last-child { - top: 0px; - bottom: 0px; - margin-top: 0em; - margin-bottom: 0em; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none; - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none; - border-radius: 0em 0em 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: 0em; -} - -/* 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; - border-radius: 0px; - padding: 0em; - background-color: #FFFFFF; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); - margin: 1rem 0em; - border-radius: 0.28571429rem; - border: 1px solid rgba(34, 36, 38, 0.15); -} - -/* Nested Horizontal Group */ - -.ui.segments > .horizontal.segments { - margin: 0em; - background-color: transparent; - border-radius: 0px; - border: none; - -webkit-box-shadow: none; - box-shadow: none; - border-top: 1px solid rgba(34, 36, 38, 0.15); -} - -/* Horizontal Segment */ - -.ui.horizontal.segments > .segment { - -webkit-box-flex: 1; - flex: 1 1 auto; - -ms-flex: 1 1 0px; - /* Solves #2550 MS Flex */ - margin: 0em; - min-width: 0px; - background-color: transparent; - border-radius: 0px; - 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 > .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; - color: transparent !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 0em 0em -1.5em; - width: 3em; - height: 3em; - -webkit-animation: segment-spin 0.6s linear; - animation: segment-spin 0.6s linear; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; - border-radius: 500rem; - border-color: #767676 rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1); - border-style: solid; - border-width: 0.2em; - -webkit-box-shadow: 0px 0px 0px 1px transparent; - box-shadow: 0px 0px 0px 1px transparent; - visibility: visible; - z-index: 101; -} - -@-webkit-keyframes segment-spin { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes segment-spin { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Basic ---------------------*/ - -.ui.basic.segment { - background: none transparent; - -webkit-box-shadow: none; - box-shadow: none; - border: none; - border-radius: 0px; -} - -/*------------------- - Clearing ---------------------*/ - -.ui.clearing.segment:after { - content: "."; - display: block; - height: 0; - clear: both; - visibility: hidden; -} - -/*------------------- - Colors ---------------------*/ - -/* Red */ - -.ui.red.segment:not(.inverted) { - border-top: 2px solid #DB2828 !important; -} - -.ui.inverted.red.segment { - background-color: #DB2828 !important; - color: #FFFFFF !important; -} - -/* Orange */ - -.ui.orange.segment:not(.inverted) { - border-top: 2px solid #F2711C !important; -} - -.ui.inverted.orange.segment { - background-color: #F2711C !important; - color: #FFFFFF !important; -} - -/* Yellow */ - -.ui.yellow.segment:not(.inverted) { - border-top: 2px solid #FBBD08 !important; -} - -.ui.inverted.yellow.segment { - background-color: #FBBD08 !important; - color: #FFFFFF !important; -} - -/* Olive */ - -.ui.olive.segment:not(.inverted) { - border-top: 2px solid #B5CC18 !important; -} - -.ui.inverted.olive.segment { - background-color: #B5CC18 !important; - color: #FFFFFF !important; -} - -/* Green */ - -.ui.green.segment:not(.inverted) { - border-top: 2px solid #21BA45 !important; -} - -.ui.inverted.green.segment { - background-color: #21BA45 !important; - color: #FFFFFF !important; -} - -/* Teal */ - -.ui.teal.segment:not(.inverted) { - border-top: 2px solid #00B5AD !important; -} - -.ui.inverted.teal.segment { - background-color: #00B5AD !important; - color: #FFFFFF !important; -} - -/* Blue */ - -.ui.blue.segment:not(.inverted) { - border-top: 2px solid #2185D0 !important; -} - -.ui.inverted.blue.segment { - background-color: #2185D0 !important; - color: #FFFFFF !important; -} - -/* Violet */ - -.ui.violet.segment:not(.inverted) { - border-top: 2px solid #6435C9 !important; -} - -.ui.inverted.violet.segment { - background-color: #6435C9 !important; - color: #FFFFFF !important; -} - -/* Purple */ - -.ui.purple.segment:not(.inverted) { - border-top: 2px solid #A333C8 !important; -} - -.ui.inverted.purple.segment { - background-color: #A333C8 !important; - color: #FFFFFF !important; -} - -/* Pink */ - -.ui.pink.segment:not(.inverted) { - border-top: 2px solid #E03997 !important; -} - -.ui.inverted.pink.segment { - background-color: #E03997 !important; - color: #FFFFFF !important; -} - -/* Brown */ - -.ui.brown.segment:not(.inverted) { - border-top: 2px solid #A5673F !important; -} - -.ui.inverted.brown.segment { - background-color: #A5673F !important; - color: #FFFFFF !important; -} - -/* Grey */ - -.ui.grey.segment:not(.inverted) { - border-top: 2px solid #767676 !important; -} - -.ui.inverted.grey.segment { - background-color: #767676 !important; - color: #FFFFFF !important; -} - -/* Black */ - -.ui.black.segment:not(.inverted) { - border-top: 2px solid #1B1C1D !important; -} - -.ui.inverted.black.segment { - background-color: #1B1C1D !important; - color: #FFFFFF !important; -} - -/*------------------- - 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; -} - -/*------------------- - 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, from(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, from(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: 0px; - bottom: 0px; - border-radius: 0px; - margin: 0em -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: 0px; - margin-bottom: 0em; - top: 0px; - margin-top: 1rem; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -.ui.segment[class*="top attached"]:first-child { - margin-top: 0em; -} - -/* Bottom */ - -.ui.segment[class*="bottom attached"] { - bottom: 0px; - margin-top: 0em; - top: 0px; - margin-bottom: 1rem; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none; - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none; - border-radius: 0em 0em 0.28571429rem 0.28571429rem; -} - -.ui.segment[class*="bottom attached"]:last-child { - margin-bottom: 0em; -} - -/*------------------- - Size ---------------------*/ - -.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.segments .segment, -.ui.segment { - font-size: 1rem; -} - -.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 -*******************************/ -/*! -* # Semantic UI 2.3.0 - Step -* http://github.com/semantic-org/semantic-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 0em; - 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); -} - -/* First Steps */ - -.ui.steps:first-child { - margin-top: 0em; -} - -/* Last Steps */ - -.ui.steps:last-child { - margin-bottom: 0em; -} - -/******************************* - 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: 0em 0em; - padding: 1.14285714em 2em; - background: #FFFFFF; - color: rgba(0, 0, 0, 0.87); - -webkit-box-shadow: none; - box-shadow: none; - border-radius: 0em; - 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%; - border: medium none; - background-color: #FFFFFF; - width: 1.14285714em; - height: 1.14285714em; - border-style: solid; - border-color: rgba(34, 36, 38, 0.15); - border-width: 0px 1px 1px 0px; - -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 0em 0em 0.28571429rem; -} - -/* Last Step */ - -.ui.steps .step:last-child { - border-radius: 0em 0.28571429rem 0.28571429rem 0em; -} - -.ui.steps .step:last-child { - border-right: none; - margin-right: 0em; -} - -/* 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: 0em 1rem 0em 0em; -} - -.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 .step > .icon ~ .content { - -webkit-box-flex: 1 0 auto; - -ms-flex-positive: 1 0 auto; - flex-grow: 1 0 auto; -} - -/* 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: counters(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: 0em; - 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 0em 0em; -} - -.ui.vertical.steps .step:last-child { - border-bottom: none; - border-radius: 0em 0em 0.28571429rem 0.28571429rem; -} - -.ui.vertical.steps .step:only-child { - border-radius: 0.28571429rem; -} - -/* Arrow */ - -.ui.vertical.steps .step:after { - display: none; -} - -.ui.vertical.steps .step:after { - top: 50%; - right: 0%; - border-width: 0px 1px 1px 0px; -} - -.ui.vertical.steps .step:after { - 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: 767px) { - .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: 0em; - padding: 1.14285714em 2em; - } - - .ui.steps:not(.unstackable) .step:first-child { - padding: 1.14285714em 2em; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; - } - - .ui.steps:not(.unstackable) .step:last-child { - border-radius: 0em 0em 0.28571429rem 0.28571429rem; - } - - /* Arrow */ - - .ui.steps:not(.unstackable) .step:after { - display: none !important; - } - - /* 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: 0em 0em 1rem 0em; - } -} - -/******************************* - 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: 991px) { - .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: 0em; - padding: 1.14285714em 2em; - } - - .ui[class*="tablet stackable"].steps .step:first-child { - padding: 1.14285714em 2em; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; - } - - .ui[class*="tablet stackable"].steps .step:last-child { - border-radius: 0em 0em 0.28571429rem 0.28571429rem; - } - - /* Arrow */ - - .ui[class*="tablet stackable"].steps .step:after { - display: none !important; - } - - /* 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: 0em 0em 1rem 0em; - } -} - -/*-------------- - 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: 0em -1px 0; - max-width: calc(100% + 2px ); - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -.ui.attached.steps .step:first-child { - border-radius: 0.28571429rem 0em 0em 0em; -} - -.ui.attached.steps .step:last-child { - border-radius: 0em 0.28571429rem 0em 0em; -} - -/* Bottom */ - -.ui.bottom.attached.steps { - margin: 0 -1px 0em; - border-radius: 0em 0em 0.28571429rem 0.28571429rem; -} - -.ui.bottom.attached.steps .step:first-child { - border-radius: 0em 0em 0em 0.28571429rem; -} - -.ui.bottom.attached.steps .step:last-child { - border-radius: 0em 0em 0.28571429rem 0em; -} - -/*------------------- - 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.500%; -} - -/*------------------- - Sizes ---------------------*/ - -.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.steps .step, -.ui.step { - font-size: 1rem; -} - -.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; -} - -/******************************* - Theme Overrides -*******************************/ - -@font-face { - font-family: 'Step'; - src: url(data:application/x-font-ttf;charset=utf-8;;base64,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) format('truetype'), url(data:application/font-woff;charset=utf-8;base64,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) format('woff'); -} - -.ui.steps .step.completed > .icon:before, -.ui.ordered.steps .step.completed:before { - font-family: 'Step'; - content: '\e800'; - /* '' */ -} - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Breadcrumb -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Breadcrumb -*******************************/ - -.ui.breadcrumb { - line-height: 1; - display: inline-block; - margin: 0em 0em; - vertical-align: middle; -} - -.ui.breadcrumb:first-child { - margin-top: 0em; -} - -.ui.breadcrumb:last-child { - margin-bottom: 0em; -} - -/******************************* - Content -*******************************/ - -/* Divider */ - -.ui.breadcrumb .divider { - display: inline-block; - opacity: 0.7; - margin: 0em 0.21428571rem 0em; - 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: 0em; - padding: 0em; -} - -/* Loose Coupling */ - -.ui.breadcrumb.segment { - display: inline-block; - padding: 0.78571429em 1em; -} - -/******************************* - States -*******************************/ - -.ui.breadcrumb .active.section { - font-weight: bold; -} - -/******************************* - Variations -*******************************/ - -.ui.mini.breadcrumb { - font-size: 0.78571429rem; -} - -.ui.tiny.breadcrumb { - font-size: 0.85714286rem; -} - -.ui.small.breadcrumb { - font-size: 0.92857143rem; -} - -.ui.breadcrumb { - font-size: 1rem; -} - -.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 -*******************************/ -/*! -* # Semantic UI 2.3.0 - Form -* http://github.com/semantic-org/semantic-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 0em; -} - -/*-------------------- - Field ----------------------*/ - -.ui.form .field { - clear: both; - margin: 0em 0em 1em; -} - -.ui.form .field:last-child, -.ui.form .fields:last-child .field { - margin-bottom: 0em; -} - -.ui.form .fields .field { - clear: both; - margin: 0em; -} - -/*-------------------- - Labels ----------------------*/ - -.ui.form .field > label { - display: block; - margin: 0em 0em 0.28571429rem 0em; - 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: 0em; - outline: none; - -webkit-appearance: none; - 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: 0em 0em 0em 0em transparent inset; - box-shadow: 0em 0em 0em 0em 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.form textarea { - margin: 0em; - -webkit-appearance: none; - 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: 0em 0em 0em 0em transparent inset; - box-shadow: 0em 0em 0em 0em 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; - 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; -} - -/*-------------------------- - 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: 0em 0em 0em 0em transparent inset; - box-shadow: 0em 0em 0em 0em 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 { - 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: 0px; -} - -/*-------------------- - Types of Messages ----------------------*/ - -.ui.form .success.message, -.ui.form .warning.message, -.ui.form .error.message { - display: none; -} - -/* Assumptions */ - -.ui.form .message:first-child { - margin-top: 0px; -} - -/*-------------------- - 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 0em -0.5em 0.5em; -} - -.ui.form .inline.fields .field .prompt:before, -.ui.form .inline.field .prompt:before { - border-width: 0px 0px 1px 1px; - bottom: auto; - right: auto; - top: 50%; - left: 0em; -} - -/******************************* - States -*******************************/ - -/*-------------------- - Autofilled ----------------------*/ - -.ui.form .field.field input:-webkit-autofill { - -webkit-box-shadow: 0px 0px 0px 100px #FFFFF0 inset !important; - box-shadow: 0px 0px 0px 100px #FFFFF0 inset !important; - border-color: #E5DFA1 !important; -} - -/* Focus */ - -.ui.form .field.field input:-webkit-autofill:focus { - -webkit-box-shadow: 0px 0px 0px 100px #FFFFF0 inset !important; - box-shadow: 0px 0px 0px 100px #FFFFF0 inset !important; - border-color: #D5C315 !important; -} - -/* Error */ - -.ui.form .error.error input:-webkit-autofill { - -webkit-box-shadow: 0px 0px 0px 100px #FFFAF0 inset !important; - box-shadow: 0px 0px 0px 100px #FFFAF0 inset !important; - border-color: #E0B4B4 !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); -} - -.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); -} - -.ui.form :focus::-moz-placeholder { - color: rgba(115, 115, 115, 0.87); -} - -/* Error Placeholder */ - -.ui.form .error ::-webkit-input-placeholder { - color: #e7bdbc; -} - -.ui.form .error :-ms-input-placeholder { - color: #e7bdbc !important; -} - -.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 !important; -} - -.ui.form .error :focus::-moz-placeholder { - color: #da9796; -} - -/*-------------------- - 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: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset; - box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset; -} - -.ui.form textarea:focus { - color: rgba(0, 0, 0, 0.95); - border-color: #85B7D9; - border-radius: 0.28571429rem; - background: #FFFFFF; - -webkit-box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset; - box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset; - -webkit-appearance: none; -} - -/*-------------------- - Success ----------------------*/ - -/* 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; -} - -/*-------------------- - Warning ----------------------*/ - -/* 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; -} - -/*-------------------- - Error ----------------------*/ - -/* 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 .field label, -.ui.form .field.error label, -.ui.form .fields.error .field .input, -.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"] { - background: #FFF6F6; - border-color: #E0B4B4; - color: #9F3A38; - 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-appearance: none; - -webkit-box-shadow: none; - box-shadow: none; -} - -/* Preserve Native Select Stylings */ - -.ui.form .field.error select { - -webkit-appearance: menulist-button; -} - -/*------------------ - Dropdown Error ---------------------*/ - -.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 !important; -} - -/*-------------------- - Checkbox Error ----------------------*/ - -.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; -} - -/*-------------------- - 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:after { - position: absolute; - content: ''; - top: 50%; - left: 50%; - margin: -1.5em 0em 0em -1.5em; - width: 3em; - height: 3em; - -webkit-animation: form-spin 0.6s linear; - animation: form-spin 0.6s linear; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; - border-radius: 500rem; - border-color: #767676 rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1); - border-style: solid; - border-width: 0.2em; - -webkit-box-shadow: 0px 0px 0px 1px transparent; - box-shadow: 0px 0px 0px 1px transparent; - visibility: visible; - z-index: 101; -} - -@-webkit-keyframes form-spin { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes form-spin { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -/******************************* - 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 { - margin: -0.2em 0em 0em 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 { - 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); -} - -/* 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: 0em 0em 1em; -} - -.ui.form .grouped.fields:last-child { - margin-bottom: 0em; -} - -.ui.form .grouped.fields > label { - margin: 0em 0em 0.28571429rem 0em; - 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 0em; - padding: 0em; -} - -/*-------------------- - 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: 0em -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: 767px) { - .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: 0em 0em 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: 767px) { - .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: 0em; - } -} - -/*-------------------- - 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: 0em 0em 1em; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.ui.form .inline.fields .field { - margin: 0em; - padding: 0em 1em 0em 0em; -} - -/* 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: 0em; - margin-bottom: 0em; - 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 0em 0em; -} - -/* 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: 0em; - margin-bottom: 0em; - vertical-align: middle; - font-size: 1em; -} - -/* Label */ - -.ui.form .inline.fields .field > :first-child, -.ui.form .inline.field > :first-child { - margin: 0em 0.85714286em 0em 0em; -} - -.ui.form .inline.fields .field > :only-child, -.ui.form .inline.field > :only-child { - margin: 0em; -} - -/* 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.mini.form { - font-size: 0.78571429rem; -} - -.ui.tiny.form { - font-size: 0.85714286rem; -} - -.ui.small.form { - font-size: 0.92857143rem; -} - -.ui.form { - font-size: 1rem; -} - -.ui.large.form { - font-size: 1.14285714rem; -} - -.ui.big.form { - font-size: 1.28571429rem; -} - -.ui.huge.form { - font-size: 1.42857143rem; -} - -.ui.massive.form { - font-size: 1.71428571rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Grid -* http://github.com/semantic-org/semantic-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: 0em; -} - -/*---------------------- - 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: 0rem; - 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: 0em; - margin-bottom: 0em; -} - -/*------------------- - 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: 0em; -} - -.ui.grid > .ui.grid:last-child { - margin-bottom: 0em; -} - -/* 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: 767px) { - .ui.page.grid { - width: auto; - padding-left: 0em; - padding-right: 0em; - margin-left: 0em; - margin-right: 0em; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ui.page.grid { - width: auto; - margin-left: 0em; - margin-right: 0em; - padding-left: 2em; - padding-right: 2em; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ui.page.grid { - width: auto; - margin-left: 0em; - margin-right: 0em; - padding-left: 3%; - padding-right: 3%; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1919px) { - .ui.page.grid { - width: auto; - margin-left: 0em; - margin-right: 0em; - padding-left: 15%; - padding-right: 15%; - } -} - -@media only screen and (min-width: 1920px) { - .ui.page.grid { - width: auto; - margin-left: 0em; - margin-right: 0em; - 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: 767px) { - .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: 991px) { - .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: 1919px) { - .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: 0em !important; -} - -[class*="horizontally padded"].ui.grid { - margin-left: 0em !important; - margin-right: 0em !important; -} - -[class*="vertically padded"].ui.grid { - margin-top: 0em !important; - margin-bottom: 0em !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 0px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: -1px 0px 0px 0px 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: 0rem; - padding-bottom: 0rem; -} - -.ui[class*="vertically divided"].grid > .row { - margin-top: 0em; - margin-bottom: 0em; -} - -/* 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: 0em; -} - -/* Divided Row */ - -.ui.grid > .divided.row > .column { - -webkit-box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: -1px 0px 0px 0px 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: 0em; - left: 0px; - width: calc(100% - 2rem ); - height: 1px; - margin: 0% 1rem; - -webkit-box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px -1px 0px 0px 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 0px 0px 0px rgba(255, 255, 255, 0.1); - box-shadow: -1px 0px 0px 0px 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: 0px -1px 0px 0px rgba(255, 255, 255, 0.1); - box-shadow: 0px -1px 0px 0px 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: 5rem; - margin-right: 5rem; - width: calc(100% - 5rem ); -} - -/*---------------------- - Celled ------------------------*/ - -.ui.celled.grid { - width: 100%; - margin: 1em 0em; - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5; -} - -.ui.celled.grid > .row { - width: 100% !important; - margin: 0em; - padding: 0em; - -webkit-box-shadow: 0px -1px 0px 0px #D4D4D5; - box-shadow: 0px -1px 0px 0px #D4D4D5; -} - -.ui.celled.grid > .column:not(.row), -.ui.celled.grid > .row > .column { - -webkit-box-shadow: -1px 0px 0px 0px #D4D4D5; - box-shadow: -1px 0px 0px 0px #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: 0em; -} - -.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 > .row > .red.column, -.ui.grid > .row > .orange.column, -.ui.grid > .row > .yellow.column, -.ui.grid > .row > .olive.column, -.ui.grid > .row > .green.column, -.ui.grid > .row > .teal.column, -.ui.grid > .row > .blue.column, -.ui.grid > .row > .violet.column, -.ui.grid > .row > .purple.column, -.ui.grid > .row > .pink.column, -.ui.grid > .row > .brown.column, -.ui.grid > .row > .grey.column, -.ui.grid > .row > .black.column { - margin-top: -1rem; - margin-bottom: -1rem; - padding-top: 1rem; - padding-bottom: 1rem; -} - -/* Red */ - -.ui.grid > .red.row, -.ui.grid > .red.column, -.ui.grid > .row > .red.column { - background-color: #DB2828 !important; - color: #FFFFFF; -} - -/* Orange */ - -.ui.grid > .orange.row, -.ui.grid > .orange.column, -.ui.grid > .row > .orange.column { - background-color: #F2711C !important; - color: #FFFFFF; -} - -/* Yellow */ - -.ui.grid > .yellow.row, -.ui.grid > .yellow.column, -.ui.grid > .row > .yellow.column { - background-color: #FBBD08 !important; - color: #FFFFFF; -} - -/* Olive */ - -.ui.grid > .olive.row, -.ui.grid > .olive.column, -.ui.grid > .row > .olive.column { - background-color: #B5CC18 !important; - color: #FFFFFF; -} - -/* Green */ - -.ui.grid > .green.row, -.ui.grid > .green.column, -.ui.grid > .row > .green.column { - background-color: #21BA45 !important; - color: #FFFFFF; -} - -/* Teal */ - -.ui.grid > .teal.row, -.ui.grid > .teal.column, -.ui.grid > .row > .teal.column { - background-color: #00B5AD !important; - color: #FFFFFF; -} - -/* Blue */ - -.ui.grid > .blue.row, -.ui.grid > .blue.column, -.ui.grid > .row > .blue.column { - background-color: #2185D0 !important; - color: #FFFFFF; -} - -/* Violet */ - -.ui.grid > .violet.row, -.ui.grid > .violet.column, -.ui.grid > .row > .violet.column { - background-color: #6435C9 !important; - color: #FFFFFF; -} - -/* Purple */ - -.ui.grid > .purple.row, -.ui.grid > .purple.column, -.ui.grid > .row > .purple.column { - background-color: #A333C8 !important; - color: #FFFFFF; -} - -/* Pink */ - -.ui.grid > .pink.row, -.ui.grid > .pink.column, -.ui.grid > .row > .pink.column { - background-color: #E03997 !important; - color: #FFFFFF; -} - -/* Brown */ - -.ui.grid > .brown.row, -.ui.grid > .brown.column, -.ui.grid > .row > .brown.column { - background-color: #A5673F !important; - color: #FFFFFF; -} - -/* Grey */ - -.ui.grid > .grey.row, -.ui.grid > .grey.column, -.ui.grid > .row > .grey.column { - background-color: #767676 !important; - color: #FFFFFF; -} - -/* Black */ - -.ui.grid > .black.row, -.ui.grid > .black.column, -.ui.grid > .row > .black.column { - background-color: #1B1C1D !important; - 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: 767px) { - .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 0px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: -1px 0px 0px 0px 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: 0px -1px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px -1px 0px 0px 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 0px 0px 0px #D4D4D5; - box-shadow: -1px 0px 0px 0px #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: 991px) { - .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 0px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: -1px 0px 0px 0px 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: 0px -1px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px -1px 0px 0px 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 0px 0px 0px #D4D4D5; - box-shadow: -1px 0px 0px 0px #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 0px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: -1px 0px 0px 0px 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: 0px -1px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px -1px 0px 0px 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 0px 0px 0px #D4D4D5; - box-shadow: -1px 0px 0px 0px #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: 991px) { - .ui.doubling.grid { - width: auto; - } - - .ui.grid > .doubling.row, - .ui.doubling.grid > .row { - margin: 0em !important; - padding: 0em !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: 0em; - } - - .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: 767px) { - .ui.grid > .doubling.row, - .ui.doubling.grid > .row { - margin: 0em !important; - padding: 0em !important; - } - - .ui.grid > .doubling.row > .column, - .ui.doubling.grid > .row > .column { - padding-top: 1rem !important; - padding-bottom: 1rem !important; - margin: 0em !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: 767px) { - .ui.stackable.grid { - width: auto; - margin-left: 0em !important; - margin-right: 0em !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.row > .column { - width: 100% !important; - margin: 0em 0em !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; - padding: 1rem 1rem !important; - } - - .ui.stackable.grid:not(.vertically) > .row { - margin: 0em; - padding: 0em; - } - - /* Coupling */ - - .ui.container > .ui.stackable.grid > .column, - .ui.container > .ui.stackable.grid > .row > .column { - padding-left: 0em !important; - padding-right: 0em !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: 0em !important; - padding-right: 0em !important; - } -} - -/*---------------------- - Only (Device) ------------------------*/ - -/* These include arbitrary class repetitions for forced specificity */ - -/* Mobile Only Hide */ - -@media only screen and (max-width: 767px) { - .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: 991px) { - .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: 1199px) { - .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: 1919px) { - .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; - } -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/* -* # Semantic - Menu -* http://github.com/semantic-org/semantic-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 0em; - 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: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); - border-radius: 0.28571429rem; - min-height: 2.85714286em; -} - -.ui.menu:after { - content: ''; - display: block; - height: 0px; - clear: both; - visibility: hidden; -} - -.ui.menu:first-child { - margin-top: 0rem; -} - -.ui.menu:last-child { - margin-bottom: 0rem; -} - -/*-------------- - Sub-Menu ----------------*/ - -.ui.menu .menu { - margin: 0em; -} - -.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 0px 0px 0.28571429rem; -} - -/* Border */ - -.ui.menu .item:before { - position: absolute; - content: ''; - top: 0%; - right: 0px; - 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: 0em 0.35714286em 0em 0em; -} - -/*-------------- - Button ----------------*/ - -.ui.menu:not(.vertical) .item > .button { - position: relative; - top: 0em; - margin: -0.5em 0em; - 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: 0em; - margin: -0.5em 0em; -} - -.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: 0em; - background: ''; - text-transform: normal; - font-weight: bold; -} - -.ui.vertical.menu .item > .header:not(.ui) { - margin: 0em 0em 0.5em; - font-size: 1em; - font-weight: bold; -} - -/*-------------- - Dropdowns ----------------*/ - -/* Dropdown Icon */ - -.ui.menu .item > i.dropdown.icon { - padding: 0em; - float: right; - margin: 0em 0em 0em 1em; -} - -/* Menu */ - -.ui.menu .dropdown.item .menu { - min-width: calc(100% - 1px); - border-radius: 0em 0em 0.28571429rem 0.28571429rem; - background: #FFFFFF; - margin: 0em 0px 0px; - -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.08); - box-shadow: 0px 1px 3px 0px 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: 0em 0.75em 0em 0em; -} - -/* 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%; - min-width: 0; - margin: 0em 0em 0em 0em; - -webkit-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.08); - box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.08); - border-radius: 0em 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: 0em; - border-bottom-right-radius: 0em; -} - -.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 { - background: #999999; - color: #FFFFFF; - margin-left: 1em; - padding: 0.3em 0.78571429em; -} - -.ui.vertical.menu .item > .label { - background: #999999; - color: #FFFFFF; - margin-top: -0.15em; - margin-bottom: -0.15em; - padding: 0.3em 0.78571429em; -} - -.ui.menu .item > .floating.label { - padding: 0.3em 0.78571429em; -} - -/*-------------- - Images ----------------*/ - -.ui.menu .item > img:not(.ui) { - display: inline-block; - vertical-align: middle; - margin: -0.3em 0em; - 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: 0px; -} - -/*-------------- - Container ----------------*/ - -@media only screen and (max-width: 767px) { - .ui.menu > .ui.container { - width: 100% !important; - margin-left: 0em !important; - margin-right: 0em !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); - } -} - -/******************************* - 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.menu .item.disabled, -.ui.menu .item.disabled:hover { - cursor: default; - background-color: transparent !important; - color: rgba(40, 40, 40, 0.3); -} - -/******************************* - 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; -} - -/* Swapped Borders */ - -.ui.menu .right.item::before, -.ui.menu .right.menu > .item::before { - right: auto; - left: 0; -} - -/*-------------- - 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: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); - box-shadow: 0px 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 0px 0px; -} - -.ui.vertical.menu > .item:last-child { - border-radius: 0px 0px 0.28571429rem 0.28571429rem; -} - -/*--- Label ---*/ - -.ui.vertical.menu .item > .label { - float: right; - text-align: center; -} - -/*--- Icon ---*/ - -.ui.vertical.menu .item > i.icon { - width: 1.18em; - float: right; - margin: 0em 0em 0em 0.5em; -} - -.ui.vertical.menu .item > .label + i.icon { - float: none; - margin: 0em 0.5em 0em 0em; -} - -/*--- Border ---*/ - -.ui.vertical.menu .item:before { - position: absolute; - content: ''; - top: 0%; - left: 0px; - 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 0em; -} - -.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: 0em; - -webkit-box-shadow: none; - box-shadow: none; -} - -.ui.vertical.menu > .active.item:first-child { - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -.ui.vertical.menu > .active.item:last-child { - border-radius: 0em 0em 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: 0em; - -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 0px 0px !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: 0px; - margin-top: 0px; - margin-right: 0px; - 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: 0em; - -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 0px 0px 0px; - border-radius: 0px 0px 0.28571429rem 0.28571429rem !important; -} - -/* Vertical Tabular (Left) */ - -.ui.vertical.tabular.menu { - background: none transparent; - border-radius: 0em; - -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: 0px -1px 0px 0px; - border-radius: 0.28571429rem 0px 0px 0.28571429rem !important; -} - -/* Vertical Right Tabular */ - -.ui.vertical.right.tabular.menu { - background: none transparent; - border-radius: 0em; - -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: 0px 0px 0px -1px; - border-radius: 0px 0.28571429rem 0.28571429rem 0px !important; -} - -/* Dropdown */ - -.ui.tabular.menu .active.dropdown.item { - margin-bottom: 0px; - border-left: 1px solid transparent; - border-right: 1px solid transparent; - border-top: 2px solid transparent; - border-bottom: none; -} - -/*-------------- - Pagination ----------------*/ - -.ui.pagination.menu { - margin: 0em; - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - vertical-align: middle; -} - -.ui.pagination.menu .item:last-child { - border-radius: 0em 0.28571429rem 0.28571429rem 0em; -} - -.ui.compact.menu .item:last-child { - border-radius: 0em 0.28571429rem 0.28571429rem 0em; -} - -.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: 0em; - 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: 0em 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: 0em; - border-right: none; - background: none transparent; -} - -/* Image */ - -.ui.secondary.menu .item > img:not(.ui) { - margin: 0em; -} - -/* 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, -.ui.secondary.inverted.menu a.item { - color: rgba(255, 255, 255, 0.7) !important; -} - -.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 !important; -} - -.ui.secondary.inverted.menu .active.item { - background: rgba(255, 255, 255, 0.15); - color: #ffffff !important; -} - -/* Fix item margins */ - -.ui.secondary.item.menu { - margin-left: 0em; - margin-right: 0em; -} - -.ui.secondary.item.menu .item:last-child { - margin-right: 0em; -} - -.ui.secondary.attached.menu { - -webkit-box-shadow: none; - box-shadow: none; -} - -/* Sub Menu */ - -.ui.vertical.secondary.menu .item:not(.dropdown) > .menu { - margin: 0em -0.92857143em; -} - -.ui.vertical.secondary.menu .item:not(.dropdown) > .menu > .item { - margin: 0em; - padding: 0.5em 1.33333333em; -} - -/*--------------------- - Secondary Vertical ------------------------*/ - -.ui.secondary.vertical.menu > .item { - border: none; - margin: 0em 0em 0.35714286em; - border-radius: 0.28571429rem !important; -} - -.ui.secondary.vertical.menu > .header.item { - border-radius: 0em; -} - -/* 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: 0em; - margin-right: 0em; - 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: 0em; - -ms-flex-item-align: end; - align-self: flex-end; - margin: 0em 0em -2px; - padding: 0.85714286em 1.14285714em; - border-bottom-width: 2px; - -webkit-transition: color 0.1s ease; - transition: color 0.1s ease; -} - -/* 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: #1B1C1D; - font-weight: bold; - color: rgba(0, 0, 0, 0.95); -} - -/* Active Hover */ - -.ui.secondary.pointing.menu .active.item:hover { - border-color: #1B1C1D; - 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: 0px; - 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: 0em !important; - margin: 0em -2px 0em 0em; - border-right-width: 2px; -} - -/* Vertical Active */ - -.ui.secondary.vertical.pointing.menu .active.item { - border-color: #1B1C1D; -} - -/* Inverted */ - -.ui.secondary.inverted.pointing.menu { - border-color: rgba(255, 255, 255, 0.1); -} - -.ui.secondary.inverted.pointing.menu { - border-width: 2px; - border-color: rgba(34, 36, 38, 0.15); -} - -.ui.secondary.inverted.pointing.menu .item { - 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: rgba(0, 0, 0, 0.95); -} - -/* Active */ - -.ui.secondary.inverted.pointing.menu .active.item { - border-color: #FFFFFF; - color: #ffffff; -} - -/*-------------- - Text Menu ----------------*/ - -.ui.text.menu { - background: none transparent; - border-radius: 0px; - -webkit-box-shadow: none; - box-shadow: none; - border: none; - margin: 1em -0.5em; -} - -.ui.text.menu .item { - border-radius: 0px; - -webkit-box-shadow: none; - box-shadow: none; - -ms-flex-item-align: center; - align-self: center; - margin: 0em 0em; - 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: 0em; -} - -/*--- fluid text ---*/ - -.ui.text.item.menu .item { - margin: 0em; -} - -/*--- vertical text ---*/ - -.ui.vertical.text.menu { - margin: 1em 0em; -} - -.ui.vertical.text.menu:first-child { - margin-top: 0rem; -} - -.ui.vertical.text.menu:last-child { - margin-bottom: 0rem; -} - -.ui.vertical.text.menu .item { - margin: 0.57142857em 0em; - padding-left: 0em; - padding-right: 0em; -} - -.ui.vertical.text.menu .item > i.icon { - float: none; - margin: 0em 0.35714286em 0em 0em; -} - -.ui.vertical.text.menu .header.item { - margin: 0.57142857em 0em 0.71428571em; -} - -/* Vertical Sub Menu */ - -.ui.vertical.text.menu .item:not(.dropdown) > .menu { - margin: 0em; -} - -.ui.vertical.text.menu .item:not(.dropdown) > .menu > .item { - margin: 0em; - padding: 0.5em 0em; -} - -/*--- 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 !important; -} - -/* Fluid */ - -.ui.fluid.text.menu { - margin-left: 0em; - margin-right: 0em; -} - -/*-------------- - 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: 0em auto; -} - -/* Vertical Icon */ - -.ui.vertical.icon.menu .item > .icon:not(.dropdown) { - display: block; - opacity: 1; - margin: 0em 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: 0em auto 0.5rem !important; -} - -/* Fluid */ - -.ui.fluid.labeled.icon.menu > .item { - min-width: 0em; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Stackable ----------------*/ - -@media only screen and (max-width: 767px) { - .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: 0px; - left: 0px; - 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 .right.menu, - .ui.stackable.menu .left.menu { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - } -} - -/*-------------- - Colors ----------------*/ - -/*--- Standard Colors ---*/ - -.ui.menu .red.active.item, -.ui.red.menu .active.item { - border-color: #DB2828 !important; - color: #DB2828 !important; -} - -.ui.menu .orange.active.item, -.ui.orange.menu .active.item { - border-color: #F2711C !important; - color: #F2711C !important; -} - -.ui.menu .yellow.active.item, -.ui.yellow.menu .active.item { - border-color: #FBBD08 !important; - color: #FBBD08 !important; -} - -.ui.menu .olive.active.item, -.ui.olive.menu .active.item { - border-color: #B5CC18 !important; - color: #B5CC18 !important; -} - -.ui.menu .green.active.item, -.ui.green.menu .active.item { - border-color: #21BA45 !important; - color: #21BA45 !important; -} - -.ui.menu .teal.active.item, -.ui.teal.menu .active.item { - border-color: #00B5AD !important; - color: #00B5AD !important; -} - -.ui.menu .blue.active.item, -.ui.blue.menu .active.item { - border-color: #2185D0 !important; - color: #2185D0 !important; -} - -.ui.menu .violet.active.item, -.ui.violet.menu .active.item { - border-color: #6435C9 !important; - color: #6435C9 !important; -} - -.ui.menu .purple.active.item, -.ui.purple.menu .active.item { - border-color: #A333C8 !important; - color: #A333C8 !important; -} - -.ui.menu .pink.active.item, -.ui.pink.menu .active.item { - border-color: #E03997 !important; - color: #E03997 !important; -} - -.ui.menu .brown.active.item, -.ui.brown.menu .active.item { - border-color: #A5673F !important; - color: #A5673F !important; -} - -.ui.menu .grey.active.item, -.ui.grey.menu .active.item { - border-color: #767676 !important; - color: #767676 !important; -} - -/*-------------- - Inverted ----------------*/ - -.ui.inverted.menu { - border: 0px 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: 0em; - background: transparent; - -webkit-box-shadow: none; - box-shadow: none; -} - -/* Disabled */ - -.ui.inverted.menu .item.disabled, -.ui.inverted.menu .item.disabled:hover { - 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: rgba(255, 255, 255, 0.15); - color: #ffffff !important; -} - -.ui.inverted.vertical.menu .item .menu .active.item { - background: transparent; - color: #FFFFFF; -} - -.ui.inverted.pointing.menu .active.item:after { - background: #3D3E3F !important; - margin: 0em !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; - border: none !important; -} - -/*--- Active Hover ---*/ - -.ui.inverted.menu .active.item:hover { - background: rgba(255, 255, 255, 0.15); - color: #FFFFFF !important; -} - -.ui.inverted.pointing.menu .active.item:hover:after { - background: #3D3E3F !important; -} - -/*-------------- - Floated ----------------*/ - -.ui.floated.menu { - float: left; - margin: 0rem 0.5rem 0rem 0rem; -} - -.ui.floated.menu .item:last-child:before { - display: none; -} - -.ui.right.floated.menu { - float: right; - margin: 0rem 0rem 0rem 0.5rem; -} - -/*-------------- - Inverted ----------------*/ - -/* Red */ - -.ui.inverted.menu .red.active.item, -.ui.inverted.red.menu { - background-color: #DB2828; -} - -.ui.inverted.red.menu .item:before { - background-color: rgba(34, 36, 38, 0.1); -} - -.ui.inverted.red.menu .active.item { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -/* Orange */ - -.ui.inverted.menu .orange.active.item, -.ui.inverted.orange.menu { - background-color: #F2711C; -} - -.ui.inverted.orange.menu .item:before { - background-color: rgba(34, 36, 38, 0.1); -} - -.ui.inverted.orange.menu .active.item { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -/* Yellow */ - -.ui.inverted.menu .yellow.active.item, -.ui.inverted.yellow.menu { - background-color: #FBBD08; -} - -.ui.inverted.yellow.menu .item:before { - background-color: rgba(34, 36, 38, 0.1); -} - -.ui.inverted.yellow.menu .active.item { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -/* Olive */ - -.ui.inverted.menu .olive.active.item, -.ui.inverted.olive.menu { - background-color: #B5CC18; -} - -.ui.inverted.olive.menu .item:before { - background-color: rgba(34, 36, 38, 0.1); -} - -.ui.inverted.olive.menu .active.item { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -/* Green */ - -.ui.inverted.menu .green.active.item, -.ui.inverted.green.menu { - background-color: #21BA45; -} - -.ui.inverted.green.menu .item:before { - background-color: rgba(34, 36, 38, 0.1); -} - -.ui.inverted.green.menu .active.item { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -/* Teal */ - -.ui.inverted.menu .teal.active.item, -.ui.inverted.teal.menu { - background-color: #00B5AD; -} - -.ui.inverted.teal.menu .item:before { - background-color: rgba(34, 36, 38, 0.1); -} - -.ui.inverted.teal.menu .active.item { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -/* Blue */ - -.ui.inverted.menu .blue.active.item, -.ui.inverted.blue.menu { - background-color: #2185D0; -} - -.ui.inverted.blue.menu .item:before { - background-color: rgba(34, 36, 38, 0.1); -} - -.ui.inverted.blue.menu .active.item { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -/* Violet */ - -.ui.inverted.menu .violet.active.item, -.ui.inverted.violet.menu { - background-color: #6435C9; -} - -.ui.inverted.violet.menu .item:before { - background-color: rgba(34, 36, 38, 0.1); -} - -.ui.inverted.violet.menu .active.item { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -/* Purple */ - -.ui.inverted.menu .purple.active.item, -.ui.inverted.purple.menu { - background-color: #A333C8; -} - -.ui.inverted.purple.menu .item:before { - background-color: rgba(34, 36, 38, 0.1); -} - -.ui.inverted.purple.menu .active.item { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -/* Pink */ - -.ui.inverted.menu .pink.active.item, -.ui.inverted.pink.menu { - background-color: #E03997; -} - -.ui.inverted.pink.menu .item:before { - background-color: rgba(34, 36, 38, 0.1); -} - -.ui.inverted.pink.menu .active.item { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -/* Brown */ - -.ui.inverted.menu .brown.active.item, -.ui.inverted.brown.menu { - background-color: #A5673F; -} - -.ui.inverted.brown.menu .item:before { - background-color: rgba(34, 36, 38, 0.1); -} - -.ui.inverted.brown.menu .active.item { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -/* Grey */ - -.ui.inverted.menu .grey.active.item, -.ui.inverted.grey.menu { - background-color: #767676; -} - -.ui.inverted.grey.menu .item:before { - background-color: rgba(34, 36, 38, 0.1); -} - -.ui.inverted.grey.menu .active.item { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -/*-------------- - Fitted ----------------*/ - -.ui.fitted.menu .item, -.ui.fitted.menu .item .menu .item, -.ui.menu .fitted.item { - padding: 0em; -} - -.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: 0em; - vertical-align: middle; -} - -.ui.compact.vertical.menu { - display: inline-block; -} - -.ui.compact.menu .item:last-child { - border-radius: 0em 0.28571429rem 0.28571429rem 0em; -} - -.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: 0em !important; - padding-right: 0em !important; - margin-left: 0em !important; - margin-right: 0em !important; - text-align: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; -} - -.ui.attached.item.menu { - margin: 0em -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.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%; -} - -/*-------------- - Fixed ----------------*/ - -.ui.menu.fixed { - position: fixed; - z-index: 101; - margin: 0em; - width: 100%; -} - -.ui.menu.fixed, -.ui.menu.fixed .item:first-child, -.ui.menu.fixed .item:last-child { - border-radius: 0px !important; -} - -.ui.fixed.menu, -.ui[class*="top fixed"].menu { - top: 0px; - left: 0px; - 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: 0px; - right: 0px; - left: auto; - bottom: auto; - width: auto; - height: 100%; -} - -.ui[class*="bottom fixed"].menu { - border-bottom: none; - border-left: none; - border-right: none; - bottom: 0px; - left: 0px; - top: auto; - right: auto; -} - -.ui[class*="left fixed"].menu { - border-top: none; - border-bottom: none; - border-left: none; - top: 0px; - left: 0px; - 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 0em 0em; - 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: 0em -0.5px 0em 0em; - border: none; - border-top: 1px solid #D4D4D5; - border-right: 1px solid #D4D4D5; -} - -/* 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; -} - -/*-------------- - Attached ----------------*/ - -/* Middle */ - -.ui.attached.menu { - top: 0px; - bottom: 0px; - border-radius: 0px; - margin: 0em -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: 0px; - margin-bottom: 0em; - top: 0px; - margin-top: 1rem; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -.ui.menu[class*="top attached"]:first-child { - margin-top: 0em; -} - -/* Bottom */ - -.ui[class*="bottom attached"].menu { - bottom: 0px; - margin-top: 0em; - top: 0px; - margin-bottom: 1rem; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none; - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none; - border-radius: 0em 0em 0.28571429rem 0.28571429rem; -} - -.ui[class*="bottom attached"].menu:last-child { - margin-bottom: 0em; -} - -/* Attached Menu Item */ - -.ui.top.attached.menu > .item:first-child { - border-radius: 0.28571429rem 0em 0em 0em; -} - -.ui.bottom.attached.menu > .item:first-child { - border-radius: 0em 0em 0em 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 ----------------*/ - -/* Mini */ - -.ui.mini.menu { - font-size: 0.78571429rem; -} - -.ui.mini.vertical.menu { - width: 9rem; -} - -/* Tiny */ - -.ui.tiny.menu { - font-size: 0.85714286rem; -} - -.ui.tiny.vertical.menu { - width: 11rem; -} - -/* Small */ - -.ui.small.menu { - font-size: 0.92857143rem; -} - -.ui.small.vertical.menu { - width: 13rem; -} - -/* Medium */ - -.ui.menu { - font-size: 1rem; -} - -.ui.vertical.menu { - width: 15rem; -} - -/* Large */ - -.ui.large.menu { - font-size: 1.07142857rem; -} - -.ui.large.vertical.menu { - width: 18rem; -} - -/* Huge */ - -.ui.huge.menu { - font-size: 1.21428571rem; -} - -.ui.huge.vertical.menu { - width: 22rem; -} - -/* Big */ - -.ui.big.menu { - font-size: 1.14285714rem; -} - -.ui.big.vertical.menu { - width: 20rem; -} - -/* Massive */ - -.ui.massive.menu { - font-size: 1.28571429rem; -} - -.ui.massive.vertical.menu { - width: 25rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Message -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Message -*******************************/ - -.ui.message { - position: relative; - min-height: 1em; - margin: 1em 0em; - 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: 0px 0px 0px 1px rgba(34, 36, 38, 0.22) inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.22) inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.message:first-child { - margin-top: 0em; -} - -.ui.message:last-child { - margin-bottom: 0em; -} - -/*-------------- - Content ----------------*/ - -/* Header */ - -.ui.message .header { - display: block; - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - font-weight: bold; - margin: -0.14285714em 0em 0rem 0em; -} - -/* Default font size */ - -.ui.message .header:not(.ui) { - font-size: 1.14285714em; -} - -/* Paragraph */ - -.ui.message p { - opacity: 0.85; - margin: 0.75em 0em; -} - -.ui.message p:first-child { - margin-top: 0em; -} - -.ui.message p:last-child { - margin-bottom: 0em; -} - -.ui.message .header + p { - margin-top: 0.25em; -} - -/* List */ - -.ui.message .list:not(.ui) { - text-align: left; - padding: 0em; - opacity: 0.85; - list-style-position: inside; - margin: 0.5em 0em 0em; -} - -.ui.message .list:not(.ui):first-child { - margin-top: 0em; -} - -.ui.message .list:not(.ui):last-child { - margin-bottom: 0em; -} - -.ui.message .list:not(.ui) li { - position: relative; - list-style-type: none; - margin: 0em 0em 0.3em 1em; - padding: 0em; -} - -.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: 0em; -} - -/* Icon */ - -.ui.message > .icon { - margin-right: 0.6em; -} - -/* Close Icon */ - -.ui.message > .close.icon { - cursor: pointer; - position: absolute; - margin: 0em; - 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: 0em; -} - -.ui.message > :last-child { - margin-bottom: 0em; -} - -/******************************* - Coupling -*******************************/ - -.ui.dropdown .menu > .message { - margin: 0px -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; -} - -/*-------------- - Attached ----------------*/ - -.ui.attached.message { - margin-bottom: -1px; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; - -webkit-box-shadow: 0em 0em 0em 1px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0em 0em 0em 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: 0em; -} - -.ui.bottom.attached.message { - margin-top: -1px; - border-radius: 0em 0em 0.28571429rem 0.28571429rem; - -webkit-box-shadow: 0em 0em 0em 1px rgba(34, 36, 38, 0.15) inset, 0px 1px 2px 0 rgba(34, 36, 38, 0.15); - box-shadow: 0em 0em 0em 1px rgba(34, 36, 38, 0.15) inset, 0px 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: 0rem; -} - -.ui.icon.message .circular.icon { - width: 1em; -} - -/*-------------- - Floating ----------------*/ - -.ui.floating.message { - -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.22) inset, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.22) inset, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); -} - -/*-------------- - Colors ----------------*/ - -.ui.black.message { - background-color: #1B1C1D; - color: rgba(255, 255, 255, 0.9); -} - -/*-------------- - Types ----------------*/ - -/* Positive */ - -.ui.positive.message { - background-color: #FCFFF5; - color: #2C662D; -} - -.ui.positive.message, -.ui.attached.positive.message { - -webkit-box-shadow: 0px 0px 0px 1px #A3C293 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #A3C293 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.positive.message .header { - color: #1A531B; -} - -/* Negative */ - -.ui.negative.message { - background-color: #FFF6F6; - color: #9F3A38; -} - -.ui.negative.message, -.ui.attached.negative.message { - -webkit-box-shadow: 0px 0px 0px 1px #E0B4B4 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #E0B4B4 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.negative.message .header { - color: #912D2B; -} - -/* Info */ - -.ui.info.message { - background-color: #F8FFFF; - color: #276F86; -} - -.ui.info.message, -.ui.attached.info.message { - -webkit-box-shadow: 0px 0px 0px 1px #A9D5DE inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #A9D5DE inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.info.message .header { - color: #0E566C; -} - -/* Warning */ - -.ui.warning.message { - background-color: #FFFAF3; - color: #573A08; -} - -.ui.warning.message, -.ui.attached.warning.message { - -webkit-box-shadow: 0px 0px 0px 1px #C9BA9B inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #C9BA9B inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.warning.message .header { - color: #794B02; -} - -/* Error */ - -.ui.error.message { - background-color: #FFF6F6; - color: #9F3A38; -} - -.ui.error.message, -.ui.attached.error.message { - -webkit-box-shadow: 0px 0px 0px 1px #E0B4B4 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #E0B4B4 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.error.message .header { - color: #912D2B; -} - -/* Success */ - -.ui.success.message { - background-color: #FCFFF5; - color: #2C662D; -} - -.ui.success.message, -.ui.attached.success.message { - -webkit-box-shadow: 0px 0px 0px 1px #A3C293 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #A3C293 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.success.message .header { - color: #1A531B; -} - -/* Colors */ - -.ui.inverted.message, -.ui.black.message { - background-color: #1B1C1D; - color: rgba(255, 255, 255, 0.9); -} - -.ui.red.message { - background-color: #FFE8E6; - color: #DB2828; - -webkit-box-shadow: 0px 0px 0px 1px #DB2828 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #DB2828 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.red.message .header { - color: #c82121; -} - -.ui.orange.message { - background-color: #FFEDDE; - color: #F2711C; - -webkit-box-shadow: 0px 0px 0px 1px #F2711C inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #F2711C inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.orange.message .header { - color: #e7640d; -} - -.ui.yellow.message { - background-color: #FFF8DB; - color: #B58105; - -webkit-box-shadow: 0px 0px 0px 1px #B58105 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #B58105 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.yellow.message .header { - color: #9c6f04; -} - -.ui.olive.message { - background-color: #FBFDEF; - color: #8ABC1E; - -webkit-box-shadow: 0px 0px 0px 1px #8ABC1E inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #8ABC1E inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.olive.message .header { - color: #7aa61a; -} - -.ui.green.message { - background-color: #E5F9E7; - color: #1EBC30; - -webkit-box-shadow: 0px 0px 0px 1px #1EBC30 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #1EBC30 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.green.message .header { - color: #1aa62a; -} - -.ui.teal.message { - background-color: #E1F7F7; - color: #10A3A3; - -webkit-box-shadow: 0px 0px 0px 1px #10A3A3 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #10A3A3 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.teal.message .header { - color: #0e8c8c; -} - -.ui.blue.message { - background-color: #DFF0FF; - color: #2185D0; - -webkit-box-shadow: 0px 0px 0px 1px #2185D0 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #2185D0 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.blue.message .header { - color: #1e77ba; -} - -.ui.violet.message { - background-color: #EAE7FF; - color: #6435C9; - -webkit-box-shadow: 0px 0px 0px 1px #6435C9 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #6435C9 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.violet.message .header { - color: #5a30b5; -} - -.ui.purple.message { - background-color: #F6E7FF; - color: #A333C8; - -webkit-box-shadow: 0px 0px 0px 1px #A333C8 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #A333C8 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.purple.message .header { - color: #922eb4; -} - -.ui.pink.message { - background-color: #FFE3FB; - color: #E03997; - -webkit-box-shadow: 0px 0px 0px 1px #E03997 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #E03997 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.pink.message .header { - color: #dd238b; -} - -.ui.brown.message { - background-color: #F1E2D3; - color: #A5673F; - -webkit-box-shadow: 0px 0px 0px 1px #A5673F inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #A5673F inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.brown.message .header { - color: #935b38; -} - -/*-------------- - Sizes ----------------*/ - -.ui.mini.message { - font-size: 0.78571429em; -} - -.ui.tiny.message { - font-size: 0.85714286em; -} - -.ui.small.message { - font-size: 0.92857143em; -} - -.ui.message { - font-size: 1em; -} - -.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 -*******************************/ -/*! -* # Semantic UI 2.3.0 - Table -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Table -*******************************/ - -/* Prototype */ - -.ui.table { - width: 100%; - background: #FFFFFF; - margin: 1em 0em; - border: 1px solid rgba(34, 36, 38, 0.15); - -webkit-box-shadow: none; - box-shadow: none; - border-radius: 0.28571429rem; - text-align: left; - color: rgba(0, 0, 0, 0.87); - border-collapse: separate; - border-spacing: 0px; -} - -.ui.table:first-child { - margin-top: 0em; -} - -.ui.table:last-child { - margin-bottom: 0em; -} - -/******************************* - 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 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 0em 0em 0em; -} - -.ui.table thead tr:first-child > th:last-child { - border-radius: 0em 0.28571429rem 0em 0em; -} - -.ui.table thead tr:first-child > th:only-child { - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -/* Footer */ - -.ui.table tfoot { - -webkit-box-shadow: none; - box-shadow: none; -} - -.ui.table tfoot th { - 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 { - border-left: none; -} - -.ui.table tfoot tr:first-child > th:first-child { - border-radius: 0em 0em 0em 0.28571429rem; -} - -.ui.table tfoot tr:first-child > th:last-child { - border-radius: 0em 0em 0.28571429rem 0em; -} - -.ui.table tfoot tr:first-child > th:only-child { - border-radius: 0em 0em 0.28571429rem 0.28571429rem; -} - -/* Table Row */ - -.ui.table tr td { - border-top: 1px solid rgba(34, 36, 38, 0.1); -} - -.ui.table 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 td { - padding: 0.78571429em 0.78571429em; - text-align: inherit; -} - -/* Icons */ - -.ui.table > .icon { - vertical-align: baseline; -} - -.ui.table > .icon:only-child { - margin: 0em; -} - -/* Table Segment */ - -.ui.table.segment { - padding: 0em; -} - -.ui.table.segment:after { - display: none; -} - -.ui.table.segment.stacked:after { - display: block; -} - -/* Responsive */ - -@media only screen and (max-width: 767px) { - .ui.table:not(.unstackable) { - width: 100%; - } - - .ui.table:not(.unstackable) tbody, - .ui.table:not(.unstackable) tr, - .ui.table:not(.unstackable) tr > th, - .ui.table:not(.unstackable) tr > td { - width: auto !important; - display: block !important; - } - - .ui.table:not(.unstackable) { - padding: 0em; - } - - .ui.table:not(.unstackable) thead { - display: block; - } - - .ui.table:not(.unstackable) tfoot { - display: block; - } - - .ui.table:not(.unstackable) tr { - padding-top: 1em; - padding-bottom: 1em; - -webkit-box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important; - box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important; - } - - .ui.table:not(.unstackable) tr > th, - .ui.table:not(.unstackable) tr > td { - background: none; - border: none !important; - padding: 0.25em 0.75em !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; - } - - .ui.table:not(.unstackable) th:first-child, - .ui.table:not(.unstackable) td:first-child { - font-weight: bold; - } - - /* Definition Table */ - - .ui.definition.table:not(.unstackable) thead th:first-child { - -webkit-box-shadow: none !important; - box-shadow: none !important; - } -} - -/******************************* - Coupling -*******************************/ - -/* UI Image */ - -.ui.table th .image, -.ui.table th .image img, -.ui.table td .image, -.ui.table td .image img { - max-width: none; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Complex ----------------*/ - -.ui.structured.table { - border-collapse: collapse; -} - -.ui.structured.table thead th { - border-left: none; - border-right: none; -} - -.ui.structured.sortable.table thead 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 th { - border-left: none; - border-right: none; -} - -.ui.structured.celled.table tr th, -.ui.structured.celled.table 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) th:first-child { - pointer-events: none; - background: transparent; - font-weight: normal; - color: rgba(0, 0, 0, 0.4); - -webkit-box-shadow: -1px -1px 0px 1px #FFFFFF; - box-shadow: -1px -1px 0px 1px #FFFFFF; -} - -.ui.definition.table tfoot:not(.full-width) th:first-child { - pointer-events: none; - background: transparent; - font-weight: rgba(0, 0, 0, 0.4); - color: normal; - -webkit-box-shadow: 1px 1px 0px 1px #FFFFFF; - box-shadow: 1px 1px 0px 1px #FFFFFF; -} - -/* Remove Border */ - -.ui.celled.definition.table thead:not(.full-width) th:first-child { - -webkit-box-shadow: 0px -1px 0px 1px #FFFFFF; - box-shadow: 0px -1px 0px 1px #FFFFFF; -} - -.ui.celled.definition.table tfoot:not(.full-width) th:first-child { - -webkit-box-shadow: 0px 1px 0px 1px #FFFFFF; - box-shadow: 0px 1px 0px 1px #FFFFFF; -} - -/* Highlight Defining Column */ - -.ui.definition.table 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) th:nth-child(2) { - border-left: 1px solid rgba(34, 36, 38, 0.15); -} - -.ui.definition.table tfoot:not(.full-width) th:nth-child(2) { - border-left: 1px solid rgba(34, 36, 38, 0.15); -} - -.ui.definition.table td:nth-child(2) { - border-left: 1px solid rgba(34, 36, 38, 0.15); -} - -/******************************* - States -*******************************/ - -/*-------------- - Positive ----------------*/ - -.ui.table tr.positive, -.ui.table td.positive { - -webkit-box-shadow: 0px 0px 0px #A3C293 inset; - box-shadow: 0px 0px 0px #A3C293 inset; -} - -.ui.table tr.positive, -.ui.table td.positive { - background: #FCFFF5 !important; - color: #2C662D !important; -} - -/*-------------- - Negative ----------------*/ - -.ui.table tr.negative, -.ui.table td.negative { - -webkit-box-shadow: 0px 0px 0px #E0B4B4 inset; - box-shadow: 0px 0px 0px #E0B4B4 inset; -} - -.ui.table tr.negative, -.ui.table td.negative { - background: #FFF6F6 !important; - color: #9F3A38 !important; -} - -/*-------------- - Error ----------------*/ - -.ui.table tr.error, -.ui.table td.error { - -webkit-box-shadow: 0px 0px 0px #E0B4B4 inset; - box-shadow: 0px 0px 0px #E0B4B4 inset; -} - -.ui.table tr.error, -.ui.table td.error { - background: #FFF6F6 !important; - color: #9F3A38 !important; -} - -/*-------------- - Warning ----------------*/ - -.ui.table tr.warning, -.ui.table td.warning { - -webkit-box-shadow: 0px 0px 0px #C9BA9B inset; - box-shadow: 0px 0px 0px #C9BA9B inset; -} - -.ui.table tr.warning, -.ui.table td.warning { - background: #FFFAF3 !important; - color: #573A08 !important; -} - -/*-------------- - Active ----------------*/ - -.ui.table tr.active, -.ui.table td.active { - -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.87) inset; - box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.87) inset; -} - -.ui.table tr.active, -.ui.table td.active { - background: #E0E0E0 !important; - color: rgba(0, 0, 0, 0.87) !important; -} - -/*-------------- - 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: 991px) { - .ui[class*="tablet stackable"].table, - .ui[class*="tablet stackable"].table tbody, - .ui[class*="tablet stackable"].table tr, - .ui[class*="tablet stackable"].table tr > th, - .ui[class*="tablet stackable"].table tr > td { - width: 100% !important; - display: block !important; - } - - .ui[class*="tablet stackable"].table { - padding: 0em; - } - - .ui[class*="tablet stackable"].table thead { - display: block; - } - - .ui[class*="tablet stackable"].table tfoot { - display: block; - } - - .ui[class*="tablet stackable"].table tr { - padding-top: 1em; - padding-bottom: 1em; - -webkit-box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important; - box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important; - } - - .ui[class*="tablet stackable"].table tr > th, - .ui[class*="tablet stackable"].table tr > td { - background: none; - border: none !important; - padding: 0.25em 0.75em; - -webkit-box-shadow: none !important; - box-shadow: none !important; - } - - /* Definition Table */ - - .ui.definition[class*="tablet stackable"].table thead th:first-child { - -webkit-box-shadow: none !important; - box-shadow: none !important; - } -} - -/*-------------- -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.selectable.table tbody tr:hover, -.ui.table tbody tr td.selectable:hover { - background: rgba(0, 0, 0, 0.05) !important; - color: rgba(0, 0, 0, 0.95) !important; -} - -.ui.selectable.inverted.table tbody tr:hover, -.ui.inverted.table tbody tr td.selectable:hover { - background: rgba(255, 255, 255, 0.08) !important; - color: #ffffff !important; -} - -/* Selectable Cell Link */ - -.ui.table tbody tr td.selectable { - padding: 0em; -} - -.ui.table tbody tr td.selectable > a:not(.ui) { - display: block; - color: inherit; - padding: 0.78571429em 0.78571429em; -} - -/* Other States */ - -.ui.selectable.table tr.error:hover, -.ui.table tr td.selectable.error:hover, -.ui.selectable.table tr:hover td.error { - background: #ffe7e7 !important; - color: #943634 !important; -} - -.ui.selectable.table tr.warning:hover, -.ui.table tr td.selectable.warning:hover, -.ui.selectable.table tr:hover td.warning { - background: #fff4e4 !important; - color: #493107 !important; -} - -.ui.selectable.table tr.active:hover, -.ui.table tr td.selectable.active:hover, -.ui.selectable.table tr:hover td.active { - background: #E0E0E0 !important; - color: rgba(0, 0, 0, 0.87) !important; -} - -.ui.selectable.table tr.positive:hover, -.ui.table tr td.selectable.positive:hover, -.ui.selectable.table tr:hover td.positive { - background: #f7ffe6 !important; - color: #275b28 !important; -} - -.ui.selectable.table tr.negative:hover, -.ui.table tr td.selectable.negative:hover, -.ui.selectable.table tr:hover td.negative { - background: #ffe7e7 !important; - color: #943634 !important; -} - -/*------------------- - Attached ---------------------*/ - -/* Middle */ - -.ui.attached.table { - top: 0px; - bottom: 0px; - border-radius: 0px; - margin: 0em -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: 0px; - margin-bottom: 0em; - top: 0px; - margin-top: 1em; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -.ui.table[class*="top attached"]:first-child { - margin-top: 0em; -} - -/* Bottom */ - -.ui[class*="bottom attached"].table { - bottom: 0px; - margin-top: 0em; - top: 0px; - margin-bottom: 1em; - -webkit-box-shadow: none, none; - box-shadow: none, none; - border-radius: 0em 0em 0.28571429rem 0.28571429rem; -} - -.ui[class*="bottom attached"].table:last-child { - margin-bottom: 0em; -} - -/*-------------- - 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 !important; - color: rgba(0, 0, 0, 0.95) !important; -} - -/*-------------- - Single Line ----------------*/ - -.ui.table[class*="single line"], -.ui.table [class*="single line"] { - white-space: nowrap; -} - -.ui.table[class*="single line"], -.ui.table [class*="single line"] { - white-space: nowrap; -} - -/*------------------- - Colors ---------------------*/ - -/* Red */ - -.ui.red.table { - border-top: 0.2em solid #DB2828; -} - -.ui.inverted.red.table { - background-color: #DB2828 !important; - color: #FFFFFF !important; -} - -/* Orange */ - -.ui.orange.table { - border-top: 0.2em solid #F2711C; -} - -.ui.inverted.orange.table { - background-color: #F2711C !important; - color: #FFFFFF !important; -} - -/* Yellow */ - -.ui.yellow.table { - border-top: 0.2em solid #FBBD08; -} - -.ui.inverted.yellow.table { - background-color: #FBBD08 !important; - color: #FFFFFF !important; -} - -/* Olive */ - -.ui.olive.table { - border-top: 0.2em solid #B5CC18; -} - -.ui.inverted.olive.table { - background-color: #B5CC18 !important; - color: #FFFFFF !important; -} - -/* Green */ - -.ui.green.table { - border-top: 0.2em solid #21BA45; -} - -.ui.inverted.green.table { - background-color: #21BA45 !important; - color: #FFFFFF !important; -} - -/* Teal */ - -.ui.teal.table { - border-top: 0.2em solid #00B5AD; -} - -.ui.inverted.teal.table { - background-color: #00B5AD !important; - color: #FFFFFF !important; -} - -/* Blue */ - -.ui.blue.table { - border-top: 0.2em solid #2185D0; -} - -.ui.inverted.blue.table { - background-color: #2185D0 !important; - color: #FFFFFF !important; -} - -/* Violet */ - -.ui.violet.table { - border-top: 0.2em solid #6435C9; -} - -.ui.inverted.violet.table { - background-color: #6435C9 !important; - color: #FFFFFF !important; -} - -/* Purple */ - -.ui.purple.table { - border-top: 0.2em solid #A333C8; -} - -.ui.inverted.purple.table { - background-color: #A333C8 !important; - color: #FFFFFF !important; -} - -/* Pink */ - -.ui.pink.table { - border-top: 0.2em solid #E03997; -} - -.ui.inverted.pink.table { - background-color: #E03997 !important; - color: #FFFFFF !important; -} - -/* Brown */ - -.ui.brown.table { - border-top: 0.2em solid #A5673F; -} - -.ui.inverted.brown.table { - background-color: #A5673F !important; - color: #FFFFFF !important; -} - -/* Grey */ - -.ui.grey.table { - border-top: 0.2em solid #767676; -} - -.ui.inverted.grey.table { - background-color: #767676 !important; - color: #FFFFFF !important; -} - -/* Black */ - -.ui.black.table { - border-top: 0.2em solid #1B1C1D; -} - -.ui.inverted.black.table { - background-color: #1B1C1D !important; - color: #FFFFFF !important; -} - -/*-------------- - 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 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 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 th:after { - display: none; - font-style: normal; - font-weight: normal; - text-decoration: inherit; - content: ''; - height: 1em; - width: auto; - opacity: 0.8; - margin: 0em 0em 0em 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 th:hover { - background: rgba(0, 0, 0, 0.05); - color: rgba(0, 0, 0, 0.8); -} - -/* Sorted */ - -.ui.sortable.table thead th.sorted { - background: rgba(0, 0, 0, 0.05); - color: rgba(0, 0, 0, 0.95); -} - -.ui.sortable.table thead th.sorted:after { - display: inline-block; -} - -/* Sorted Hover */ - -.ui.sortable.table thead th.sorted:hover { - background: rgba(0, 0, 0, 0.05); - color: rgba(0, 0, 0, 0.95); -} - -/* Inverted */ - -.ui.inverted.sortable.table 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)); - color: #ffffff; -} - -.ui.inverted.sortable.table thead 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)); - color: #ffffff; -} - -.ui.inverted.sortable.table thead 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.inverted.table th { - background-color: rgba(0, 0, 0, 0.15); - border-color: rgba(255, 255, 255, 0.1) !important; - color: rgba(255, 255, 255, 0.9) !important; -} - -.ui.inverted.table tr td { - border-color: rgba(255, 255, 255, 0.1) !important; -} - -.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); -} - -/* Definition */ - -.ui.inverted.definition.table tfoot:not(.full-width) th:first-child, -.ui.inverted.definition.table thead:not(.full-width) th:first-child { - background: #FFFFFF; -} - -.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 th { - background: transparent; - border-left: none; -} - -.ui.basic.table tbody tr { - border-bottom: 1px solid rgba(0, 0, 0, 0.1); -} - -.ui.basic.table td { - background: transparent; -} - -.ui.basic.striped.table tbody tr:nth-child(2n) { - background-color: rgba(0, 0, 0, 0.05) !important; -} - -/* Very Basic */ - -.ui[class*="very basic"].table { - border: none; -} - -.ui[class*="very basic"].table:not(.sortable):not(.striped) th, -.ui[class*="very basic"].table:not(.sortable):not(.striped) td { - padding: ''; -} - -.ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child, -.ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child { - padding-left: 0em; -} - -.ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child, -.ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child { - padding-right: 0em; -} - -.ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th { - padding-top: 0em; -} - -/*-------------- - Celled ----------------*/ - -.ui.celled.table tr th, -.ui.celled.table tr td { - border-left: 1px solid rgba(34, 36, 38, 0.1); -} - -.ui.celled.table tr th:first-child, -.ui.celled.table tr td:first-child { - border-left: none; -} - -/*-------------- - Padded ----------------*/ - -.ui.padded.table th { - padding-left: 1em; - padding-right: 1em; -} - -.ui.padded.table th, -.ui.padded.table td { - padding: 1em 1em; -} - -/* Very */ - -.ui[class*="very padded"].table th { - padding-left: 1.5em; - padding-right: 1.5em; -} - -.ui[class*="very padded"].table td { - padding: 1.5em 1.5em; -} - -/*-------------- - Compact ----------------*/ - -.ui.compact.table th { - padding-left: 0.7em; - padding-right: 0.7em; -} - -.ui.compact.table td { - padding: 0.5em 0.7em; -} - -/* Very */ - -.ui[class*="very compact"].table th { - padding-left: 0.6em; - padding-right: 0.6em; -} - -.ui[class*="very compact"].table td { - padding: 0.4em 0.6em; -} - -/*-------------- - Sizes ----------------*/ - -/* Small */ - -.ui.small.table { - font-size: 0.9em; -} - -/* Standard */ - -.ui.table { - font-size: 1em; -} - -/* Large */ - -.ui.large.table { - font-size: 1.1em; -} - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Ad -* http://github.com/semantic-org/semantic-ui/ -* -* -* Copyright 2013 Contributors -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Advertisement -*******************************/ - -.ui.ad { - display: block; - overflow: hidden; - margin: 1em 0em; -} - -.ui.ad:first-child { - margin: 0em; -} - -.ui.ad:last-child { - margin: 0em; -} - -.ui.ad iframe { - margin: 0em; - padding: 0em; - 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: 767px) { - .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 -*******************************/ -/*! -* # Semantic UI 2.3.0 - Item -* http://github.com/semantic-org/semantic-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: 0px; - background: #FFFFFF; - padding: 0em; - border: none; - border-radius: 0.28571429rem; - -webkit-box-shadow: 0px 1px 3px 0px #D4D4D5, 0px 0px 0px 1px #D4D4D5; - box-shadow: 0px 1px 3px 0px #D4D4D5, 0px 0px 0px 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: ''; -} - -.ui.card { - margin: 1em 0em; -} - -.ui.cards > .card a, -.ui.card a { - cursor: pointer; -} - -.ui.card:first-child { - margin-top: 0em; -} - -.ui.card:last-child { - margin-bottom: 0em; -} - -/*-------------- - 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: 0px; - 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 0em 0em !important; - border-top: none !important; -} - -.ui.cards > .card > :last-child, -.ui.card > :last-child { - border-radius: 0em 0em 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: 0em; - 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: 0em; - padding: 1em 1em; - -webkit-box-shadow: none; - box-shadow: none; - font-size: 1em; - border-radius: 0em; -} - -.ui.cards > .card > .content:after, -.ui.card > .content:after { - display: block; - content: ' '; - height: 0px; - 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: 0em 0em 0.5em; -} - -.ui.cards > .card > .content p:last-child, -.ui.card > .content p:last-child { - margin-bottom: 0em; -} - -/*-------------- - 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: 0em; -} - -.ui.cards > .card .meta [class*="right floated"], -.ui.card .meta [class*="right floated"] { - margin-right: 0em; - 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: 0px -1px; - width: calc(100% + 2px ); -} - -/*-------------- - 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: 0em !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: 0em 0em; - padding: 0.75em 1em; - top: 0em; - left: 0em; - 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 -*******************************/ - -/*------------------- - Raised ---------------------*/ - -.ui.raised.cards > .card, -.ui.raised.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px 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: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px rgba(34, 36, 38, 0.15), 0px 2px 10px 0px rgba(34, 36, 38, 0.25); - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px rgba(34, 36, 38, 0.15), 0px 2px 10px 0px rgba(34, 36, 38, 0.25); -} - -.ui.raised.cards > .card, -.ui.raised.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); -} - -/*------------------- - 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:hover, -a.ui.card:hover, -.ui.link.card:hover { - cursor: pointer; - z-index: 5; - background: #FFFFFF; - border: none; - -webkit-box-shadow: 0px 1px 3px 0px #BCBDBD, 0px 0px 0px 1px #D4D4D5; - box-shadow: 0px 1px 3px 0px #BCBDBD, 0px 0px 0px 1px #D4D4D5; - -webkit-transform: translateY(-3px); - transform: translateY(-3px); -} - -/*------------------- - Colors ---------------------*/ - -/* Red */ - -.ui.red.cards > .card, -.ui.cards > .red.card, -.ui.red.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #DB2828, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #DB2828, 0px 1px 3px 0px #D4D4D5; -} - -.ui.red.cards > .card:hover, -.ui.cards > .red.card:hover, -.ui.red.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #d01919, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #d01919, 0px 1px 3px 0px #BCBDBD; -} - -/* Orange */ - -.ui.orange.cards > .card, -.ui.cards > .orange.card, -.ui.orange.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #F2711C, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #F2711C, 0px 1px 3px 0px #D4D4D5; -} - -.ui.orange.cards > .card:hover, -.ui.cards > .orange.card:hover, -.ui.orange.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #f26202, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #f26202, 0px 1px 3px 0px #BCBDBD; -} - -/* Yellow */ - -.ui.yellow.cards > .card, -.ui.cards > .yellow.card, -.ui.yellow.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #FBBD08, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #FBBD08, 0px 1px 3px 0px #D4D4D5; -} - -.ui.yellow.cards > .card:hover, -.ui.cards > .yellow.card:hover, -.ui.yellow.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #eaae00, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #eaae00, 0px 1px 3px 0px #BCBDBD; -} - -/* Olive */ - -.ui.olive.cards > .card, -.ui.cards > .olive.card, -.ui.olive.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #B5CC18, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #B5CC18, 0px 1px 3px 0px #D4D4D5; -} - -.ui.olive.cards > .card:hover, -.ui.cards > .olive.card:hover, -.ui.olive.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #a7bd0d, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #a7bd0d, 0px 1px 3px 0px #BCBDBD; -} - -/* Green */ - -.ui.green.cards > .card, -.ui.cards > .green.card, -.ui.green.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #21BA45, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #21BA45, 0px 1px 3px 0px #D4D4D5; -} - -.ui.green.cards > .card:hover, -.ui.cards > .green.card:hover, -.ui.green.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #16ab39, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #16ab39, 0px 1px 3px 0px #BCBDBD; -} - -/* Teal */ - -.ui.teal.cards > .card, -.ui.cards > .teal.card, -.ui.teal.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #00B5AD, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #00B5AD, 0px 1px 3px 0px #D4D4D5; -} - -.ui.teal.cards > .card:hover, -.ui.cards > .teal.card:hover, -.ui.teal.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #009c95, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #009c95, 0px 1px 3px 0px #BCBDBD; -} - -/* Blue */ - -.ui.blue.cards > .card, -.ui.cards > .blue.card, -.ui.blue.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #2185D0, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #2185D0, 0px 1px 3px 0px #D4D4D5; -} - -.ui.blue.cards > .card:hover, -.ui.cards > .blue.card:hover, -.ui.blue.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #1678c2, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #1678c2, 0px 1px 3px 0px #BCBDBD; -} - -/* Violet */ - -.ui.violet.cards > .card, -.ui.cards > .violet.card, -.ui.violet.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #6435C9, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #6435C9, 0px 1px 3px 0px #D4D4D5; -} - -.ui.violet.cards > .card:hover, -.ui.cards > .violet.card:hover, -.ui.violet.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #5829bb, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #5829bb, 0px 1px 3px 0px #BCBDBD; -} - -/* Purple */ - -.ui.purple.cards > .card, -.ui.cards > .purple.card, -.ui.purple.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #A333C8, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #A333C8, 0px 1px 3px 0px #D4D4D5; -} - -.ui.purple.cards > .card:hover, -.ui.cards > .purple.card:hover, -.ui.purple.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #9627ba, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #9627ba, 0px 1px 3px 0px #BCBDBD; -} - -/* Pink */ - -.ui.pink.cards > .card, -.ui.cards > .pink.card, -.ui.pink.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #E03997, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #E03997, 0px 1px 3px 0px #D4D4D5; -} - -.ui.pink.cards > .card:hover, -.ui.cards > .pink.card:hover, -.ui.pink.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #e61a8d, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #e61a8d, 0px 1px 3px 0px #BCBDBD; -} - -/* Brown */ - -.ui.brown.cards > .card, -.ui.cards > .brown.card, -.ui.brown.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #A5673F, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #A5673F, 0px 1px 3px 0px #D4D4D5; -} - -.ui.brown.cards > .card:hover, -.ui.cards > .brown.card:hover, -.ui.brown.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #975b33, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #975b33, 0px 1px 3px 0px #BCBDBD; -} - -/* Grey */ - -.ui.grey.cards > .card, -.ui.cards > .grey.card, -.ui.grey.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #767676, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #767676, 0px 1px 3px 0px #D4D4D5; -} - -.ui.grey.cards > .card:hover, -.ui.cards > .grey.card:hover, -.ui.grey.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #838383, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #838383, 0px 1px 3px 0px #BCBDBD; -} - -/* Black */ - -.ui.black.cards > .card, -.ui.cards > .black.card, -.ui.black.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #1B1C1D, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #1B1C1D, 0px 1px 3px 0px #D4D4D5; -} - -.ui.black.cards > .card:hover, -.ui.cards > .black.card:hover, -.ui.black.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #27292a, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #27292a, 0px 1px 3px 0px #BCBDBD; -} - -/*-------------- - Card Count ----------------*/ - -.ui.one.cards { - margin-left: 0em; - margin-right: 0em; -} - -.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.33333333% - 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.66666667% - 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.28571429% - 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.11111111% - 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: 767px) { - .ui.two.doubling.cards { - margin-left: 0em; - margin-right: 0em; - } - - .ui.two.doubling.cards > .card { - width: 100%; - margin-left: 0em; - margin-right: 0em; - } - - .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.33333333% - 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.33333333% - 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.33333333% - 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.33333333% - 2em ); - margin-left: 1em; - margin-right: 1em; - } -} - -/* Tablet Only */ - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ui.two.doubling.cards { - margin-left: 0em; - margin-right: 0em; - } - - .ui.two.doubling.cards > .card { - width: 100%; - margin-left: 0em; - margin-right: 0em; - } - - .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.33333333% - 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.33333333% - 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.33333333% - 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: 767px) { - .ui.stackable.cards { - display: block !important; - } - - .ui.stackable.cards .card:first-child { - margin-top: 0em !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; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Variable Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Comment -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Standard -*******************************/ - -/*-------------- - Comments ----------------*/ - -.ui.comments { - margin: 1.5em 0em; - max-width: 650px; -} - -.ui.comments:first-child { - margin-top: 0em; -} - -.ui.comments:last-child { - margin-bottom: 0em; -} - -/*-------------- - Comment ----------------*/ - -.ui.comments .comment { - position: relative; - background: none; - margin: 0.5em 0em 0em; - padding: 0.5em 0em 0em; - border: none; - border-top: none; - line-height: 1.2; -} - -.ui.comments .comment:first-child { - margin-top: 0em; - padding-top: 0em; -} - -/*-------------------- - Nested Comments ----------------------*/ - -.ui.comments .comment .comments { - margin: 0em 0em 0.5em 0.5em; - padding: 1em 0em 1em 1em; -} - -.ui.comments .comment .comments:before { - position: absolute; - top: 0px; - left: 0px; -} - -.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 0em 0em; -} - -.ui.comments .comment img.avatar, -.ui.comments .comment .avatar img { - display: block; - margin: 0em 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: 0em 0.5em 0em 0em; -} - -.ui.comments .comment .metadata > :last-child { - margin-right: 0em; -} - -/*-------------------- - Comment Text ----------------------*/ - -.ui.comments .comment .text { - margin: 0.25em 0em 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: 0em 0.75em 0em 0em; - color: rgba(0, 0, 0, 0.4); -} - -.ui.comments .comment .actions a:last-child { - margin-right: 0em; -} - -.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 0em 2em 2.25em; - -webkit-box-shadow: -1px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: -1px 0px 0px rgba(34, 36, 38, 0.15); -} - -/*-------------------- - Minimal ----------------------*/ - -.ui.minimal.comments .comment .actions { - opacity: 0; - position: absolute; - top: 0px; - right: 0px; - 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.mini.comments { - font-size: 0.78571429rem; -} - -.ui.tiny.comments { - font-size: 0.85714286rem; -} - -.ui.small.comments { - font-size: 0.92857143rem; -} - -.ui.comments { - font-size: 1rem; -} - -.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; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Variable Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Feed -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Activity Feed -*******************************/ - -.ui.feed { - margin: 1em 0em; -} - -.ui.feed:first-child { - margin-top: 0em; -} - -.ui.feed:last-child { - margin-bottom: 0em; -} - -/******************************* - 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 0em; - margin: 0em; - background: none; - border-top: none; -} - -.ui.feed > .event:first-child { - border-top: 0px; - padding-top: 0em; -} - -.ui.feed > .event:last-child { - padding-bottom: 0em; -} - -/* 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 0em 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: 0em; -} - -/* Link */ - -.ui.feed > .event > .content a { - cursor: pointer; -} - -/*-------------- - Date ----------------*/ - -.ui.feed > .event > .content .date { - margin: -0.5rem 0em 0em; - padding: 0em; - font-weight: normal; - font-size: 1em; - font-style: normal; - color: rgba(0, 0, 0, 0.4); -} - -/*-------------- - Summary ----------------*/ - -.ui.feed > .event > .content .summary { - margin: 0em; - 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 0em 0em; - border-radius: 0.25em; - vertical-align: middle; -} - -/*-------------- - User ----------------*/ - -.ui.feed > .event > .content .user { - display: inline-block; - font-weight: bold; - margin-right: 0em; - vertical-align: baseline; -} - -.ui.feed > .event > .content .user img { - margin: -0.25em 0.25em 0em 0em; - 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: 0em 0em 0em 0.5em; - padding: 0em; - color: rgba(0, 0, 0, 0.4); -} - -/*-------------- - Extra Summary ----------------*/ - -.ui.feed > .event > .content .extra { - margin: 0.5em 0em 0em; - background: none; - padding: 0em; - color: rgba(0, 0, 0, 0.87); -} - -/* Images */ - -.ui.feed > .event > .content .extra.images img { - display: inline-block; - margin: 0em 0.25em 0em 0em; - width: 6em; -} - -/* Text */ - -.ui.feed > .event > .content .extra.text { - padding: 0em; - 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 0em 0em; - background: none; - border: none; - border-radius: 0; - -webkit-box-shadow: none; - box-shadow: none; - padding: 0em; - 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: 0em; - 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: 0em; -} - -.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.small.feed { - font-size: 0.92857143rem; -} - -.ui.feed { - font-size: 1rem; -} - -.ui.large.feed { - font-size: 1.14285714rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Variable Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Item -* http://github.com/semantic-org/semantic-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 0em; - width: 100%; - min-height: 0px; - background: transparent; - padding: 0em; - border: none; - border-radius: 0rem; - -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 0em; -} - -.ui.items:first-child { - margin-top: 0em !important; -} - -.ui.items:last-child { - margin-bottom: 0em !important; -} - -/*-------------- - Item ----------------*/ - -.ui.items > .item:after { - display: block; - content: ' '; - height: 0px; - clear: both; - overflow: hidden; - visibility: hidden; -} - -.ui.items > .item:first-child { - margin-top: 0em; -} - -.ui.items > .item:last-child { - margin-bottom: 0em; -} - -/*-------------- - 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: 0em; - padding: 0em; - max-height: ''; - -ms-flex-item-align: top; - align-self: top; -} - -.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: 0rem; -} - -/*-------------- - Content ----------------*/ - -.ui.items > .item > .content { - display: block; - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - background: none; - margin: 0em; - padding: 0em; - -webkit-box-shadow: none; - box-shadow: none; - font-size: 1em; - border: none; - border-radius: 0em; -} - -.ui.items > .item > .content:after { - display: block; - content: ' '; - height: 0px; - clear: both; - overflow: hidden; - visibility: hidden; -} - -.ui.items > .item > .image + .content { - min-width: 0; - width: auto; - display: block; - margin-left: 0em; - -ms-flex-item-align: top; - align-self: top; - padding-left: 1.5em; -} - -.ui.items > .item > .content > .header { - display: inline-block; - margin: -0.21425em 0em 0em; - 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: middle; - align-self: middle; - 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: 0em 0em 0.5em; -} - -.ui.items > .item > .content p:last-child { - margin-bottom: 0em; -} - -/*-------------- - Meta ----------------*/ - -.ui.items > .item .meta { - margin: 0.5em 0em 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: 0em; -} - -.ui.items > .item .meta [class*="right floated"] { - margin-right: 0em; - 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 0em 0em; - width: 100%; - padding: 0em 0em 0em; - top: 0em; - left: 0em; - 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 0em; -} - -.ui.items > .item .extra > [class*="right floated"] { - margin: 0.25rem 0em 0.25rem 0.5rem; -} - -.ui.items > .item .extra:after { - display: block; - content: ' '; - height: 0px; - 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: 991px) { - .ui.items > .item { - margin: 1em 0em; - } - - .ui.items > .item > .image:not(.ui) { - width: 150px; - } - - .ui.items > .item > .image + .content { - display: block; - padding: 0em 0em 0em 1em; - } -} - -/* Mobile Only */ - -@media only screen and (max-width: 767px) { - .ui.items:not(.unstackable) > .item { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - margin: 2em 0em; - } - - .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 0em 0em; - } -} - -/******************************* - 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 0em; -} - -.ui[class*="very relaxed"].items > .item { - margin: 2em 0em; -} - -/*------------------- - Divided ---------------------*/ - -.ui.divided.items > .item { - border-top: 1px solid rgba(34, 36, 38, 0.15); - margin: 0em; - padding: 1em 0em; -} - -.ui.divided.items > .item:first-child { - border-top: none; - margin-top: 0em !important; - padding-top: 0em !important; -} - -.ui.divided.items > .item:last-child { - margin-bottom: 0em !important; - padding-bottom: 0em !important; -} - -/* Relaxed Divided */ - -.ui.relaxed.divided.items > .item { - margin: 0em; - padding: 1.5em 0em; -} - -.ui[class*="very relaxed"].divided.items > .item { - margin: 0em; - padding: 2em 0em; -} - -/*------------------- - 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; -} - -/*--------------- - Unstackable -----------------*/ - -@media only screen and (max-width: 767px) { - .ui.unstackable.items > .item > .image, - .ui.unstackable.items > .item > .image > img { - width: 125px !important; - } -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Variable Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Statistic -* http://github.com/semantic-org/semantic-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 0em; - max-width: auto; -} - -.ui.statistic + .ui.statistic { - margin: 0em 0em 0em 1.5em; -} - -.ui.statistic:first-child { - margin-top: 0em; -} - -.ui.statistic:last-child { - margin-bottom: 0em; -} - -/******************************* - 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: 0em 1.5em 2em; - max-width: auto; -} - -.ui.statistics { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - margin: 1em -1.5em -2em; -} - -/* Clearing */ - -.ui.statistics:after { - display: block; - content: ' '; - height: 0px; - clear: both; - overflow: hidden; - visibility: hidden; -} - -.ui.statistics:first-child { - margin-top: 0em; -} - -.ui.statistics:last-child { - margin-bottom: 0em; -} - -/******************************* - 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: 0rem; -} - -/* Bottom Label */ - -.ui.statistics .statistic > .value ~ .label, -.ui.statistic > .value ~ .label { - margin-top: 0rem; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Icon Value ----------------*/ - -.ui.statistics .statistic > .value .icon, -.ui.statistic > .value .icon { - opacity: 1; - width: auto; - margin: 0em; -} - -/*-------------- - 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: 0em 0em -2em; -} - -.ui.ten.statistics .statistic { - min-width: 10%; - margin: 0em 0em 2em; -} - -.ui.nine.statistics { - margin: 0em 0em -2em; -} - -.ui.nine.statistics .statistic { - min-width: 11.11111111%; - margin: 0em 0em 2em; -} - -.ui.eight.statistics { - margin: 0em 0em -2em; -} - -.ui.eight.statistics .statistic { - min-width: 12.5%; - margin: 0em 0em 2em; -} - -.ui.seven.statistics { - margin: 0em 0em -2em; -} - -.ui.seven.statistics .statistic { - min-width: 14.28571429%; - margin: 0em 0em 2em; -} - -.ui.six.statistics { - margin: 0em 0em -2em; -} - -.ui.six.statistics .statistic { - min-width: 16.66666667%; - margin: 0em 0em 2em; -} - -.ui.five.statistics { - margin: 0em 0em -2em; -} - -.ui.five.statistics .statistic { - min-width: 20%; - margin: 0em 0em 2em; -} - -.ui.four.statistics { - margin: 0em 0em -2em; -} - -.ui.four.statistics .statistic { - min-width: 25%; - margin: 0em 0em 2em; -} - -.ui.three.statistics { - margin: 0em 0em -2em; -} - -.ui.three.statistics .statistic { - min-width: 33.33333333%; - margin: 0em 0em 2em; -} - -.ui.two.statistics { - margin: 0em 0em -2em; -} - -.ui.two.statistics .statistic { - min-width: 50%; - margin: 0em 0em 2em; -} - -.ui.one.statistics { - margin: 0em 0em -2em; -} - -.ui.one.statistics .statistic { - min-width: 100%; - margin: 0em 0em 2em; -} - -/*-------------- - 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: 0em; - 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 0em; -} - -.ui.horizontal.statistic > .text.value, -.ui.horizontal.statistics > .statistic > .text.value { - min-height: 0em !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: 0em 0em 0em 0.75em; -} - -/*-------------- - Colors ----------------*/ - -.ui.red.statistics .statistic > .value, -.ui.statistics .red.statistic > .value, -.ui.red.statistic > .value { - color: #DB2828; -} - -.ui.orange.statistics .statistic > .value, -.ui.statistics .orange.statistic > .value, -.ui.orange.statistic > .value { - color: #F2711C; -} - -.ui.yellow.statistics .statistic > .value, -.ui.statistics .yellow.statistic > .value, -.ui.yellow.statistic > .value { - color: #FBBD08; -} - -.ui.olive.statistics .statistic > .value, -.ui.statistics .olive.statistic > .value, -.ui.olive.statistic > .value { - color: #B5CC18; -} - -.ui.green.statistics .statistic > .value, -.ui.statistics .green.statistic > .value, -.ui.green.statistic > .value { - color: #21BA45; -} - -.ui.teal.statistics .statistic > .value, -.ui.statistics .teal.statistic > .value, -.ui.teal.statistic > .value { - color: #00B5AD; -} - -.ui.blue.statistics .statistic > .value, -.ui.statistics .blue.statistic > .value, -.ui.blue.statistic > .value { - color: #2185D0; -} - -.ui.violet.statistics .statistic > .value, -.ui.statistics .violet.statistic > .value, -.ui.violet.statistic > .value { - color: #6435C9; -} - -.ui.purple.statistics .statistic > .value, -.ui.statistics .purple.statistic > .value, -.ui.purple.statistic > .value { - color: #A333C8; -} - -.ui.pink.statistics .statistic > .value, -.ui.statistics .pink.statistic > .value, -.ui.pink.statistic > .value { - color: #E03997; -} - -.ui.brown.statistics .statistic > .value, -.ui.statistics .brown.statistic > .value, -.ui.brown.statistic > .value { - color: #A5673F; -} - -.ui.grey.statistics .statistic > .value, -.ui.statistics .grey.statistic > .value, -.ui.grey.statistic > .value { - color: #767676; -} - -/*-------------- - 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); -} - -.ui.inverted.red.statistics .statistic > .value, -.ui.statistics .inverted.red.statistic > .value, -.ui.inverted.red.statistic > .value { - color: #FF695E; -} - -.ui.inverted.orange.statistics .statistic > .value, -.ui.statistics .inverted.orange.statistic > .value, -.ui.inverted.orange.statistic > .value { - color: #FF851B; -} - -.ui.inverted.yellow.statistics .statistic > .value, -.ui.statistics .inverted.yellow.statistic > .value, -.ui.inverted.yellow.statistic > .value { - color: #FFE21F; -} - -.ui.inverted.olive.statistics .statistic > .value, -.ui.statistics .inverted.olive.statistic > .value, -.ui.inverted.olive.statistic > .value { - color: #D9E778; -} - -.ui.inverted.green.statistics .statistic > .value, -.ui.statistics .inverted.green.statistic > .value, -.ui.inverted.green.statistic > .value { - color: #2ECC40; -} - -.ui.inverted.teal.statistics .statistic > .value, -.ui.statistics .inverted.teal.statistic > .value, -.ui.inverted.teal.statistic > .value { - color: #6DFFFF; -} - -.ui.inverted.blue.statistics .statistic > .value, -.ui.statistics .inverted.blue.statistic > .value, -.ui.inverted.blue.statistic > .value { - color: #54C8FF; -} - -.ui.inverted.violet.statistics .statistic > .value, -.ui.statistics .inverted.violet.statistic > .value, -.ui.inverted.violet.statistic > .value { - color: #A291FB; -} - -.ui.inverted.purple.statistics .statistic > .value, -.ui.statistics .inverted.purple.statistic > .value, -.ui.inverted.purple.statistic > .value { - color: #DC73FF; -} - -.ui.inverted.pink.statistics .statistic > .value, -.ui.statistics .inverted.pink.statistic > .value, -.ui.inverted.pink.statistic > .value { - color: #FF8EDF; -} - -.ui.inverted.brown.statistics .statistic > .value, -.ui.statistics .inverted.brown.statistic > .value, -.ui.inverted.brown.statistic > .value { - color: #D67C1C; -} - -.ui.inverted.grey.statistics .statistic > .value, -.ui.statistics .inverted.grey.statistic > .value, -.ui.inverted.grey.statistic > .value { - color: #DCDDDE; -} - -/*-------------- - Floated ----------------*/ - -.ui[class*="left floated"].statistic { - float: left; - margin: 0em 2em 1em 0em; -} - -.ui[class*="right floated"].statistic { - float: right; - margin: 0em 0em 1em 2em; -} - -.ui.floated.statistic:last-child { - margin-bottom: 0em; -} - -/*-------------- - Sizes ----------------*/ - -/* Mini */ - -.ui.mini.statistics .statistic > .value, -.ui.mini.statistic > .value { - font-size: 1.5rem !important; -} - -.ui.mini.horizontal.statistics .statistic > .value, -.ui.mini.horizontal.statistic > .value { - font-size: 1.5rem !important; -} - -.ui.mini.statistics .statistic > .text.value, -.ui.mini.statistic > .text.value { - font-size: 1rem !important; -} - -/* Tiny */ - -.ui.tiny.statistics .statistic > .value, -.ui.tiny.statistic > .value { - font-size: 2rem !important; -} - -.ui.tiny.horizontal.statistics .statistic > .value, -.ui.tiny.horizontal.statistic > .value { - font-size: 2rem !important; -} - -.ui.tiny.statistics .statistic > .text.value, -.ui.tiny.statistic > .text.value { - font-size: 1rem !important; -} - -/* Small */ - -.ui.small.statistics .statistic > .value, -.ui.small.statistic > .value { - font-size: 3rem !important; -} - -.ui.small.horizontal.statistics .statistic > .value, -.ui.small.horizontal.statistic > .value { - font-size: 2rem !important; -} - -.ui.small.statistics .statistic > .text.value, -.ui.small.statistic > .text.value { - font-size: 1rem !important; -} - -/* Medium */ - -.ui.statistics .statistic > .value, -.ui.statistic > .value { - font-size: 4rem !important; -} - -.ui.horizontal.statistics .statistic > .value, -.ui.horizontal.statistic > .value { - font-size: 3rem !important; -} - -.ui.statistics .statistic > .text.value, -.ui.statistic > .text.value { - font-size: 2rem !important; -} - -/* Large */ - -.ui.large.statistics .statistic > .value, -.ui.large.statistic > .value { - font-size: 5rem !important; -} - -.ui.large.horizontal.statistics .statistic > .value, -.ui.large.horizontal.statistic > .value { - font-size: 4rem !important; -} - -.ui.large.statistics .statistic > .text.value, -.ui.large.statistic > .text.value { - font-size: 2.5rem !important; -} - -/* Huge */ - -.ui.huge.statistics .statistic > .value, -.ui.huge.statistic > .value { - font-size: 6rem !important; -} - -.ui.huge.horizontal.statistics .statistic > .value, -.ui.huge.horizontal.statistic > .value { - font-size: 5rem !important; -} - -.ui.huge.statistics .statistic > .text.value, -.ui.huge.statistic > .text.value { - font-size: 2.5rem !important; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Variable Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Accordion -* http://github.com/semantic-org/semantic-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 0em 0em; - padding: 0em; -} - -/* Title */ - -.ui.accordion .title, -.ui.accordion .accordion .title { - cursor: pointer; -} - -/* Default Styling */ - -.ui.accordion .title:not(.ui) { - padding: 0.5em 0em; - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - font-size: 1em; - color: rgba(0, 0, 0, 0.87); -} - -/* Content */ - -.ui.accordion .title ~ .content, -.ui.accordion .accordion .title ~ .content { - display: none; -} - -/* Default Styling */ - -.ui.accordion:not(.styled) .title ~ .content:not(.ui), -.ui.accordion:not(.styled) .accordion .title ~ .content:not(.ui) { - margin: ''; - padding: 0.5em 0em 1em; -} - -.ui.accordion:not(.styled) .title ~ .content:not(.ui):last-child { - padding-bottom: 0em; -} - -/* 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: 0em 0.25rem 0em 0rem; - padding: 0em; - 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: 0em; -} - -.ui.accordion.menu .item .title > .dropdown.icon { - float: right; - margin: 0.21425em 0em 0em 1em; - -webkit-transform: rotate(180deg); - transform: rotate(180deg); -} - -/* Header */ - -.ui.accordion .ui.header .dropdown.icon { - font-size: 1em; - margin: 0em 0.25rem 0em 0rem; -} - -/******************************* - 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: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15); - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15); -} - -.ui.styled.accordion .title, -.ui.styled.accordion .accordion .title { - margin: 0em; - 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: 0em; - padding: 0.5em 1em 1.5em; -} - -.ui.styled.accordion .accordion .content { - padding: 0em; - 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 -*******************************/ - -/*-------------- - Active ----------------*/ - -.ui.accordion .active.content, -.ui.accordion .accordion .active.content { - display: block; -} - -/******************************* - 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 -*******************************/ -/*! -* # Semantic UI 2.3.0 - Checkbox -* http://github.com/semantic-org/semantic-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: 1rem; - line-height: 17px; - min-width: 17px; -} - -/* HTML Checkbox */ - -.ui.checkbox input[type="checkbox"], -.ui.checkbox input[type="radio"] { - cursor: pointer; - position: absolute; - top: 0px; - left: 0px; - opacity: 0 !important; - outline: none; - z-index: 3; - width: 17px; - height: 17px; -} - -/*-------------- - Box ----------------*/ - -.ui.checkbox .box, -.ui.checkbox label { - cursor: auto; - position: relative; - display: block; - padding-left: 1.85714em; - outline: none; - font-size: 1em; -} - -.ui.checkbox .box:before, -.ui.checkbox label:before { - position: absolute; - top: 0px; - left: 0px; - 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 .box:after, -.ui.checkbox label:after { - position: absolute; - font-size: 14px; - top: 0px; - left: 0px; - 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 .box:hover::before, -.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 .box:active::before, -.ui.checkbox label:active::before { - background: #F9FAFB; - border-color: rgba(34, 36, 38, 0.35); -} - -.ui.checkbox .box:active::after, -.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 ~ .box:before, -.ui.checkbox input:focus ~ label:before { - background: #FFFFFF; - border-color: #96C8DA; -} - -.ui.checkbox input:focus ~ .box:after, -.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 ~ .box:before, -.ui.checkbox input:checked ~ label:before { - background: #FFFFFF; - border-color: rgba(34, 36, 38, 0.35); -} - -.ui.checkbox input:checked ~ .box:after, -.ui.checkbox input:checked ~ label:after { - opacity: 1; - color: rgba(0, 0, 0, 0.95); -} - -/*-------------- - Indeterminate ----------------*/ - -.ui.checkbox input:not([type=radio]):indeterminate ~ .box:before, -.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 ~ .box:after, -.ui.checkbox input:not([type=radio]):indeterminate ~ label:after { - opacity: 1; - color: rgba(0, 0, 0, 0.95); -} - -/*-------------- - Active Focus ----------------*/ - -.ui.checkbox input:not([type=radio]):indeterminate:focus ~ .box:before, -.ui.checkbox input:not([type=radio]):indeterminate:focus ~ label:before, -.ui.checkbox input:checked:focus ~ .box:before, -.ui.checkbox input:checked:focus ~ label:before { - background: #FFFFFF; - border-color: #96C8DA; -} - -.ui.checkbox input:not([type=radio]):indeterminate:focus ~ .box:after, -.ui.checkbox input:not([type=radio]):indeterminate:focus ~ label:after, -.ui.checkbox input:checked:focus ~ .box: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 .box:after, -.ui.disabled.checkbox label, -.ui.checkbox input[disabled] ~ .box:after, -.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 .box, -.ui.radio.checkbox label { - padding-left: 1.85714em; -} - -/* Box */ - -.ui.radio.checkbox .box:before, -.ui.radio.checkbox label:before { - content: ''; - -webkit-transform: none; - transform: none; - width: 15px; - height: 15px; - border-radius: 500rem; - top: 1px; - left: 0px; -} - -/* Bullet */ - -.ui.radio.checkbox .box:after, -.ui.radio.checkbox label:after { - border: none; - content: '' !important; - width: 15px; - height: 15px; - line-height: 15px; -} - -/* Radio Checkbox */ - -.ui.radio.checkbox .box:after, -.ui.radio.checkbox label:after { - top: 1px; - left: 0px; - 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 ~ .box:before, -.ui.radio.checkbox input:focus ~ label:before { - background-color: #FFFFFF; -} - -.ui.radio.checkbox input:focus ~ .box:after, -.ui.radio.checkbox input:focus ~ label:after { - background-color: rgba(0, 0, 0, 0.95); -} - -/* Indeterminate */ - -.ui.radio.checkbox input:indeterminate ~ .box:after, -.ui.radio.checkbox input:indeterminate ~ label:after { - opacity: 0; -} - -/* Active */ - -.ui.radio.checkbox input:checked ~ .box:before, -.ui.radio.checkbox input:checked ~ label:before { - background-color: #FFFFFF; -} - -.ui.radio.checkbox input:checked ~ .box:after, -.ui.radio.checkbox input:checked ~ label:after { - background-color: rgba(0, 0, 0, 0.95); -} - -/* Active Focus */ - -.ui.radio.checkbox input:focus:checked ~ .box:before, -.ui.radio.checkbox input:focus:checked ~ label:before { - background-color: #FFFFFF; -} - -.ui.radio.checkbox input:focus:checked ~ .box:after, -.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 .box, -.ui.slider.checkbox label { - padding-left: 4.5rem; - line-height: 1rem; - color: rgba(0, 0, 0, 0.4); -} - -/* Line */ - -.ui.slider.checkbox .box:before, -.ui.slider.checkbox label:before { - display: block; - position: absolute; - content: ''; - border: none !important; - left: 0em; - z-index: 1; - top: 0.4rem; - background-color: rgba(0, 0, 0, 0.05); - width: 3.5rem; - height: 0.21428571rem; - -webkit-transform: none; - transform: none; - border-radius: 500rem; - -webkit-transition: background 0.3s ease; - transition: background 0.3s ease; -} - -/* Handle */ - -.ui.slider.checkbox .box:after, -.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: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; - width: 1.5rem; - height: 1.5rem; - top: -0.25rem; - left: 0em; - -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 ~ .box:before, -.ui.slider.checkbox input:focus ~ label:before { - background-color: rgba(0, 0, 0, 0.15); - border: none; -} - -/* Hover */ - -.ui.slider.checkbox .box:hover, -.ui.slider.checkbox label:hover { - color: rgba(0, 0, 0, 0.8); -} - -.ui.slider.checkbox .box:hover::before, -.ui.slider.checkbox label:hover::before { - background: rgba(0, 0, 0, 0.15); -} - -/* Active */ - -.ui.slider.checkbox input:checked ~ .box, -.ui.slider.checkbox input:checked ~ label { - color: rgba(0, 0, 0, 0.95) !important; -} - -.ui.slider.checkbox input:checked ~ .box:before, -.ui.slider.checkbox input:checked ~ label:before { - background-color: #545454 !important; -} - -.ui.slider.checkbox input:checked ~ .box:after, -.ui.slider.checkbox input:checked ~ label:after { - left: 2rem; -} - -/* Active Focus */ - -.ui.slider.checkbox input:focus:checked ~ .box, -.ui.slider.checkbox input:focus:checked ~ label { - color: rgba(0, 0, 0, 0.95) !important; -} - -.ui.slider.checkbox input:focus:checked ~ .box:before, -.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 .box, -.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 .box:before, -.ui.toggle.checkbox label:before { - display: block; - position: absolute; - content: ''; - z-index: 1; - -webkit-transform: none; - transform: none; - border: none; - top: 0rem; - 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 .box:after, -.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: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; - width: 1.5rem; - height: 1.5rem; - top: 0rem; - left: 0em; - 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 ~ .box:after, -.ui.toggle.checkbox input ~ label:after { - left: -0.05rem; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; -} - -/* Focus */ - -.ui.toggle.checkbox input:focus ~ .box:before, -.ui.toggle.checkbox input:focus ~ label:before { - background-color: rgba(0, 0, 0, 0.15); - border: none; -} - -/* Hover */ - -.ui.toggle.checkbox .box:hover::before, -.ui.toggle.checkbox label:hover::before { - background-color: rgba(0, 0, 0, 0.15); - border: none; -} - -/* Active */ - -.ui.toggle.checkbox input:checked ~ .box, -.ui.toggle.checkbox input:checked ~ label { - color: rgba(0, 0, 0, 0.95) !important; -} - -.ui.toggle.checkbox input:checked ~ .box:before, -.ui.toggle.checkbox input:checked ~ label:before { - background-color: #2185D0 !important; -} - -.ui.toggle.checkbox input:checked ~ .box:after, -.ui.toggle.checkbox input:checked ~ label:after { - left: 2.15rem; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; -} - -/* Active Focus */ - -.ui.toggle.checkbox input:focus:checked ~ .box, -.ui.toggle.checkbox input:focus:checked ~ label { - color: rgba(0, 0, 0, 0.95) !important; -} - -.ui.toggle.checkbox input:focus:checked ~ .box:before, -.ui.toggle.checkbox input:focus:checked ~ label:before { - background-color: #0d71bb !important; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Fitted ----------------*/ - -.ui.fitted.checkbox .box, -.ui.fitted.checkbox label { - padding-left: 0em !important; -} - -.ui.fitted.toggle.checkbox, -.ui.fitted.toggle.checkbox { - width: 3.5rem; -} - -.ui.fitted.slider.checkbox, -.ui.fitted.slider.checkbox { - width: 3.5rem; -} - -/******************************* - 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 -*******************************/ -/*! -* # Semantic UI 2.3.0 - Dimmer -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Dimmer -*******************************/ - -.dimmable:not(body) { - position: relative; -} - -.ui.dimmer { - display: none; - position: absolute; - top: 0em !important; - left: 0em !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 { - border-radius: inherit !important; -} - -/* 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 -*******************************/ - -/*-------------- - 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: blur(0px) grayscale(0); - filter: blur(0px) grayscale(0); - -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) { - -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; -} - -/*-------------- - Inverted ----------------*/ - -.ui.inverted.dimmer { - background-color: rgba(255, 255, 255, 0.85); -} - -.ui.inverted.dimmer > .content > * { - color: #FFFFFF; -} - -/*-------------- - Simple ----------------*/ - -/* Displays without javascript */ - -.ui.simple.dimmer { - display: block; - overflow: hidden; - opacity: 1; - 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); -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Dropdown -* http://github.com/semantic-org/semantic-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-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: 0em; - padding: 0em 0em; - background: #FFFFFF; - font-size: 1em; - text-shadow: none; - text-align: left; - -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 2px 3px 0px 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 > .dropdown.icon { - position: relative; - width: auto; - font-size: 0.85714286em; - margin: 0em 0em 0em 1em; -} - -.ui.dropdown .menu > .item .dropdown.icon { - width: auto; - float: right; - margin: 0em 0em 0em 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; - text-align: left; - border-top: none; - line-height: 1em; - color: rgba(0, 0, 0, 0.87); - padding: 0.78571429rem 1.14285714rem !important; - font-size: 1rem; - 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: 0px; -} - -/*-------------- - Floated Content ----------------*/ - -.ui.dropdown > .text > [class*="right floated"], -.ui.dropdown .menu .item > [class*="right floated"] { - float: right !important; - margin-right: 0em !important; - margin-left: 1em !important; -} - -.ui.dropdown > .text > [class*="left floated"], -.ui.dropdown .menu .item > [class*="left floated"] { - float: left !important; - margin-left: 0em !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 0rem 0.75rem; - padding: 0em 1.14285714rem; - color: rgba(0, 0, 0, 0.85); - font-size: 0.78571429em; - font-weight: bold; - text-transform: uppercase; -} - -.ui.dropdown .menu > .divider { - border-top: 1px solid rgba(34, 36, 38, 0.1); - height: 0em; - margin: 0.5em 0em; -} - -.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: 0em; -} - -.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: 0em 0em 0em 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% !important; - left: 100%; - right: auto; - margin: 0em 0em 0em -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: 0em; - float: none; - margin-right: 0.78571429rem; -} - -/*-------------- - Image ----------------*/ - -.ui.dropdown > .text > img, -.ui.dropdown > .text > .image, -.ui.dropdown .menu > .item > .image, -.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: 0em; -} - -/*-------------- - Label ----------------*/ - -/* Dropdown Menu */ - -.ui.label.dropdown .menu { - min-width: 100%; -} - -/*-------------- - Button ----------------*/ - -/* No Margin On Icon Button */ - -.ui.dropdown.icon.button > .dropdown.icon { - margin: 0em; -} - -.ui.button.dropdown .menu { - min-width: 100%; -} - -/******************************* - Types -*******************************/ - -/*-------------- - 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 2.1em 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; -} - -select.ui.dropdown { - height: 38px; - padding: 0.5em; - border: 1px solid rgba(34, 36, 38, 0.15); - visibility: visible; -} - -.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: 0px; -} - -/* 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: 0px !important; - width: auto; - outline: none; - margin: 0px -1px; - min-width: calc(100% + 2px ); - width: calc(100% + 2px ); - border-radius: 0em 0em 0.28571429rem 0.28571429rem; - -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 2px 3px 0px 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: 767px) { - .ui.selection.dropdown .menu { - max-height: 8.01428571rem; - } -} - -@media only screen and (min-width: 768px) { - .ui.selection.dropdown .menu { - max-height: 10.68571429rem; - } -} - -@media only screen and (min-width: 992px) { - .ui.selection.dropdown .menu { - max-height: 16.02857143rem; - } -} - -@media only screen and (min-width: 1920px) { - .ui.selection.dropdown .menu { - max-height: 21.37142857rem; - } -} - -/* 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: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); -} - -.ui.selection.active.dropdown .menu { - border-color: #96C8DA; - -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 2px 3px 0px 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: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 2px 3px 0px 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: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); -} - -.ui.selection.active.dropdown:hover .menu { - border-color: #96C8DA; - -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); -} - -/* Dropdown Icon */ - -.ui.active.selection.dropdown > .dropdown.icon, -.ui.visible.selection.dropdown > .dropdown.icon { - opacity: 1; - z-index: 3; -} - -/* Connecting Border */ - -.ui.active.selection.dropdown { - border-bottom-left-radius: 0em !important; - border-bottom-right-radius: 0em !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: 0em; - 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 2.1em 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 2.1em 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: 767px) { - .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; - } -} - -/*-------------- - Multiple ----------------*/ - -/* Multiple Selection */ - -.ui.multiple.dropdown { - padding: 0.22619048em 2.1em 0.22619048em 0.35714286em; -} - -.ui.multiple.dropdown .menu { - cursor: auto; -} - -/* Multiple Search Selection */ - -.ui.multiple.search.dropdown, -.ui.multiple.search.dropdown > input.search { - cursor: text; -} - -/* Selection Label */ - -.ui.multiple.dropdown > .label { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - display: inline-block; - vertical-align: top; - white-space: normal; - font-size: 1em; - padding: 0.35714286em 0.78571429em; - margin: 0.14285714rem 0.28571429rem 0.14285714rem 0em; - -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0px 0px 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 0em 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; -} - -/*----------------- - Multiple Search ------------------*/ - -/* Prompt Text */ - -.ui.multiple.search.dropdown > .text { - display: inline-block; - position: absolute; - top: 0; - left: 0; - padding: inherit; - margin: 0.45238095em 0em 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 0em 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: 0em 0.5em 0em 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; -} - -/*-------------------- - 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 0em 0em -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: 0px 0px 0px 1px transparent; - box-shadow: 0px 0px 0px 1px transparent; - margin: -0.64285714em 0em 0em -0.64285714em; - width: 1.28571429em; - height: 1.28571429em; - -webkit-animation: dropdown-spin 0.6s linear; - animation: dropdown-spin 0.6s linear; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; - border-radius: 500rem; - border-color: #767676 transparent transparent; - border-style: solid; - border-width: 0.2em; -} - -/* Coupling */ - -.ui.loading.dropdown.button > i.icon:before, -.ui.loading.dropdown.button > i.icon:after { - display: none; -} - -@-webkit-keyframes dropdown-spin { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes dropdown-spin { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -/*-------------------- - 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 > .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: 0px !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; -} - -/*-------------------- - Error -----------------------*/ - -.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.dropdown.error > .menu, -.ui.dropdown.error > .menu .menu { - border-color: #E0B4B4; -} - -.ui.dropdown.error > .menu > .item { - color: #9F3A38; -} - -.ui.multiple.selection.error.dropdown > .label { - border-color: #E0B4B4; -} - -/* Item Hover */ - -.ui.dropdown.error > .menu > .item:hover { - background-color: #FFF2F2; -} - -/* Item Active */ - -.ui.dropdown.error > .menu .active.item { - background-color: #FDCFCF; -} - -/*-------------------- - 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: 0px; -} - -/* 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: 0px !important; -} - -.ui.dropdown > .left.menu .menu, -.ui.dropdown .menu .left.menu { - left: auto; - right: 100%; - margin: 0em -0.5em 0em 0em !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 0em 0em 0em; -} - -.ui.dropdown .item .left.dropdown.icon, -.ui.dropdown .left.menu .item .dropdown.icon { - width: auto; - float: left; - margin: 0em 0em 0em 0em; -} - -.ui.dropdown .item .left.dropdown.icon + .text, -.ui.dropdown .left.menu .item .dropdown.icon + .text { - margin-left: 1em; - margin-right: 0em; -} - -/*-------------- - Upward ----------------*/ - -/* Upward Main Menu */ - -.ui.upward.dropdown > .menu { - top: auto; - bottom: 100%; - -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08); - box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08); - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -/* 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 0em 0em !important; -} - -.ui.upward.dropdown.button:not(.pointing):not(.floating).active { - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -/* Selection */ - -.ui.upward.selection.dropdown .menu { - border-top-width: 1px !important; - border-bottom-width: 0px !important; - -webkit-box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08); - box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08); -} - -.ui.upward.selection.dropdown:hover { - -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.05); - box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.05); -} - -/* Active Upward */ - -.ui.active.upward.selection.dropdown { - border-radius: 0em 0em 0.28571429rem 0.28571429rem !important; -} - -/* Visible Upward */ - -.ui.upward.selection.dropdown.visible { - -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08); - box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08); - border-radius: 0em 0em 0.28571429rem 0.28571429rem !important; -} - -/* Visible Hover Upward */ - -.ui.upward.active.selection.dropdown:hover { - -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.05); - box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.05); -} - -.ui.upward.active.selection.dropdown:hover .menu { - -webkit-box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08); - box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08); -} - -/*-------------- - Simple ----------------*/ - -/* 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: 767px) { - .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; - } -} - -/*-------------- - Simple ----------------*/ - -/* Displays without javascript */ - -.ui.simple.dropdown .menu:before, -.ui.simple.dropdown .menu:after { - display: none; -} - -.ui.simple.dropdown .menu { - position: absolute; - display: block; - overflow: hidden; - top: -9999px !important; - opacity: 0; - width: 0; - height: 0; - -webkit-transition: opacity 0.1s ease; - transition: opacity 0.1s ease; -} - -.ui.simple.active.dropdown, -.ui.simple.dropdown:hover { - border-bottom-left-radius: 0em !important; - border-bottom-right-radius: 0em !important; -} - -.ui.simple.active.dropdown > .menu, -.ui.simple.dropdown:hover > .menu { - overflow: visible; - width: auto; - height: auto; - top: 100% !important; - 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: 0px; - width: 0px; - overflow: hidden; -} - -/* Visible */ - -.ui.simple.visible.dropdown > .menu { - display: block; -} - -/*-------------- - Fluid ----------------*/ - -.ui.fluid.dropdown { - display: block; - width: 100%; - min-width: 0em; -} - -.ui.fluid.dropdown > .dropdown.icon { - float: right; -} - -/*-------------- - Floating ----------------*/ - -.ui.floating.dropdown .menu { - left: 0; - right: auto; - -webkit-box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15) !important; - box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15) !important; - border-radius: 0.28571429rem !important; -} - -.ui.floating.dropdown > .menu { - margin-top: 0.5em !important; - border-radius: 0.28571429rem !important; -} - -/*-------------- - Pointing ----------------*/ - -.ui.pointing.dropdown > .menu { - top: 100%; - margin-top: 0.78571429rem; - border-radius: 0.28571429rem; -} - -.ui.pointing.dropdown > .menu: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 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15); - background: #FFFFFF; - z-index: 2; -} - -.ui.pointing.dropdown > .menu:after { - top: -0.25em; - left: 50%; - margin: 0em 0em 0em -0.25em; -} - -/* Top Left Pointing */ - -.ui.top.left.pointing.dropdown > .menu { - top: 100%; - bottom: auto; - left: 0%; - right: auto; - margin: 1em 0em 0em; -} - -.ui.top.left.pointing.dropdown > .menu { - top: 100%; - bottom: auto; - left: 0%; - right: auto; - margin: 1em 0em 0em; -} - -.ui.top.left.pointing.dropdown > .menu:after { - top: -0.25em; - left: 1em; - right: auto; - margin: 0em; - -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 0em 0em; -} - -.ui.top.pointing.dropdown > .left.menu:after, -.ui.top.right.pointing.dropdown > .menu:after { - top: -0.25em; - left: auto !important; - right: 1em !important; - margin: 0em; - -webkit-transform: rotate(45deg); - transform: rotate(45deg); -} - -/* Left Pointing */ - -.ui.left.pointing.dropdown > .menu { - top: 0%; - left: 100%; - right: auto; - margin: 0em 0em 0em 1em; -} - -.ui.left.pointing.dropdown > .menu:after { - top: 1em; - left: -0.25em; - margin: 0em 0em 0em 0em; - -webkit-transform: rotate(-45deg); - transform: rotate(-45deg); -} - -.ui.left:not(.top):not(.bottom).pointing.dropdown > .left.menu { - left: auto !important; - right: 100% !important; - margin: 0em 1em 0em 0em; -} - -.ui.left:not(.top):not(.bottom).pointing.dropdown > .left.menu:after { - top: 1em; - left: auto; - right: -0.25em; - margin: 0em 0em 0em 0em; - -webkit-transform: rotate(135deg); - transform: rotate(135deg); -} - -/* Right Pointing */ - -.ui.right.pointing.dropdown > .menu { - top: 0%; - left: auto; - right: 100%; - margin: 0em 1em 0em 0em; -} - -.ui.right.pointing.dropdown > .menu:after { - top: 1em; - left: auto; - right: -0.25em; - margin: 0em 0em 0em 0em; - -webkit-transform: rotate(135deg); - transform: rotate(135deg); -} - -/* Bottom Pointing */ - -.ui.bottom.pointing.dropdown > .menu { - top: auto; - bottom: 100%; - left: 0%; - right: auto; - margin: 0em 0em 1em; -} - -.ui.bottom.pointing.dropdown > .menu:after { - top: auto; - bottom: -0.25em; - right: auto; - margin: 0em; - -webkit-transform: rotate(-135deg); - transform: rotate(-135deg); -} - -/* Reverse Sub-Menu Direction */ - -.ui.bottom.pointing.dropdown > .menu .menu { - top: auto !important; - bottom: 0px !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: 0em 0em 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 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: 1px 1px 0px 0px rgba(34, 36, 38, 0.15); - margin: -0.25em 0em 0em; -} - -/* Right Pointing Upward */ - -.ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu { - top: auto !important; - bottom: 0 !important; - margin: 0em 1em 0em 0em; -} - -.ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after { - top: auto !important; - bottom: 0 !important; - margin: 0em 0em 1em 0em; - -webkit-box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: -1px -1px 0px 0px 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: 0em 0em 0em 1em; -} - -.ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after { - top: auto !important; - bottom: 0 !important; - margin: 0em 0em 1em 0em; - -webkit-box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 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 -*******************************/ -/*! -* # Semantic UI 2.3.0 - Video -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Types -*******************************/ - -.ui.embed { - position: relative; - max-width: 100%; - height: 0px; - 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: 0px; - left: 0px; - margin: 0em; - padding: 0em; -} - -/*----------------- - Embed -------------------*/ - -.ui.embed > .embed { - display: none; -} - -/*-------------- - Placeholder ----------------*/ - -.ui.embed > .placeholder { - position: absolute; - cursor: pointer; - top: 0px; - left: 0px; - 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: 0px; - left: 0px; - 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%; - z-index: 4; - -webkit-transform: translateX(-50%) translateY(-50%); - transform: translateX(-50%) translateY(-50%); - color: #FFFFFF; - font-size: 6rem; - text-shadow: 0px 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; -} - -/******************************* - Video Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ - -/******************************* - 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%; -} -/*! -* # Semantic UI 2.3.0 - Modal -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Modal -*******************************/ - -.ui.modal { - display: none; - z-index: 1001; - text-align: left; - background: #FFFFFF; - border: none; - -webkit-box-shadow: 1px 3px 3px 0px rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2); - box-shadow: 1px 3px 3px 0px 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), -.ui.modal > .icon:first-child + * { - 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 0rem 0rem 0rem; -} - -.ui.modal > .close:hover { - opacity: 1; -} - -/*-------------- - Header ----------------*/ - -.ui.modal > .header { - display: block; - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - background: #FFFFFF; - margin: 0em; - 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: top; - align-self: top; -} - -.ui.modal > [class*="top aligned"] { - -ms-flex-item-align: top; - align-self: top; -} - -.ui.modal > [class*="middle aligned"] { - -ms-flex-item-align: middle; - align-self: middle; -} - -.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: 0px; - -ms-flex-item-align: top; - align-self: top; -} - -.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: 0em; - 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; -} - -/*------------------- - Responsive ---------------------*/ - -/* Modal Width */ - -@media only screen and (max-width: 767px) { - .ui.modal { - width: 95%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 768px) { - .ui.modal { - width: 88%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 992px) { - .ui.modal { - width: 850px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1200px) { - .ui.modal { - width: 900px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1920px) { - .ui.modal { - width: 950px; - margin: 0em 0em 0em 0em; - } -} - -/* Tablet and Mobile */ - -@media only screen and (max-width: 991px) { - .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: 767px) { - .ui.modal > .header { - padding: 0.75rem 1rem !important; - padding-right: 2.25rem !important; - } - - .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: 0em auto !important; - text-align: center; - padding: 0rem 0rem 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: 0em !important; - padding: 1rem 0rem !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: 0em; - -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; -} - -.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); -} - -/* Tablet and Mobile */ - -@media only screen and (max-width: 991px) { - .ui.basic.modal > .close { - color: #FFFFFF; - } -} - -/******************************* - States -*******************************/ - -.ui.loading.modal { - display: block; - visibility: hidden; - z-index: -1; -} - -.ui.active.modal { - display: block; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Top Aligned ----------------*/ - -/* Top Aligned Modal */ - -.modals.dimmer[class*="top aligned"] .modal { - margin: 5vh auto; -} - -/*-------------- - Scrolling ----------------*/ - -/* Scrolling Dimmer */ - -.scrolling.dimmable.dimmed { - overflow: hidden; -} - -.scrolling.dimmable > .dimmer { - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; -} - -.scrolling.dimmable.dimmed > .dimmer { - overflow: auto; - -webkit-overflow-scrolling: touch; -} - -.scrolling.dimmable > .dimmer { - position: fixed; -} - -.modals.dimmer .ui.scrolling.modal { - margin: 1rem auto !important; -} - -/* 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 { - position: absolute; - left: 50%; - margin-top: 1rem !important; -} - -/* Scrolling Content */ - -.ui.modal .scrolling.content { - max-height: calc(70vh); - overflow: auto; -} - -/*-------------- - Full Screen ----------------*/ - -.ui.fullscreen.modal { - width: 95% !important; - left: 0em !important; - margin: 1em auto; -} - -.ui.fullscreen.scrolling.modal { - left: 0em !important; -} - -.ui.fullscreen.modal > .header { - padding-right: 2.25rem; -} - -.ui.fullscreen.modal > .close { - top: 1.0535rem; - right: 1rem; - color: rgba(0, 0, 0, 0.87); -} - -/*-------------- - Size ----------------*/ - -.ui.modal { - font-size: 1rem; -} - -/* Mini */ - -.ui.mini.modal > .header:not(.ui) { - font-size: 1.3em; -} - -/* Mini Modal Width */ - -@media only screen and (max-width: 767px) { - .ui.mini.modal { - width: 95%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 768px) { - .ui.mini.modal { - width: 35.2%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 992px) { - .ui.mini.modal { - width: 340px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1200px) { - .ui.mini.modal { - width: 360px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1920px) { - .ui.mini.modal { - width: 380px; - margin: 0em 0em 0em 0em; - } -} - -/* mini */ - -.ui.small.modal > .header:not(.ui) { - font-size: 1.3em; -} - -/* Tiny Modal Width */ - -@media only screen and (max-width: 767px) { - .ui.tiny.modal { - width: 95%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 768px) { - .ui.tiny.modal { - width: 52.8%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 992px) { - .ui.tiny.modal { - width: 510px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1200px) { - .ui.tiny.modal { - width: 540px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1920px) { - .ui.tiny.modal { - width: 570px; - margin: 0em 0em 0em 0em; - } -} - -/* Small */ - -.ui.small.modal > .header:not(.ui) { - font-size: 1.3em; -} - -/* Small Modal Width */ - -@media only screen and (max-width: 767px) { - .ui.small.modal { - width: 95%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 768px) { - .ui.small.modal { - width: 70.4%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 992px) { - .ui.small.modal { - width: 680px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1200px) { - .ui.small.modal { - width: 720px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1920px) { - .ui.small.modal { - width: 760px; - margin: 0em 0em 0em 0em; - } -} - -/* Large Modal Width */ - -.ui.large.modal > .header { - font-size: 1.6em; -} - -@media only screen and (max-width: 767px) { - .ui.large.modal { - width: 95%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 768px) { - .ui.large.modal { - width: 88%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 992px) { - .ui.large.modal { - width: 1020px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1200px) { - .ui.large.modal { - width: 1080px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1920px) { - .ui.large.modal { - width: 1140px; - margin: 0em 0em 0em 0em; - } -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Nag -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Nag -*******************************/ - -.ui.nag { - display: none; - opacity: 0.95; - position: relative; - top: 0em; - left: 0px; - z-index: 999; - min-height: 0em; - width: 100%; - margin: 0em; - padding: 0.75em 1em; - background: #555555; - -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2); - box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2); - font-size: 1rem; - text-align: center; - color: rgba(0, 0, 0, 0.87); - border-radius: 0em 0em 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: 0em 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 0em 0em; - 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 0em 0em; - top: auto; - bottom: 0em; -} - -/*-------------- - 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: 0em !important; -} - -.ui.nags .nag:last-child { - border-radius: 0em 0em 0.28571429rem 0.28571429rem; -} - -.ui.bottom.nags .nag:last-child { - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Popup -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Popup -*******************************/ - -.ui.popup { - display: none; - position: absolute; - top: 0px; - right: 0px; - /* 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: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); -} - -.ui.popup > .header { - padding: 0em; - 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: 2; - -webkit-box-shadow: 1px 1px 0px 0px #bababc; - box-shadow: 1px 1px 0px 0px #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: 2; - -webkit-box-shadow: 1px 1px 0px 0px #bababc; - box-shadow: 1px 1px 0px 0px #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: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); - z-index: 1; -} - -/* 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; -} - -[data-tooltip]:before { - opacity: 0; - -webkit-transform: rotate(45deg) scale(0) !important; - transform: rotate(45deg) scale(0) !important; - -webkit-transform-origin: center top; - transform-origin: center top; - -webkit-transition: all 0.1s ease; - transition: all 0.1s ease; -} - -[data-tooltip]:after { - opacity: 1; - -webkit-transform-origin: center bottom; - transform-origin: center bottom; - -webkit-transition: all 0.1s ease; - transition: all 0.1s ease; -} - -[data-tooltip]:hover:before, -[data-tooltip]:hover:after { - visibility: visible; - pointer-events: auto; -} - -[data-tooltip]:hover:before { - -webkit-transform: rotate(45deg) scale(1) !important; - transform: rotate(45deg) scale(1) !important; - opacity: 1; -} - -/* 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; -} - -/*-------------- - 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-color: none; - color: #FFFFFF; -} - -/*-------------- - Position ----------------*/ - -/* 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; -} - -/* 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; -} - -/* 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; -} - -/* Arrow */ - -[data-position~="bottom"][data-tooltip]:before { - background: #FFFFFF; - -webkit-box-shadow: -1px -1px 0px 0px #bababc; - box-shadow: -1px -1px 0px 0px #bababc; -} - -[data-position="left center"][data-tooltip]:before { - background: #FFFFFF; - -webkit-box-shadow: 1px -1px 0px 0px #bababc; - box-shadow: 1px -1px 0px 0px #bababc; -} - -[data-position="right center"][data-tooltip]:before { - background: #FFFFFF; - -webkit-box-shadow: -1px 1px 0px 0px #bababc; - box-shadow: -1px 1px 0px 0px #bababc; -} - -[data-position~="top"][data-tooltip]:before { - background: #FFFFFF; -} - -/* Inverted Arrow Color */ - -[data-inverted][data-position~="bottom"][data-tooltip]:before { - background: #1B1C1D; - -webkit-box-shadow: -1px -1px 0px 0px #bababc; - box-shadow: -1px -1px 0px 0px #bababc; -} - -[data-inverted][data-position="left center"][data-tooltip]:before { - background: #1B1C1D; - -webkit-box-shadow: 1px -1px 0px 0px #bababc; - box-shadow: 1px -1px 0px 0px #bababc; -} - -[data-inverted][data-position="right center"][data-tooltip]:before { - background: #1B1C1D; - -webkit-box-shadow: -1px 1px 0px 0px #bababc; - box-shadow: -1px 1px 0px 0px #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; -} - -/*-------------- - Spacing ----------------*/ - -.ui.popup { - margin: 0em; -} - -/* Extending from Top */ - -.ui.top.popup { - margin: 0em 0em 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: 0em 0.71428571em 0em 0em; - -webkit-transform-origin: right 50%; - transform-origin: right 50%; -} - -.ui.right.center.popup { - margin: 0em 0em 0em 0.71428571em; - -webkit-transform-origin: left 50%; - transform-origin: left 50%; -} - -/* Extending from Bottom */ - -.ui.bottom.popup { - margin: 0.71428571em 0em 0em; -} - -.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 0px 0px #bababc; - box-shadow: -1px -1px 0px 0px #bababc; -} - -.ui.bottom.left.popup { - margin-left: 0em; -} - -/*rtl:rename*/ - -.ui.bottom.left.popup:before { - top: -0.30714286em; - left: 1em; - right: auto; - bottom: auto; - margin-left: 0em; - -webkit-box-shadow: -1px -1px 0px 0px #bababc; - box-shadow: -1px -1px 0px 0px #bababc; -} - -.ui.bottom.right.popup { - margin-right: 0em; -} - -/*rtl:rename*/ - -.ui.bottom.right.popup:before { - top: -0.30714286em; - right: 1em; - bottom: auto; - left: auto; - margin-left: 0em; - -webkit-box-shadow: -1px -1px 0px 0px #bababc; - box-shadow: -1px -1px 0px 0px #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: 0em; -} - -/*rtl:rename*/ - -.ui.top.left.popup:before { - bottom: -0.30714286em; - left: 1em; - top: auto; - right: auto; - margin-left: 0em; -} - -.ui.top.right.popup { - margin-right: 0em; -} - -/*rtl:rename*/ - -.ui.top.right.popup:before { - bottom: -0.30714286em; - right: 1em; - top: auto; - left: auto; - margin-left: 0em; -} - -/*--- 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 0px 0px #bababc; - box-shadow: 1px -1px 0px 0px #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 0px 0px #bababc; - box-shadow: -1px 1px 0px 0px #bababc; -} - -/* Arrow Color By Location */ - -.ui.bottom.popup:before { - background: #FFFFFF; -} - -.ui.right.center.popup:before, -.ui.left.center.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(0px); - transform: translateZ(0px); - -webkit-backface-visibility: hidden; - backface-visibility: hidden; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Basic ----------------*/ - -.ui.basic.popup:before { - display: none; -} - -/*-------------- - Wide ----------------*/ - -.ui.wide.popup { - max-width: 350px; -} - -.ui[class*="very wide"].popup { - max-width: 550px; -} - -@media only screen and (max-width: 767px) { - .ui.wide.popup, - .ui[class*="very wide"].popup { - max-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.mini.popup { - font-size: 0.78571429rem; -} - -.ui.tiny.popup { - font-size: 0.85714286rem; -} - -.ui.small.popup { - font-size: 0.92857143rem; -} - -.ui.popup { - font-size: 1rem; -} - -.ui.large.popup { - font-size: 1.14285714rem; -} - -.ui.huge.popup { - font-size: 1.42857143rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Progress Bar -* http://github.com/semantic-org/semantic-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 0em 2.5em; - -webkit-box-shadow: none; - box-shadow: none; - background: rgba(0, 0, 0, 0.1); - padding: 0em; - border-radius: 0.28571429rem; -} - -.ui.progress:first-child { - margin: 0em 0em 2.5em; -} - -.ui.progress:last-child { - margin: 0em 0em 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; -} - -/* 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); -} - -/* 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="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); -} - -/* Indicating Success */ - -.ui.indicating.progress.success .label { - color: #1A531B; -} - -/******************************* - States -*******************************/ - -/*-------------- - Success ----------------*/ - -.ui.progress.success .bar { - background-color: #21BA45 !important; -} - -.ui.progress.success .bar, -.ui.progress.success .bar::after { - -webkit-animation: none !important; - animation: none !important; -} - -.ui.progress.success > .label { - color: #1A531B; -} - -/*-------------- - Warning ----------------*/ - -.ui.progress.warning .bar { - background-color: #F2C037 !important; -} - -.ui.progress.warning .bar, -.ui.progress.warning .bar::after { - -webkit-animation: none !important; - animation: none !important; -} - -.ui.progress.warning > .label { - color: #794B02; -} - -/*-------------- - Error ----------------*/ - -.ui.progress.error .bar { - background-color: #DB2828 !important; -} - -.ui.progress.error .bar, -.ui.progress.error .bar::after { - -webkit-animation: none !important; - animation: none !important; -} - -.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: 0px; - left: 0px; - right: 0px; - bottom: 0px; - background: #FFFFFF; - border-radius: 0.28571429rem; - -webkit-animation: progress-active 2s ease infinite; - animation: progress-active 2s ease infinite; -} - -@-webkit-keyframes progress-active { - 0% { - opacity: 0.3; - width: 0; - } - - 100% { - opacity: 0; - width: 100%; - } -} - -@keyframes progress-active { - 0% { - opacity: 0.3; - width: 0; - } - - 100% { - opacity: 0; - width: 100%; - } -} - -/*-------------- - Disabled ----------------*/ - -.ui.disabled.progress { - opacity: 0.35; -} - -.ui.disabled.progress .bar, -.ui.disabled.progress .bar::after { - -webkit-animation: none !important; - animation: none !important; -} - -/******************************* - 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: #F9FAFB; -} - -.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: 0em; -} - -.ui.progress.attached, -.ui.progress.attached .bar { - display: block; - height: 0.2rem; - padding: 0px; - overflow: hidden; - border-radius: 0em 0em 0.28571429rem 0.28571429rem; -} - -.ui.progress.attached .bar { - border-radius: 0em; -} - -/* top attached */ - -.ui.progress.top.attached, -.ui.progress.top.attached .bar { - top: 0px; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -.ui.progress.top.attached .bar { - border-radius: 0em; -} - -/* 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 ----------------*/ - -/* Red */ - -.ui.red.progress .bar { - background-color: #DB2828; -} - -.ui.red.inverted.progress .bar { - background-color: #FF695E; -} - -/* Orange */ - -.ui.orange.progress .bar { - background-color: #F2711C; -} - -.ui.orange.inverted.progress .bar { - background-color: #FF851B; -} - -/* Yellow */ - -.ui.yellow.progress .bar { - background-color: #FBBD08; -} - -.ui.yellow.inverted.progress .bar { - background-color: #FFE21F; -} - -/* Olive */ - -.ui.olive.progress .bar { - background-color: #B5CC18; -} - -.ui.olive.inverted.progress .bar { - background-color: #D9E778; -} - -/* Green */ - -.ui.green.progress .bar { - background-color: #21BA45; -} - -.ui.green.inverted.progress .bar { - background-color: #2ECC40; -} - -/* Teal */ - -.ui.teal.progress .bar { - background-color: #00B5AD; -} - -.ui.teal.inverted.progress .bar { - background-color: #6DFFFF; -} - -/* Blue */ - -.ui.blue.progress .bar { - background-color: #2185D0; -} - -.ui.blue.inverted.progress .bar { - background-color: #54C8FF; -} - -/* Violet */ - -.ui.violet.progress .bar { - background-color: #6435C9; -} - -.ui.violet.inverted.progress .bar { - background-color: #A291FB; -} - -/* Purple */ - -.ui.purple.progress .bar { - background-color: #A333C8; -} - -.ui.purple.inverted.progress .bar { - background-color: #DC73FF; -} - -/* Pink */ - -.ui.pink.progress .bar { - background-color: #E03997; -} - -.ui.pink.inverted.progress .bar { - background-color: #FF8EDF; -} - -/* Brown */ - -.ui.brown.progress .bar { - background-color: #A5673F; -} - -.ui.brown.inverted.progress .bar { - background-color: #D67C1C; -} - -/* Grey */ - -.ui.grey.progress .bar { - background-color: #767676; -} - -.ui.grey.inverted.progress .bar { - background-color: #DCDDDE; -} - -/* Black */ - -.ui.black.progress .bar { - background-color: #1B1C1D; -} - -.ui.black.inverted.progress .bar { - background-color: #545454; -} - -/*-------------- - Sizes ----------------*/ - -.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.progress { - font-size: 1rem; -} - -.ui.progress .bar { - height: 1.75em; -} - -.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; -} - -/******************************* - Progress -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Rating -* http://github.com/semantic-org/semantic-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: 0em; -} - -/* Icon */ - -.ui.rating .icon { - padding: 0em; - margin: 0em; - 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; -} - -/******************************* - 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); -} - -/* Selected Icon */ - -.ui.rating .icon.selected, -.ui.rating .icon.selected.active { - background: transparent; - color: rgba(0, 0, 0, 0.87); -} - -/*------------------- - Star ---------------------*/ - -/* Inactive */ - -.ui.star.rating .icon { - width: 1.25em; - height: auto; - background: transparent; - color: rgba(0, 0, 0, 0.15); - text-shadow: none; -} - -/* Active Star */ - -.ui.star.rating .active.icon { - background: transparent !important; - color: #FFE623 !important; - text-shadow: 0px -1px 0px #DDC507, -1px 0px 0px #DDC507, 0px 1px 0px #DDC507, 1px 0px 0px #DDC507 !important; -} - -/* Selected Star */ - -.ui.star.rating .icon.selected, -.ui.star.rating .icon.selected.active { - background: transparent !important; - color: #FFCC00 !important; - text-shadow: 0px -1px 0px #E6A200, -1px 0px 0px #E6A200, 0px 1px 0px #E6A200, 1px 0px 0px #E6A200 !important; -} - -/*------------------- - Heart ---------------------*/ - -.ui.heart.rating .icon { - width: 1.4em; - height: auto; - background: transparent; - color: rgba(0, 0, 0, 0.15); - text-shadow: none !important; -} - -/* Active Heart */ - -.ui.heart.rating .active.icon { - background: transparent !important; - color: #FF6D75 !important; - text-shadow: 0px -1px 0px #CD0707, -1px 0px 0px #CD0707, 0px 1px 0px #CD0707, 1px 0px 0px #CD0707 !important; -} - -/* Selected Heart */ - -.ui.heart.rating .icon.selected, -.ui.heart.rating .icon.selected.active { - background: transparent !important; - color: #FF3000 !important; - text-shadow: 0px -1px 0px #AA0101, -1px 0px 0px #AA0101, 0px 1px 0px #AA0101, 1px 0px 0px #AA0101 !important; -} - -/******************************* - 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.mini.rating { - font-size: 0.78571429rem; -} - -.ui.tiny.rating { - font-size: 0.85714286rem; -} - -.ui.small.rating { - font-size: 0.92857143rem; -} - -.ui.rating { - font-size: 1rem; -} - -.ui.large.rating { - font-size: 1.14285714rem; -} - -.ui.huge.rating { - font-size: 1.42857143rem; -} - -.ui.massive.rating { - font-size: 2rem; -} - -/******************************* - Theme Overrides -*******************************/ - -@font-face { - font-family: 'Rating'; - src: url(data:application/x-font-ttf;charset=utf-8;base64,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) format('truetype'), url(data:application/font-woff;charset=utf-8;base64,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kIiRi5MI5vdUFfcni4vCBYufhJx8mn2ZepJ3i3aLeoR9fX18g3qLdwiLVAUO+yaLshWL+AQFi5GNkY+RjpCQj5KNj42PjI+LCPfAiwWPi4+Kj4mRiZCHj4aPhY2Fi4UIi/wEBYuEiYWHhoeGhoeFiIiKhoqHi4GLhI6EkQj7EvcN+xL7DQWEhYOIgouHi4eLh42EjoaPiJCHkImRi5IIDov3XRWLko2Rj5Kltq+vuKW4pbuZvYu9i7t9uHG4ca9npWCPhI2Fi4SLhYmEh4RxYGdoXnAIXnFbflmLWYtbmF6lXqZnrnG2h5KJkouRCLCLFaRkq2yxdLF0tH+4i7iLtJexorGiq6qksm64Z61goZZ3kXaLdItnfm1ycnJybX9oiwhoi22XcqRypH6pi6+LopGglp9gdWdpbl4I9xiwFYuHjIiOiI6IjoqPi4+LjoyOjo2OjY6Lj4ubkJmXl5eWmZGbi4+LjoyOjo2OjY6LjwiLj4mOiY6IjYiNh4tzi3eCenp6eoJ3i3MIDov3XRWLko2Sj5GouK+utqW3pbqYvouci5yJnIgIm6cFjY6NjI+LjIuNi42JjYqOio+JjomOiY6KjomOiY6JjoqNioyKjomMiYuHi4qLiouLCHdnbVVjQ2NDbVV3Zwh9cgWJiIiJiIuJi36SdJiIjYmOi46LjY+UlJlvl3KcdJ90oHeie6WHkYmSi5IIsIsVqlq0Z711CKGzBXqXfpqCnoKdhp6LoIuikaCWn2B1Z2luXgj3GLAVi4eMiI6IjoiOio+Lj4uOjI6OjY6NjouPi5uQmZeXl5aZkZuLj4uOjI6OjY6NjouPCIuPiY6JjoiNiI2Hi3OLd4J6enp6gneLcwji+10VoLAFtI+wmK2hrqKnqKKvdq1wp2uhCJ2rBZ1/nHycepx6mHqWeY+EjYWLhIuEiYWHhIR/gH1+fG9qaXJmeWV5Y4Jhiwi53BXb9yQFjIKMg4uEi3CDc3x1fHV3fHOBCA6L1BWL90sFi5WPlJKSkpKTj5aLCNmLBZKPmJqepJaZlZeVlY+Qj5ONl42WjpeOmI+YkZWTk5OSk46Vi5uLmYiYhZiFlIGSfgiSfo55i3WLeYd5gXgIvosFn4uchJl8mn2Seot3i3qGfIJ9jYSLhYuEi3yIfoR+i4eLh4uHi3eGen99i3CDdnt8CHt8dYNwiwhmiwV5i3mNeY95kHeRc5N1k36Ph4sIOYsFgIuDjoSShJKHlIuVCLCdFYuGjIePiI+Hj4mQi5CLj42Pj46OjY+LkIuQiZCIjoePh42Gi4aLh4mHh4eIioaLhgjUeRWUiwWNi46Lj4qOi4+KjYqOi4+Kj4mQio6KjYqNio+Kj4mQio6KjIqzfquEpIsIrosFr4uemouri5CKkYqQkY6QkI6SjpKNkouSi5KJkoiRlZWQlouYi5CKkImRiZGJj4iOCJGMkI+PlI+UjZKLkouViJODk4SSgo+CiwgmiwWLlpCalJ6UnpCbi5aLnoiYhJSFlH+QeYuGhoeDiYCJf4h/h3+IfoWBg4KHh4SCgH4Ii4qIiYiGh4aIh4mIiIiIh4eGh4aHh4eHiIiHiIeHiIiHiIeKh4mIioiLCIKLi/tLBQ6L90sVi/dLBYuVj5OSk5KSk46WiwjdiwWPi5iPoZOkk6CRnZCdj56Nn4sIq4sFpougg5x8m3yTd4txCIuJBZd8kHuLd4uHi4eLh5J+jn6LfIuEi4SJhZR9kHyLeot3hHp8fH19eoR3iwhYiwWVeI95i3mLdIh6hH6EfoKBfoV+hX2He4uBi4OPg5KFkYaTh5SHlYiTipOKk4qTiJMIiZSIkYiPgZSBl4CaeKR+moSPCD2LBYCLg4+EkoSSh5SLlQiw9zgVi4aMh4+Ij4ePiZCLkIuPjY+Pjo6Nj4uQi5CJkIiOh4+HjYaLhouHiYeHh4iKhouGCNT7OBWUiwWOi46Kj4mPio+IjoiPh4+IjoePiI+Hj4aPho6HjoiNiI6Hj4aOho6Ii4qWfpKDj4YIk4ORgY5+j36OgI1/jYCPg5CGnYuXj5GUkpSOmYuei5aGmoKfgp6GmouWCPCLBZSLlI+SkpOTjpOLlYuSiZKHlIeUho+Fi46PjY+NkY2RjJCLkIuYhpaBlY6RjZKLkgiLkomSiJKIkoaQhY6MkIyRi5CLm4aXgpOBkn6Pe4sIZosFcotrhGN9iouIioaJh4qHiomKiYqIioaKh4mHioiKiYuHioiLh4qIi4mLCIKLi/tLBQ77lIv3txWLkpCPlo0I9yOgzPcWBY6SkI+RiwiL/BL7FUcFh4mHioiLh4uIjImOiY6KjouPi4yLjYyOCKP3IyPwBYaQiZCLjwgOi/fFFYu1l6yjoqOjrZe2i5aLl4mYh5eHloWWhJaElIWShZOEkoWShJKSkpGTkpKRlJGWkgiWkpaRl4+Yj5eNlou2i61/o3OjdJdqi2GLYXVgYGAI+0b7QAWHiIeJhouGi4eNh44I+0b3QAWJjYmNh4+IjoaRg5SElIWVhZSFlYaWh5mGmImYi5gIsIsVi2ucaa9oCPc6+zT3OvczBa+vnK2Lq4ubiZiHl4eXhpSFkoSSg5GCj4KQgo2CjYONgYuBi4KLgIl/hoCGgIWChAiBg4OFhISEhYaFhoaIhoaJhYuFi4aNiJCGkIaRhJGEkoORgZOCkoCRgJB/kICNgosIgYuBi4OJgomCiYKGgoeDhYSEhYSGgod/h3+Jfot7CA77JouyFYv4BAWLkY2Rj5GOkJCPko2PjY+Mj4sI98CLBY+Lj4qPiZGJkIePho+FjYWLhQiL/AQFi4SJhYeGh4aGh4WIiIqGioeLgYuEjoSRCPsS9w37EvsNBYSFg4iCi4eLh4uHjYSOho+IkIeQiZGLkgiwkxX3JvchpHL3DfsIi/f3+7iLi/v3BQ5ni8sVi/c5BYuSjpKQkJCQko6Siwj3VIuLwgWLrpippKSkpKmYrouvi6l+pHKkcpdti2gIi0IFi4aKhoeIh4eHiYaLCHmLBYaLh42Hj4eOipCLkAiL1AWLn4OcfZp9mXqSdot3i3qEfX18fIR6i3cIi1SniwWSi5KIkIaQho6Ei4QIi/s5BYuDiIWGhoaFhImEiwj7p4sFhIuEjYaRhpCIkYuTCA5njPe6FYyQkI6UjQj3I6DM9xYFj5KPj5GLkIuQh4+ECMv7FvcjdgWUiZCIjYaNhoiFhYUIIyak+yMFjIWKhomHiYiIiYaLiIuHjIeNCPsUz/sVRwWHiYeKiIuHi4eNiY6Jj4uQjJEIo/cjI/AFhZGJkY2QCPeB+z0VnILlW3rxiJ6ZmNTS+wydgpxe54v7pwUOZ4vCFYv3SwWLkI2Pjo+Pjo+NkIsI3osFkIuPiY6Ij4eNh4uGCIv7SwWLhomHh4eIh4eKhosIOIsFhouHjIePiI+Jj4uQCLCvFYuGjIePh46IkImQi5CLj42Pjo6PjY+LkIuQiZCIjoePh42Gi4aLhomIh4eIioaLhgjvZxWL90sFi5CNj46Oj4+PjZCLj4ySkJWWlZaVl5SXmJuVl5GRjo6OkI6RjZCNkIyPjI6MkY2TCIySjJGMj4yPjZCOkY6RjpCPjo6Pj42Qi5SLk4qSiZKJkYiPiJCIjoiPho6GjYeMhwiNh4yGjIaMhYuHi4iLiIuHi4eLg4uEiYSJhImFiYeJh4mFh4WLioqJiomJiIqJiokIi4qKiIqJCNqLBZqLmIWWgJaAkH+LfIt6hn2Af46DjYSLhIt9h36Cf4+Bi3+HgImAhYKEhI12hnmAfgh/fXiDcosIZosFfot+jHyOfI5/joOOg41/j32Qc5N8j4SMhouHjYiOh4+Jj4uQCA5ni/c5FYuGjYaOiI+Hj4mQiwjeiwWQi4+Njo+Pjo2Qi5AIi/dKBYuQiZCHjoiPh42Giwg4iwWGi4eJh4eIiImGi4YIi/tKBbD3JhWLkIyPj4+OjpCNkIuQi4+Jj4iOh42Hi4aLhomHiIeHh4eKhouGi4aMiI+Hj4qPi5AI7/snFYv3SwWLkI2Qj46Oj4+NkIuSi5qPo5OZkJePk46TjZeOmo6ajpiMmIsIsIsFpIueg5d9ln6Qeol1koSRgo2Aj4CLgIeAlH+Pfot9i4WJhIiCloCQfIt7i3yFfoGACICAfoZ8iwg8iwWMiIyJi4mMiYyJjYmMiIyKi4mPhI2GjYeNh42GjYOMhIyEi4SLhouHi4iLiYuGioYIioWKhomHioeJh4iGh4eIh4aIh4iFiISJhImDioKLhouHjYiPh4+Ij4iRiJGJkIqPCIqPipGKkomTipGKj4qOiZCJkYiQiJCIjoWSgZZ+nIKXgZaBloGWhJGHi4aLh42HjwiIjomQi48IDviUFPiUFYsMCgAAAAADAgABkAAFAAABTAFmAAAARwFMAWYAAAD1ABkAhAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAEAAAPFlAeD/4P/gAeAAIAAAAAEAAAAAAAAAAAAAACAAAAAAAAIAAAADAAAAFAADAAEAAAAUAAQAkAAAACAAIAAEAAAAAQAg5gXwBvAN8CPwLvBu8HDwivCX8JzxI/Fl//3//wAAAAAAIOYA8ATwDPAj8C7wbvBw8Ifwl/Cc8SPxZP/9//8AAf/jGgQQBhABD+wP4g+jD6IPjA+AD3wO9g62AAMAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAEAAJrVlLJfDzz1AAsCAAAAAADP/GODAAAAAM/8Y4MAAP/bAgAB2wAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAACAAABAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAEAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAdwAAAHcAAACAAAjAZMAHwFJAAABbgAAAgAAAAIAAAACAAAAAgAAAAEAAAACAAAAAW4AAAHcAAAB3AABAdwAAAHcAAAAAFAAABwAAAAAAA4ArgABAAAAAAABAAwAAAABAAAAAAACAA4AQAABAAAAAAADAAwAIgABAAAAAAAEAAwATgABAAAAAAAFABYADAABAAAAAAAGAAYALgABAAAAAAAKADQAWgADAAEECQABAAwAAAADAAEECQACAA4AQAADAAEECQADAAwAIgADAAEECQAEAAwATgADAAEECQAFABYADAADAAEECQAGAAwANAADAAEECQAKADQAWgByAGEAdABpAG4AZwBWAGUAcgBzAGkAbwBuACAAMQAuADAAcgBhAHQAaQBuAGdyYXRpbmcAcgBhAHQAaQBuAGcAUgBlAGcAdQBsAGEAcgByAGEAdABpAG4AZwBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format('woff'); - font-weight: normal; - font-style: normal; -} - -.ui.rating .icon { - font-family: 'Rating'; - line-height: 1; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - font-weight: normal; - font-style: normal; - text-align: center; -} - -/* Empty Star */ - -.ui.rating .icon:before { - content: '\f005'; -} - -/* Active Star */ - -.ui.rating .active.icon:before { - content: '\f005'; -} - -/*------------------- - Star ---------------------*/ - -/* Unfilled Star */ - -.ui.star.rating .icon:before { - content: '\f005'; -} - -/* Active Star */ - -.ui.star.rating .active.icon:before { - content: '\f005'; -} - -/* Partial */ - -.ui.star.rating .partial.icon:before { - content: '\f006'; -} - -.ui.star.rating .partial.icon { - content: '\f005'; -} - -/*------------------- - Heart ---------------------*/ - -/* Empty Heart -.ui.heart.rating .icon:before { - content: '\f08a'; -} -*/ - -.ui.heart.rating .icon:before { - content: '\f004'; -} - -/* Active */ - -.ui.heart.rating .active.icon:before { - content: '\f004'; -} - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Search -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Search -*******************************/ - -.ui.search { - position: relative; -} - -.ui.search > .prompt { - margin: 0em; - 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: 0em 0em 0em 0em transparent inset; - box-shadow: 0em 0em 0em 0em 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; - background: #FFFFFF; - margin-top: 0.5em; - width: 18em; - border-radius: 0.28571429rem; - -webkit-box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); - border: 1px solid #D4D4D5; - z-index: 998; -} - -.ui.search > .results > :first-child { - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -.ui.search > .results > :last-child { - border-radius: 0em 0em 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: 0em 6em 0em 0em; -} - -.ui.search > .results .result .title { - margin: -0.14285714em 0em 0em; - 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 0em 0em -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 0em 0em -0.64285714em; - width: 1.28571429em; - height: 1.28571429em; - -webkit-animation: button-spin 0.6s linear; - animation: button-spin 0.6s linear; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; - border-radius: 500rem; - border-color: #767676 transparent transparent; - border-style: solid; - border-width: 0.2em; - -webkit-box-shadow: 0px 0px 0px 1px transparent; - box-shadow: 0px 0px 0px 1px transparent; -} - -/*-------------- - Hover ----------------*/ - -.ui.search > .results .result:hover, -.ui.category.search > .results .category .result:hover { - background: #F9FAFB; -} - -.ui.search .action:hover { - 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); -} - -/******************************* - 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: 0em; - right: 0em; - -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: 0em 0.28571429rem 0em 0em; -} - -.ui.category.search > .results .category:last-child .result:last-child { - border-radius: 0em 0em 0.28571429rem 0em; -} - -/* 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.mini.search { - font-size: 0.78571429em; -} - -.ui.small.search { - font-size: 0.92857143em; -} - -.ui.search { - font-size: 1em; -} - -.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: 767px) { - .ui.search .results { - max-width: calc(100vw - 2rem); - } -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Shape -* http://github.com/semantic-org/semantic-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 { - opacity: 1; - width: 100%; - margin: 0em !important; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; -} - -.ui.shape .side { - display: none; -} - -.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: 0px 0px 2px rgba(0, 0, 0, 0.3); - box-shadow: 0px 0px 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: 0px; - left: 0px; - display: block; - z-index: 100; -} - -.ui.shape .hidden.side { - opacity: 0.6; -} - -/*-------------- - CSS ----------------*/ - -.ui.shape.animating .sides { - position: absolute; -} - -.ui.shape.animating .sides { - -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; -} - -/*-------------- - Active ----------------*/ - -.ui.shape .active.side { - display: block; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Sidebar -* http://github.com/semantic-org/semantic-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: 0em !important; - margin: 0em !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: 0px; - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); -} - -.ui.right.sidebar { - right: 0px !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: 0px !important; - bottom: auto !important; - -webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0); -} - -.ui.bottom.sidebar { - top: auto !important; - bottom: 0px !important; - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); -} - -/*-------------- - Pushable ----------------*/ - -.pushable { - height: 100%; - overflow-x: hidden; - padding: 0em !important; -} - -/* Whole Page */ - -body.pushable { - background: #545454 !important; -} - -/* 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; -} - -body.pushable > .pusher { - background: #FFFFFF; -} - -/* Pusher should inherit background from context */ - -.pushable > .pusher { - background: inherit; -} - -/*-------------- - Dimmer ----------------*/ - -.pushable > .pusher:after { - position: fixed; - top: 0px; - right: 0px; - 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: 0em !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: 0px 0px 20px rgba(34, 36, 38, 0.15); - box-shadow: 0px 0px 20px rgba(34, 36, 38, 0.15); -} - -.ui.top.visible.sidebar, -.ui.bottom.visible.sidebar { - -webkit-box-shadow: 0px 0px 20px rgba(34, 36, 38, 0.15); - box-shadow: 0px 0px 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; -} - -/* Sidebar - Initial */ - -.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 -*******************************/ -/*! -* # Semantic UI 2.3.0 - Sticky -* http://github.com/semantic-org/semantic-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: 0px; - bottom: auto; -} - -.ui.sticky.bound.bottom, -.ui.sticky.fixed.bottom { - top: auto; - bottom: 0px; -} - -/******************************* - Types -*******************************/ - -.ui.native.sticky { - position: -webkit-sticky; - position: -moz-sticky; - position: -ms-sticky; - position: -o-sticky; - position: sticky; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Tab -* http://github.com/semantic-org/semantic-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: 100px; - left: 50%; - margin: -1.25em 0em 0em -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: 100px; - left: 50%; - margin: -1.25em 0em 0em -1.25em; - width: 2.5em; - height: 2.5em; - -webkit-animation: button-spin 0.6s linear; - animation: button-spin 0.6s linear; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; - border-radius: 500rem; - border-color: #767676 transparent transparent; - border-style: solid; - border-width: 0.2em; - -webkit-box-shadow: 0px 0px 0px 1px transparent; - box-shadow: 0px 0px 0px 1px transparent; -} - -/******************************* - Tab Overrides -*******************************/ - -/******************************* - User Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Transition -* http://github.com/semantic-org/semantic-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 -*******************************/ diff --git a/front/src/semantic/themes/default/assets/fonts/icons.eot b/front/src/semantic/themes/default/assets/fonts/icons.eot deleted file mode 100644 index 769e6fabef464631c52fffb35dcf41d2d1da6c18..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 218340 zcmaD7!ptBO!py+Pz{CIoOblGiAew=Jk)Z|5@(FzMJcbem1qMfka)wlfVupN%T!vHz1qM?F1qL^UB8F6kR0akH4u&*1TZ|!$A(f$s zp_m~PtXqM>kU@{ZfPsNQfguenQo@jkVwx_JZU&HZ85npO8W@-v0^Hm}eCri%u`w`* zfSe}d?&9jkpvkB4B80{OyA~Yq$Z~Do!tovmpcp$3}zV_sfjFQ ztos-k7)2Nu7*sNHODZ1va&|E=Fm7OA;G2_^pPb0@g=GN)gUkU22EGNki4_Gb0!+>f z42%{a59TH2rd9+rF)}bK{$XHXd|!}XTw-niEQEns`3(bu{wq*`gK$rG$I*Cxo39Mq zkhr=w*9H`f3?TadoB!LG+8Hk~Ffwp3Fo9GLV|7LPvU|}6zN z;04i8EDY5P&Jkey85lrjLfpduat{^^a?1e*2CzF1{Qm*f2iC&~@^%9Q2cyIP{~$ZS z_JjQeb}!f-kQhiW%x(}L7Y3OD!;B6L>Z{AR2^0 z=>$ZBvI733d~ABn{f{r~?k9{B$sqz7y- z*pL6e!psNT4RSjyoI&9Q;)DF6080npIO1Sx`2P>A9wc`F#Qy&mYA(c$pm06_Rtx5X z?FWlN{R9ekh}i;64h#Zd_c(yu$G`wG2L*$Q37A_TdZ1|-<|YOXaN2TU5C_`>iYt(M z5C*Xs{{Llk`2P=tLG~~0!o+Qa7K~?@j>MeG7a_{)J%{#C>$7=82U9E8Df1M?dw{2CZ|!C?dv1MxxO3QA`%Hi+K+zY}W`#|mlv!Ujpm;rL*0!Vy;+yG0DAU86C>;bt6L^m)nLd^o34`xH< z7#kQw7!NSWgX%?a+3^8t9>f2iV0)9n;myVfDF+o84}e<){}|_k#X;tAfZYUfp9;tw zFg_Eg`~{^2kUL@Kg2NkZ2OHRLAO61u+XGSq3M&wHV2}jW>x>Ny%pf@s2Ad0VGa(FW zb$o!hjnRjJfhhxQ7X#xBaQOzQt3mMrN=q=e?EuS(fx``&ju{^y@;TU@Aa{Wfq{vUfdQfh;&*UbHHXG%QryN5(9%cqD!2QbvazC_8<^$^k*NKq)1&R}<1_nl`pE$rYG+r1FK;jAP29W)rFag=&0IkPC zY*6@t^6Gm?Sb+U#08Ue|^dbZ@6XZrF2L^Vq{UEbI7_J|zo`Z1%s6GbAJxCp>d<^HC!R0JSFNzrr45Hw; z0L8rnB+fx?OvVEYF#jl6$GB7Z~#F!iyU~vG750HKY zc7UWygd36k0x}N=2H6kJL!fX0#VMrR0htT31LP+t2Df*>Z4Z!okl&DKxLUCNp!7uq z2HOoPGePwLDD8l-1FS6tY70R81Xc&ihhRVa{|n=TX^?wCW;lTRPvCd}xdAK(G8ZBT zs#ih!K;;~yeg=ty{0s6o$P5Msaj2gl{$&8gF}Q3(_!*`it{0MzLG1w$hQ=c(?7-z6 z)D6h`A>jma7ZL{P17nD}4B&PNDEuI8L^dS*(`ho9* z@CVTkk{@I~$bGQ;;PS!mL-dEZ4|yMIKD2%4{LuSh>W6tB7JgXwVbh0mAFh75_u=t} z*B`!o`1g_fBi~2CkHQ~iKFWPm`l$EO@T1*Fmyd2Ay+8VWjQg1SG4o^I$HI>#AL~B$ zew_Mo-p6$xH+D#BD zpLsq@ewO>J`PuTb=jYhZwVyjb&-y(7^QO-SKcDz~_Vb<3_dmb?{Q2{*FT7twz9@cC z{$lvWk3 zc<|x*hYufqd}R2@`%&Pd@JES{avv2ws(du~X#COPquWQXkG>xRJ|=uj|Cs%;;A8Q} z%8v~nCw`p%alyw8A2)qG@bSXOTOaRyeDLwZ#~+^pC){o`)R?a4WD*^L+RkBBcCpOx{4G^A3uHl^z$>rXMxXhpA|kE ze0KO8@Hydg{paq_b3ZTqyyf%Z&!;|L_2%Hww26Gq~82HaZSOV`MG7Wnka~jlzMsd~6I1{HgpY3=I4s{6YMI`~m#_{C*4! zAPiE#?+hZLn2~{jQHfEFQG?Npfq~HqB+6*TSi)Gv*v7!XIE!%`<2eQf#v6>c7#}gd zWBkCx#>B;>#$>=`$K=A~!xX}lz`(#%0>xEKbxf0(rZBByU|`z7w25g8(*>qmO!t_c zFg;^>!SsolhgpPKiGhLHhB<_}fPsOzj=70>9`h>ZZOmtw&oSR)e#ZQdMS?|(#el_& zC5@$orHrMDrH+AtrHf@A%L0}?EGIy&V_;x8!g7NJG)4&FGO#>hdB(s1!VC;7zd(Yl z9IQ&LF{}lweXNsMx3HdLy}^2qfr0f40|Of$n*^H$n*##_8+aI#Ed!(;hS}m67}(<2 z64+807}!$S%Gf&CX0fedU|=}PsK^-3aFel;@c_eS#;J_c8K*HMGcIBbV+>`qV@zkL zWGG|wBBc*8iEaS8(m z0~-S;13SYXMm2^PjK>+CGIBDoGA?H5XRKma%%I6=&Zx^+&#;$a31c0Xl4v#xW?eh5W{ee;Vi>>hBFM(3^EL|3{nio7%wqSVA#Uo#Gt}>kl{N+DZ@^N z4u(cXO~w$$at2+7-weMPn;17Sb}_Otu47uww2CR5DU2bAA(A1OA%vltv4pXJv6x{h zQyt?LhJy^Yj2Vm@8MPU{G45fkVQghEXQ*Jf%fQ7b#IT&fl;H%U6$2jwKZ5`RFM|++ zFoOt#AVW992gV*o8OAb(JjN`BeT>2k2N>QlPGTr$^k(?W(85s0xSi3N;Wfi-#&*VL zhG~orjN*)941Nq-8U2}B7*ZM17}6P1n9`Vp8F(0XFt{;HWSGPlz-Y#h#Hi00%}~z} z$`HX2&M=+PmZ66+nDH`W5aUJ0UksZVRxsu;<}&6n<}(&D7BS9aoXafEEWpgqq{4KK zDU->Z@jBy2rq@ib7@sk7Fy3QoWKw22&E&}Rf?*jWJ5w}c8>1Y9D1$T8e`Y48T}<J7>+XwF-0-$VA{^~faxKVIFmHfa;9ZWs!Rn8 z?-`adxG>}}v@x_ZzGr;Lbc^W*qdP+&<3z?aOjnqsm@YANGOT0R$gqZCJ;Pdtl?RLt;|A(v?jlNOUZlLu2G(=(1$4A&X87&9587$X_%nCCFAXRu_n zU^>V2hFO$RnehyR2h$>^NG3KWW+q0)e@rY)tPEz1s~MUY)EO2qsxw$I#4;o>#4}Yf zRWdGNT*_d<;LeoIc%Pw&F_!TU6CaZplLJ#V(^015OedI5F+?*&F~&3QW0YrXWVpq6 zj8TwLgmER~3dSRhyo^T~1sM4m`52WL4l}J}W@U_E+{?J1!G!5M<8sCprgmmQra4SA zne-V97>pSV8H^b885I~FF{&`CGS)JI`Zt9PS_}^u?latDc*t;(;S|FqhLa4J87?rK zW?aVT#U#k&#^lQMl4%ChbS4*OcBcJI984xmvzf9OH!$%tUSYh$;KSg};LG5}@RE^> zk(-f+p@u1y=?~)^ zi;0toi;0^#k2#-7fVq%Kh)IM=lu3d~lDUXUhDnx5j!B+Lfk}}`iMfhNjY*wJhsl7+ zkjae6hRKe}nc)zV4^tphFjEjy2vaCiEK?j)JW~Qw5>pCOI#VuF4pSaeK2s4>AyWxc z8B-}!1;b~CFHE%z|CpMXni)BmTAA9II+(hcx|w`>z=7h)0pNlEnr&6 zw3ulL(^95&OzWApGVNsaVcN~KhiNaU6G=_b={ru$5f8M_&K znVv8%V6I`VW%|JMk?9lDXXYlRuT0;Velh)JW?*JvW@9|d%*o8hEW#|z+|6XcG?8gC z(_E&_j4zpLm<}*AGCpK{&1A*o$CS);hv^>EU8eVpw;BI3=`xiw_cHe}PiO9DUd%k3 zc^UJ3<|WJvn3pn7V_wKm%uvD{!mP+_!Ys|)#`vFEit#CP409}V9CJK#0&^mB5_2+h z8gn{x26HxZ4s$MZ0dp~P33DlP8FM*v1#=~HHS=8NI_7%j2IfZQX66>=R_1o*4(2ZA zP6h@>HpH|Le2@!P(Sc|p+bAHV!wBzSU|^iWzyKN@0QF9oO&A!M-!L$M<`G$^Ffg!( zFfeeKFfec&VPN14U|`_9!@$6m!oa|_hJk_W4+8_Y3j+i93H4F@VUl2q1p|Z49R>zl9R>#51_lP(3k(c)2@DK&Ao>dfgMAJIgZ%*p1_uoW21gDC z2FE!J3{Ex-3{G z7#O^lFfjP2FfjN$VPNo0U|{fLU|{fjz`)?|!@v;0!@v-5hJhi_f`K8(fPo=s0RuyD z4g*8*3I>Ld5C(=&0S1Q95(b9QBMb~-A`A>+KNuLo*Dx?dL@+Q!Y++!CY+zuB;$UEi z%3)xLy2HQ_ZNk71{e*!briXzc)`Ec{b`1kVoCyO%ybS|G{2c~{1P2C&gf$Edi7OZw zl4KYdk`^#9B)c#$r0_5>q`YBZNMm7ONV~znkY2*TkWs_Hkg3AJkhzC}A!`ByL)H@p zh8z14C&F14Ee#14CI314Fq114H>A28N0b28K!&28PN73=CB|3=CCo z7#OP8Ffi2QFfi1bFfi0UVPL3R!oW~(z`#)dg@K_lf`OsQgMp#x3Ijv)1O|o{1qOze z90rC~4hDwS0}Kpp1q=-BH4F?LEDQ`COBfhB4Hy_YS1>SiWiT*wi!dR&q zFm(+B!!!;ChG|n67^a&rFwF2^V3_fTfnnwe28P)U3=DI87#QY)a1R5++#d`K^FkOH z<}F}gnD>N%VZIFm!~7`>3=1k47#2QYU|2MTfnm`f28P8k3=E5xFfc4(VPIIYg@IwI z2Lr=08wQ4DR~Q(UcQ7!l&|qL#F@=F)WefwuDi;QZ)e;O0Ycd!Z);cgStUbfPuug!1 zVO<6T!@30w4C{Fq7}m!yFl?}3VA#;Zz_9TK1H&c_28K;N3=Er|FfeRBz`(GjfPrDF z3j@P85e9~Ba~K%5ePLkOzJP&Y2Ll7cjs*-1J4F~6c9t+O>~djX*mZ@0VRr@t!yXm} zhCK@y81^1vVA!X@z_4!t1H---3=I1f7#Q}?VPM$*hk@Zh0RzKh1qYexVN8d0o99zJ^a9oFh;rIpyh7%bK3@0lX7*2j+U^vymz;IfD zf#LKH28J^V3=C&E7#PkzU|={`!oYA|hk@bz0S1N(9t;c@9xyOmOkiNR_=bVu(hLR$ zP-pmx00YC70}KpTEf^TCF)%P(%V1!*_JM)ndJF@@4HX848%r1%ZuT%R+)`m+xc!2G z;Z6<%!`(d$4EJ0Z81CI+V7R}Af#Jan28M?-7#JS+Ffcr6VPJUL!NBmWfPvw80t3VI zDGUrRW-u_kT*AQc@(u&TD+>mOS8o^?UTRHa;f)3Z!Jf1H-!q3=Hpc7#KcSFfe?SU|{&G6ATRB7#JA7?O|Z} zzJr0`hXMn`j|mJ6KOQhJ{QSbe@GF3U;nx=ihCd<<41eA*F#K&`VEE_5!0=y$f#LrF z21bTA42(=m7#Nv77#NxVFfg)gVPIs1p2EN=62ibJD#O4iI){N#OoxF{+=PKq{0;-7#2yAlNe>1_$t?_wQYj3KQWqE) zrOz-h%H%LG%C2Bwl*?gYlsmw{DBr`tDF1|kQDF%Kqv8?KP1->N^-1)ju#WYUD65YR+I_)RJLf)Y`+qs8hqhsGGvT zsMo>3sCR~e(clOJqoE7~qmd5-qZtPSqqzwKqlE+mqooN0qtzbM42)qK42)qd z42)3@42*FV42!-2m@oI4Fh9S2?Jx(2?oYy2?oaI7YvLoUlsOTouB=xOxWz8yg@N(H7Y4?Q4;UCPtzlri+`zzirGxf$^CE1LJcA z2F4d042-X07#Lr#U|@Ws!oc|E1_R@}1O~=WCm0w%uV7&O{DXn=^kKU(q~{`GEiY)GW1|z zGTgzyWURu#WW0xg$z%@$lc@{?li3UgCMyXBCTk7`ChIc{Og0M`m~785FxmZJV6yjM zU~-(nz~p4Wz~t1xz~r35z~mCaz~t({z~q*|z~nxIfyv_u1Cy5x1Cw_K1C#Ft1}47= z3{3tl3{3uS7?=V=7?=W07?^@=7?^@37??tI7?{EiFffIEVPFa`VPJ~*!@v}|gn=n4 zhJh*S2Ln@d4g*tc0RvO)5eB9>69%TZ3k*z&6BwA1WEhx|k1#N$6fiKQd|+To^>UhD`4bqJ3UU~j3idEC6`o;WD%!)q zRI-DCskDNDsf>exscZuSQ+WylQ-uiwQ{@~6rpg-(Ow}q3Of?P+OtljjnChl5Fg0i} zFg2<$Ff}GHFg3+6Ff}h=U}~{pU}`zRz|`8qz|^*bfvG)&fvNon15*bJ15-x^15?KY z2BwZD3`|`N3`|{17?`>x7?`@>FfjF8U|{NXU|{Oqz`)ce!@$(n!NAnt!N4>jfq`kl z3I?W$OBk3Y?O|B@7HqOCB&VEv;Z+T9(4Vv|NROX@vs=(@GHrrj=_L zm{x6IU|LInnW z=?x4_XH*!N&b(n@I@`g(bgqMe>HHi9rVB3^m@XDDFkSq^z;r2sf$7p42Byn97?`ev zFfd(ZU|_li!gm;$ZrovDx@p0{bhCkh>E<5>rdtUNOt+3OFx^?hz;yQr1Jk`H3{3Yc z7?>W|Ffcv%!@%@#4g=Gp00yQ<3mBLlU0`5(?83nGxQ2o0@f!xFCleT$o?0+4JzK%R z^jw31>G>T7rWY{`OfNkcm|lKiV0tCM!1OwYf$5D11Jj!`3`}oL7?|D#FfhG)!oc)? z0Rz*A3`MSX9)(TFC7d_UwJ@lUKyAf6#gGzJivH>L7hRL z!Igo5(a4t3M4QpnL`_*yiA_{cM9f&x$jp|}7%C2<)r`bM*p$>v#6{S&8I{y*8BNUW z8O4l^%*@5*7)2Sk@bHMpi2QpXA|oThs30OE!owp1!Y=|WECMVZ$cQWukrCz>S5OyL znzO;4uIx{+9qE4R|zo96;E?0;J&wNX(F5ij`fAo12|gil2cEG$OzRn(yRi z5NFV1uwrmy0L|bbx!F|EM2!W*m3EBwjB<>|Mqp=}i)b?{*)p0~Ga8AS;$SmgfH;Y9 zfryOEztv9q`cC=>__#K3@v(BS$nq-+smRH)b1mS>;6X!-4afoDpbyfylZ%g!OOBP3 zgOP)aTa<%|k6nz1hl7X50*Pc`V&M3Hg7F9A4hD7xUIqps5iuh(6E!7aL6B!SCZ3x( z@m#u3P7b3wh&AzF0AoSUj2s3A1{MZ}|92PXOL&mXRv2rU=&3}k2Rx_7%Mm~ zA#p3qC?Y0|##dEVVgrd=GlJsWM2#_lll=iZCz$xRfpGzd`7Z%PBC#3WVM;g|r)YpA zLBxJeb`S+3{xcxhClE|f6k>6+ps9(Ov7(WfETagUvZ9ijIGP*L-E58~&&iH(n*f4| zER4ct%z?R+vlHPsWH&b;gmJhT6wV;Gg0ca~?X03A(0l_4YjiiODnh~;lDACM7!^3# z|1*Gsj*)?#^WOtx2O|4{5lIztV7J4)@b4hPv4q1~7%i;X(ZUkl-RNPxfRi2MV2I-< z;0WyH2qm1P1~x0Gr^D0$S_8vi%wWObz!1a0zz7aKWhFjlenvJ~MtGV9WfW6m2x(*n z%Kr>XY9?kzVj||srsl>l4zs9;HX{ft*)l3avcD;)2#{qoHew3+cR)l&hna(&ot-I# zj{}rnH7o)w8Y}`VG`RR={sm~r$Y{t2Oi0mT6oD{#EO-<^85lw_9*_|+U}R=yWlG@_ z$>HM?;NsJ;u+RWuJ}$-x5t)AmG9Z0hcvAiy0J9ibkhJqyFfg$E|MmYEQyb$h1{($+ zhIWQ&3=E8VjO<2Y;$m#dMq=!IOv>u)Y-;+9YW7TK=5~y7jN)Q!>}>32=4N8zVtmXX zrjeMq93wj)BfFZi5+5TdH5!?l87rx&it#hCvGXx0=`pISfi#=*F|xC%f!Jo|Z0dT9 z=5~zYV&+QfYG%etV4ktKxtScJIJ*)%AEUCEIH-s>HBnX-6DaOUZ!y(AdCB`oz%E-*l#40VpD=Ep#FV4%U$im7N$bJ68kw0J8=2`ds)1&jMHlwK>v#E)ix*D6Ph#aH1sIrnQ zqlh)5sG2%V51WV>1E}yS z&$xmykwJt(n}Gr17BLZiMsX0qrlilPX2LEm$7p8HXl9}hO5sq4v57oDwgYS$Rx2)| zxEky_>~2PPi#a>QdV5BAAc={XtE(yTGqQ=ugEFXy7${gkF2m*)SO~B%GqXT^yB?cU zU}4I_$;rtK2|dtaD0n=HFlaF_n8Sku?kF=Ob#^{Rs0+l!j6lxNXH-+#h|LmEh(qEC z6m{T0K#3ys;A3ZpxR`1`&+Z0*N8iQ~@?R0V8G@7(wyO@RBi+K@1ej zc3_8tq8XaxK=G`AErndfn!cdsy#S{h2COlK86{YPAMC$yMn^^skh_Gzq09$L`|My6 zk~zR33QD{Q38175i6ce@uqQzQn~(q^p#cV2srLT?69eM{a9d6rT<3us*`U@1sAa?~ z2x(csTIlM~n#@R+QH1fuKLb$3#dv{>k57n?>t6wwH-U?94Y-xc=)lJXR$#!z_iqQI z07&-V2QEIoOQ5zW2M;LiAhkiI85kJAZGAH%c2Q*|HhD%dP(o1y^%Arhl^B13o1~N7 zIoQ~WIXH@0*je3q9C)D3)0Pr`REPxqOg}4s36BM;MQm&wAd67i%hC)CLeP>@+*niu6Lq5o<;xNUIz@2qH0U1DBsjVXK1(TXA+%6E$r{ zP{UANk5P$@pOKGAj!~WwTyQ}PQ)pN-dVm`i9-#cr!p+3O$jHLf%F4sT+RDPh!otli z3Jv_*KHEWYyWNMGg_(t$iJgO;ow)^+&{{x=keeMfKGYHM!49f=Y#BlBF$a~I;1V2O zQka=QBL{9iJ3BWhaYM{z7h&gShr|`kq3ojU+#shx9Ldhk%`S>+w;Cee%*EjiI(ASY z2`ZML-UpSMkSIj9nO%e($zo`HBHPT)j?-Rs1_oHXs+)^~;uBOU!;3;>e?#IJo4FvL zakGm;q8qErV8PA6$iVvlKI0z71q^Zw465QtC6_&;nV3AIpotl%pC&43ZpX+tR}2(a zhuB5f4?zmkVm>YfF1})Rkw@a7;6B984w4jSXJoHnln2H1zlRm<;AwTn|Ns9#VLZS% zn?aF*K^0OG>49rNBT$OsW8`Oqcd^9f7#W!$2EyzUXJ%n!W=_jyV+6*E>Uxa(&@2PF|KCH9`x)gc*clmX zQSD+EVMnqFWEac-2aLNJ7cwY;>JzZHz!rik6Fw$AMtw#>NVnHi5Zq`5`wH%Ic6JVS zCb)s~P~9TN%)-dT%v^!w9B}#W%f!fN46=_=6jD_2F@kGuP-!J90!gAKYWj?NjC_oY zRbS+|!ih58^v zHg+~q5jJHdHW5g_2GkH|1M!T^OklLC4Wp?Zi@F-9qa-FS$0Exp0ycwHon8EffP{d) zlfHn20G|k7;-qu|2?4hhHw77XRyi>q0RbLedwx+-{?DM6v+!gv$#{TKP*KNHfrF2m znVE}QQddQiUqC|O-^>7|fIT2Biu(GBAexJhZ&|u0h-KvFW~8bhBgiKpCMO^vV6V$5 zEFz^X?b!-$k>`TR^NdVPN{&_rYFy0BTjJgAGaDeA0u-&hX|`MD=R0O6e}k?3sjPepQ*^tk5!mciIbHr zWDz$XANQgVHdan0PGMFQaTYc%R)~xsFB5Vd;SB0aF@oa8*a+%$b~a^D`@z^qOjLxA zgiE{F=GqcL(%*YAz;u01T;Nf6o6yUAo5oBg#7E^Q6k+XJZVpPpSEL zK~z{lQ%qPMvMOy0JJYmdwmS)itQ^2;!NWE#{QsWCShETfxVtFS$@gSYQb~pqlJSU< zT$wK`m{~biuyHYR$jNbXh3OjetYBrg6lP!m^$UM7F)+3<@G;1Od?5xNgMqYTSjCZf zJO}tyRrwFFvN1BUF|s0YmM`EH5@B=@5#n9I!o|(a#e&8M1sCi8|Njqw$AokkTp2tV z5*U&h7!-{WBZi<+IBP~hHFafBaRe&F%#6gL^4g%TH>&}tzpcjv>Y1{$v4aLk3_-(2 z>f*}mU@0|l3k*$)F<}L$j)JtNSEzARfp{Gf0TLY`Miq;M5TgQ@EC-h`C#RAUr?8Y9 zmv@$TgU5s&T(VLkY!XruYzQ%M`wdJmstag>843zuN?4wKJ0quW6T83a7W&dk8hz|FwV zAj}}nAk84ppv<7opv|DqV9a37U=12)HWW0b2num>3UR7%N()JIf`F8ev=9hz3Q2*A`LckGTI=oJ2H!C(T^DiswGhqq1@;Ve+=1LADP z7ymMZd4)K6Sp=9EnHYIEIO91ucsMv@RM_|gg}D^l37vQiip#hv$NVShuS=1P(egFPE zc!0+`@UAox{fFPaISma|whwQ3F8OzW(E*QzpdEJ%Ob(0<3_=W2pxt$%?EJ1 z71X~64Xr>b4Uii}7z+&exWGdrT%ci+Kv5}uK{jS{19r}pe4LzooS9&fF+l_55=h0M zrNX5y(Wt0@k%f~{at9~-1@Pn! zBQukgkC1=>)B^>@%f}?kC?dyX%_y#HYNE#k8eahypX_SNAeVxg z{h*(b$Sn%t##E5awetS5{LuHx>s?o`5Eh zLERvIMl)k0P+YJvF-nU0vGY1Gvw?rXtbMFR#PMD5A^E z%f`#b%&g1BC8jEB#K^!=%MCJH0A!a0nB?Q);xpjzHZk)y(_&}omQb@W@n%%CQdYK6 z_7V_F&{q^w6=h`f8B7^08Qd8dgq2M}4JjirQDayZHD(k6wKUCa8I^@WVaW&S3L2XV!^N3JjZKA( zP4qzP3A7nSjl@I`Kr-|LaJEkPm%ztW!Ns>Cf{RZPly2QT)yuu1xVnRhI zl!F2o1c=B?00SA33keDe3IYNO3XBfIynHfZs%oO>G^h>+&7tpQYyj=$XAohKVen*N zU}aa*XEZYx7ZVjxXBU@aGPh$?X9BedmDohYA^C!lA2KayX3JwKRDlEK$96a2t4JuMnDpJQQ*m)FK*w~qDK`BqbjFm@H zg2hRmk%@_kF%8`H7vN&DXJk3Y%zlB1iS=+)1P3=0Gpi&IV~rHZfWtF5nOKf+V;DE|` zb~bRiBW$L|s8OuM#LC0b!N$eTsKCg_U9QK>$HT_Myn&sMQK5;QkCT;)?E|;KAs!(% zHbw&;2?o#(bq4Tw#{mXK22BP-=$J<&0|O(dDq!Ph1eHd7?9jfkICxgho>5r|G*E4# z2I?Rh*)ocon}G)0#ni<>ElxIhMm6x@yE?0hnK3A#KuSj=GsYbz(x9OiK~7F~9wBjQ z1w~ciu&SysT}?rD5q2pPUkM%_2_72>2{AzqK@LGqAsbFXP7pH`O8;wBlLCdZh6N`d zCu4?*G-&WgP()i?SXEJ8T0)42y=qOBkRUs|vhIgFw7 zGAT7qK28e_c1}*{dKbvrC2??FZ^6KziZ&}^%V?smW@2up3Yp&rE%7lGMPiF9f(H;3 z*%%M-asAr?nx$v-;Ns(CX6F2Nfb9w!9R2YH$c}b8wq* zv%h0w6JcZ10h7;!rGyp0?fe7KJjoym?YD~xszX*o9dKa00BZjJGbmtSU;q#LF*PtQ zU|?qet!9!3uf;NFum{f{hcm=8FqnZxuuRO1U}I8D(B_gDl%`a?LDfuE)r=23Ld6PV zs^)^(;ISoPh{#$D5o9$GmAAoq4}dw0#b85cgE_rml1QOouwqcV7+MzzGN^(!4XGM~ z2J65h$;RMm7gKXlP#4OY5n4BaR&a=^D~lR4IvjwEcO2l!;5qP*K}IA1yyPrEMCL$4 z!-5H*z@H$(!_yKFAR+@^cV-}CqX3%o`Tzg_J|;%S0}NrHl_sj7ab!^uP!TG^2b!)` z(`V!ZH7Kl5aBiFvt?#sVq#%t7Z6}K6V{jHk>D}bFyoRE=CtKAmtbe&;ODf^ zXJ%z&WM$@(;xcA`$nApr$h8)gm=U}j@sVKe6! z{KCWYMZug?Sc=O=RzX0Fm4%a^(^?N=04JxpImB3IR?vVk8!NM(wJ@Wwlb#;v@J|%%3#aj$q>qr$iTp=49{Gk6$*-`CX7fq2_;t{%|(KmU7+Q4L@l-3BErY@ zZvz*f2oK|de+PIpc;Ltc%ys~;34{y6848RiK+S-E7NA9jj8nkcEWl(AM9qQ_9-auW z07MuZT@Y%53bQWsRU3MhvuALrg@D$q=-p22_!% znVXrKsOvGB*fE>SF^h|dgSy~$jO=Rare@|$4jlZPs?xq%9)X|*gCg22EKFRCe9Y_u z*1|ljTnao)%%H8DoZRdhZjP#QY|PTCd_oENg@ySKxP*C`i=|ba#MNa)5=3NprDO$^ z*)=&?xR^OuB{>yjnV4CaS$TMPcsMzjn8Y+>rC6C&rHff5Yoqzx_@Y7U{}6Mlka7e* z7pej+Ct&L#Vco4QGjeifBrDIKaq&i|+uq#mK=0S(C-lysMdmi|=2flDN2%I3p*R;^5=@2b%KcVl?35 zW7G)X;#ukbTSGpI8d zGuShDGlVlBmE$7dm5Gd|Cd!JS`qWs_h}F~tTqb}jS!A{>Ne~9u*N8(2^$*mJw0m zQQ-Oa2UN;4vhbV%2LmK9AcX)X8`O?w2CdryuZ0GMi!EuP!K$vt&j?xA16|OA*I$g0 zG8~*)ddyrbGMt=2EL_a}oOu0^Aj8R#rO(VP!^siC%-jcR{($R8NIC_%*PKN68o?vY z7{5zxczAa3@ZfbFw5W!R)j{hIkel2|bQ5^tIXD}EY8cQOI8b&1Ej~BJ??w+E8y*cF z8y+Zy*Reeabv!npwijx=dywd6b5Q#k6!qZcE9{_Fv^}FZXyJ*8I(|p<8gO#TaBvzJ zaB|3Sf+#qTg$1t<7GUat>SyL+0nM4g>Tq7rdN^T}T&oIRWCAUGlwmYz(TRw$q7e@~ z^|qV1-^58(Rq*C*#I{ zK5T4Va!kyB**VvxxVfdcg?N~lc$hTuaYFhYyuyqNAms_9s8s+p*SXj^6WCPPbeTEX zz1aT!a06-VG68GkWCwRNgn8LP{sN^B$XYB(aF2@tw7dYc+8Z<SYE)@B@o|_lvobR>axihqa`14l3V`ch z(A0qe7oUKlEDIYW2NV0hUUo&1DiK9?{(m17c!hpa*Q z!Wk_Y85p?1^EG0ib*1`@YG(3`OuSs2jcfvJjhtMJ43eCUY;293lAyR^WDsZ2W;nnY z209EuSWpDE{1UWE`T!3fEP)!LM1u-(il7BRM91M$n1@CS@f(CQ}9hSJtlQE zb7pXB71U4#mUc#m>aYrohQB%EK+f&&kNh z#Kg?Z%ydamS%Oc3kC92v%?*^|(}h?$89O<6Sef)$Dz$kec(maQvl|pxIk;IR`IWgv z`8hfHM7Wt**;rXvSy)(@1SBLB85#K`_>_bg!@*N=j6%8`eC!v58$fj(d~r4;EyDbn zOp!mq=@n^H1$eX^)Wd(0o6rss@#pkcH3eY@p>XY-09|;&P0jdfN<4fLDpD zGoIGt;^4IxViDo96JX*KV$;=S6XIhMuw&=pWMLAr=j38y(?e3iEW@d*%PGSwV8FpIf~`Baxy89bGTh?K930FUpk^;h9V3rf$EYLO11j}UDw>B#cJc6JaHCW> zNjtcC#CUk7xq;o2!3{dR7KE7?85=-r~X3)}U=5}@wSV&C+t;iSP;7Cp7;1FO2FBRg10#df|EG+qjI%*&q9D71K()EJ7-*HF5@_wC znKEeoG(>}*5XG8Yi9Af1GWf+KgYK*f%X;>A!i3T(;uMS>- z3~GtUF|skrB1{Ck2();cm6>@x+(@t=*xBJ`!ooq6fdRI6L?5&z53=Oej#2C*Tr0vg zjJ61CkQ@$Kg9n*+U%eI{;c_%cvk^ z<&!fb$H$6;OPD(_lW}5t+QiI24qi^inSw&B0!j9um74ZR0!+Ldf;@c8qHSU66DFpI zwTd#a@-Q$Wt%ZZHgM(&AXjXuZn}Fs^MZsg-C@ptuMo^G}hU%d`ITLZDS`M+NJ3!4u zEkHzOn+PAD2%iVr7B;pmY>WYjrnr=vnv{$QA4oby1T-;(n$JMxIkbn%uCB)j*@G?% zYJ~7JvO(RuKZ1#w$AHIyg^^i?9qRbA4os}fD|mRiKto6BoZvDXwD$P`13!5Em5~^7 zQ{Gq*H0TQIH$yw%wv5n;C-5RGMSVzbT0ukx+(7{gf_CfwOVC%m0NcF|x~&ToW*`rM z>tRg>$QTLybO2Ddp4CjAQ4F-tz|_P{47vvjyrWUf+ziy)gvvqYL%?ln&~`^LGt}+% z-&k2hm|3KP?Hz+8nHU9`SefM<6rD(kv`8tY-RpCd`sdOiXgjj7$=uN~+@0OpHuWDRDJ%9!6dskSrUEgs75)EU0}2 z>L)w^&%wzs7&9=aLI!w26}bs`jh-B%xEW}nkO;dRBd9lkXeEOxV9>@nHKqn{(|;3e zLd>+{oMg?k_#|XCEZB6czB_WV8?bXavU4%AWU=tEWU+H3n0klU=y~(AusFqus7MG{ zXb1^%x(OA48pZ`&JgiwPELq^X0JIjPfpGzY41+lVH-YvCfO0q=XdD2!$&Sleud|py zIh!eqg^`OL;Y93C)6HT6O*%1UvGQ=iTnXxr!Q7|7z@Q4szo3x_c0DFgf|FqsnAuJ37)?#|KepiLHREECwZ zq{UQ4^%aHW#aK_UYe|FV93(Y4Iarxkn3x$Enb?E{q_jA+vN%Bo{p$o%jOJhpv_9ztUznN&4t04jF}DGG=nzJKut4MC>y*(i=B^Ao>7cZ+?JJGeG5~Lcl);MIKIG zCT1oNeil|K4hIVj?<{XVt``~>j0$QdY7PGy6eQRg#br4`jR+nFZB28Ce*$q?K4%q|IeG`Bb>I z7+DzEnAHTCIkgy>n30umnwxVfNoz4PvoQUfF*7pd>VsA(&Xr{0GSy^ZloaPN zWMOAyV`JhnWEJ6(WMt7a;VJ6TjcvCfV6FVkrMl-PA zAtkbzxVf1)Xm*;BpHYrQ+}H>de%g#|?2yw0*g*TJ*tD3{#q1bC^)fq18q~>QV+VD1 zz?GJoIy)OET+Qqm)j%eLroH7E?U>9>P3)MAL8e0jR$L4ms_b@*dW@jc2jp1n7+E1& zK~bU(iXC&%kc%A?$QU!Y1MNUHB3LhI{l2IeXjYbw8RQhu+CqIsHkj*}7&utDSUEU2 zm^oNEK+ALlSlL-vKr^NSY+M|y9DG8|tgK8N0szER0MXOf1aI%!~ruj4UjS z+#ppeAqP^yE~vy-EyyCKY#_$T$;86NFC;1^!SJ7h zl}m_^odx7juEXFFx zEg>c<#LvaT$hD4-lbM}|os*A^kDXgcn1zj%i<5O2-^CT31Hc1}KCel`|i zA#P?4b~a`{PIfj<7G_R9W;>|kK<$wKkg<4v@NNVKMzj-u7?lN$g_Q-3QQH-N7A$zM zU;)~&WdkF_f6zi5mjD0%-)C}QT)-f~punI3YBw{0HifB!(wMrMxq%&vIcQxReDw`% z_8dktIjk&qx0mx&=VWH&5MtqDV`sKr`R+03m=Bp0B$82WO_hX%3=1PC3x^eJ% zQ&%&$V>bttilAds*u>R9gP?YdYU(1QB5dkn#zy9#(?!fp)E>x~NEp~NvN18TF>$c4 zv$8R>Fo{Vt?`m%T$HdIR#lxh?ucfo1#4gTQPt;VFjfp9ei&K@Ik(Gs&iJgUmots;L zQ`AVtIU%7vA)AqzgIh{i-p^B#nK7n@#Yj+4gqe|@2~?&d?`07K?U9A;JO_<+@H2u2 z>OlQ%HQ0hDXs_NRjfsU(kyU{=jg?7}Rlyj%R0-OrFHB-$XX+9XT4&-#wUK zuwp*08XoX|g#VCvUO@(B1|0?lMd&gp(8#(qBdBRFYzk^~fmopCmY}i{s5pjf%>-@s zhpb@tP!wMQ-oXS~%AUc+SLwvg#Rgfr&RD?3_wR|{*^Ss0m^#F*IGnHU*aSlKx^xp-IwWrVo|l*QS2xwtquSXmeunR%EcnV_AYQ>+3K z!FIMmB77`NtW3U=!vIG+|cpR7AM;j<-p2R^$c zOabVahaa$&FkrO@CQm*vc`|Iio(Xh^mpX$#XpM`iGI#|Pc(#L&ksX@uLC4a7MtN-+ z?HJ9$>75?c^ySk~csk!L;3w(l77sNy_NDJ~^VB_ZIK5*c`g9VJc{MaP;AIkA& zaC2wy%01+lVDn>QWOVRg^7CW*_hgDw8+2XnZ6*fB#S97zDhyf-dJIMkW(-yg465p; zCZN_7Xu+*4XcZyM0ie-pkR#ODP0iKK#YNfGh1pHbP1)7WS)nxJ%S1LV_7q;;6!AnZ zUXc_5fs70RffSKhp`mBe($dmGLPOKi(ip?Q)G?JD4qk31HC9$NPRSe<7Gdr@F)kwx z4igg&4kIqHJV_k|R~0oiHAYR%fA_Tg)m62$)TcvfSUzDq%D8|*o52{euTNDBJj?~& zYXVy82x=mmt3$Tkf_94VC%uJFc0@~UFoSe&6f+GtY*}^dr5>lKTl9I)e973F6m5hptj9}etJUpzD z#e&@2f*hR77J!w%1(WrlWzpca0i>MdWdN-R2AzJ#2QAUfK;!YCq-e`1rXVgV0u>ii zU_4-xZX4SSs>pUVyE7WOgSqaEMvUcpB8no~a(Z&w+O6qw+S+pIhWY7Wp>#tAmjA#1 z?`L9UJjwvtbM6LO17{909z2mw+J19$#O#Hc3Fw3To*3~2wa%)bSoJ5w1L86^K7VAN(j0NT|c4C+-F zf%ZIs+5qZmp!I^FRrO4=jC@R@B67^4B797sz67Wu5)&5_2h~BKu}x61Won|wT*$#E z%EKipEX2ve%_PCXu57{1s=>s{%p|KLp=M^L#>OMctF6n)A;-kX#H3-(%*L$2%5Gq# zW@fI&D9*vp#md6L#m3CUs?EtJ&#uqP&cw{hWW=VRBc*I8B_bif!N~#D&*7+}s4poZ2^u~_jI;A2>QOdOx-l^`f>w|#^g*3FXpQFvVuLz*pgkUt zaXwLK?qm=K?`SqQ660qCuW~R0FM~!tiO`x6e2@w9x)jj(iHMldjQ}pb2wpDE8EgV< zGdQ_;BlsAN__!da22D2P*Wx#v%*9v3Bf!HW-~%Q>>*H5Qa?W65o53l$f{X882lz~( z0xmv7ettu~ERaebuu2|CK4b!&f5yWg2i}1vF2>Kq20E?I$Xp#V5)B%)0PUVqV-{5u zGzO2Kp>ELw9|y!ZIf|YAb_^FUBiC(aj-`gI+&nzoEGq2mQS9t0?5wPN{vCM6%B;c0 z#_{hFD2aiV4e+ySurTI=^l>rra>d+c7BK*CGiOx>Yg6VB5&8EjjnRQcgOwk$K0-!h z9tRtn2B`VT0NU5~fbk^bLI!@&9(Gk|OAE9p64Vw@RRo>lrUyQqhfR#}fH3dB2Jmoq z1F!JE0>%V+Nzo1LLLx%!8$=}?96&N4!q`&$0BCjg0dY%6n}CC%g7F6<2XwtZg9;=C zSbz>dk-NRG)+js-N5 z&#uSF&c<#4%5-{6hHC0+N}#C~Q4vtylVdS9vSTwh122|_t%DNMtdZdp=im_MlTkKS zkmTiL=XPRZV^(&DiMlH@v9K_5GBGi#xG{=Jwm zQKFpO+?=9Ps^Y?2>}+COPE1Tp(#8-$V`)YvMm{DcCKg61BPKyEUN&Y{&{Q4=v#}&- z%{{c;16!k_$^cpGi87uITFq?&8mtnNWn^Pl0(ntg%^aQ_KnH;s*)f}&q0EYY^3vb~ zZxq$=Vie@yXXTM$IRn{0D(1;3$RWTlz%Rfl!03tE5q)N=APFiNCFRZdSlLBcbo)TO zK0#AP9yU%E7EU%EMpIC_0gY2b)&a;e*f20Kn!%4q1tm{$xRcn8?3j%0n9S{%K#fOG zwgN2+6B9R*V`BWq%q{~y2!fqiv64xgPfS!qRGd$Ysq7MmIG;45y}Pg|GYb<$38zUF zqcop5BO@~l%NbDiI>W-uBpJaZ#L3IX#>*wh6q?G-DXM3}FTljc&LRv_Aa z4eoD(`soW9L_s^CR6&PGsVT98PrU;*y}^r5)y3JB)fqqW@h#xf;QPTH)Y=ok}Fm;L_(MkmGvpnZv|dY}fCvJ&{PM9}&+ zZALY7aDf6kBg2jnG^_;@RtIhSgEVKwtQpzF!3|WN#K73gAO`B$LC(H4H35zDih#;>HCxchNvw*d;PMdEY&ElGgdSDE$HkZ-#~r}V z9>5{Q|8E8tALEOEGav%oa^TI;j1mG|d;de2Tn2o7a4t8GfB|?-5h!gT z_q#!-2ZP2Oz(eJ*okr^7p!UD1Idl&#wBH?~CM~Td9mT<8z{3Hm3>{e6p}p>Z*Q7ym z2RgX9JD6FSnb<*N+CTmuVDex*$iU4Y3|d2>Dh6IgZ!TuO3qj+<2N*Um9$;Vxr9m@DDQm6*YO5%* zZ2(uf8GI~koUBf4-0XaOTyb1{hTyuF(f!{CRt`26Hf}aX0WQ!oG-&!e$hZKM3qdsm zXqSUMqdI8d6vPDOMtMea&>5{DCTMXeKcl$0x*BMWs~o8J!KM#tH=BupYE{tE6qW33 z706N(Ic_jpj*kmjoSmBuCXrFV#Rp@fDnf{}akC?IL-uPx$~yQs2PmC^2RTHbC*i7s zx^5s0S{4qP+!6+55D*4MJE)HW-qZl?^nvG&L4ywfQvDL z_~3yMY_f1MSiJ*kTS|h)s6Z_leNg5GFFG(W1D~M@3PLevcF+LlG|RX&4O8;FCBllr2<&d1fj#kW#`{oesb4lZ^9&_P=q|89T^EKrL9KJ=i!7k7B&d*Lfi@oQ+`lNMqUvN zYA3LRk4XeC(gd$3133#k#R}dN1hO;&6hjJ!IXUGyI1eju%kiNs1XYpaRyfSbAzi#-!`#uXe?pvE!iG*&xC(2gZG_KjWa3JMl> ztenhUNrLR`nxGAsi$E(fG}%Si1%n0k^o4}E`1n6|v2)p3C@8Rim5H!xf|M)*Db{3X z7YqU&86ai^y1olEUJBYXb&x@n!Ga+OG%u$r4w_<71MRi6V>AbCrI%w?Wdm(T1x-q_ zsi`x97fIML8i7tUG&2UBWegf%G*MGl0`(!y#6cU#K}E5dsTdo(xEZ@Tn;4_K0-G>f zB~3;HgK#Y-CPr2kUJenqe|wo3Sy_2mK+8awj5W1EYFVZPSa1po za)@ZE3rX?_^9V`uu?Pt(F7jj6vCwA>_vDu1mNyXz5)&8GRFdQ?2-db{;o{(A;$mgy zU_8#s%frmY#KgqP?8zPO$<52kFJckE#L6tqDXm)TmHIsXaAP zC)C|Wl$~9B>ZYmMOw3FyPYMD83IY^t!)$qYgn2jxxY;FzxFvbDZ+M1_YgwysOL2ov z@nz=VWMSo>697`29A;~)EhWw)%)`ztz$qlj#s-<61)ay#2wE8cSuH5b2s+FeLV^|w z=tD9Y_%Li94W2dJ;zA&-%D+aHe+_6f3$$o(#$0wrA>I}+`R{;;5bvC35HTIHCI);{ zIAa?$7l4=bv-2^6mNbAV&={pWXn!V%ux2!30_|p6!!FFv4JP0=F_!$B!NW6SE*lfO z09OlyVg#K7g|G~CHUX#)bdZ6cL7l;X!G^(uA%r1;fdRD68&vRu>;jdxtb*_+E4aJ> z^`~VSK>>r#V^2)GLiS}4&VBl7Qqh>W=4d3Hfo16FoEp??QHNO18T zNC1Twc#joy+XS4?XaMTpLi)8bA^*WA-!QHa6lZ5OU=?KdVwGe};Nz0`w*)+dh<$Go z69eo20}Q{xbs5rGnZoLzBQ4m}LAeMtIu1IH6nZ9uv5{FScsK5L14ec(R&G^QZdNXK zMgwL(9t-d>k`_FCj0eD5bpIVbz{ zt1$Su2nZp@#U#WcE-Wo9Ed2@Yde8|PkS;x=2VarGzXj?Ni4f%wk}F(NN=!gNOyC;C zCkTHCGAJ>a!2N-^2E-IJv%m~G4idV<7c@~TDsEJD7B{CjkBpxTw-j3r#B(TViIYK^ z!JNUHAqBLK7m_OE7}?R*N|_3>vMGZO4>z@EG%y3lj40^9AW+9wgk2o8-P_b0bXtO; zIB0N@olV&swE9<{$pq9=F*PwWwP!SvXA)s!Yyf+LnWck^4;}{pels#NF*-6aIWjRa zGm0=WGHPfrGBPU2u-Gv(G0HG8*)g)rcVuJ&$uVhYFfod-fRr;bx`F(|%%#Q0g_Jx$ zGBVmSF|pV(GKw;R&i_(TVFV3fxpOeGFfv|dV&Y(CV!F(d50YnLW>isOWM*Vy6lG+z zWnl!Ju>smI21>tz3@!|y9a|XbRvg;4)o0{mX9w+!Rs;DFT)2vhi5i%II{KiJ7kgye z*x0bJvn#W+sDRE^WoBdLWMyVoW@l%Ch%>V>sxpCQx7nfMSTkTkTpSw@n=3Ob3p*Pp zmmmil4_jO;8!t1n3uykDjh&lEfQyZ%2oyT(kTx%9?a%=R4hAXk9$p5}$*tg6#EfVb z$N@geN_vbYX5xyb;3G54&Ey%OQODMf9CJ^k#CT~s;tFg;58JTZm z0-XZM%*@2X&uh#hn!_Q;B|i_8b~b>98BXvq$@1~AGK-2avGIuu$*S>i@=B`M39875 zaB&IvC$V#}H3YKp@#Hz9b9~-Y}~v; z{K7o^Og!?e?96P;fnth68wI5WZI^-FBLNBu@EJpl9(=R;#RYiSSr|d5V4h%RV-`_{ zjuk=D5~$oTMJY2dod-TG7ku;#s5}8JY5|oF=4N8hw8YGU;=BYoZgV~^*kGzTw;UuL zF>?tayQ>YeEbNS;ER2j2jO;9`TuiErjLfXe zl3Yx}j7&0&Y^jfIITUYesAv<9)5 zUnY&S4U%!eeH^Htq_Fu2dkM1uo1GF6BN?C*7mN+y^WfYWf*Il&vKh)5ni={*XY+tl zk}abml!i{Eg9g*VJ!D1r7I^S!rr?=kNP_~krGeA}VMSt_BC&C{QjpXzzTn`|-~k_g z0XY~Ev{C@HO$EgJmj`cC!WoPLpzSh{O*1EW3gF^!24e&0;w=z{9j*a7C4)zVj|=G6LjK_4NdWK1N#No60dA8*#33YTj}>I@>j3CJ2hjQ(c}7tYP#fEh$rQAR zTn%*pfB+BoPObn}ZcYx?o$P#!2jsYSp5x)LU}j=w=VW7K+sPpWngU^90-uuvx_``; z0d)HqJDaGo8Msp@4qAO9$7p75$7aQ7EDD~rg*I(X^qAC5jSWOWlL(-p2|Y&GJpzoI zR&ZHyD9H%Rak43E@v?9T2{W^D^0EuDNwCSW$ZPU}PL<>qmgd)BCh$iZ5|%*Lz- zU8)Hl4+51Bhd}3p3!A8cavAuzDac|HHP9K;VxT3dddxQj#Mq=n*@R`Kgw>>_ROPtM z3+ELo8yYGzuHfNi;!?HMQj(EU5R_I`lMWT+;j#4dFD&%e_chWnVqjq4WZ(dw`*e`O zh{2x0gCT$+oFR@Og&~)r1T-298Cim?%1~AUt$>8|iNK3{KnwlE*g=Pyu^Ahgv5MNU zo13zU>oKW|$}x(oi<*g>>M@CniJR&%sK4ixr`O&k(@pq-F%qP*NZ%&cteY^=;eW^SP6eaxVh$?lADOzhlDE=+>VGH%T5 zE-cK96PQFm+z>VnCJ$!*8G>vcEF#@*T)fO4Ol;isE^N%q?x4-Ep#1`nKBXS$%s|jW zVsvz%SxAVTlNYkb@Bf$o z2N=&V9$=6Lo%*h-4q8JC8Z`oK@dmA;wPq9rof@WSWTpzdBDS?}WMs;wBXl}>EWb4VU$p5c^kB=S1V4T3o%lt2#(L+XL zfx`k38COn8g*i36!V)|+yuv&JHU=Ux4l*MDUX}5Sg7#&AH*7IBFbIOmT!@(>pqT)0 zh%#O{05U>G1iZ7K(E+3pyc^+xhz!`Bps}`v3_75-`R2;z#^OjvzCl8X88m3g#?Fi; zA#4sBa8jNjA>Ab<4q9K|0V1TEn0Y){IT@RzK|GL0v=OY06p#+A;2yq1UlOudCpjd!H~g=A&LP$I?o23*#n;!YR71z z2RdWU95kc`YDg)mnS$5gL(g+#hpgBDohr)53_il%L`_^x33T?KxtWo;9HSi*bXfnl z2I$7J3Jn<{d0}CB6?tJ7W=;-fPHt{NZf0iCD#b0VysVtutek8d+@Smi5?ZUu$J91{~0w;(q+Co37#)Ik&*ySX^Kx`?>BJR`f9 zxw<{0xE&)%mL2M&L@9egC3QPKZ*M+3b!7p2DK(BzRXIC5In_`OA(0<)etvRL2mcVW z3Sl-Ame>K+BNy zAU8>{iHpfI$}w3ng0|j?vxC*Jfo7P%!|I^REX>6ro1{V4TY%1j{0X}LiM5awvI9>H z6k%*^OtpMGjEv$;tYE;zsu9S>Da~2T$*BjTKnPFXK-!c6N{{ ztZeM8Y)s-zp#2g|HT;4gQ^0ICkQtoCoYI_noSem=&1EcXff}r=kgLIJ`2?AucRqmT z3Ls~b3o?j<=Ia^7mDQES70s26*_B0&#l_gvnH8DYl+^7RjoI1M7@tL@x*E9td*#{? z;F_9R&B)5=&M48z$inDcoqC&*mGQs=5K#ET#LUF-|KA}dCZ|9D!OK!XWe|e_qXJ_9 zc+MU+!)^jw0h|w>E9$8T38@HS1lMNl z5mdc!Kn_&^)eE5PTF>y6>Hg-Ekb9FU!17$;H&@uxNabq=mMl;X_ zhKxBa92_kiyG4u`8I42~>IBR^G_|;AaB$4v*j;DRqP0&z%PvV`9z=R2NGS&^Scs89 z-bvmeA<4`v>42K8CWlRhgM&jtjf71^gbjCqHl8_2Bv1l1_nJ) zdsUT{j~O&Z#K*`E+Stery$#pY9CYZUIcR67xhg37#98GS*;tj?l(m@j7?nU{w(9Jl zqT5uRDgWOa&^A_PKHig{tp^+e0xT>BEGz;70!-XG+#DR-j3T^zYyzx|BHSDt|6Vf+ z2{D1@saRQ9n3))-@s=(t<^357>fy84aR~9U@No)rR)ca~HK!Vvaz!>*GQ}KaZTpqDPU%0Rw$7XXJqE&<>L|% zR}|nhW?^GtVN#Xm;NoLIM*=&X=Z6w7IrQk zMh6MO@C||z>|FdD8?OsWNC@0m4|Z^1L$~lP_M)cx(+RdnT?%|SwdS@SeKVqehnKJJF^PEf&_=E5WhCB zl%SB52p`u0P^or+i|-0}d71E3(6uCtTryHJJRGj_GOS#zLhj0pe2h}c0xWzyTtbYz zDMHfHjB~+5Iv_#{yfzIwj`N?1fw7T6ivcuB&me592f76ny6p?(HqdoZTA(GP=6Z}E z1U@0g#Ey{_yw(nOvZ09?#>)oxH7744vx|px!yEzaj1iO*|vquPOpM+*pi_9gLL04p&#w z11I%zhOR({>NeRJR z&$kN}{NVI+0GxjGz&kn_gpELbRy!up=2|gvGcj<=VPhBJ10B;2I^YW4bu~3HgDiJM ziUR2N=?-pDZZ=+i0e&_NxA5^}cMRhJkgr+Un3y@)v3Z9$_r4Q1f7m< z%fO%t-uwV^wjPr{qZ;^B3qjCEa#=?3?O0++G)Ne9e*@@t9}s3dz^K5)Bfxoqg^PoO zsey}CT9H!$ly8yne+CYY2r#;kz{=9W$;SaYRciyEqA)A34x zfB>ld0lEwB0TUzRLh!zA$do&%909jHz(pJe3$$RJ30&@hZ#jb&!l1Iwp3#oQl!-w` zm{**agIAPSL>7f)=N04z=dMnpj$Oc_9U z9qa~NLcAO@B2GeDJjwi`?4aDvEG$$4KF}7tCXvIM`$xD-9RheIC(jkIS>UL2OlT6aN|TSD_M92g}H=~ zi%U)c9wr6Q#d@Hy+|R_!co=lPkO}C(3RBSB7kHD4vAP;)x3L)b++RjHMt<=5zv3VU zn=GRYBj^lZP=-|krx7tl9$R%LHUTaH85U(O114q;UJd~n788C07Fh*B79DPRWBpy#VRRqlZBI$gSnNbT!N9?GGH~g2tN~xkig9I90I(YAlAb}0)iZ}0_z&N z`PrCQWCUh%b8CT4#9(ELaiwoN5sirQ*rq0Kt&c?0;>Uo%& zLr3eu9SiV@OCGRdg%46RGO3^m)M*K`vj?)Wva;E*aBy;RadCkHfrrOgOi7Q8kB^s! zk(-H!4HN=QN)pUMlDq;EeA42aakiXtJgS@md~6O}9PC_TuHpua0ep~=k_%jXPr!xP z4RnFm2AjD>Ig(k~SeWe@S=d;a8JU<_*;)8h_>&6ChRcg@gDlR7e047!zs4`|& z=1s}s$&6eYteiotoJ>qCOkqLHtSn57oM9lb1~wKA5I2aGlZ^!;!xhHN!mPo{*}%-w z-T<1*VSwE60$Mk%%AgA_6T!>-Kx^PY?MZbbadk+Wj-S!Y7gG* z_02xa%H3nU;h*apQX)_8M8<{bF;ACF_YP_nQQ3Fw6 zwyG+ei7w0tY7m3l!wt~3FlcP)-vO`?m_Qb1bl?QFMgK$hw;F?Y2!Jmy0TpT1jG(qR zsI#TS4&G!U%ZSo02aVdU>ZLE!&&CIiM5pfhh6mDs^G z1!$`U^pINWb{5f=ljUOG%Eq?Et<{?W zv>x*Y*erSQI38$Et+A0fXhk{rI6ijJp_Xi*^VyX68O4=Ar{I7IZALM1F(c68a|K@) zTPJ=cQ%M(JRxU2~3Mpm|P9{?iCP8L{=j<%J7AykHu1d@tSuBUyh1d_V?l;hO_IBi# zlJIuskrEf-vSwjsVQIg{!O^L}rr6KUaWRR5WiK1s9#&AZisS!r#-EHk7}P4Vt!sc@hyYs72JU!+QnWlHX!RDexgC=YBd9!wZ{-sgGh_TQF+IYCgOP)qO_<%t z!6zrj$J5jpbkN2`c1{s?Bc%w#bQLbp96S>T%7C^xjER46jlE1;$Z^qY-D9&W>NsJ2I(+nV`gCb|NH*~CKvD-A$E{F2VQ~& zUEl<2Yuhq{3T1glF>~mC8E_|t8B`mACQ$4dL5q#;8O<19@Nt!Z=Y2}J_*nLEaO`0T z31MfoU}cX2t%>C1{{H7AE8TYEnjA5Q@fPXP}fS3eueEOz!;tQM}_ ztnBQpo?f6?UPfjX=8NoH@|+w8+1U?raLRK*=e|MnJ&=>NtroB(D}jO_2#A!Ik0NR z1OFUAt?UT!H=!6ew1_!NX1rav#D7S-V^dP+2Fxv}^4dAo|CY-Z{ zgtDE%OfUiF`-WOugZ7WW)_;I*6M>u~4c?B5#|fs8(uf(nhEa~uTv^Q&9-NkDpC!#9Nxr_S(Xx*~_7a!OS=x&1W|23%Sh$_F3Q&IxuO@#aO!KX75?K)6f zn=u2AtGq7QhS?I~90%*rP)K=*a0>(RF@`^`2*wkrPGk7LpAmFFuNMOY^u!xJMt1O7 zJK)q}B*z3gv{RN5d}=nd=?-cun9DJNC{WF&%!ZT|K=l~|=!Q}`Js}}oIdM?7<&}^X zQsLoI2?24$pc3G1Y#~r##vTo3HfAOvAweN#c2*5mb|y|y0nns#fdPaImVs=XV>Ep??{u0ne(g06(F;*^ic2+5VO;E1UT1I00DO&?^R4alv!43-S841o->3=Eo}i=g0lxrngA?%5PqXH!yV2j4V?a4zz( zVc^mSRAN~(g4WlAH&=t!)te)EiSYvBepZ=(*TG9S1!To7#AR7HSitkvEF5PbThNh7 z1)hHqJfPFLk%NR$K^3IGjEkS2i;wf8|7)y0eT6czOpGZ-5pI5;{iI5<2|9OR)0l73zQlLUn`WLz9{?gr@QTTKQN zNc{zxgM_T)1&xHO!Y>_x%oalT${Deno5?eRu&5&A0~wKj4WJ=x0ewZr4KNO4gNV$( z1K{Zp7Yhy!jSdcuh<^(dAX~^7L}V@~>IX1_*W!X#96(_JT61}a@c`oz2GFh>eFl3_n-#P>1Jq&$jYxq)LmXE6L+{35M&p~K@%0(i zAk~IFqZudC1*IDp89;5-{~&TE(tW1Ok;L^9Sb4Za*b}%Ib07!nvU75FBJMK%&wyYz zAei|HteorzxH&iyxFKZ~WWGZZbSD*f>k_ni1eziRg&SyZFyrlRNuF+S^~=Y_c!7&g zl2InYg^!OT;s_|YLT*!J6yO8j@rSxUNgdoa1`VK_zz+68tgSIsh8!smKEgv3x~ulz zcO^+lCCMbvEij-fR2+DCc%XZ1l_fz^PeIpMIe>1TN&&5F2hHyuU;wpKK({e5n1jb0 zKApmP$g2xKM1b79TJtL%{E(V)yW@1S9WZ~rCV3A#=iFz|vBKln~i#JR)X4B-sP4EYSz z4DAe)8Rlb_L5$D_9JJ^}E=CEm!P}RhMKJPN#kknW>S2e#pxX=E*$(Ql%KVFgGytKE zKCINg4S3YRBpDSThaW>tKq*Ec+HsK~;HE34ET%Z3Vzw#=$1s0cZ05_B3OIP}5IYHQF{M{4S7{7h`(V&ZJz z9Z;aPso;|?)Ya6@K--l-Z4pL;e=k7UoKd2ZnNysNoyn4sg@svxli3oytWcbjnbSs& zm6=9yK*qLDuuI!*QN~2dM>kSh=~m zS-H45*;rWExp;XwIoY`QxY@b+__$d)K~``nE3>l-u(E^dOXwZs%nZWd*1MphAn4X( zeX7<>3e2S#kXuw`DLfGBGppN(%^qiZ?-3 zHdaYqemN<2Q8mL5bAC=HE+J+fHg;waS!HR?ExfuG;w+4u>`b73EF<3(CRSD!Rz^++ zrvHEb?_uI$JjkHQ;K;zhsK*F8s8)@SO^gjR2nIS8802_nJtpwAlsnj6IjM6ou`_XSaw=)_LqrrMl?6CJ%gosXC0T#!#BnjQ zvav8Rv9U9eGrbT4jKavd-Y*5pW1$WMQ^oW8*l&#pfWvV^P4$!opg>Ez2mt$i!&D$`87l zP!?kL0Y=cB!7>aCpm|8}ZhJAX;gCT@BQsObIF$*bRR#+u7bgqEa8|h4Tzrfk1)$mE z0&dxVA6URfGkWl$tuq4MAukP{n}?sEtIn>bZZ3ux`DJ5QH)A#z6K7XrRW~yihn-mK z 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 bM;w{9Dr_?d&4wL`2-V!>ID_ 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

D@q0|yEW6bvq0 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 diff --git a/front/src/semantic/themes/default/assets/fonts/icons.otf b/front/src/semantic/themes/default/assets/fonts/icons.otf deleted file mode 100644 index f7936cc1e789eea5438d576d6b12de20191da09d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 93888 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≪=u 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 AZ2$lO diff --git a/front/src/semantic/themes/default/assets/fonts/icons.svg b/front/src/semantic/themes/default/assets/fonts/icons.svg deleted file mode 100644 index 6a09bb196..000000000 --- a/front/src/semantic/themes/default/assets/fonts/icons.svg +++ /dev/null @@ -1,947 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/front/src/semantic/themes/default/assets/fonts/icons.ttf b/front/src/semantic/themes/default/assets/fonts/icons.ttf deleted file mode 100644 index dc18b3781fcd12a478fd2e8b9fc3c5c010621d31..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 218140 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�~k77~$X6f^4YU}qO+7hz9GU>9K*XJuw)?O+#??f@|$!mK>JEaL3! z9qb|pI@m?n#n?eg*~LJ@9qc#;cn7N#tmoSe*%&;u=o zg2$5xgBAmWIXpPvjxsY+XXj&txZXMm434*en5sI3$ihQ3nnLlqf3xl0%v%6y=-&kiObnFAc6pv0Sy07}Y` zIAT-)dlD3|2?-z)8eou>YX2WFF)%Iwx8=0Kbso5p4QgG0T1L!*kd_6kg{}^*$&6$f zMHpZFGXPawj2F20_=Nbl{uO|E6S(-+fLp1I4t!i-1qNJv|8_76fMoxD;Ns)E1Zsa4SKUQDi2HnJgeTG44P$73zG1oEZpp((7?a#vmF$-+kKc> zm|3`)*g4qQnOi^!tp$__x!Fvd!%5IPFzuV1UJ|y16JQK0%c-yeLHWHzba+nG5n6H@he#y0N+p7TgSs z46Og}Gwxwrz#zxKpel}3a@jMQiODkxnwWw5X`+JWc8rX3#Xxa&h+TyJ5Tr0I=HpV} z;wxqsc_a=B?nCVCAW3m{M)nFuc~DIMdsx8^o>pi4|Ns9J#siGA859{9R3Rmi9=HZH z0;MQEMt(+k7fW1@k&y{vAk02-W)?37pMqsR{uE)3!%`%Yt|2+h`pHaSoosqE?)h>1sb|jlXcCq|_ zz_^=nA%haAJ^_0RY$2#J;bYQc)MpfgbbCz&!Hrh1ui!3cXXjvNf*Uvw)h%MoER0Od z%oRw^0hjN-OpJ`iAp00aAw?A*Be>=Ul~$r6kR)oNrq8Iy$j8W7^+k?5jG2XnIgDHG z3!g9tgw4js!^tS7rzgO}9mdSb#mOAT%_E?v$Hm7E<+3uff{I=SMh4#h`x!nn9$-*o zU@%t(6*ngOjCxE;pjhK$6p>@LW`vZ(;G)4y?Ha@sCN>aY3S(wrWM$=Gh1dl0b{IF0 z8`vF8%uGzoOkvC%9PI3@%pg~Sf+mbx4&=xG`CAI(u)$PjRZ=JrplrsZ2F9l zYD`R)(b!a3NzI-S8sKc&jH1S-CZL8NDD>Gtv8*g=Y$V2*;Lps-#lhmw&c|h(D$C=~ z&hF14%$I5`z{}$gauh^@PnZKqM$8`+YEX4N-2Ut$?EdV$++h76mqKK?_}GzT7(in| z{||uOF3e!b;K<;~kj{|Jz+eulvp`N06NRwUl-SIa*g&ym1{G#!V`mc;VN+IO6M^(= zKn-y=5YNcW1V*dcFq-PIsH=fGN@C)2EV7IuU^7_N*~M=NNC@aV=?h2*@QLsxPD&S$ z5O7OzQ;=b2l@sF;5a7|Z=NA>_{|st53r_}LFc#m+6t!Xc-oXClqW$iyQcuslEsw5y$wLHPdx#!rj~K#L<()y?e~ zLFtvB(cBDN?Z`8#tAU#CV&HZusFbj0WM>nzW;C*6(q|MG12v!3)fn&f^>MPY3bTrE zbTc#ZajS9jF*0{^h_DK?vT~wHv2wDrKqa~OnTq`UScN&2I9b_37IE|OaW4vCW93xh z6lO&cXJO-Fg~$l&BPec+ji63vXHy2XAB>H}L`C>m*!39g8NpuRV-$sU zd*zrwBa(8=#ztnQCTh$|YM}8Bka9LghV+RO)4gmtS=hPQggA7~d~$Mp{IXcsxOfFP zd03exnD}^fnb}x`v{dcYcqLWDM6`IB`NReIeZ2Y_1VmKC1%*_>RgDIlC?^j)GplUQ zjGQnpE@2@79u7uE0p3a;L1s2)F*P?G2@Pp}F+m=FHpUS9l$w7RM1>VJ#f0TSt6&&d zAq@h?1_n+BK?X(8Iz~`SUD@1@*;LFNl#@(N)XW7TBVne3kdZM~bv;IHMo=F@%o

B&7h>Qs7)U#YRUDbebAVq}mHz-M8zUnd zBP$YT`2t=c5k?0QA>IWnT-@ATENFaCaIyaX|Nj7ZOh|{pmBE7{fgzcJLD3j7Vh9?A zvt|@jQ&$ERN1#H?%t#z6uMO&Yvl@W<+j>l(o+&#UJ7|E!5HxJ0F0RZDmQn+^z|f=^ z6IOugC`fC1g&Ic{h}R(zAkhJ0RIx}1F)DD$a&QTAaw;it3QNgxd1rYycud&AB`YPu zCLtxkh7bd{-@pW;x_~B_p`ZY!gyq?{GjfVq3W%r)3-a&?s+rh`b1*9E>mQsT01`LV z;Nj!rK@w$PMru#;GKexTFo1FiXv|oSk)6?uS&z}2kxg9<+Gbmpz^(T0zlo0lw;Cg( zd$2w@5l=klozP*z$f)-3ph1VpzyF3}d<>9dAHZYm%na-d+zk8-!VKaJ(hTwp$_(lZ z+6?*(#th~R)}V1_LqTJTpb#gg5T^>Kw2(9>2uKM@3xNQqkTgg@h_T^c10@)|^9Qth zjOr-#G%azdq&V85xW|@9y7QR3?@LWQc)3cc8m`hO~Jd())Nn(r);FP8S5<4(~SD0T|UyzA~g_V(qgCm|3 zq)m#8otKkUUvUCNp|-37D2a1`G;k@%YD0_xb*)WunHUprG(if$_sX2GE=i6N88h*ia4`Mg<24hXW2WBH%eA0Y0t?Tzmo|GLXJ7 z1Hukf(5wa_Ti6vv6>-|+@-KmL0S@aD8o+6VRQp(!MU8RV_wUbx2Y9Rl?@A-lfB5a2 z)6hU=`|yV6l79yn9q?EP+HuFgkb#du0#t&UgIZdkI>^*mm5)hWM9kPoL|IAAl$D*2 zQJoRgw6SB9XEZYhwP3&v7E8s^Y)@j6wpd`M5YZ1jQMh zxYhQ2L zu`?cF6X5_cQuMeuxOjzyd09DGxFW69EK~%!g(QsFL>QRst+1Z%5BCU;FCHNsuwhk5$7vuu1cxC{#2mUiPGBz?eFt{*8 zGQ=~Kf%cTKtAm=gd`z;8B63XDjN;0sCVEVu@fC3K$*!ghaw(|U4;q@cXA}qZ48)D> z7|qS}7+J-{mD!clOik<r31|Wt)D6;SG&42=#RVG^ zqokN0JFf#X8)&$ejoFyLh?#|rIh>o1kIPU_MBK#3+f>Ju+k}mqIgDS^+eFDmiIGvs z=HCo{7HwrkeNk00CRP>}CS49bzCboH*~uzwDiRI-@;Z!+BD&1HY`kpD%(`4$VydD> zj0_yL+#s_BKz2!hNj@$vJ_8PK6Ekl!Eq0b}2{j87Z$?EcWn~*>F9ERxeMK=KhX__qK=2{2ml zacOx**k*9?E%>(sDzsq1zX!Gvo?2Xd3;4JgK<#Six&~zia|R~{Uk1=RbR{(MH+DQH~L7%P+U0FS!9x`eufxCS?` zy1qJ(jEH~(2ndMC{Bw{{mjH=zi%1HKtMhWJOZ;2FE3CjJCRBt%IVgZZfQZZlFpv?s zkf5NTARwTiz~~^%%O@kIswRp~gX&<=9Qt0y2GCx91`!4s22TbCR(2(QMl*A9F;Nk9 zc5yi-b2~}=qn1XFcT@nQ@fA~G^FH&a(*tYKkg zs^ws=&4rSPw@bA25JKM2RECH zq;Da+0B2w*rw}hU2aE6-PFYn^6$>67PIg6RHdZFk1iJz|Co?OzvyQsOEOr(?5pF5@ z1I$c~EF9c?f}En@EwqgP|NTF}=)!n_K?+m@fyxwZMkUYy4yc@GX9Jfz!e(lW8pTRX ztUMeYY+US&3XFW*<$BC~JZwD78`$|66`I)jI9a*aK5z>h;t^tFV>IBAU;yn@ag9d*DMYP3* zRTbr>C4_j`tJYKr39_?GoA5|T*zkbN(*_wJ$RWfDGLl1(!x&00lTzd4jqv~<*S{U0S$akf zEH*sid_(cgcMLG>V`EOP{702iNy#=irg28RGQ2e%0~`#Ux^5jHj*F!@Ya zN>~Bh&OZRnlMJHJe!HlkI%GA}0SCqlpyuyCg8~Ky2JoOCQv>4y26hI}Y9@K`S}b!0 zd+_{mI72)GgBfT9%f!qGHYUXcZ7zvHX-dT#RLxXX&G^70RIDJTYA%=!9$ONIh^)mB zK~@7%c^j>fUgDPm#kg73guns(uYz&@uF*O$j zb)l>op>-2z1&5frvZyhm!vV;6#{r%Uo&*0FWJChMOU?pBWDYbmESLZa{0SmFJS_nM zA~N80X9hAh3ZOZk|NsB*V`5}Hzz_ynX`%`mM-~+U6`>-0py^sQeMUY|gHoGONtRJb zogK6U&Yn>Xw2%Z;cG@voGn%UFF@ahUM)Hit=5|bSjN)?4B798zjG$prCM7meV-qF@ z5ngjXTV@s}CKhIP0ReV1VSPy+2_9n&GcGA%PFp^633et9eohO0W>!WSw}VdekFF^raDdh>fY$>GGRQJ$GMF;h zGI%nCG9)rEuqwkd7ifioqNxcZQcgn2RY-G@pk^0nc^y$p?Y4;UasAuC#V5kUc;Mdw z9t|EiG6Az4z-t2Gf^dcc;|WkR;GYF(ks;$0ur>=YnFCR?AcTh}0xSR#hLE86W?=Zg zkI4aamKlQ^1B0rG9;3RciJCGSJ7`%WsD=>(E!Gedkz+ChEvW%jq-y47rY7ooj3#!> z=5oy9V&b4KxE&+An!2f(Igy6yM~*isvH}$v?`xaLVjUk{sS&yUglzHRVQ(E8Ic4L8D1$_0cCbgP8Kd^4pvD{ z1z9F$7G_o+9v&V}4kjis4OuBxW>x88R>|6EJ~zH-(E2~b+$y9TfzO4iK+6f(dPrDz zYs-wBoEbTc^5BWefA37x)J)V$v%I~tycsKUKyquqlcVZtAel68kPOHkSp5S^9j*+a zpdL9SqkyIZKrB!f3N&v3SsJPg=7I=N6B0c34$i48P*=fR2M&4g+Ab0B>NzF`J}wS0 zGT`Dn0B$jIa6#5&aWwC0=HTM{*Qg{et|ZRL38pysxc-5rytx<+xcC?~0=W2AaPfh= zW*QKZk81@VR{$5E0ceojfNzsHSR0u1p8!fhAOhS5hSV$k4AKnh48{!h4Biak3`pg; z2zX^8qp69qBB(w!Ry1NYH363iph^~*t%@XWj>Hy4V#|myf`?}REfA4mY~cBKgNKJv zgXcd3B<(UnX&Ao&A`Bq~K*PC^qE3d<06e>20?sNWD|mQTfK$8%PY*-{Ofn$naZvl- zoB=el9?g)>Pz+vW02w@mEr^5Bpq8-+tD=!8VklZ1;bHKSVNgI=Ga8waD$cm&Uj&bg zhyjlV56EixTpxPL3>nW@Z^qju2+%K2Y-qTt7n6DagI%B)ZoK9%;t-U24O_vxA2Ruj`;i zHDs&~+V29n$(=+ufft^Gvk|C<0j+@pWhc<$b5s0o^x(1K(crP+fl_!K+k;TYV*_e? zp~kxhiEcIrwVy#z4_>~)4r)c)Gm3*2o|vfPcQmg7C#MVtr-1<{hYTl(g7a8d@cLi@ zrVglnW-b=coEZZ&4tPQ9;e=6gttxnt3AFH0hS8u!CnCm*Mm+G02VTbt&2t7KG9U>? z21K6HLCbES{KEzxJK$%KVbBG)9ef!WKw|^YZ3Lhtxyr1@pfyU6h4*HxijW1k=4PN} z53-CROrQq2k(h`Yv~FMncesr~eQ$7=1l(AI6?$20Y$a@*j2r*?u(5T?F){yT=UkWK z=9c0X;$dRqVbaLQ3F&+A3NtQ%lqZm)Rsqyp=VIqfU{hh!W#(k}V*B^Q4WzNl1gw#h z9o*3n=4A)@3zR+}Yq2E3JuU{&@&eFmZ_s?4HE2B{$nEls#ztanCQx@n+v`jW(6U)1 zf`?6lzm8vmjVD4xrUPu58rU*M1H{~#BA=ijpQ6k)kW<{|fSm&B=YYb_4Jh0L1R#$(JX#OWhFi)c}7q>g;|zS1jjsq31~$RXnvFx)J8QDlV?<9hXl2# zh@uj>P8MNf{9?|*E-t93QKjL;$6?OQ%FM{f!Ne)c!Nb8S0Iq*QQwIiId;*HHENqM% zOzi)9*%d{qL=@Ti|9w#46&99KW>hdxmJ$|bln@n?=N8vf6$N#)B{*1k_yjo(B!uih z)hwhswiA*tP!(onmSE#z5*8O1R;v(}5?1CF5a3l7mJ$Z7^I&HPXS8HwVBiMN*NB1E zmFhF9naMLU@p5rCvI(#?a&j>;NOCr^u{Cl^g5rviL7YLG;Q(V8=r9CfK@r&UOVBFm z13difAeAhyE0MuAfYv`FxgFWvAUjk+ zH6>^i#K;VnD+SPPW##9Gq=y7XOGZvm{HQ8|R-u5`ov<+~{`-eW5DBp80>vrFE&G_9 z7!NSmGX#TX+{6`)gP?Bw8KWzuJ<)aH@k(S|R~Zct$5;AWNNSLPPw=j7xQ;bvxKV`X7w zVPRnskdRPhWaN|JQxakf2T#Q@3h8q2v0o5w0M&Ky#o3Uw2=iw$Mg9b*SENl9;L&nW z4+lDnN4~#H3^>^Z*f|YAqd^EJS>B%k8UkY10Go%zWME+Y|M&l1CT7Nipqma<&CS&G zLCahCp=;1V^ZlTz8dP3F7Cy7HftI_liPuCYj-7{-g-OVslZ%N>4@n8L45zLxrwp@z9iIq`kUcL4*8yEFX&4uz zT3?@yiHp--h>3-RmmOv%LJ1!`m!2LMJ0H|aW@&J_1e#+7UH;I(04`@#LDi?SqLQf~ zsQWD{sLBprw<8K#S;zQ=hv%OJsJ+W*8XC&N%N)+w5XHm|>NfK*X7KR*JM+Mzh?S9b zV#Xd;@U$Fa{RzlyNMDBm-3H`-3o=_B+I#>t(vZawu7Eb*q3y#2NaG#KLvoak2M>=2 z4^Iaeo#5d)!Nc1c}8|{i2`1h3@UTQ#UKSEA}l%z1bDa= zJuEml%Q-k?IXHvNIXUtax#jqf+`ys^N2AsGc#v!GeWlrw(j8O z7Uu@ZaEmi@a4=_pn!PA>j67x?qmE<`sMJHLXdWWj#lw@qjZ)zx?cnASd61IG3@D zv8!-^gjrZvRX}q8ZgGIeZV=-g@`!cR%-|Kvpe+{Q?igedwU`k!kiyzII0QI^+0)Y4 zMc4(HK})BZ+u226AvF!OB42=mBQ=$SLx35)RI~%s2t?kKDTi1m4O+nqS{H}5tpvK% z=HIjq&@x@HaiB4Dki8wymC<4CFp;!0sG@du5tKMrLad2qMe+)GQ8akE#*WcM4YC}X zF$?T&h<^ec%<`EU?V{*(3zn=02|55!vk3d4RsPI7E@C}QUYKnu`+|p9YzLL25ZLMjBX4v;5EEV zpnbWZ8E)v(VI~pqT#3^8Ll8fKc1Fye4GJhRW@bi4X68feBF=}H+1c6InZ?){*=NsY zVP<9(gD!zR1WFzZj0{r$pE9a4&IYZCg6s+c)#l=2pjD1aptX-?%Aobr5dG|o;QcCx zSecnGf>t=Qi?Gk04cUKlh?NJFVIbzIG0q01VO8)Z8qmDFI(Pvxs3juD$i^s(FcIt` z(Bf@YX6E&9Bf)-PXNQ{!3kOjK2H4&aebAOX$dX$-MzN1@tq9jJ+9Iq$ayVoS9%SBu zoxy;CK?t;_L4-}oT#pG9p33TKO6-uOMuM<8TF@>D&~{%_L31;c3N0HgEt{*5f#R^V zFfJ)B7FJf4cwt@vUSR<+8PCZW1yZEt4jDua59j0rjY_h{{rd`_X`b^x@dzt1eka^1bO(FMccyCCrnHaYZYZ;rqTH7OYrK9F>Z2xwvmHJ^dXb7&8jU0sh6vIkuj)Cl2cWP`eQe*_aV zj{%PZ3nQ}(JJj)K9hg{|SMcz3frgIMIl*N(XzlX>27d7RD2_6&%o5gObogQ3cRCH%-jsr+l0zN=0m`3YS4B^F*DTd_1{=oM3`Bmg6$oH zB$*fmnOK?S9Bl70F|#lVGc!vEIS9+Dsj2WVF)|9Vu*y5g>LB6+i-f3>ge<6i1?nd}0MEh6Fc>p1 zs6qyKK^3_Pc#WPMqqrGpp^yl>93!YVfM_LyDqzsYIW?vRZ_|GhY(mVm;+$m7wD=@s zH7wY4tiC&PvKz2-IbDiKs{jSZD|da=Hl>fEvaH zTs*8pS+BF0KslQ!i-nPk9pOam zPSed|0!=zGWwG*b!CVRIkHOrhz`&pi%D<_%VbrFff9~SHQbuL92Gz`Iy;F?HEl>^g!)EurS0@u$Ag&=5{RRc1-4=MFA?H z0VE|g6Cuc$hlmiA&)A^vq|YxU$jHs5uEHlEF3c$@FRCi0sLv-QASti!q%R}R%EiLV zEy%?!qoB(x$|xcC?<9E9mpGV&uo=M<3PK8EtP;GuoS;n>Y%CMlwWP&VMfDYh{8HI|qd1)MH|2V+sgh=3>zU4MH>j|M?%1Zv+`6LAT9;7E^(DtborC0SzHAf`VF` z(NtJbNnOnxbhHC#+r@zc8Wsws-rlDFD!BM87&AcSr9!|z21OoDUM6NH4}KO_DGmn< z4eu;(KCTxU7K{pNCTb1;8Wbeh8O3EeLFEw>gTVjej2{^HGX#KF_lS$Jv+*-3sVS?o zv5ShZv9l?utJyN@F{-mGu_-I5tEsEmGlEtknS-2R&uAoOEN*6QYGQ6CE+)$;CT?y9 zS~bEbE(RVQU=!g3CpHl=BgVa2oXmo1oQy1tTGC3aEYjvOoO~+WT8u1=Y|Ltc%$!<` zOw7niIL*yDm87+pnc0|yWjL5QwU`;1a`i#06z58^aG7edFiMK^7_zW4vavC78M2CS zNiwo%nsTv7vWv0{2_h-sV&dUp;xgnBmt153LzUf*QI8RH`hXmZ9V075D=13TL9t^F8gj8? z0vTflcc2}pMg;2xt=|_F1I^0vF@u}}T3e{k$OdyA69We;7b^z`2QvpN2WXj&04qBS z3uwkvfQ^fTm4i=+nU$4^LqLFom5Wn=orRH!gNcQinVC_5n~{ZuksG9niIIg*h?$L* zk%O6?jg6gGNR1PO)0G6-ITd*YH*7GPp#VP)cA>uygXU@v(CY3A3=Va&fZoakBHUL7m6K%*4#e#?Hyd%g@FlEX2*s!Oq6a$H~sd z$->OZ$7~069JuWU8H?u!??zx?L_6_^QCZMfSXs~*wO#RN!GZ@17N8AVHZU^$2QAcL z`Tzg_eI^IS1q>1l3Je;cb~6KLQa zPG&|9Ar?M1c4q69?;eAW`H)FLA{o`zR7pt4urPA6a0s#p@k{bsxP?_M0G|Q^I#mS5 z0JWQu+yvTvt*nIM8tk@Ww*$O4=RT7g;{pa*(C#mDB{g+6b^~QKbv1K4c5_gv2s$Q( zOOH8xtcN69)@BD;qNllbA&FuIA={ zOw1fyJWPuGS~@FA?Ba~|L``Mcn3y8DI91shSy@<_*jYH(xw!>6MU7;f6B61JvKg5< zxTS>U{X8X^8DnZ#j06Qmm>JobKxI1eUKTOX9$DDVbI@1^KO<B&?B+Hb7Hj|LBDDg`Pi0j2r=-Gk``E9T>>;Q{YQ_z#)q z6=YCm&|zRugf4>ujjUTUf|~Zirl2+#hy`kH2`Vdriet#uOweY3$O?83Me!Bj9ZaC5 z>=|5ql}_wjY>=hvj0IeL|89sYGDc+Zas30Wg5YB0;L~(sPhjIh8Iy29>@EVGLj#?h z1J@#=BA_@@Q&-Ys2eku1%`symJ9cx>wq`L=5oo8TnN`q2!9Fm^PS#YAg^`I#jES9{ ziII_om7Rl=i-%QEMwm-LS)7fRi;IJUm4%U!nTJ`D3EKHN#VQ~XY-bxJ!pFkI%EZj9 z%*@OL8g2&-l{4{($OwokOE58m$IclUSr}QAm|0k0@eI!2oD8B2il8}BQxWh26I(__ zanK;DEF*YjpgIzp5xlYtG~Xg4!uUW$=I?<6knza|&`6~R4->=R0}vSj&@zJ!IiNvT z$oM7?ql*EkV+E?8L34)(m>3xkG8i+MF<3G%s4APn$ETDbX$gEd0d%PmI0}*5@1Q9j zb#_y6b5X_@8kV4)^CIk)pTTo+ur)1=9B}Ub$-0vhK3jr!;Imu86o8I-_yJo916F%r z^5g@PC&T9JnLu}VsWbS4*0`uDgI7R-XFK>9*`etkbSw>Ml-HKgj?o;P-r1qOVm(H6 zFkc%a1I`e(paY4Z`uG^tpre+IU*xz`-FP&3+)}yaczBRGpj@J3&!x%3qse8j!=u52 z;DGb$157P2{adkV0-G=cTm(S(Suil}V-N-JTw@Ss=VO#*1f4}=&j=nS28{!;$uo+w ztD6d&nv1@_z$YkmK}__5v>@LFHg0b20|yQ~Sirc;k4=LAp&V}pH+KfF+(Ui|Ha{jt zMh6cjKR>2_Po_AvLD%KpW@2Dm%%H%a!l1>V$6&-@#$d(3psH?a0%}cx7Tn5$RuRG+ z02-|ZIYOP?)Lh+MT$Ej1nBCOelwIAN6-qO{Ol0F?PvPZF5l`ge6-f~g$jA^7ND-M8 z8hR!zEiEl1G&C(OjWG;N9aG8S;N@mgV`Ww2l+00K5$4Vl<1*slFfrlaFya!+lhjdg zRZ&w@W7O3AcTd}2T~$jJLII_TzEgT~uA;rldDOoJZA;bw*$*8Ev2-eNU!^0|BEXd6*$ica60a*E4 zFj)^;77cD2K*~v82GELN(CK%4&=TDYG#(F1infem3gV(7P;oH@#sfC#wz18iifmW2 zJEM_1nCs4H#8|E;q9~#*rzfYa-I^|^tu2>sn4b<7N;hO+`TzU>ekMl7qYR)u=Wd`i zaONQ6!4v7E?Kd|^%wCw8fKG^FlV=2-7-i3BrcT`c@)#Ko&TtM68BUIHmVYZbIi_%O z$}q98vM^2Iy_-F)>Zy0Co4E<4vITlAv9n z@Ya_#sH9+n6sn-@A)v(upiv=aML|U-fqx31BJzNM2dEwdRX%)N9s&nMWMowSIe^xh z%7}mtT{8d=mhlx_*P#pvs+XNL`rY3sKg&cgMJY1r}LYyqzOcE^Y z$`YG!6?Y&@d8+Pa(^a!ia&Od8hAY|I+0>;_h9X69;);vD>3tSlT{ zY|Koo+MI0i?E0+iOw6oIMr;Z?Qp$!>A`$`|d_3$b99)`AY-~(wTn5Z+%zs z`L*~BCv)-D@Cfkm2>5_W(E9illAJTx*k*7_uHfSP*8x6LsDO*lke}a>FAJoS2dt6@ zk`I|c=b!N~$bom@iHq?wv4KvjGcs3)j6{P*EkL`c)R;vT1&zVuXQ*5Bz{deGPL5({ zza7KH%gA+`nPaITD>n}hH;W28dlWmn3Og(7o_`0Pu`+A0v2px+1WIC{Wdr=I8Z3;t zAbnhnyj(H2nMDl1+ss*&!P=BLL`43*N@H|j(O~6=tdEcpna9D#rU7bxGJy8AJzzY^ zxR8M#w1-_4+R_3oiUhRbuK_&V-M}mSuYfT@UQ%=eyO4+w z`vy@-2M3T0h%mMkKLA>teL&n2(k9?ws9^lT$N^pN&!7TH0aoDC4UEi8VC!KSJ;1~9 z8^FWu|H{DBJunFt*8-EE_Myc86AUZB=Y@jS{lZrL+JJZ7nW!l-fp*}Ts3|$2>t*Bs z8-Zd0D4jyq_a0=B2c4rNDsD_-eBz>9Y<#@D+`ODz%x)^oOyIT_BfA8jLX;>cH#euKl&ZKe7dx96 zmlG2cle95J&{&$0iIImSk6H9 zkBWIR3UUbW3-AkY3NU)2c0`|gkxQ+086Wp&0+e0&S|H2D5A@bM+^i7=+{@Jv|P6LPac~0_bP^+I?#bLtoza|;la))HN6V4F2sARs$j;Wr#59?UiH(t& zjipP#PD4GchpsGKhhCc964g zO-(@Kydt1-UCkDBauTbeDY!fYHCxSW8KFlN@NqF_$Z-d-vj=bp@&B8_#mD&K-wcQV zw;XtLG^2z77oULu4|f2&2zvlKAD01NADqk0BVYhtQv^y|$o+26>A|2e2k=liY^RaB zIH>(^Y7X5)3+;D@s7Xt!Nk?(;81Qg_DnkcWc4)8r-!*BF+<^{m?ha;FW+ryfnD&qV z2beq<4>E8w2!qy8sEUD?(VGjK8HwYthslapTIQdEj5O~DJ_|l^kddg?aYz^#NH8vt zkodO^-9pg#@BxMmj0YIlL21woQpy@J3xoFqgH~?{gW4)eY#YE;ZU!F<8z-w18#g;2 zA6Fa~pCP#JWpw}dft7=eg^inyQGg4y3=Nw84l*tPI0Z35xlx|c z9CSu2hzVL8%FifnuC4}J<0=R0eX!|++RbKSpjs8QG({ylTLrSzM2;KGmgD0>7H8*X zgGpo*aPh&|sEQEcY~1V!-H`nnkg^Uw&H+ki;6V-%=t;P$pspJTgO-JZCbxt^83cqu z(GKdPfHyTjJAL4}W69!HW(|%)n=8f`U+tnH_XMfS{rgs0E?N2rA)V#~^}AJSGP@Zk5lV)du3A zaPh4aVE=c3k%Nm}0Cdn6$G;n(0t?h)kYilYAi%?|@&&Y3L7bVBlauAM z3WpFs-@pF?>|7HV9oPj}`FS{DjfD*Yyb!lS!jvDBl95*ggW3t~;A0ZOi!{OO$w1Bm zPqBjc1c5A#0L75PVNOnY4$i|0+;V&<3qe)nxD^g_a>#RnQ9+ZEY-;L^;6)O4j7Fdn4b6-} zXBmSA7){ial|X$+GjY%ca!^rhW-7+UE^fxI&L+kvufQhE7CBX$on6R4&XR*qLP?X+ zz#v?UiHVVwg_lEw?cZKzMpjl{7SJ*fCSy%)kXn{00T!Hsf*c~6>Ozt{!aPEfd@Mr3 zii`Z1bu9E5!#%mBxaCbmg2cqdG?gUz3WBw*S-3bjnYdV)IT(+#^71fqF)=Z*GJA4| zdvf!#@{3pmFtIXA^NL6c@d)!s3Q5^WN~;;=tJ{Ifv;PbnOpc5d44{!pGtemr;I-K7 zY@lThpuNbTt;*nTGiX6OsQ588F&6>(61<678B{wlS!z#>)CqOB5oKrBp1NtOHWM=w z%aekDfPw%8+b~-m9$_9%0d96lA#O=t?Hiuq;#$@!+)~`2Q+$~@I9XWv=LCQhCx_YE zYDpeNoH3W3QHZw%O#V9{BE&nV8AMEntcd~N6wcTN%?03P{p@^cZ1Mma`RW6;@kpyLWi z+`7~tBLeQif)+|N$cX&=AR;3!c%EI5)qs_qPw3x)4-#B_2NFQx1>R!?-8KQ|Ga7*U zw~&6VOvr!m$v2EE1jX4|4Oj))y;vm~6Zp6!{w)CyA!6T~#Kge*{{X{pa9xIUR;I8z z=tv7TbxjgEtkBZZ#HU~FWT3f_&o-GGsuip$12nbB!;aL*E?JB^`p~b;0;L07agol}#ZHj<^s2Bt690$-^9oT+UI|c^K z(Qa|j_$_1+4eCV>;FJxKFc$?Kr6|uR_5i$D6ts=IgNx4rv`Y@MR}MxdG_Y~8C$TeH zbilgAj2?WCkZx#j-~e&b*c#ZAKx+e8!TZKQZWLvZWUyjzV(qJ~;_=^nw^{$Q0pV2L*7XK%Ly6pkQev&ngT)E&@V`aWM(8hzm;# z3rl~3yB>6c2Bb^R=)qT{@Na>-L?T2vgyagBloAsV5EHlt@d?5of(%LwCUAcst^qLx z%`7m3j)R2m@C8lOii(?=sH=gFjTZsscxE$mF%fn)Jw|hgFv1ro!OqXBBE!QYqr$?; zuE@^L#VNrfBErhe#mUOd5~ZohCC$zyEzQj(UJCaOQe6D|$HB&?!ehas!otoP!7j|s zEyczqVlB$T!oRJI&LiU|!!5;@1MwV6TH<7oW-w>)W=H|8ntZd4l!^2JO84b+9F(V2(FbLG~6=4?#ZTB`c2c4E+C=ME2WM@-02d)0qXEFh` zR7_3GOzjzsVc^BozPKypkP8cd8LEFk5KjBX(RFmq|~aUmtokBp4AOiV1cjEtg8p!2^} zR2V@+SneE*ER2konV2}3nV2rKE@67?~NF7)2QwZCMyWXKaA>i-FRwAcG47 zXvY>tx)q1EZS@)X*x5llqt!ru1Q)L2Vxk5nppHJM;js< zW@G2(5#VCuDFTHKJEYAET03-rfrCK`yoZ+obaE>=7BM551#*CovXUO7iJ7>fDfq|? zb2E8HXwT2wAOh)G0m_VmMGBY!=@ben;h~{tz za>>sFrJW6+VTKcYOtO4DtjwZfOl*AOLb7T+oV=1Mc7iH0B3xVo{z>dyYz={IygU+I zf}E_32UvJ{xY>CG_>I*iM40%K8Cga7Wf>VEr|^J|8}H!aTO*{RFUZHu!6jyHrog8r zz{zMQ!Yr)B$$vYEy@8GE2Qv$((Zp=*WAL1)y68k?H1VZGdl$fSSqB%NDH}Jh5Wg@FKNF8UD?2kAbD)@_ z&_+RNLEB|u_eg+(0({00qX*w?esKXFb{0m^DVQgi*_cI?p<_jmv;-t^Ela7aI&&Qi1Q?~uyU?oW@BOEikIdn2CYFX=9fw1Y=dN6a32TiCn;<` z!d}8Gz-Ffe#7G9{#06sm_&hjwhG2$xhHQp%hGvF-(AhlTlw`}O2&JJD>7c=Ma1U7# zz6Bn9nkjgu7}B6XZD}C2Kv-XWfu=whn84>Gf$kr(WdPki#?B_HYzFQWii1|) z$T6Ck+p$?O8jFHwZJ|wD6Fnw%Q)2^B&?EwAXhM$>c8>t#rWIUP97;06a-3|+TD&YA zLc+|foV@HpY!Ym8Eb^Lspi?Eeg{Ap57`a!laj>xcdk9*6$;r4(hDktLS6oS$(?E$+ zn4N=@N0=8h)g#Ses`wq0?S2TzO9-(@Gx9UZFmkY#Ftai1L6>TR$AduS!y(Z5;KC+q zpj-w%ZVIxPL=AMtv>0efsvh$V0WmfyQ8r;&DPc8fDOEXc^TK(B%7%u@j4OC}nYdJK zwUlI}6a=MJ)uclOd3Y@S{0j^H^?i+Wj2IXgI2ky==RO@|Fk-N0@L&jF2xo|6NMXoj zC;^QILq?V$t1^_8Kr0|2eIoGU9?(KRF?P_QW^BerW~`!i?B=Fy;(AQ#qH>Jl>Y`@i zrg}``V&bNHjOy%mjOM0n?5b?+qGslzrhJU-qIO_)=B8|nm$^mw*x7|ubi`FMr0h(< zb5N)lr7jEt;`$~=-HVnU)qB3#ne|JJZ^a&vNWaB{E;FXItcV&ydApRA$CD<);j zV+UdjsfZ|PFczpQOX~}$iSSBDw23H+s4&*Dun2K~=HO%D72;ABj{}80V-tr2A803} zoG33h4>KzpI~yyrkeM53c^@-qWwJY?91}Y?lM9m|vy2-vy9*05;{+xV5I2O4gUN%L ze}*8N2a8Cz8y7FL2NN52y$c&NvpZ-rENH&~q)({_Ix`TokeJ=f7PM#-v^-rLzDoiW zaxBJ1=Ah)J#?HsY7$;_KBde^)!YD5$p(Ftg2NOG9X$cuA1p#|&J~@67Wo^b-AweE4 zE*4QaMn**mS;2pGAm7A^v$1n>uxfG&eijm9=j4U#@%#Vf{{hA`j0YH`L8rc}s)N?h zf<}!%Tf9N5XssDVL8pc(8kwnrH%=IXvK-^qQc$tL1wQnIqf|^oi_u6+uEAsy<;NxQlF&HOs@-qJmXY`N}S>UihM8=g3xwq4R{G6|$f)NP9**COt+~Brc;G6;zF?FuK)dp@;F#oZ!Q3htboT< z7C?`?MhLJA34zYGN9@f4ovL8S;KdNd03V%agU;-M&kMCZ{F=q}MQUf)ll+;YY zYw)4xxv@i5Y=BM`AP65hTkF^--df zy`Yl19iO*1pPjn0fW4F&N2sctot>O&D2I^94>>Eg=N!h5ySXjh>`xnqNg85^Zg9mh&4VXFuUPWpGCK(grTH*{0 z;#%UiAQbSJ@Z^AELBj-0g6pLHOdODP6RP0dgX-pXOeUaZNP3W)B-q5oi1UH`;d$O_qkCkBczHa4bOJ|0F!aVAzU zU}Dt>WaE_PEav3Y15u#%9b2FV8)z(9oL!ishM$-5rx-gs$P`vKc2+hfaVF4y38or; zL69k6HXFzc&SFk!PCZV}V$kL?7PdeQR#wQ>V6}XLOwcH4Z0gL4%xp^P_Ke2tY-)_pqEcNAT>rgtZ3u8pO|52RWprnh=wxJJ zbgoXl&B)4lU;zjy{9$5dV)*~>5EGNrpa0-xsh~25!GKYLF#tSg51U~(fvo_}2hSDt zRD^_7gfN0`gwS`&4*~H&Wd&&M252r6wyp})&QS(!TLDi=f~p)gQ4vIm2D+>dJi`aw zaIX#;E*D`_RyPs{AL$6X*9hFAH)VX`$ir))A*UlIt|O~qA?XOJUN|6!DuC*RThh9q zB?t#}r9F6sg>4hSOaB-dcol^-ETpAnq%1U4rTIYTVHJR;LJGi41qWd%VFwV=06tn3 zycYTIf6%KvQU@jK4WJxc@0|b8uXa;Su0r)Zh`|iD6vI zE+WEy<)wgxguqK^`vsDZ*%yRsR(n7Dzlp|P1gqp=>7 zx){4Mo4BzVyRw+LnmHT09izFrn!16qp)zQhfrz-VnmwZ#=mJB=oE8p_7LMH_MvRO` zA_{c^<{p|_+%q^hW^nATGilMEPO zNzm2<4gmoc76TR*0RaIfZXIq84sJ#fUOqMfRz?wS4vv4X8HI$HK=V|rEG*1SjMI2a zmzDDV3bmsv!FIh2KoDU?}6q?{F`j!{1Zbmnsi zC{4r90WoGk*#!xk!;%G^bqKCmA#D)wIS}yWsU~Wub6N!o?3@jV>JrLCnb>mSWDf`c z)vw?yW8qA2dG&zF5xn-0fz{a5M4cHju?MwRjGvK@1<@7)olwgp%Ghv#e=(Z`*S}3% ze2U`FxVV_b7+Kla*_mskRr$Ck^YIigvob4`$cQsCbMo?W35Y8Sa2m6)v9K_yN^@}W zvAZ*|bFhH=Gk?MBs}F)_9YM>uK?`$1YnUP42RA7oLTs|2lO#YJtUyZ#Ks%#B%@;jp z#+iZ=91?;YeB5jt5`qHaU_yaYQJR&jmQ9@Nn1D31G%E``7Z0O@gkbmvK?!y)evXaT z1tlZ|Zmb89Z*+KBg%$bMaPWu<6pD&ZW8>unIgNqw|DXT+84ofZU@&B0P*GwN1-S#} zL@=!mI;uq;G*1fZf>|>f*|9=awlc0%66X+C66cW7kl}OXP*D|N_m<~jWp`i|;rhVB z!Oq6Y%FL+1_(EJzK~P*=Pyu`*>4i-~0{kk%`y@GKc?&prn3!1D*w|S*SXcuD89-+s z><9PFwHd5ItL4Q_L6?oHnVOh`HvU+HCig_;7)50mLF+5k`4~Y6v|>g{4Rp^eXqW+X zygH~?Vg_A@7Q@WO&c-aEEi0_c%PYTzjfj0=!JHW+v z1-!gWcq-^x5=Jf=DH$FPS9uv$E>L-2Rqr& z#0+vHGn(9SA=mo$Q|G-_aKg8RAJ*~gZrA3myuaT zMH%90c5Xoq9uZLQ9M#_t_k$*$5$;zN0Ud5E#>Ngt%3z19E9rrj{eWY{7<5@IBfGJY z7%SR<6zrTTCI%i+o)lh2Aub+1Hgyfq*{1G7EF7%NGV-n*JTg);T+Hk&Q-!2K=XAsT zAOntvAKaqcyxROisvOEHD$FeG94u?(d3kk(Wwj;Pc-f?cV6Nxe1q*&~`Z)kjKYHLD zoeaW8pgyY|6KHd-n7El3IOVXhi|~PtX$Ku}1@F3=nwUYBJ0e8^bo+D%w_^~^N@c_uztZYooob1><&L+Z#$L9YXd}5SBlvbKF(eu!47$Gobh{4-Gag`6VB!(ryuiZ6!NJtP#VW1HsQ}8iNccYk z2S)@LT}WVM>EPt!0G+C}flpDGl~;#R1eAYIXn;r!2@nY)5)(iG)cye71^0l7k#Qk- z-!^2*9aN5hTOQyd4ub_+u+9W7_rSNDK?`9}S!d5^$70IFAS28x&db3o$}1v^LbCG; za*4prp9LyYu0*-@^6I{4)BA1mcyn@19LdeA>rvML=0_b8rP+0C~ zVrD!HI$y{HbYO)kXzmNV$;DV*4Yb=>41De{qZ}hY`21gS5Q9yYQHBw81~4eYDuL68 zm?Dp@Iun}!mw*h5GM51pGY2n+fDDTXzX6M^f*^|yw>&eSD3^c`iwZNS)|O(G6u8O4 z$;rXo%2O`E$ZZ+0np=dQiA6|Y=6MbQUQQ6};UNJ*4q1V9jokcfOe``2Gr767Kqq3b zGDY$WgNn^M@R~F5xCc`M_)Hyf@LAI#40WIr{z3JL2yBc^4YqIr{Z4q8xVpHgGN_ke z23o%^%EzJv+Hh)O&j^|o0v(GB+UTjKF2<(L$E422t_13Nn3_XJ>%koh@QF(vuwsP| zQZzEDpb6Az3A3{Yva+(W*|2bMa&mETfdYYt$5~8CkByIymxqy?iH8jo0!&I0%tDg9 z0up@E;+%1|oN_#>oC17o4qP1UTw<=`28;oGkdcxLTzpT!h1d;rf!79`xkWjWS=m^a z?HO6vSeY4_m|59b_*D3OrI=aSIZyK_bFr~8GBNThGI0yCvG6f+@Np*WFy`c8;bimT zk(1+*W|T4l4R!qg|Nj9aXpIcc5q#DV_?|X%5R+Zm+?a7EJ0m-rH$NjgnRu-r-W>)4+$>Pb3TpFyLL9Coi zOe{=cLCmZyOpKgiAh8BE77Y+Lh?SF#1tP;0#>~R3!OGdd%+lTfn#*B;-0=chH?7K` z3oaAE%lklU;6Uw3bt7?gNSltI(aacj_AhML2oq??2fWAvwA;!+fIpE{S*-~N$Z!(c(L}{0U zM(u1FO&GJTOk-wcW8q_R)Rh1gr4sszh4Ts(^&uQxML0bN@{pJi)hQqaxrgZW831^>dgRJk9h-ZmOOYI545M& z*hn0-q8xl2A3Nw!OE%E?Y)br$;!2=XaKMB%qnNmu5oqzbg0G9M6TgzFq>C>r7Z-bl z6f*}Wlc@)jAhW@9b{1X>76E2gC1#E+mc#5q?1xzQ8)!RwJMv3Ocsuh*iHmSqvoN!; zv|r=k=u}`+>}Th=n8d-dmyK-?E2vq;@&7pEPsSY#>Y&?rAp3tor~81`H9#*!04-+& zcf3I(1*RG!1P@`;O?G5(mC9^t~l$idAf%x>i1lau4)X=)5QXk#Kf zrwF@|QiNf;3KwV&o{5=B6FfZY$RWb0es+>MyC?@Y8zZYm&Ws!*V^$t6PWFl19PCDl zD*txzFoAY9va&EUDS%glbQrTSGcf)C{r>@z3;2u>J4l`bFTsK?a00cpZ5cs@vOJ@h zIds1axD&$+s*OMsDE5q?#m4rGW{fZRxJtnDJ|$dyEPFUO_OOJ6u(MjQvPXf|L~?R+ zGXLY`kmTTe&B5`SlS7iNy`PJZr+|m2fQOH(pN(Y}JNqnF3)gN|c6L@zFVHM6BQp#0 zMRqQEPL6}@><2kG<+-49-=O&($jRE)450bAdKt8XGag)}h)m zny^E68-jM=f){Zco0^y-%R_w*I*D2xa!UZ{{9y2Ub5n>MST*B;e-5Blb_96xH3D?z zJmi?{E#M_wB^o>qkTd6@N7!*mv5Bxrv9UoY9T5>8&9@vU7@EqC~xMr{!pgID+Zb%b!!Ur^igI2SGiXLMTG0-JSkdn(7JRoGErfj07 zZpR2ZKgn1GWItp^kB`g6)YJu(+d(sW5MFJV?FGgLaM}VB&e=jj+0I}lm;m#AL#?er z`$u5wKR~yMK+cf{Z%4)B1XD<9#0*};D9327tY!*w(LeB-0!-I%@$rT3;x&>JQI+Q0 z#eD&^?pc6~59|hXH$nLS8dP*dm0!pyDS`4P!hQPS)0v5O9jL9%n1RPtUKeb`Y>9A= zgLP;qq&!5pg@O1O!yi`!;|Wx!G5p`p2)duwi-7@p;td}oJNT>}aB4A(@V#t^ zTTw*7?F2K>G=&oAej+x|LL7C-MqOBQRF6>@>9l>wH7bx3s%8X$wv+A?S5W7b6z3A> z7X~-#I0P(s{y`4XM?NEe31}l}fG4{cD;GOEs}#Q`DA#Cm3G*^4f*19H;uy5153KP1DXFuAZyG~57x~yQaOndov8)+E>+8Xr zt3m7P&5^vscmZ)gtIWUa;H8@avf>uvvMd}d;CX8njx&%g=*Xl3&%X#B(COUBLBgn@ z3esQ3#m~>h$j-$g4)Ucq3m3Zt*pog;WDb}O+Or4BXwW`^5^le;E1H7Z`yhCK3 zih7C}j13VS932)M93ChR@=ydxKQDkug2EXxE)F_(19bDPCW8s2{sPTGLRRvEM#5F$ zmySSY3!!`EjM&Z1BVzMCRWC@N|fa1qX*l2M0&Q zzXb}AEo2NLG8Yu}0~o<;altEce}E@f4!~3vfX~u{wrN4@yBSpBtyjoe1ZbJ8YAmkI zuB@)iWRV4Hv1T!|%770I_?Pr2v|6D+q58~xP(yV-s{mUg$eoS+4Gj(spfCWfxxB-8 zfN==}XxEKCgFUFt3fi3kYB7UGq(Gq|4lDhkcVjT4@y*fr`iyFjYQvtr;$0!6H zj1mzM0p+Ix4jwQ)gM){aD<8b;QepxRhXF|L3Y0creJO)@RuWnyRK> z$50bcicyGmTx1Bi>53_fDGs_H5jua(2|iQCjG+K@YB=nad3JC;rq2i(qyVQoCUCkl zRu_|JR0fSLvnmQILe825orVYweQ>kd8g$i>nz|Z46Pvi0I2(8e6liTK_@oPUHFY!4 zb|p|-gwf#N3s5#^l&ECp6lY^+vSegoVOHQ|wgfLL6z62-w2@7|xPgi+KRdSsCp(*vn1TYYp^t%Ne!MUX z4?8yx2bUl>JM%wZ1)o?;HZIV*YgXoM8BB~!%uKw}0z#nTO;DAMRg#xqPKsSr%`n8A zpOcA8h?$3tomoUyS(fldVmIi6XM34ARjJLobtCS@gMJw|iTE^IMzF+N7dm)tT^ zT)f)4)>dv#>Re3hOdOn?O4|Go5k*O50S?eIb2dRq)}K0YT#T%2EKE#n?2POx`j(RH z+)RwjY>X?pdDu9Z*qON0o!qRfb+vihf}2a!PD2TyZ*}mM}NF zq@}(JJ0m+A3nwdR{O0ff{fw@R2SDcc^cAEQSBX!f{(TlU`v7O>Hb9(-u) zj6iqDOM~a;;V0;-v#Y6_iy=mS+1S<1n9aq++0|Ip&CJDNC)Rp72+G(?6@eS%5A0LC5AA7CtCJis8#pb0)RNmK;3oY59^ z*Bw~ZU)N|tG;}nq*Wa9*tMVxGcGCT_W;_70O;;Is!>FJ)z22#d~{1+7UIr%u9^dQ$x zg7>!X2iKii3{eaWkV`_8)Ig&wpo0%Y#6Wu<`5{ct&>}9T%OtNF6nHVMazyMn+~vUQtF-Q5#Wb zQBhV_c19jC7H(GV!;y75E;>3~+^pOzVr*=n3n-XaSw%&i`Bc?F>Ur5g_far$@vy4t zFtY1{6i3$SsIhZ!NlSrR2aJ58)}msf&Z0J=tSl@XLOh}@jLaP2ks!NuIXRdaSwz_c zI2c)2m>5}DL6-Azaq){;SB;y;jAZ$sE9XX!I$fUl?XL?Y)a@bD<`gdmX&3~c}ZLdT6&82lKj7`hl{F|1-> z5H_)9G__$gH3wa2sHV>dS}+4%)egIZNsq~t-2}25RS9&sCurN2v5_1rI8#Adx!R0M zrl6xjL95!po&*`gWU9oDXlIM?GlG`CfKOQ!M(d2AcV5u>%sl*zj7*HooXl(-oTBU; zJUsk7JkHFZ)hzlO+1Pkocvx83xY*g*IRsca zSQuH@*m#(@czJlNc-RE__$4Jo1lao-6F?oFf8c?79Bf7t9t|c|(55Mn85|rUY&;=6 zpp_4-%yR`Ld3Zp@B?lWjGY5+>BQq--2R9q92sbA)8yhD#_arV(Hf9zUQ2oHc&dbQe z!^zFf!oeoOBFrNs#mUa-gXkeGz{&)#WBb6wz&HWCt_(CAXAU~mLI|{3*u>081lq5F zr8rUpHv!xn2e-MwEExkFp}>wL&R7E006CYk1+0&e1FQ3qJjK9(3poD;nVDy3abys5bD5D7{J52KetV~cJ z?*HHayP3EcPceWlD`Mqi1ohTLMa0a^h0W9$_xwu`1TBo%psK^YpHH80_kIp}Iq?mW z(p+MU3*lWd@AEbx*k6E)=(JQh590zBMdperbt!`S(_(iru4c>Z0I;|>EI+7QMe z4DRa2dTpK%k7`NOEn7QmC>|xwI0-$atXx=`M z@gSo|*W@BM`0Wy<|j~(h( zW@bia7B+Sk21W+K{|^}6GcIJ12Jb-!O*w#@U!WreL2WZovzpmB0!=#$BP%NhE29*; zZ5$lz?BGjznEwCxzn{s0@eqR{=+rY+@SGdymH^PPX7Y?|?4Yidx|z8=Bj|iqW;1hP z=RBNdG>RFULq+wO)Ra==*x4D2*hSdm z*xCQ}v5Oorj57SsBgMkREX>NvA}-Ft$|}sv#3IGR$dSk)#KgqJ%go3kAi%`J$jr;c z#3aPQ$Z`-a&V($%%s7`rhy_JG3rM+T9J>g}N_G(auaBKE(J;zTPJ)G7!l^s$xfydt1 zL8D=?qx!{_LFXKRizn1$4nXZnSI~I3Y60k!0}&ZME&)C+2QEGVE&{5{FE(PfLcs1yZ#2P8h0A8Mg1qCdu{Co=1 zref?;BH#tzW@=VNigKy}1qA{8l45ca25R1lTp#p7a^U&^VLk(<=~zs~Y96>hw2RSz z@c;uCgAnLUWOGr_+3EU>rea1+kbNE|;-KD-323K|h|vKtb}lAHF#!di3eb9V2Q4`c z4iyuD$!it4IT;xh*D^C2fY+v*$Y}|fsBnPIKfw3_y!Qxl78*NfLI!k%2Y8hghyd+j z1#g}P-RS^Xi(sy7sw@f~l>`;+piy00MiV_I#utX{T>mDqbF=YrEdWytd0e0~mlz`q+1a?+17KG>gH(U007X>A1Oo$hLkw-r3s@T=&UR~MpHp>AB-Kk`$nEo476nvw51Jvw3|I6h^xlr zz}vvd&&}JwBYtiICqEb81RgOKwwDdO;yew!;*1^tHt@4KurTv-G6wLoIk54WJ212G za{SvMz~;cp$IBSN!pZLFz{dY?11}$&0~nk#|b1|BGh1h5*8wfHof;w8v{@`_FpaRB#@d;x9gARD^MqLebk}SfFDGjCU+p`6YNXcw{(bwLr;LOO{gxJd-E^a)<@{ zzrSE->7M|Nk4S)av1-U^g;a!S$!UmyW+_D^K;CAy;84^DDFmet(AfP0MlHr83?`tp z9OmHNqTrAR4QGND0O^B|SrxMeZ(;y1v9V?ZU1}f#T4n-DJxbuE`({RB-?+pjcts#5 zeTqnMu(4Tia6nuF6$86Q%Y=u+Oy5adfSX%D+)4i$7e5!X6!d6ONj``kehGF~4N$j6 z3hYxY6HmP~eQ^OzO@0Y|(9|2Kz-VM_0PiMZfTkYMEE}lm1EnHRg9UW&yg7I%Ri6=- zn$%#)iLnHnIt2MRIb=CF_=TXUL`;Z}gHwi+lTSzxwB+XmB(*f~vkD6FadOIVa_|X> zh1l4HfFc+y!U0yw&g##~{_g-NOr0R}1q=*~pf!V_J8)s{1Gx*5x-k+r)HMMxR|JA= zKaa3H5R(41lmnp24{jA`Y#Q2^VTQ!04bLBeFn5Mj@f0fzd%mL_k19=AQ$2UQmEhfs@?; zyfh1TO{D_(#!3ao1kjP*A_fWy2B7Ie#sryvdt^jF^M?~4D$w+S`$L#}_kyUocTZUf zG$UaG-QxC}j7@tz3j_of2taqfk+W6rf`S61zGhTlJiq|DrH4V)1T@SK8kGfQH_$LH zI~(Zs74T#hsOc&OIv-3-TogKC03P>2EKD#nH&X*G+Yn(>VpNcpU}oXu=Vk{LJFLta zTue+{oZ@ccf-In7h)IKuosm_Ih1uBN5VSmjM}r4MImrn?in0%imLg0n96}bb&NN1O41eeMppwk4zjE(G=%*8>Qt3YRbfajM)5J?8q4b)~d zH3OA_prfW3m+JCJ@OW5g2*^oruAlkOT2PRioqeXI1}irg7mE-ZKc4`HksFT$Pq3{E z_%?eNHHAEO5q56&#kw*)JUaaAH7vMY3=(*CZgQ4{_h9OWKbWxk?{b-e+B{2Ev}%Q1bX0u8)X?q#EcnNaPhHmvqPr*oA|hV zz^z9gEGHCBO#@GuEzoB2Nl@Ot4$9v(&u9+2lj?S=zzyTElE$nWSjVVI89Sjc?<&^cCq1`!5O zy{X2a4LYX<{j^9%6E$T~VP#PxGZxS&jEI<#suG*1v7oYum@%uFxiMt;7BuV%UR)2_ zOah8c(7-HH10UC4@S;1W04~124^*Wc9Hdnl4IuUQe`!?*2UY2R+Zeg{L7NCTIM_Hi z#n?D_*w{dWtlW$qkeflkXR`l$C#~wh$l##b3!cAGP?ct6kXFs%X4K$fV&vdt0}YL` zv4O@$c|c=4(*F-IK4Uz z8ChAxC93n;bLPHs*E#>lVajvV`F5Qc4Zm^^Z$SU|1&i*HZlY-#50sLFfb~y zgAS4h_3yMn8{0ukgCPw7P+wJC8MFWzbnrW9EKE!sv^JTK33Nz;5%`h{Gj%o4)D&nD zk(imOi5?>>XtTAkkvMpLJs+bY8))YmcoTvhqdp_(ga<};J|-qcF%iWeQ13&RnVpSE zO^lr{05o>!Br;3h)tr@!jfIcPLQtH8hf|bW(L#}t(c4VcM1?&B6vDDHyt>{drans6 z|6)PCVKz2Rc0Rs9P7TH!B_lB-W?oi4HfCl+4h}IjQAS2lB}N8zb8xqaiG@i^jR$<4 zwSoo<8y5=~A1{vxGZUkdrJ|Xyq>eN{mx`0PsG5z5H=~c4lC{zWeJ6cJZypITDJBCY z1@Ry@W@b)iUe-V+adj~fB~b>@K9zlpE{sP&dv;ZoAyZ3gpe5Ddd*sC##n>42vMiX{ z*bUivnN7nv#KhSdWjQ#@JJ|V{#h6&x8zVWnco^65aB}>+%^?onp9w0zkAOxC8Cm(5 zMFk;I3~E=aio)2S9Lad?-vw3wmK3UMO+b4GBRm^PTkW0?MY?4AtJ-~k55403CK}AN5JGAFbQGv z{F}kU!Y&30c{q3yP&weW9^mp3vert6 z!2&dMzzDyNNS09%+7}Z6PZ5Kch8lqnI)W`jRE3^M04h5{#}$CQ4vJ7?BT>c&BA{i< z|G>+iMZj!E2>V|HZ$ij|X0=1%`ttlm2M#M!+vW&{03tB>%Pu0%*^D z0uM>6_aYNGIJjY}_dx9k$oc=E`F9-#230Z8RIZYmsT{Mh5oqm?n6MHXXlNXKt`TT$ zvAG?ysfoH8BOjBeor^1zuz(N?H;bT!hSU#k5e^NT2tFQDRe2)^3uYD;CIzlwPA(gl zI5$Qy9`L^G|NnP0F*6d?y` zM8I?M5E*qfZEZ%Ki%M~dii+FC9K=K!#rk=;#ksjBaB_06Z|CP{7ZMg?za(YsA-M)D zzQ)YQNJzI{_qvjjQoQ1BaYk`5d$Gyf++sZ3lQ}s#ICcqW@w0QVb6k`5HkI1I!z0Gc zv%#E)12iPS!2kaN;|9hB3<{98kBAs-G{scV7J30$QpfJx95 zP>c)WTH?T4Mi?XhK`sD`087HxWrNl^g6=}r2kn3t2KAM}>owItbG+c8GiyfpD6BEG zcMa+Mh>D28Ph@LQ6z|~U3Ka4Z3ItW38DgNzkNGZSfOmrOadq$&C9rX^JFzozh%0(< z@qv#g-N41iSOLEHSes7!Jsx;RfJIGZFCZ(2z52A!Rn?ZddS{Uvv0XYN8@+ ztRl)v;6u=qmB1YebtTYR7tk~gc$(eZ1k7XtZL?QaQWFPVRtRc(85@a(DjP{jh--*R zF}m1`dI<|^X$xCa7F7P`5*Fa&VrSuz7M4&GlCu+1li(BQV;5Evmy!Emq%0w2tRx{- z>Zl~4tf(g{p_HX9#mlR0Qcu&|gj zF*9e$v5T;av#^-6vWT;zu8Gj=uw>nT$o*)y<6=Kk0FD z|IK_ac=NavgI2;Omd>sEKGIO&kaq=;;G8Qm%Jpe0? zlL09{g2ZNABE|F1fQ5}$fRph83urGeq}_D@ybcC*4hZ^;b4+uWMpPiRrUrQ(#h<`!phIgQ?ZJH<^Pxe`x)C9k1;4Sm@{~QPWu+u zV>AOT{0AKuz|Y90tfZ{Y208^_o>5E$ybYgGSxs0BbQZBbqZ;@SV$j_IW@6@Yps7=s zm_4HzyBss9zW^1{1D}Irmgu0XXV1msz`>}%!o$dDp`c*F#KWS%$N{=|ooxaqCo?xI z8ygD?3nLRF8!LCboQQ}V2Nx?RhpH-QMXDMHHyblE8#f0B7aIq=hzRHyUPd-9YlqdV z9k@6&Sh*Nk7z4T4qN3Qi0~uKuxmYzAnHU)t2q+1#f>y9_unVv=v9U6;u`q_IL`0}? zfx2C~CAu6OY@Fs?V&W1K;$mD}oNVkIQchBgtSl^yY@FaTLLhB(S}`;0y~#D|Gxwo zX}$}5X3%*Z@R=3t49cLh$3REfgC@hop?fjFQ<37L#-^Z=9B3O3w9gVWi^|9#EG29J zS$!nnY3^X|DZtLj`CV8_n9-mBbTU(c0C=cb!773~Ihi}cN&(CjfXJcv9dr&Y)bH$| zW-+M6jx<6D9!UeW+SAWXoOo_x22Tu+1y2kQl!DfF%?J^m81Q%z1N{6SZOpMAy!Id$ z+a^$JpcHBb|AT5NXpIYGd`X>wK^4?12Q6v=r6$m(8t8f#aF~KlvS9)Z3!5<>VB==* zf{Y4vfm#+IHfS=ii;Hg-XsDKoCPbso?@qy211E1@2fPtIAm?4@WnSp_o z4K%Z3YGNcR!UnqfmdV@zAto+nrmm(A zY73fz=2=0NFzDnP@X2|g1sAa8S&ZClUTo}q4Sc2YOpKCR5}MZhe5`CN9PCVtY)l4B zj6s%i=IRm>VyrCed~CCKHM?3evoW$TGOK8%d+G=2v-62a@`Ly+OcriO!86*L;^LB_ z;yOCwq3h+eB{d}(nJhI$l=)a$m^nB>rxWNnS_U#Pim98)$(f6=aeyvcR%?!R%8_Pb zVUZMOW|HvJ^+?wbG!RlzkdfdLk!E6HWR%Wvij@U#5Ce_lfYJbH50)t?Un_w&v4Qr; zgLkZfJu3!o2ZOIq0`--_-7Lt^y)k$>4x@=KGYbo2bqEhnh?0zeEDtBUEIX&Zxvf9= ze0LrmMh%_>(A_}B^*kCp4ibty>}(t=TIr|fsZl*ssI4T) zE2XEvDatCq%*rYtDae)N=9Y}d6N$vu2vQiS9tU??zoUAuKfKnoe0G)jRK9}_XgEII$GYe2l z-PA;%5qwe_DA3p-p(X-7?-IO)S&doIR8iFw(wc`K2*`LrfZd9n>)$IbJ^>LKP`??p zrPqW}89Xf_GXEJ88Ww19@g;bG zo7JGQ@Bjb*+nGRPsDTU&s!DvI=`zrne+KMqpi}B0!|$Mh7SN(k(9Qut1934>)`Y~r zs0bTK(hhVY8@S!c4C?cNTB zurjf*F#X%i#cjkXE-xf4D=R5#ASfsVI*&s@OJ0hdo10xwT1Ze9R3C7H*6@Pco{)0@ zL92;CcYmsb%4*OB3*yG2%I2cRrtHe5#*D_M${;>yz6G>)!4!0bg|VnI=vIaU2OJz6 zz{I}>FvXalkf7j@;Gm%3prG*JfP+KBfddT={~AE728DzJ3JnSh3Mgk&nt<+uf}Kst z4myMr)MXVjGq+;~Pwum^^D%=H0%-cej@8rz{TAy4X>CP5W+oP8W-ew9Ev9!54U zPA)z{NdYaJAK;6zK>ZrfTtyY*0R}w=&@CFEUc4A+k%T!oTA4&Zn<_vq1g%>H4Fj3j zv4EnPS&5GYlmfuVAe^!aQeb1|(B=?k6H}7rkr3hK6%rB_mgi;TX7}LY6P8hs5jG7l zy#mytFB*q0E=4ay);uDk9k=F9i z_}9(K$;&UqB`hzjX{iaCHv+d!!FTFPf=)mKb??m0@A|P2A zFqNgoDyYQ6$1K&8*&qUHLV(Av?t<5gi!p#s3lE~<8nkm7c_~8 zfsgAoQDb5_#4U_)$iEFBt3+T9VJv94ZNkjQL&zDRd9>T$^<2UX3Jmt3(HYR%7d22@ z0JJ6mblQ}-s_Nz^nW89Y;T-7xJv~Nn>8`}j2%UK~vS(!c$<7|YEoaTj;$~{9 zAjkbLImFb|jfs^hpNFwQ4t%*B3lA43n>8!Toe&Gfp96O-^R+JQfZ%#u`lxR%S+aRxn4BS%_0ZOD0Q3 zh@DG`n@xyUlIxB%JC_m{yEK=OaDoVX04r+%yGVkH8Rsr8UN*@<0Yx4S9s@_EKq*#H zW=TdSHdaq3DJD)%4n|2vCU%xQkRm5tU0E(RF*Yt)F;14}I$Ug`>|8nmiU!;q904qR zECC!G+y(}Y42%ry|3PPA?gXv%Wi%28U8DjV&$MUMV^UUQ69-)s1@7p8t`$);F=J#% zaR=W^#?>ak!>uKtq9Nv*%E*}LW^cg3p~1=J9-lsO65|e6(0ylZpxfZI_(ZrFligjD zwAeW`I5`|9o|_1Y3$WcxjEo0Bt9C#uO+>}POH9Fs*MhplO6=f?S4dMwTpiSug z1LIN#83rQ;24Qp1rJLZx-PzgH%+1u)L3cgtGpd=egU4&t^_WZz&Fn#k4uR5S#|9o5 zO-D<0F#~08Q5G4?5I#Z94IC94cw}-}IawKna%Ffna4<5>;Ns;EX6BR8uu;# zi3;Kh;o@VP!7e5Xk`sty;TK?+6pRz#=jEEg4!Rc!G`|Bn6Kx@ATu>O2dZ5k%ZQ(Eh zo$L;}r$^0%V*{rkpGkm^k(_}t2OlRhuegzmA=F+rKCS>pPDxEC9i31~R%RX!Z3it$ zZpH|>H4ID)%>Vx|wKBFafbNH9Pz7HH4%+GjI<-%p(G+y}DX8ZR*%l4HH${w{ja5yX z(G-05upOfsXcws#BWO<)8}xKx=mDbYOl7I;BJ8Q`?A*+t>sgsK_Hc3turjgouz%s= z(_j~6=jP*K`uClKa}SsU+KG`0J7*ZAi(QmmgOBTr01tOY3OjoWXhI)yG_m$J$d!G3 zT=%ru*}3@ynFQFkfmkfOJgh08b#Tl~VCC%W+V?;?1vG{Qog>m`uw(FHU{D1eC=MM| zG&KipXkuq(13MgaeG_Q?tQ?a(qZpeqxGAb?4jMEy0ttX-B)~(4<{(A#j3R7I=ACQ; z2~6y)GOX-O3C!$lEKHr8d|cPq*crK)xB@_jcQJA?va?;|;`_IsnVnUIn~|B3olT34 z-Nl8Kor96vgqx9r-GR}FPnea1gH@P`g_Zf=Ibl&QJ`UClZYCyHrVLgNJ}%K83ao70 z3alI)4IHc<+}s|l9H8_I+E>ZIcmRCP8v~;nxFOH33@S`P_n<;H=-M%wLuv_IMmt7R z8%FrqZ;U^gxD<>%Qq(i#cn#V3c;mS^SUDUxxHtuQ#CejWZCqF)K;ug?jBB}=*qv>q zl6l0%1h_aHI9ORYS>t*6SdDn)GSpK%1cepqz#~zh@&|nG1Gvow8VS<^wM9TPaiIRV zu_9;-qlp>=XsXso40I~8sUD*`cpti%u^gkg2%E985|R*j!yOyy@Y4gZlk$|gSwd|< zXG{l|va%;DbF)lJ1M!-pf>_y6`>6jKz;2V_wh3inXHjNhXDtn8W#>+t1m(p?mVEE3kWmV7?+#R1f;zw2 zjPDi9)I%JkJUk2ilr=O|d>cg7%oH5_dCs%5>hdUnR!Z?O zvoV8KPAS~hP*MgBu!7s+pnfE%_XBF+DuXv#fc-5d4sCFNhcZC{1zIr->Z$27f~V@i z?om@`G~ofA*#hb;hKkB_PU7L2&#EpT!phFFl#!Jwn1hXNx}^`RDG!e|D<>m(d%P}a zqaYtIj|Pvl0z0cIEAvc7CVsYVCN~Qn4IV*$$oLIpyg`sbl0geRJ_b5r2`RC`R*(oI z<|09(#7vBvLij}feG!p?jO0W5WkW zmW7#-nHgd~Xs;+}3_=~ePaMe>VMu9e3mU`(uXz&{VFxX;mSYrQQv=O@i-;L98bD@S zPs*^1u&1zFc!X6|t*O!x;9^fmdZ zE2!NMaVu!u41+3YoYBk_5+=q*=AiLSG0-Mi6E$c_!T2+U9ogsXBJ48kzq7o(v%FbR zgN>bChFzq{8zcp~Q-uM#))Z70$usDKL&l#W9JF%{boDZ*#{t{D20N<|MvEnoP) z&}IrYm^h3kB+vNZALx2`Ud98w!otSjUcDcfj37~*Q9+m&Y?1@7a0Iy9&j%)7kt7T% zn?d0Y$uIn%-Yoh`C3YpyZX#0?b?|Ltpy&`45r-~v2aO6qu6|_#_Y}d)qTu)4P7o7t zVPs@-5fBpxof8CQh_mzYu(~jD@{4kdD=MO#6#j-^lbM5=on4b3baaq7l)=Krs>#mI zEy~Xc8Xbm=UqSYObd~h>kf|67k6H^+moFHV0 z3S*j-5@?YfNEoyhuR+v-ON`5biyOqzVC80Y5VZ)f5Ov_<2CE0J`vc99J2D<+Pyn3+ z4?2Duv|mDrk4Xe{>j3EBVmoF~XACqe!7i#O2$?!J1C4ZoXH-Eo9caoHd|!{c8XJ?v z1Xey?4qbZ#Q63f%PI+w^T{ka%S?&oO2mT!}W@X`)>?Lk868--h1pq!U}aS#8#`#bDY^Mk@OZ%iCeS^9HlUqXpnH4N^g&$%aGw=2V5to1 zT(N@=lm`vVfvQH(o<2y22As!0fugLW#;7O?U5UW>(T#(Nhg(aS*8zMgm;_C$0#nx$i~lTtggps z$0R1t2s->6TyKCZb zn*dfOc0NG?)@)}kzJEW!Wh-9+gn9s>UI=jUZ5I+37upUEz{%V!9IOI@?76w@f&yGj z?Cg{Ic7bp1!$p9`X+h!4Zrt2k!7Ont@Kw2QOg|6;uWtnP&t#;9VTFvr~?dj}fvr z)kqAKXhhhQU=3+Dh`1G#7?@!MCe4hX!kEgjYlm)$L+FF)XKb4Xx@U~)Q`Gy>lfmjGr%M3B{#gT*20A*3f*L>!4^ zw3r97mI#@)IgIkE59VFofwnZF?)C9A^#(-H6KC%jPusB2n zA`4c{31LG>a9Q+)iGi_!K^ioUst8+b2OiOZoEQt~!h;75K>N60sSeUHG+|r-n&1IV zT7qZ|3ybg-+;WiJlyclF*m*Q~gn19}3iD|2SZEy3usFGbn@1plk1K(TFF}BZdj-1) z_`dZ2`xy@~g4SKRFqAVeh=V%Kps`c%fv+eGaDN(>hd~ttc>DlVOPGVQHfVU0osUUO zoK+oi=as0qx*iiBGiW!Rx*n)tkO$9xgG*LOq61xeZfX!M$ZJ=}BPhsSKZ{3DkY`pc zj}W5(&q{fAHYQF!ezqDub{>uZ0fB5D0Z$cfJ|?2UZR~eqMIQbQUfy z9!@q!W)@%8cy@74E@qB67C&}zE>3246E1PiY7Q=2UKJieHbEX90X9J%ZV-!GP>hw2 zpO=k^C5lU^mxGUsQJ6*G9S4^(w;&fY2QwEpH>=JJ4qkQ+J`S~3R#rwPb}nun)+ClH zPG)v?39d@!WG-fQ4hc?YHufksAud4!E=t0IKgTc(76qJQ<))mI``)!xE=;^!Sf!V z;VaOd9B_RM>Zd}qV4e%klwlw)xC4A*{RB{fYp_F59ErC9E4#r!P+S9CcY_HHaX|wx z159Wj%OJ5K_kV!LBIhv3GuVUsC!!+CiqPeFpa}rzC1ap*Cox$@MI&~^jyZ5=+!!<$ z0PzlZ3X&akk^&?opdEDZ02e3-z*D4#!jBzvGKoDS=*l-f@cv^6AGDkod`+mC zJ(DQtNH{TZIYuMU{0n&NsV$?pn6V*f0kA%!DX5KX4%#w~L%1l{dmZpOG5wAx94 zE8N8;oJ)X}n@iu6gO!z;n}^L*h?!GZh*`|Wk)4T8giVf*i;bIIj!lG}m4%tb(MF7k zi-(PilUc}=jfWd_;E$<37dI=KL7c*zrb3L&pxeX2CNYDK31MevXJ?Y*6XBC%=K`N+ zk8BvHFld;Djm1=-YZ5a%D-#ztlcch;Bonu=AQQVht1u@U8?(GFrw|(_XQZ;51G@+> zBfFX%crA&Y8apE!D-RE=gPU?B8z&PJvk<4QJm}CLVODu|CP85|ql8#l<#kz@*;!fG z7?~l)v49RtXJTPwVFsDW$7QF+!NxAaj$$AyD<=yVCp)t|JLsYl(7iJE8CNqdWDsM} zWiVifWMD8yIzbLpS%Oxe8XJk3g9p+;3m2^!VS~>4jLPQ5>cZgJPw>V|&}1K|L<8NG z2HN8cIyw|u-J9(WVCLXp22VzTmmC>zbL2C!v8b@IGg&foXmBuFGO@F%a58af^YgK@ zIWsY`urSwvmU*zVS}-y?GqbQVH-UCv+cKI4Ff%hV2e6AUg3rhKcR*w<3o94f3J#7H zY+Rf&M&kcYB`~vyg2w4U<9f2J?2JtD%q(KyQ>8&X2Jn4455WGGVlZSd0qqMAHn(Fk z0?+?}miY>T2++}#%1UailzN>tfDzOTV_^(ng>TvA=3q1>&-;wt0iX*onV14tdAR-^ z0IerxbP$OqH3%43|NjNwaRWLtM~%UZ!40%O1xM_o9|8rs4+7SB1GSJu!ObbikQ9gy z8p1-B#}fIvNGAYuau5?6Yv`^IDf*fQRQrhvp{<# zVCR%cF@SF20^eqeJGRXgL6wmSbRmt17^z;x9@(FX_bvALl>z$|Oc3xeBLnaMAB@Hf z3mAA97|e~0#6V~GfDU3a(|jku!(9$4W6HUC7RYgzgRaOd=az%yhr5ic7#A=oF<3CT zFhqk#twGCe!B?!wg8H=Jvs<(ol|X||pn}1ajU6;y3mVT?R#FF*44{&kP0bv%x(Bj& z!(3fi5PW|K8)$@u4KxG~8t+hJG!^0C)MjF3l4oXPmI58o!ko*(%FNCx$)&C;uV7%L zB__zl%*D*ZDaJ0V6D!Ec%f!RY!*~d~O&&C{4J}L<{X{uAG#Qzg*_i9uS!J0)D`A;s zS=p^PpGj#N=x8~xvvA4ru&^+)vuN-LhzhWBaxt^O%MEr|Ndl_>SpNV24+?{Y&@hOj zQW&VB?3pkDuSf?)i5w%D!SHV$G#uDDSs{fg3lj?mIU(@`R(x>rutI`@nTrFoKAVw& zm*D}U0b>W~)MQm<@cbiahJulgkx?9+ir7Wi%UPLOc^=4dm$S2%v-0zR?!0G$q&>zC z1|9}UwA2SW%p6oPfaj`Ek|HBNEKv%)6F^RwnXnWp2OdWQjhln!ovc7N0jjDgE9x<+ z8-tI~Q5ID;1@$pNr!5MBRghuWjiKNt~Liv=Cgx0%^8WYF$J2q{(Hp4 z#>#xo&Cx_mQB6QZMnOSAK}JMC$y`g@N#h(dD;pD|oT9y?nB)u&4t^e<4-(95tW11n z+Fbk%4XV-(5*iW$5*iW?(y9#&V#+GY989ci%)H#(k~~sQ91a{B8lZiE&~cYx5CQMSgpJWNpwFD5OogIObAs{}BLn~cUEs4Cco`TNmH3%J zLywTn5DFrkj*~=q__8FK6$G0Z4+yo0GOO{WPZSa7bYTGNV=`ns2-@$<2+A??kUbR8 zv$WJehiNe~BN@;vsK6|l#m6Hu$&pioab1fTlNw+8Bw-0I7Z*-(;YsOyYD{7+LJ&7O z{J+K60B-j%hzo*FcLjCUXG2jtlT*1S$VJkbM5bwVR z5h30!>p=@h85tnvECcO%Wdsi}+cL7Vfj7L$Gn#_TWo!VM!>_8!4>E>v3h3^H4O@AI zL>LjqfX7Ne>*)_M_%MVpFn|sB-Ml~Cg0G9w87f6Pgg^i76wq+!@OMJ3xp^zzf zln505h&dlY1}O#xRbxR&g$tP@H8n942b~HJTB*ut(ZR>{4?Kj)$idg0#LmUm(7*`p z)PY1hxcJPI*c;fu^U{d^n>gYu0(MAC4%Q+Oh3?Xt!3nunYXLhabgepKXBK3RhuriI zx^wCP<5ot{+FT z^_Jn`so>#}kuegJ=H!s!&~i-R znSMRi1K>$#Z_IlNGdH z=KnP&2FB$K{0v5*T%xLoIv2_gy3&gkbbl&j>;zOHh=3>NOik4E89~!6po@_~nFKN- zVFFr%23mP9$0*MD;UBoo$OzifdQYE)jSI9Ylvh%MpOameom0jH4Y3`_`!DY5f%bF#BAvvLV>Gl810!U_grZVvpC+zD)4 ze8Suk;v&3YaXCpfK>;}fc^(l#(7GAWdIly2#)S+9;FIw|hmSLvo0*#Efv&{_t(uVo z?Lsm(5)%PM2XqM<$g9fg@RqkeqnbJ&6F(#T(lBdAb9MLt9jFRt5{EYHKtr6M84Yp9 zZYFMCE*@TCb}2zwB_Vl3K2Baa77h+3J|SLSNo8dTMn+Dy6(Em*!iL?BlT{DA=7~{< zl@r`fm$EdK14+AbvS=_eF)^}fGI21wfJ9_Wtrb{#Ks$;A*kx73ltj5@#P~QwnHX7^ zh4_TU#O3s5Il0(4zySvdLv~MARz?;UMh}Q!urFAS!;z7NnTgAhg$2y@31I-W>;FUd zT1YTxFjz1+fbSX=6k!7$Jph`dF|mhUo&)NMpfA`5&B{Q=p+Fs0BQw~33KdWdYh-4^ zc)-uZo`sq1-vt&HW_uGqf5QVten0rQAgkWF_)Z|0;7U~H-xF{(%9!wr1k}^p9NPxN}xt8XhW1eqZw!*2DFeCwA>f8 zl^HZdqXsJ2z{iani3x$G>_Nk2pmNZ}%!pA~l7*k$id&pTfQgI4g_o1t7_vIfn46Q= zg@cPpfJL0!ik+WDl2wKku9T65gB7fnogG6RGZzn61$b48fo+(rZ5ZQbI}TPB6?Oq$ zCk|dlRz@jMSA&I(g_TL0Q;Lz5k(a}XSAboGg_XmOmlv*-m5U9cmQ8>SLmeAC`@i$x zMJ<~_HrT@JF!0)JeTHHN230#o&}9e6`BlsubixN{&n&a3h&Z_23(l_WNZD17Q5`>R9|&^*fr&WErp%f!aS#Kwdz%d)XJvam3LOjcm$ z1ZP{MJ!VRv8*Ldu2YIkVhFGAx0>sVj7(v%GLuzhw&`sFg%WrsDL^oeBf2f|E`1AE~BYR_E6!L<72eeb+=$) zR(57q7JX(m=AEFm&uO5ME@oDi6Rhk!`fTis zpoP-9K@PecOl&M5y?pVEn}ej)!~#uRSvgr*)NPfuR6t9i!9DI1;4bsONYL_VCT139 zeTXOzJ7^8HyqT9aGdl|_i?t8(9&*Tz7isXhEa*FTl}(LJl}(L>p)@1P6=Q!EELgDM z0f<2DCj4tia7g&ikl>I2E|);}-GS!*LF=PH=P#kz!314@WiFzusAMW=VytK+iqZ$! zE+s51B|L!#d_t554|r7&c#}MyGnioZVf1cbwqdaWtHBKHpnG`1=Zy$6NP~B9S}}Nm z=1#ai4VB-WunK(t_CVD z;M4MYjOylQYCb%YY>F%2tz>59;AUf!6pu<;Y^=;bPL0R8lolW#eMkW9C%g=eF}GU%9fJPgYu5l82lB0Ql6Z%}C@% z4t`EvVOCBaHa;O%4jzPgQcTPo?EOrtlG3WG(p*CPY!f&^9WGFN{{VRXKWJu!0aDO` zTO%OfuqlCVEP+D`*x6)T~m|X9TZ&Wa49F z{B(tdhllNqhztkY6+R8VGhplg^@1&CyaaN_Iw?M$qlPe--MhlV#v&tfhC_ty3LoDY zHeP;yK6kKt7M&>RM1;!S?^x{|`(Ij7y<+u30g7gZ7o9537o!jXk3C z)j=2Rfa+2cHDP{6==lPWJL$wg{c6xCAESr}zCWMn)% z_&GWCIXU?`Im8_}I0ZR4J@}c~*qJ~=%xr8-5J5&8tf$p4K!}FOaB+#q$Y{tgYI_K9 zavE@O@^f;E*>iFVaIWy+XJ%w%*5~99U}9oo0ttdzzM%FG$NvY6KNuIl*Lr~NzGFsN zwZz8^YK6!$iijho4B;&BEQ6}Cm^`DRxfyKn1q-anaZZexUsQ^R8$8{~%_Snt&&?zz zEH1&vWx&P9$N;7!#Q$x%#?2!5@0B1ktEil)s2pP`m^u^AD<;4NS-!-^%`eOq&aNn8 zATMkNntjy(i<=3{8;B@IGjhAQ@GJyr6$R@QWncoA1r3a|85BULFCg|ZfDU`LXS8Fs zVgz;Nx4o56VOsUMy5lc(4XUzhQ(~3jp5Lj54nGS&)OpG;rT>mbB z9KmS7#kc+tJG&UW2>a~Wpv4|yOpqx8rbA3@Ah1&bqz*(t=J0PaIWsP2FaY%kg`q1+ zp(DG>f{?@hkvb59%Aj4Euwi{xaWPQ64B80?NrIrWP9Y8ry{23j|9dd`q19E2t)QSY1Nd#&>fY=~8#CAk*zgLV=;{YhmL4+HK-~thk_`np1K$2%% zz{j-!q!@+x_XEy7gph~axdG{`2rwuzSTJ}p#Dn^)=AfftV2K3W3%xCli-{-^x z8pmP|U}0xtW%}m;7UBadU|aza1Pd{-va$dB0%k&F8Iad{i!!J&STguCBrp^*v@y(N zSj)g5EGohWx@{4*Qbvwh9K2uz9DmUDn20b0j}S3KyRnenXw0DaXGer8s1Vd+WJlV#Av0Q_0}WY0r3=#aCSZfa)IrlVpwkbSLE#QcO;f@9(x5@g!OF_CjgKo06i{qw zTzm@PVCUmXWdX@3@NuPq0~8#@X-lmMEUJ4cg76MF6Y|QM;9E_lv5!8xjWoBkn7Zzny)Q<*_i;1cln0ot| z8mOEGtqcG6fQ^Tfn~jr&lkqNSNd7JpI}1A-2Rj!Ro2~>m=bg7v+$SFT&B?>2s2>1o z1gZ+X1g-FT32Fv1Al%H)pv2(9z<}-+lEN44AO)g=*a6~{OpsGDg$zgx>H&ARCdl2I zL(knSLGE5jhPxR+>*zrJY)~ICjDbNAQK*3mLN?ekUREX0ZIbGGZ0e9{Y0#brCTm7e zvr1fyU5*JflFi0$49d0I;0wd}n88^eOlW}DQ8O~Jaj~;8Gja2=^Kx_Z@bGhhx*mec zV$z0U%!0xS!lIzlra4&|nL&3*G72k8rZOsU^NR{Fc7V>}-~thMz)QTCaq951 z3GfRF3J7s9vNBy`Wf$P$=4N5z<`j}*7ZMiZ551cw0Vv_vz=xKl;|sQv>H8er!! zYVZm%rAjJub1-tS@Un67u<>wdDatYnDk=#JDho2RF|&x63h;6BiExWb@;`u{q4$A{ z53>54u~Jw`flFDOPl{7ePf$dYPfCc7543ZZLx7o$`5G&;s4qXijuk7v3S|CdKO?A5 zrU&YeK`S6w>(&~yS{59kqB4x2kw(y>029#WK+t|GMlBvKki#M81Z(lA8Srs+FiJ48 zu`x<8c5v|-yeb1X*ug}Zkc|o#Uj`!+qX82$Gm`-$6JrJ+m#Q^n9D#v>$$_zfftdl+ zreY9Q6jf9a5d)nj2pS%?Wd!xQl|d(tfSbTdpi{x2M=XJwAf^qB4*w1?PLL6i5&5Se zA_FRgWx#iAi}>(y{R5wX3_2-=QQ<&|h75Ro0W<*%VOW5C0B)Qkjdy|0bAq2H$POB3 z1)YuyJ|zykegfKS<7b4 zd}9>`232#=7%iC4V`PJ!Zy*AiRfX=778f&ObT(sWPfTQIHv_E`NlauHVTTE@i-06R zd>8}NF9EAXNP(1q`WU?b4=@%p9%K*(o!-R)I%&|3$=r_7NK71b6|B0N5<4IGj2F-? zKPGC7TvIZXbjcgXNk^RS3B;pXPyGKn|y zRP%CSVPWIu;9zItU)AZ z!p7KeAfTWi07U#N0B_IxYG`O^XzK0F*if*bpkP74SJ0k4Z}Um!-dWzD{syQs4^C6u zpc!8VP)`Unu3*h*#166uoT8Wsp` z!^|kp$i`yC$t)+t$jHda&T7ueF3HF!%g(CJ!=ug2#{3byZjRA}k-gqjLA0KO``-;# z4(?VnM$n~V>>L~%%%RMz9HC~+JTly^tZW>tj2hs(S|D{jXj~06KV!ha0N&XrE(W^j z2eh3Zw7L$oj>rf+{|PG_KsgUK42E?M#sIn3J5vv|vk(8Aiy3G$pB^~O{~us{z<7Wm z5VXz_bP5INA{-@lb#u@O6riQ9;JtF77BXn5DyTzf&nONaYQuGN1ZYJGXoW1OfsMEo z<%&P(&YS?{5M==o4h~rkPGJ#2HZ~4_9)4CqVPWtzt%v|OH_8c>YE3fQOzRh{%A>!2b6Eyd;4W zvdIQUG3Ll{@d>lB^9u8E$?)j>+XE{48C`e+K*Jf}u{3N1xM)D~iyGuaW^BG-2IX-j zHFahaGtfp~EN+}H!YCvBO<0Cegq@W!jg=kMNxJ`b2}?-{GrF;Ia4<0b|NZ{}V=Lo9 z@CXy=^m@?1Ca9>_V+36Z2s-eF9Zra_f!Ri&W9L9S6BsLll>~UWgA}>=*bp~3D+Y1% z2q*<}^9WQ32yt?7PvGX@6cnrw;PDKX<&NMJ;(%T09KkIc&Lb-!%g-(<%FZV%DGS+u z4mr2cguxDcJ~(KA1(LrZEgR61Z_vCVWFLeGZ#7@Yfa508|b2NRc?1iO;1g#{O1Bd-*ffP}U% zhn=_-I~R+lE@WH=vY%3$!5BQp44xkV9k2!(jzr$H1R9n#HHMI=CrX$ro0=QLj+bBx z_;)}=Mu(XLw2VB354?~?!y>?I{$@hQk?>8S)vb8QK{p zGt6gL&9I$;LD-HFwB8<6kATkpRR`@LHZ)gb7Y7aZfsZ-WXH+va69;eS0iWk!WKJR* zvK5GUy~yfSaoEM`vVFS?3lobr6DKPp3u8Dd8(TsG8|X6TaAsz1R&8d+c*vp{@No?q zJXooJ8}O)sNiu?uUU&gBfic3x(9ng2m(7)#l~I|Ai88qOe%*f%&%F1yZ zyc!2$G$t8>Ll#pUUY3CO^2#$H&4PhX*I*L?pX&!&TMNp>pi2ap6$KTU0{()pA^Exh z)bCcWN_?Phv#^vf=zL=b5t)Ar7!?>m_h1}ga%4Qfpvqtl zzE4{XG^?qkZlJEm3_ghlbe|GCn;LkAR!m%sk5Ne#bPf^t%n0aa4K>i33MDpKMl&NO z-4G8(CKeuMMpiCyMPUIMaehu_9v06q4qhhlC8?=P#2J~{*#DgePbmpo1Xw643QGwK zC~WacVPaxqV`S%(;Nuh#;$>sY@?qs*kIcx3WM*UGn#~KE*c0XjrTy6ghlN1?69V1y z0-j$2*CDnHz6=cJ;6=*HVA8~n2{alBTD{B!x-tpe7lAGkLX%==V+Z#HM8HiH(17s+ zJvR+m7Is$987W0koXZvvgs^^~Rlrt*j_L!gQ-svde2iB>v&lRLJj#h?=@S^$ouiGx zhjnpq8aa7_js(^Al1u{4T|WTLR`c-qscSP%OgD;gQg`6wRN~;!N%u4e)K^zzXEk5} zUrWotinJ#S)H{}Eh+trVoeK|Js-p&Lc|#XGih~wTGKzyHRhZd92kfgWv$69rfsSD{ zH#4_mGF4O81Fh8%2VK1<$0RPswrUONgcC+{@LsAF;HLU{@HEaWQ(1Nnb|ywfCMG5p zCU#zCAr>wcAx1Vfc4l@qCPpT94t7~nHg-lvHV#$~9}gBbRu)D^cE$-+AOjbHw|GT@ zI}$G72_at|79CqjVHOrv(258qMkY2kPy?2km6?&5kDZA{SkhL9g@=iojfI_wQBaVP zk(rH|4YbY_G)C}%@d4vP1}O#&@Tv*W87iQ?cuLS+cxJ}tW=5d-OfhCi9~N4xs)7$r z1z*bnK7SIlQW}IAA8<(U{Hx%R;9zEY0lH(6@dc~IzW^>i4#o={eE;%9co-M(h&U*K zAftl-2dKK_5MW}BU}TJ7`gfX-OMrtzfQ#?L0noi02Ot2l-f%w?BjYIsaRzhn2?U^C zt`exZ4_XogI-pDpbhLxGI_M~NBXKzva5V}&nOzNZM3guq=m2d-(2>$2;*6lvXgE1_ zb?PE@birL+T~RF?QC$uW0S*pbQ5#WKc2>}gA}c$qF1UNFs}otLqsz(3C?w9#{?A=d zP@J8eaVNWo76&IxN&~D@3uMS05L1+u3*~A+Bx7d8YILH8gT`cC*XUne`v{yD2jkjfQ_m} zy5V|`xRSWIlK6piIc;G@5dqK$f`ENwltUW$>Oe3tLr`2?&;Ue$$_mIj3Gm(B#JYrW z0xsL}SqomD23bcc3O%oe0kkUsl=eUyKcE}JL`B%lL93FX>oQ?yDuZU#jKtVL4RlcR z2ud?*1aR?1@N#j^U=v`Q!O6uN!FP_23v`VQA6JK>c!0QK2Nz!rj{pykfDf2-;Nw~$ z$vK0KZ3d_03NAhl*m^n+aYaRO4!$gqN*=IE9+WduLAMaYM_piJ0OEX%YU*azjAG`- zMsh6B@s@uxz=zhKQZFr4m(dV%a}#3c<>BGtf{wMMf=|D2d1G>r>lsLpec>=V84wNFyO+j}Ii^?&w^Ra*yj)N8o zgA_q3cu?YDfd(4rR15E{tuiXy9AZ37OiVod(jp?V{9vXS2e*ohxTmMMm^33J8#liY zm$ZhosD=d}7vlsjK8t@Rz!fbcH+VEdL5WpI){v8ziG`VmgNKP(OGH*iM4Oq3hl7Wi zg^8EbP*#UkNlD3xO+}nbh@YE{kx@-rOqtcmLIbk+QNyAbyrcv&#`gaKQwHM#25AOU z23rOORTI#hJ@hazaJvuQu{32zNgHBD=Eg>lseCaN=*SFH29FJo29FI7lv=^V`7eu; z$5K;LKSy7Zmsd(iis|2!ppu}Vk`ja}9vdDHeoh`9PEk!u85w3-At~;oASFT2_B-PN z#zPF&4E7Ap4Ef+uFg0yPGgA{&(AB1(ssPjg1|8|42EJlOR76~cQ519x9Gg5Nr1Axg zNr2`n8QIn4nbhr>*!eiv`4~Z~d6d}snDiLI2X%vP_A&!kDWK~K7+Xb|*x9Uk9NhS% z*~PeIm^j%unPj-c*roa09C)nQ*qOv-lpwLgFMZFzK*B;o!hoF>To8kA&1De~7G`7O zV`Am!7vKV&yv@k1p~l3;q^7|=)0~YGY3l@GL-f{&GzQ^}B5M3|R} zjaf#Lo6VHlP!1AdBFa)b4@hVII<7(Lm8J#>K0`D+3BbL>n41k0;H*Uv7F>S$$jLR?E+ zT+1a{(;8D*Jtsac#tU40PWM1!aS93wPI?lc@>oL8i2<}fih&7qFD+zGk2ZrPsFw>f z8+@vo2%8ctM4)T4L8BI+{0Fb0At zS6NL+&sS4cNYPL6-w!q=IX-bkKCTSL6MS+?Y#Cg9il0Hcti?gPz_$`R>9c6cx`Ev6 zCaWnT;wB`(B%~;=z{OV}#3UeO$H%20t_V4cX+IMu;}HgN1_nkwMmBanMsY}tF&dfK zGlI8TGd_?C4OLL#6}`^MVa&qK&Bby+HA2NegmHm1r=q+{gz5nfaZY0v7FL$)qP!}G zo$xWI1&jw7^gyi@VbF>1+(vM3`n3kw??vy{AqzM`0_s00T; zA0L~1h>eo92F(AEF&qPiVDL&;WhLmX(0oknV&X7|D=Vpk_}~LcLAQ;ARQx zKBIz&OcI|6kBE#6V*>|Uk^^X{5+dc0#3v&Hl85HU|BMZcjSM0TI*^fgC4JDL{E#9E zyxv;e1au8KXhcX9G~^~O#|&C;&B(wn#1WYWDoD~IL4C{yJ#HyJHXe2kK5iCvW)3bc zPF7(t#thJW7<(jmfn6l1m$|`AhMi4Zik*d@Ly(h0ikpRvnUR^9PZQE^{m;k%b_;k; z0K+91c48V2J)`S1lLO;!u%A2`5^?y;98|2aLHq?O-{e5U%BCi2>?WX^n-4q&CMv?m z0xJ4IC!yIfsuLFy+t>y9S=rfm46TgyxLEn6xUHPLMa4B`z~LjK$jr{k%g@2h%E2kf z#i6c~KwP-Fu`qIQa7(evrP`P$$#Y1Fv9N2_y8ASrSF$$}1c#`gl@gbzu&@9h8;2A( zADeWDKF**9r|APsOpJ#Z^gydERK>+Wtx+{_)PvU|i_0;Iim|bagT@sgE9JzEjlj!C z#nhES;|!n$%jRn8;8_r3BQtZx4}8olY>qrqY<4|7LQD!8(gHGqj0zI0O_0HkO4b$* zK^99@HlA$~Z1!4uPV$nhEJn8Jo~GfVb~0?d%!+KBJZ%Ep4_Tzu7#Rg+1SD0N6~W^o z?3@bR?A5|dEHawrPI~gj{Hn6Tk>;N1R{Ef}2;=_;Om&Rw!RO!_FfgcqdQ>K6MxgVs zL34?WBA}(dpgINAu>`g1Kv4}5QvmHtXKVoPT3g4;$Qt@Al$nW%Nr{`=ZkZi7_as(E z*04v9!dRG?n3cG>a~U;qS$J8k!E17CSov6ee3;qT*qD{LxXjGBxTdi3u>@LL1~PMS zf>fuZurjhh`h}1+as1%?g_L7h-9spXYGGjkYvJT{g64Ucn?SWYnwvl;@qky(BU`WXuK_eI zf@%@y7%oUT1v-L45#5&}qTijOLJqiTsSp>X4Ok zAeI_v`I|iKz5>`W!rw27CN@!J15?oY za&u*MVPw#{O?=AcvDW6Emo-!pO?4=Eua$!~+_Q%4BC`X5mrib!HD_WZ==@31ntx z;S397VP$0r3*+Qu4dl@PADg_LlXE)=gSZN1?EKtZEMk&o4xC)PY&@)-WlFp(l0s$< z3edjXe#Q@sp#9e1cv3Y2^-4jt1n4##Vgkd=*zS=dqC zI#kVBT}oe#hlQOzQ$xe)q>!1a@CnHt@Isp(Y#b~KY9ZF@&gw$)qHH`C7O^LURn3G> zI<5z=PXVVfk^c`Ea~T(c`jVg-T7D*F(AG^x(Aq^tM67@ZwM0Mz4B!*SV6&FyP=>jg z8e_a8GaHk+G!qZMITIVRBP$ydQ-Bo@PlQMg4^Iw{1rLZ4iQwU}3SeeuT)@Iy=%K1y z2wK9(I*mtxM^&0f0dkF$0*|yRj{?s$@HiX`gZ%%4jEfn!Gej`tGSo9HU|=v;Gcz}n zV-z<9Z~g&Y@}#6@V#h2FS=a!&fJKH0)XoKsYJo~BCU#{ub?{-M){I7=nHFtEQDe}4 zClFhYQJ4)}Kgod(v{lz*=3^4(W7K0(HvwJFz+?t0?nJ~vlICXSV&E}YP@hbVAH0i7 z9(3DWIx7=5H!Ck6qm-_chLyh&6R6&0VU|^q(6SI_Wn*QMw6+jcQ&Z1VV`S%MVr1iE zVPoO?#KFkO!t{VqH8s>))zZVo#(`o77e7BE zXGngdA*;wvR`5!6PBs>1Hf|)6iT>MNdtSqe> z!b*XrTCVE6e1?o#Ox&DIyi9_kf`Y8Vl02-;>>U3#D9CZBdKrMu4zZ6{lQLuzNn>VZ zVq)Y1JBgP~P>5B4RY-)7MTmu!8&r=-{NKyCitzvg=q;Qh{^bB003 zsKEaEKYotIMh@>-lIK^DD6Px(EpOuyHW4vRY;F2|MwL^YMxEiOR{%lhc=A z63`G3H1>*8QRkI8FjtsYNVtkgKuOqES6$r3NQqHOU4bJ^QjeEcp3jz#JCKE!kDtw% zjZvhBPh3WvPfknj-#j@z3kh`*Ln#AqWj0w2P7VeJ=Kp{Hzh`P>oX8-{;KPu{z@Vzf z1ln?7WNc<^#VE%pF2^Dc+C~SO(J=t|6m)YGsKzv86BiLTVi7lzV=^;0v12y2V^mW% zP*c)l1>NGr&c`Im20F6VL=AKqqk$cxp{Y9KBc{?aW>!WH4lXMz&`p8NjM_Ff+Kl`h zOohzs{8?pe0vv3X*6f_D%#(Q-S(q4g*cgS__&HgnR8^!HL2FRJ%W~ORS^w=|WaVXJ zsVrk-XXY+uWRKO+GxlMgI-QxF9h4|o8I3(Wj2VSl81)%hnFUQ)SvlCfI2oB3%~+V3 zm|PfHK*RKm0%GCm+-3i7Ij5`>Z z7`PY&85o4cm0`^aVRd$6b7S!zj!le~;8A?tDO2Q>Rwyw_Bo%@u3I1)pf8WG}fepOB z1GH{mkim~3m7$kmCc_r+y>{&IBbQADK^MWRfkIau)G)DQHa8QOW0heP6=M?<7X!^u zfEuFge9U^R>S~}}q|9oppymx|%3O~Tbn~j1v5~PAlbEoeh%)F}3q58fHf28Wo%iN; zOk(1uHjHK<1;%D#pi|V;K-bKHHuJJ-G3v2{jvfG6DJCi+D#ph6=%2L&3nRA><53|V zR-S){Ma(&wIoJf)*;$x5xVTwt9XPl-SeY2XQxB}{%B+k`j4T`+!otGBg8Y1(?2L>Y z!hHPJ>P&2m5-cp7jQ>g*Iayd3S(rH)j~!#=WM*OEUZo|9iniI0tim6e^5g^`twm4lUu ziG`h;SCErmS{!u4hXDUgHqfvdD=RB2BO@!L|G&F@jEsydY)mZNOu~AKMn>GC!Yl&r z+#KwT9PBT}1^9)Hjii{wg*|jZ$%&bTm5rI3mx+mmnU#@|g@uVxQVGHzT6gM_>cgkYLbeaAk;R$Yx*=LfH?<�tsYGN!V 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%0DSV2`CGZV87 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�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
9c=c zNWbx*BmI>4JoV|yzsvI0d_MO?C0_iLQGfZ1nioQIxaxl%$!=`%zxK9ns^No*CEu60 zJ-czw_qWDl<$IqyJWB7nE0ycGrrvRhI{S3ho9a5X(All0)R#Q6da(ag#6+JjM-QHv z&OP^cjNNC;p6S2We$+g=H6~PE(RbJUR~nzP`6kGGzF+rS^V(CbV{4DCubJ_C;nm$S z?KLZ&FFP>(A$t$w(V7N9zk^@=_nb4CesQAwjekXJ_eE^~sQZ8N{*b!a`BTr$(9rAr z{G~_p+j;YHmNDGngJ{SC@`P%u??@ZtSaqXM&DpFqf zmG-a7cV`M$tqfkhQ9%34anbe1Wlr69H?~o=;`y4iwO;;s^sIQ-pBedQKT0cJ^FEq7 z(ciMz!|=81{Cq2G?;eDV{dH!qcz4vKz1*_B`D=bfoV`^QZQNuyr@PX#OY-Z!jLkQ#m5(laE%u!Aut5Ch zL)*8n%zt3Jx?$?1_{q0Sx6bIXu@8)U^LFN?=hqi0C*PYZc|LYY``!6A@{ejQ$~L+m znRjUGqz`vq?5waqQL^UHpI_^rF(oN~o7%v-JJ0%VPtK}goO4=3IjMPF zaBau>1kdh2ty=a8K8KYz8pXYR_?-6~Pi*&V(Rzz}GS!`hLBEY(7eCp^VDT@^|8LoR z-tX5fuFjf1JF*&W;aM|z{%_1zKc?*{*=KlpmN690XxXU*Twd~ZmN30U*`ug~){ z^+!uH%I6vDUoSFuX#QOkR&&|@@c;WY|J}F#=lQ?g!}i&Mxf6=zEBY%x%5vU#yu4`T z@7vqHKb+lu&*hiirW+6H&sUxJv*Lc3^csK3bD6bsXVyph->N>8F8|=(#$=_3C!&w7 zcfDJ6e$z+(`|;6tDr?r~hh2PoWMf>>iVB~%cVBNiS3Tj@oatLHUY2I5zj!WrZD;$r zYDt5T8jY&Gd=d7KW~&ABJ^H_X*EgY;vj6PEV>z?y_Kk@ z`ug%8-`AqfofFc{mPJ(eUEk_9X%FY@S*+`4H@FLha=YrQ8_RVo z+6Pd8h1`@S+mwN zsWdQf=5CHoGsCQCx0$XXX+ciz-oK-{Unv=P^SyRRzoqbVeMeHuW>*s{yY}nx?Nh&{ z30ytxqw<9&#|v$~ zKRY<*l;oVV$(HTKmh;m;=IA}zX*1t@=Opt2-Rs57^Pi~gJGZ~s*gj?c?Ip8aJoP)L zJ5Ex3tP=idsYl(E)*!9ZOPsWpMrAFH<2xB>siyv<$K+&c<}|ULy5&#S*$4>6&wJG_ zwfN(#H7~9F(qAO$UeCI_uD2>m|CQ?Ah4n9#Lu=ETx9#@bQk%0%HmUvA`L_kum(p%t zEbIAu>DetC>yv(4jo*UhoOpCLVVDHYZ4b`IG~ma}H(Bc{yd@vyXF*v&Nh#-ZA5O zA?Nf$(fmgfg0r3k%anPU?`Z9u-!XAPg^+gVB(0f~l!cc#bS-re^PH(u?)7?!o6{u) zcdIFWr!6^8U)??>B5LlW!1J1_8C_{v^Tb{Vt-T<%_HuJoSpC%v!Mk2giTc|5HOGJX zmFvqamwqXqa?E;ZXW6E?@22#;|H)a`HUFpA$=6R@D;Uo&kj<^=+y7CdKXGA#fZRj7 zcaQY%9Mk>NIXmN^Xw0#Ej>kfE2U+JFx14iSa?TM>nd63kdKOzW9k%FT&NxzMk|6(T zqj>cO>D?cM%aYh%2^=cBvWV^W2GOfGn$F&6>5b^uT5~umB#BpRgVfWA)~OMVPb1ov zY8)1tl4K~hh=uzD^SavK}U1{+8UPiQuj=nXt^$Rj0zrR_2Il4OZC zCEodptj&fT%!Ul}l_dXO4NZGLD@OtfAk_G{-{~J{p$b6{{NH% z?9X^Z6%MWK_%8qFH2YunN>2ZzH;Wi5=A>S$o)P|7jQzvb?E+37;;jK%PfaFyIe8Sd zT=JM6=o~mD`O1`aQ`U6^z0^~jn=;SGU1QP2lKojhT6aSyP3f9&dinnIHs`Cp-P>Qj z_Uqm?TfZ9%{{Md6`++;uFRCEsoYsOcGqK*JJTE;K)nfmd%S~k6!FBzB1?K z_RUx3m)b0fc-*mByTerQ`4tgwrE{UtH7ynbg>iXDe!8~o`E2eMQ=qiSWqt?u)p!fj zMN6_z-W6P$F#S}&#$3fK(MCi5}y8E_yfojSiRcx;6T3T(;U*g@1%C+HS-<_2Y^rf6-m*SBV8q zl@GnmU3&FOXmOqCn$;hFg{LkoFST8DdDcVA9X)xMi0cTwW}u|GR+-?UAu(&zjBt~ zXQBMs?*}uFt@g1sPItfKUtPRs_Uh_}Oa1)?EPQ(U!~46ZT{n*n%DI{?0&_pRP?m`^8VSj@79HvUtb;Q7uUen#7`pD8wqoBVX&y7RBgKJixnVw+?Bbl=Kny8C^Pe$0)yT<}YO&C7T9 z4`#Pjo?Y-VcGl-BPajT8f1Y+|?#mpt_4gLPww>{_OeKDO13X8%U{ z`zLOutT#J&)DpTGZ57yg-@ z-~U1Vq2C|X@76#1G5y#6Pqv6ooO91|(xP5v z%f&4x`k$QH<8f}K*vXyeyhJ*eq`0Xpz2*{B<)V^mGd)t`q-(IUruOnTZ#+)<3aTsZ zv~ZW{e=@0d;szVd`MM9{%SU=vfMt^%=zek?H*B3hlzxi6+ zS#tmEmb*Rg&whHf`(D%KwZ%$1*Sf0kp5m0?HFGPn&g0GIGUYAI>v??l+`Eadqi5c+ z)|;fZ!>sXQinogI$M0u--W}d5*?0EGB+kcmG4Gx`7RT8b7)%lqWtpoR8~v_t$<)u+ zDz;y<=H9Mz&-TSW-g~*3`K#T{_TJ2rJJ+*h?$52qPn#Q8vbeSXa+-hqZh6tYo5krn z{Y^TboP0F#$%*rZ(f1E5>HfT~s%+_2ZP}eB&kns#n|Ali_UdT`|4s6%Z* zVX=76y^=2%_pjfReu_K&{Dbd0^}lB(*W3KQEqQC1oO->X$eMLWbH_!d2ReINpS>I|GMxI1PA+^ed1{r1T9io6fE*{t^p9?wt6HJa>u z&TRGFHSO;sKI#6A-uwLakNv*?-+p<&!P>fVqxV@o<2!5rmw)>HAy;3v`sdYxg{^`n&A;`wjme zT%2F>XX*L-rAoa;6PML0*`}5(abn)Ung>+Z!9#pX)Aj8s5@^Aeo%B+4A1jPeTx(>dEX5` z(YfW(29Nb`#4}ZEwRVQh6V9BPq@*46UwK*R*VSSALI1^3;VTQPkv=R>m{A^$aA+YTxe_CX4~@o z&7-FBn>7_0#+TZSm2%zlt8esQ_@a>~TlqmkuK)9z$@k{Ic)!Q+lKRIJ7awcdl{}0U zmwWz6=X%X9*{&_SZ!Pyfw$G#b#Cy+de~Y~Zua~;N*PQrkzSi5*o6{4%Hs6$A&sZaM zV7Frh|Dnta(>&Ne=We*8=*r^Xe(5ih?!SJo_%`c32A9IG^oQ7YiLbw8*k+&nQEK_| zimi{I_O#nK&g-12Jom`+>y=inf1{JK7JDqeIbG7^On~{}+IfHe-0?`Cc~(bmkN@l6 ze||Ommw)g<(f--2yUR`LPj#RF@l$fm&ri=kuRideb&Jl0YDWJW{!6VtYBT$~yx`p39yqpK;dj{RO>QWhZaHo%^e=?fsLt z6SrT_`F852`|0nG*b5nsFCE z8e6n|Hnge#_~-PJdIq2Wv;DwhD{J<0&XEbPRft*N_x;tYRj*#XTDNc6^8S~}@8&Ju z?S4I@q+choKetiUAj!Z?h%Z4>`b~o(b6Ar>j?V1~62gaCN)J3KK9ItBLnhJSiTLKi z4$nP&o*eTh-Bs~3n|*%wkJ~dC*1rE=A6nb1lB_@fO7PcLS67GsFaLZ0zh2{<|1W>? z1}aHA#Rzz84$=~NY0x>n>&k5HGv~sOc{cxv2<r~c9 zEuAJmn?s#KV>AEH4x70?P-6Dt&Y>BIy3^@XyKL=WWnR zdbCBG=L@^AQPYJdxyxMlyL5*(RCG9O7uoRtx%TSg{_^&9zs|Qwm7BCJD~qu?W?zea*oc6u^l@jYUo6BE5oWFFt|3%pQt~D>hetX8{EPVf?DRbSdXGZq>3J%6P zPDt!I=UBgv+iXowW}^C+M|X0VjiYh9S2Hs@!AWA~2;&yR6Z?=_3}noLvP%A2Dj z_pLm*UVP4n3+40IME|mitPT|O- zd8(xjY#)jy-G6atiZVw*wm^Y*Qm;XytID3EUd*|3m2~cvH*TF;y>_dJ&a3aK39g-4 zHWl|5U3odRzoTo>Df0y9ya}PMg8MUG=3miG3$S>mxVfBt-8~IsE$>M_GkLb}7rt{v zH){^xd7i!}=M>@>ZPMvZS-|%?I>LB;>;CpRk&WCZt|#_&aHXDKpYTvrBlU0f1fEa* zE$Nmz_DA2dsLH>!6;2Um2nVpy=k*NXdiMZ}$fswqi`4^qot2gZ9>0pF3_mG;m$vyK3qp-xci<_IKw0Iihp( za>|>p>(ke)oUx3Fv%l0xK{Bpfs7pn2cHYBCfhBtX&U5JYMGEMa2O7Iiifxfe-eTdK zpm!l?gY_|6GxP4;ZyBmLoYOsJKZMB@h8O%Y%jwD~SUe@==fSDL+S&%ZyT9f9T z$}T)QQRJwn>(|%c-d8i5F8atZIn}*$|G7(_Ew~>#ywm!3s89I2%cP?pXSOc9c(~gx zbjzBgSDP$D)*So3_u(#PzdVh(S46_kW}W&z@9^^v3K~vAzdoqEcaGQiC>xb=_TY!M zSWa!Z15GS3d`lM3Xp^lBu4>_bFst(ASWSu$u zDciK1DQVW{*}6M&er?cK`x922ckTQ^qm7(CELZPK_$&*}`MufHgZfL(}w70sd>ihBFP4^_GdY&>*Pl@;( zawT2F-(RqD%fi!|V(EEX)_3U5Qk!B>tMTCK<8n_rF!E>O$>` zS~R)2s!jcpf2eOYHC>wZKQ{EgwaSa%@2}}9q&-M~Sswh8@t9nI*tgn%L?6qFnJV5b z2OjSBk-v5&-{2c>sPwhn*$)C2$ObdiJIp(8JmclTSu#onYz&f?ALmxT`+3eb-d@Wq z?QYDZ&MB!+E>;_S_MhhB+H|tu`jjQ7LwT=TlpGOSE-T)8_yV_($z^_xxo)dNwz#MT z?&B0qcNflhCM%b9hoB7>``FpcJtm|uHa6?e1WOD6C<^ktym=_oa&lYuP%07 zH`Fq-W0BIlkPz?w{S(4hOl()mUbQJl;&hkPg#yNRUEGfk$*kKYvHal!2HTbut2<|G zJNeOL;pT_GI^Hbg;9Z_?Y*WwwZSi8k*xmE3zSQ~l%WP%P+8cYkwC;Y7ZQA)e%cIK~ zCZ}4p|D2c;@yl6Lga2qSza#VcIfphC%-Hx=^0k|e@V^P_9LE(DpG!K?j@BKcf;x1#X_NiGpDQ%xFHmm!|oYD2MFb`1k>iWTQCSlXT7om%TzyCXF>#Zd+ z<;x03|2x%6VP0B3GutY8gPBf!{pd9LP&R{By_b%t=B^$;k!1qoX$F-^ zO8(BT40Dc4C)PSRr<^cbp13S&vHJR`Ss|`kk2ha?eWHGsR$t)smP5w(WG+K-mc3HYYuPxyW91?{GYuS&PTHDx0&+n{FaB3 zMU$pm-zfjXa(`|A7g^_d(+B# z|A@{+8UHQY_@{CiN&2aDdwQ3bWY-x^@=Uv2nf}~NJH2{o;io9`tXI2a&I<;4@VVZ8 zf6%n*&T^mNse!t`oUf-wxrjSOdK$zP%Y6QHwegCd{O2PTzuQhQ>}@pRxT9`v_cwcz zQ>ynJQ%Qq&ms@Aoe|~nTq`+{e_m+^kYyRKrEsad}NttY|D_e1MQN_`-=JASRKaZaC zRCB-jtJi6IooGYd*9SbGSq!39HXm&;Y7^t!wpy-QIqd(jHDUIeiwx=ZoE0CmWu`SBdacjs&)retAS5Ff^T6^jRti@3i=* zANnvqIXN@4Q~p-=AD6JttA8%Ny0k{F?zsZ{rt2TnmR$R^TKebK8aw_wS?<@a{Qt+Z z<~KuIW`w-%joik~Gds`yjrkwzTf9|J_i>s9YQ@TBcXS-bb!=RaRhKeAcC z&^qC1o2zcr5@+R>8)mOfOEO1apB#3!>XudP>9p*d`L-`p74L6)%Tar&>CN&@ zGwwf}d(CN%#rg8mjm_dr^NIrJC@C+z671NtyS3?JrjdA)!@uj7H)RG@G<(f&E4Mot zfBzru3YCorhCDBfeM+kI7s{fX+OBfS;zxAY4pEp(W8FVj9MI%37d)Vr5d zJhSsJEYJM@{qnc^-XlqZMk=zdEAKe1-5VIquqJ1P!_$rRORp?0X_Ei1IIZs~^G%b3 z|Cql>zkk;rdc*irTv>9b%~A7}zcd%lzjoL%;&_?Bjpl?OOqK4MOZXnmH9LE@XlCrf zK#jwb9BgF$OOBlPx6IMLeEa{J=)UQu&zTh;?U}jvpUr`ixQ4WA+p4Cq%Jh8*lkH-f zIsL2OY<0ozIVS$qH$NYGb*svEd)Rbc9q~^W58i7u`f!n9_0&VP^B$W_`NG40VQ#}W z0foQ@w@-h6tni%tt@@3MX@AvC@!M$b8eJ^|oyGYl;wzUP`!s`-{Zm=9)?5B>sTQuUUX^p~@egTuS=O*p=?vHI z#Amu)2ESLwzEqho@1k7<6HmOWUhtEeS^Y(u*xvmr@Jw6eS*$XD_FtpRDhH;uGVS{q zeQ!hX+_g2?>+@H#on01JXk5HSJAUO(LFcK-{#njXEs8EnX?ti){>9cF7}R4ce6^K* zMoy($RfV(AeeKn4qE{asO*s9P@txEG+a_C1o1=c4=K3t0A{xNfz$MGU=_k&xJLKo& zM~^aGST03`9Vzt?@YU73W}vwGl)93V!N$r>A}71Mczohj&Y$__roul(RqgP`-`)=b z?Rh^-tvDR9P`ll2*?N(?D$|eoHLvx56QfyW{7_m2R#jCEwH3#IxmYv*nENrIQ>Y}}SFPiW0F6}%ew14>;jb(M` zlC_uZJY+NP!Jlva=l=8lRDQ90SHaEJ+|Kw5(~dbrPk17Is5O>zMt;nR4HcEa*Q|Ya zu3fLWy>#}cYFUk455AZtt-ap1HBR`}|M2+9zh}!onEn26Rn-Q6`wPcim6ioPvfU*< z@q!v-&Y~EJCB2?;$Gq>T$OI6cL;ak_5--@jj0AXTn6?}e)M zkAF%9-@9i|^(}~F_^$TFAd|9q7zc-}glxp7sGR+ zZ;HPeC*RybCh#V(%Fq0aF9oB4~0 z`;LCP=&iG8W#|o|1);xAXI=GOy@91%FlOy$!nD@CoRo=|-~)w$L2r-8taJdOQ5t{0CuJbiRu zxc&a0w4kS#9)9Dp{QB(o{WG((5B|Q-_P(FtQ*~TY|*5c5 zsi|CtPpnv#v5n1svBW2j-4FIIo8Zi;`-ZYbydh`LkLcN~T*Tp?uyTlh2&slQo z$ovPdl)mqswQ>KxuzrER>s7yQPZv3C!duy5ctS3*>(kY5$LuwNdV{w9EtlOndF_>y zPhvHG>Vki7?Vq-1mlNkguTJ~0AlvnS&*!Un7x`{vE{wSL+jr`vSt30*Fa6x#WElNC zS&TPgQJArNL7xwM*Cy4?d3C2h+}-q7*Q4@@;^mqr-z5u`-{{wb#{JaUFW)? zMR7qCqxM6ljh(8`I*bZZ^KLxdwD+KOlSZxh{J8!da*<6|*HiBrlvG|WO_#Gj_S17l z?c@e+ofi9xTISDBI=?NomEE3RvuW0!<;!QhyZ!cR&atXfS!^Hv>e_sdmI>#K=@j67 zA(&(TX-P-m%`|&C_I$pKm51pbd~;0-qi9r|2IBdl>e=udiv&r7e1+>m%&Wcj`1VLJsWv9zThzvaY$``$FZcpkguQYEWb-}Qobk3KxUqAH&!e{^TJ^S#--9M11&`1_0H{q=GAKM@1b3O}s_Q!sL zQ6)nn@0Wio9(@uvnQ*~pV%p2XXB%0R-z3X7J2UCYg{!>W-ETav&1VmHa$b5q^Vz{4MS_ay(Aw8~5UY@g1;;QxCz?ETIb=F-c5?M{v^ zQ|7D(pOQ2K`W&9?YHgTZDx&r9bhz=V|b9VHVYtueY z^;tHFGjZ3cbH`GBy}Vh(wyis&qr7PKs@WS-CD>MF?-KR3Ouij|;(>GXhFeZs&4rZj z@NF=E}}dFHI^vzg6gLKnPP z@A&qN$jUY=r5AI97HFLkwBKSIp`xoNmz*f6VJkjE<-ptxJX84QZ}w1qll`gY+>S(h zg#~}jB`hz$*>Az#**W*uip;)O*6M6}NiQRGYTq4lw-Vo9zp?$t(Z4@Zau(PtcPLx^ zjXWvnHtUi|reM_Cmc8FshAzHjXJ5Y~FNDLg;A_c^;`XrfXM}??>lfFh?W?U*OJtm9 zQUCAH{loJ7kJ#C{UMg?!CU>qbTK9DR9cpP0IUq9AjZxK{p~LC4_iTl9 zpVXx7hwjU?s50`3tFDxnsgQ5|Ud#H8^Ge?Dy=e<`S@&$)eSNXtv&Wr&p|c(T?|$Ih zP-dO`?)5#szaML7yyky2gZ0v)MXi%06be^~s$?pj?QJ~C-9O{zMA_TRj~kWkO*!(k z!+v-9v97Fs2F2?AavQ@%F3YYu^ISb{W{_@iO{PxjgvGmD-=}w8u$yvOIAgcD_8U%% z)qNpz9{(wt!##)Drum6CPq@#HEQ`CV9x%Pu$ey@i;}>h6&m4IVE9(xu=D)6xd2eC# z+v2-6P1n`#?YMC_@1E;J9@9+4phofO&K$cYxH4N$4@ls%T*`c-Fh zP49_cIhWn=+~&c=f9f`!QIoXJgdAZvi)v0j&-1v%*(hCNrD@DAYtMw^8#MeD-?cbn zb->B~$JO|&BC5+OUa_ktNs1m;y2KvJUnG)yS@%Kp(+|t?y7PDcDN*2k98f_MvUKQ`&bggE=EUxkc$~D#1Te({1cd5yG zbG?4E|NMv8oX0(hb0#+2O#Zv=QsdOKc5{;Fc()Y3j(GU{Z}N@6g9Z22-kNi`c74d) zuRA|>+KY3kNI$t5o0hV0+H8*>!p>V;uju9J$O$~l(E1lX(^Ey#T+R4&!M%-HFH7$# zIW2i`P0VO!PSwJ&a|Onif<4a7e{}MXP>!T`MMSm8>enyaj;J=&2i@RS=6i?k(KfgvC$(=PzZhT7kFOIIXG?na2AWSi@1DkY zJ=lD&p4#j)2BEfD1}pz|{dssjZ=sc9!_y`D^F$bzkNaN41UJ zqqeENT9*=}R_VO7=UeNECr$doy`5Z9ev$HGqOM^b*QUzXFn_G%(U7{*dHRmsrbA~H zFVtxpbp4q(dBIDIUf!k2Q+;;LF^)3-|LpA2nKOk9mJ0^zzn9QXyZkd_S z_1r%rgvqn$xP%GK#z}%f zkEVU>mziDhwDE1>v19h1s^ulyzn%WyJG=5(`JSxy%ws-h4I@sO22K3&GY5A-44q43oFL_-&hZY+b!yj_J+iroV5w9-1EFd?YH=kd_xZ}y1@b=nV-hZ#+w$(~Z3sne=c>O(M=NHzTzshlC_e`FD)PLQ( zAoGj=4hJVQX8&pJKR&)tz2xNaSy}c=w85{+D|S;RZdfe(#Cdt5s6)ER-%oS;m&7yF zDPCAy_`BTui0$=vK`hpsKLwMu-STEDz0WuKWV!fnn{w~5xcqZT5o_9*-@ehfA_PEnFL&)t5Qv#-^_mG?@5X#kDKKr@3ZbnDs}0g64nj<@Xch z{@#}nSN|Cosueb|esx&XSJ$0KQx`qDl%8k3!MJ?GDo>ZvRPKVu+s^;dUTO2^T#6C* zj=-?Ro3fX`Y5lvtO8tGix|8(oJsac;l2_gcEOET86C}5VH(sS@IrB>H9-Y)U_g6b* z-=6U1zn6dP?c}nUMNcIB4W8C@dhu(mF|ds_cyE3}bo;*7*G|u5db}g)_~UO}cX)%j zCcn@Kes|*dHBYU)NX~f5s)7X9BddCa#5b{o@o8LhDNb|~HQ{*j zZCm%8okGW%=EzjVwAAT`ev~z5@Gv(>D>&x7sx~xO)-}ZE+n&6u5pyJ`X>R-Pdv)I_ z{R9CNJ8{&qoz5C_L zRDXPYw88(c!}cP#7y3J`H!RfM9w2l#{mSOvBRWEPTdwXrH!V8XbmG1>VhP+Lb2CpG z-QJ$r^70g?io>_}{Wls;E~*!6O`g|vCFQMrP|&nct^41nJoM9=b;wuz_WZ!h+u}8T zcpmqBv@>P-jHS;CPqkDDP6>3I_-oZPwx^Gutn6L-bzNPPj&A7}xdM*d{_=yH{n{_P zZs}-dI{(~b=Yi`U0qQv)9`!Y^N!acmDR!8}a<%J{Z>A}huh%~I{+7A&PyQXjPE}uv z8RyCznttr6uWOez4^+Q;b#01Mcld&Xfpwu8Y@6~c+~@zzs^3-BS@UU6=Av+C@rijX z%da-BUfMTj&)+9UjJ994KV08>v>bRuavnVyYQmV>LWL=9t$}TGxdVnhUHI{q$A%?y}h+IET@Ina_dW3>wg=V z87x~5)YQG-A$-^G$jgm4_s-|PZT8}F8uPZ9B2tI=9*Q;`W!t@R$(PFgCR3dho@AA7 z*mOfte)qR?9Y2`$7&A9km8(_1y(+D_cWTy?&u3pNNo9}#k$+5k*YW>pC zODjBkj<8u9^|z&2T@HK6F?WhdnPl$%1HP-?JyHw(Eae?;;@$0fW5M}%9NQnL|!tANOp-)wePfd$^tjF+X@~zHhc7K~gxt}|VKd>mOEWXAt zUomJ$O#1vYDg5&+78ZEhzqtPSKVQk)-zUslS2ym96t~m=W6e0DAlrp6Mg74!t-koB zru#MWlzrbVX3h}%P<=Vy^rAj{>NCrm^Jlx-%ip}GQACq#_m|i}%fMCYCcaZjZ}+NC zI#kJUaO;eohELm#j|z%v@j7T`88vW5T0PZe$8KZPa%q~_hx{p5y+!BLtT7ecAy{!`{egGUtdADHQas%@?Vd${ z)aR+iH-DzosxMUf6Y`>p>xRL^J)cjP-@7TM8ft#D$=2-Sg|*$spD%mVtEkm=ykzZ} zhVoz+38ORycggu@-$lmO{(q$};AwhkQV!e7PS?8DS#1-4`?mV@ZYK3u*ZamdvULg_bUTmTx~gP0?f1b2 zigTDUq+?Tdh~9~*;k)_LWzL%I*Jmu$Y)sO<_HXsw>aJa@gYO2(&X*D^Ebs10{&jAi z>LIRwA&qOaXL5R3(^4nDA{`;^bv${&J^s%w?G;{mgH{JK0%N1D` z@XypdLt+!}(zr&&+-ctX1MZogUuu(~Z;;kk=%`!XEn}=*>TT~lsU^r_&c(IA?Dsc& z=l^&p`|g|IT`NzQAaPaCHO`NgES&?y=>JY#eB`n%?p6-5{KJ1aRP2s?{3#%&kq>^^d&nZ+Vn#YM#Rm}Wsl zW`*gF+U?g}=JrGt_A+p^iS{4(lkR1s>2+XohsK74T`zX(%<_1mvtz?s#brW^l&>pw ziP=Q zm%5s12Mz>%l03Xb%VuSG`TP63a*J$|`o&FkPiQWY3ckGcRe|4m(U)<5f3O&wTXZle zdYStIA+2n#Q|xtze*cZm$USiNn8@Sf3_D&JM)LHuK1*YDvHbry#b<5zt#4j{xvHWtv&IZar!|MdAks;;0L=xBUN^vxqs7U?aWQx z9hJx02L)mtnB@syYcW1#d&s>p?gP_F+er^axmX;9Zxl{bF5V%oXxzl* z7!qir)vM%cw=QUHxb~dF=DFNvTs>MBR()8(6rHCaPc@_5+9>3;v(AGeG0e(0XpcRcm7<0jwk zU|ad?OFLfky2oB+f3+^ft%y}UU;E;wyqQL8w0Uxcq&?LZ&8m8_wL0&w+(E8~tS5w% zsv?}inP#|)3Dthc=POvm;UQ9>aK^FkiNN}a@xLydT>ak1Q98visH0<3GT%xmQDwI) zQ=YbP3Sa!@ebOmwhmLE)*3(@%H-ai9GLn|9Y@4)JRVQ-OC%J&ARWo*dezkY`v|IDl zf*5$+k9@dg)b1vh%KY5^!Uoyu^XD6@r{A0L^~bCx=N0pvW-em8vFpIzCstF%{@D31%Zi_MgnQxA zoCk4#FZcF3#BE3`df2G(r$l+j;|JApmBsNkN}IOF@&8O*xm(TPn(%}`+4XYr&th&^ z%_v^j%$@V5wzBc{*QlL=D^31!SAPgwmi^^KZb)+Jvbj_9|6bFbQTVN2vud})H8Y*? zeJ`)EOX@r3TRWM~z5D6x_R|Ny%FlOQ=KQ=mJj1!$EIReUCH)PzS20Om_~?*-?j-Z? zkm5L(O1|ysN55T{{ry!o|I78;d_SeOpW4wXUtLyp`=#xRX?6UuPru0>)PJy=x%RA( zSNiGCcZ`+>Ejqzi#^K$qvcNd)Lbxa@Pi3YWrJj!6`|{cBe5>Whl`iSd z{FJx%Z{-?u9{+lHq#$9M2#ct*Q*U-h^M|Ah9-oc}?~=Ot^3=SoFFK}q ztE;cf?mVYtY#Lcop5<`T=d0+%O}CybnKpHf>*>jN=L&}2pK--_uD6b@t*>kB?U#pU z^=1rS zPd%`HiSzr8CQ0-4{Q}|Ux>0KnzL>_h@UEtL(22qjAS^YnMEBi5b!t+P3aVqyylE##+CiO&A~av!iQLE*sLbGKhf+zLgN)wotU|euJs!M88NLmihy;pK#>&x~@8?9}s_BDz=n2--De$R-19s zgk82?rE0x5ex_Vl`f|nWeGBZ9_3+t25c>mdOO>%_~;>~?b{Vj#~j&zCoukx zQB>4lqwrXseY=%7@-kF!yqXzOk{nWK>LsxA)nf5IlJ~BEe{|v9+W%*JVn6M@8aL-q zmVVqE`7K2o?!HoeeRP`R+2eY=Gn3pF99i~n-iye!Ki258@Nd`Jwxdo{JmW*h|Qn&@=SU4sy8aOpi)01hqyHF-raxz=v#a$Z$ZWszXWQy(RFZ90A7|56?Hf5I1 z!|Tt}o-uS;-Z&z>#^vu$HEq>DUJg~twUM(l7uHUAeqOQr29u8Gy_%>{|JCsy(>P~- z{q(*t>h$8|V}Dmw?f*6P`KJI#w&$ivZ*)_B^T`;lY`-e-fO3ywkm7XfQ z_|>=D)2B@fd+(8FUsbYu)z_czSZ(r(?cDzvpY`_3{!-2r<>Op^hy9D|-;-wX;TH|m z7q}-iI%m&6y6MDP6YYhD%IB-K3W{=z@2~P+Vs9Wb@nnGR?AW+%rnypcgG1^)uP$1( zEr)rYpdq&^x1-w4xogbVKVxUndYV~*^@XTew^l)VN~Usw#eD<+S<<Rk0RbyLRooQfTQlMx^ z_E~poPq@vo-sdsb0p0Ko9S7$hPnErMQTJMT`|Gs~FV`^6J+R~Y^&J~nmv+m}3Fkbo zEGu)Pcmel`*++7`XXanb5?7t>z2(&JDd+FL&)=POd)w-N6OS7xhkv@fZ{bCUM;2C3 z#PsyH#4k8H=c%~PUzN&3r$k?R-qrdeF#p!G&l#x){pDnDo!@%QdGWmM_e)*2KVUX4 zIVCDvF8D)f|AqCdrG(>n4-1uPZQsJ0b<;b-W1`iCo^$J6(uAky+2aj=Nl5yBfz`Nr1OZU%|6?G>T=;CZf9C@G>)0~?`7}u zeKBE*@RXvR^A;U>T)n1<^|ZUhr(=uqw5D<%Qrl=?6PUPap66nBn~jfdKjK_bTrIOM zrX!o0^tYGXZFAR2XjYoovGml`PQN#DU#>RIjLIvz z?c$vhGo{a^{i>mNi*?d0y(=?hJ2kFF6lZ+@xbfMpisR+o zn=<5Q-Ku*Mkesz&Vc!3G#{K^c`(H*lzN|=|EdRnxh&@RDen4KL$pXumTTi~;r0DtRuvz%olfglIg}i|_b;{D{NE=rw__#P=yq>=R4v&^r<2K6^vV2l=Xw z*|V%;>i&1{p6M69GiKhLOKZP<|HEY2_2}6=%hj1$zbEAyn?KuR z?|oi(x!kj#{O0`UcTL`J@>Be1(#O))^*=T|DN}oA+|!bIhrNGAeA%%a1&1r?M(t8B z-F=J`XY_CJDRt-*5DnU}F7R8Vl!#B+mS-FHam>xQ>s$m*G?8py4RqnlFDQK<@3+;if`;2)BW3j|2uu}WBjD;zt7*9 z^!v|kW|??au6GQ-PO$yBdwYvqoZghxF;mZf{d#bH9cTQveZ}v8E2em^l2M-I6q+!_mbqc+ti(I3 zvqe^LUkP8K|zc($g=u`@DlbWpRTHdJHbSGlpyc_#dmh(8w z4LjrUE3W1F^Ps6KCa>n7Ef=(LuSLV1cgsavN*}uC%@B%+?OGxASUTm#1>fxr2lRP@ zBAze%cD*fS2Cvc7cZ;m%wej^|*_6T5-@U! zT~Tinb*v{;E)uzUFS|~_dSUYME1h{|iube=w`@HYqhrI*#`xo;)gSBj_On{^t}ea$ znMuZ}dSye{;qN{i)vejB+YjcoTzl0hb@A|pYlizxd0nKpFZtHAUch8kMr{XAzV@Dr z-%FY1<##W9`ZZzSp{Xf4hS#}@KL)dz%cS@0;nhg8*j_)i^8T#KuV*Tab(tS8*Vy#_ zbeGU%7t36suU}VjtHiKy=pSd?7S(lNDmTjw^Iboa{_}R$#FRd5{A46{zewgD+xnD> zw(v>U4{H~D&h*Ta>ae^ll4|+Z%g4_vFgnP^c$Gk?>LL--#FdM5InT3fxj0?>fB1uy zBErpoggi?UzYEE3bk=6wcw<6Xlmn+OXD^!$r`3}4$2+8R&#@j)nA2L2o;y`)?ap(p zJ1*V(ut|7Q*SEjdqv!OkX1uwXt=^$J<+irWX6y9z^A+L**7N>YW%aAZq453LIjasQ zWd2}JIT<)ZvUDF~&A~nU_6i=GaJcq6=eozc_9XN7-dZ_F!es|vO?JThBhCrotNtES zidiQ4sLJm?U-B6jdxLq3=kFFT3i1llRC538@j4;*|Br{+n>gJr7)|R~m6v|}a&Yux z<&P0eZp~KPB+XL;eKfm@9?YuV*L+EM@ie35S2?V=t=_h~rlc^VTQAVzq=A2j-J2uY zJ8w+uJoG2v*j0C+`(R{&$QsX79MQ(f3H(mK}#VIHNK?CVabd zd)duZN^CsQ9@e~TivEl79LvouW5u<^6HF22NC9qx^;opW*Pr8_}$NBUT(aVwfmIcHlul0YVDsb zn9`}j;P1LdqnWQjTrI6^S?uB|7mGH{*_ycd;tGwb%bjbU-U@6k@ljuD_bW@N;(T}J zT+2t_BUO2B?$$U|Gw1Q|0&Zq&C81f&-}cUzu-5O%yKVMLR9RAerkv*TH7+d^b&qpq z*3@~@smtDes)^jJ6UB1J^5UMZ=`MHV8V~CpP)^@*O;3jLT*`)XGR>8o z37QgFLd?EQK2K^dNv}U-pxQ3=dFRR+?fvy>+g9#r-BY^oYE;CJx-0vB`7XcafA$>T zQ*o}%?6Yp#<~064ykq?#(-g*K9fB@guPYAm2^%iTe!rBjcKtG8MOIIbrA{P{#IZ{fA z%OW>}i`(}dW!}qLv?0whz?${p6!-sE4SR0~6co))6xuzxNTJ%6-JHSnZrYQ3S3I9o z{I0lr$m)u1#Ak=p+Wyb!EyYXx?)86OddIZGv0nSp=j9BK@3$2Oo+=VGex!Rmi>Qsaj%&(?U6TJC2VGJTJ% z|M`4f%X70*L2P=8p~j-K`zNR9$RA#F+COQ%9p`P=S1Vp*33@44h15LdZ4;Y6YrE`3 zBg;0`B(>GD-PvyUtEM(6OCRn~y|^>0(2I{(*mM5eIFl`xPj`NN9sm25rfJeEpL70C zK0mp3y(`Nm>O=hRtVRA$yC?6Prv7-bkyb>662I#${`=Cs>1#G#YFE53-PM1Md#>$6 z_YKp}CjB{>r2pl&Qq$z#M&5Z4< z&c3s&Ncwf^*N@bduMOnBS@tyK&YB*6{G_dV+WNb(v6mK1u_}C&@b}cqtVYe!$cei) zcDsl^uspGNu}EWF`@xy+)>||;p0Ks5d6%(i>Vnsu=Xc3p=O_{LxUsF~+U40H+E3i= ze1x8+sTN%EU{LLAi+;b&XNI%veZHk-s#lF}>CQ51RbLR8QkB~K$mL6<&)&m*6XaDT z*1InBS-41kN6DQ;_l;unmPN3KOl-8;5*@I&yHrEt_jk$a?V_U0_suqm-Bvs2b~k;WeZ=NYCueL7;4H+z!K?)@z`A5-r3+noxHieU(%4 zyMLclW{=Zk<1@DQSSsqqpMS1vvir17joCthCHn=6H|<;Nxvb_xXqL+t`8^NY*lU#n zul>91AjY~Rd?7=+`v2C`>%?7Oq^7Cro-Iyvyk8L!cyr@q^?t^^>+5w6Ee#i3ve)ie z&1F~Xi0K@EKNdW0Xsxih6QQ8ezHhApzsxa(R~Zkh?wz`L;lTP<$7zM-_cl zZuH$tPSWh4sG|Q|9y{(u^EcjOTO)G&Y{x6{X{Flp`S-=T<~`?{T3^@Xz4}$mlF)^# z116jfl4*D^(tp{stAwdU?zPq}=l%b(Hg-MpZal(YwI}4L?XHu5H&%)ZAAfl6LSN;v zJ=Uu->`dZq3*U2^hjwXP+`YW=#g&zJrAlJWyi8eK7GGR5bNk;crKi&;OMKiP;(uQB z&2p~G0XgOdlWr~W>E{gRI?i(NZOvVsb7!kF+>?bX+W89?*Xy-A$lTAGlCf39{p^%8 zQx8ut&R|k$Z_`-)XLkPn`Lc#rSU$X4l$mamf8yE6maLwXzs>A_UD^b)7})2mOnoGg zHRFIvY=-?ob#B8S>`y$F)wp*(rhq!#+$mg(6fd6hKACuGZ$Kdbi~Rp3&xk{ zHVXxvRPj3Xt~E;F-S%w)5xc(p?5J_J=$T{7X~xi&wv%yb$kW6J%UxbDykTDwZY_7q z(ST8~EPN)nZ&Bm31(BS~XKK92Gnyo)xG8PZ-QdZ)k6d%~O#I|0Td5ToIQ3y`R_^Hy zY&pV#zT1Q)l09v12>HucR4COSxRfxVL)g>pYf)5p)Uuk-Kl;`#es)n;J~%{cGKZmw z`^Avf3+30g>0G(z>gry;qObhJY~N4Ex5*fP+xL$5cV3yaRM@qt_Qg?ZOw|c&d%OQQ zZMkyw!nCM{ZV|uB$vsh*dS7n!n)WGX>6G}`Xl3un^Mws_A|JJd_|03x=C!nDUtJtS zRki4epam5ydOjlO|4W})pI`jPsQ2D;o1}sdrjB|{8+R}=em8ozp&;kl;c#Ye_qy|i zcMeBu_K0t2kLKUq_jviI<)_YmT3PdIeu(KS>uaH9MfcxqOWw6gIcS1Jfywc0XWx0> z`nSzz=bW2mTOYeyu40b){(hk!W9p_*KlzX1-&$f*rmfyCwb5zf>_G7}LFv4lD`KB| zo!h0}-cGceH2I~M>fHEDZdT!E3sv-PZ<-V~T`bGMR`>7CTTCaJ%VM(EKb_q3!&xeC z*P7kunDlo&m|btq*(CH_{&RQUwKqo-IhF*SPoH`AtIhOEmH9i5)vW$sH$S|%RIevV z$nLVdeoM}l=@*KgYM9&FbWUMt@_hPs{okECd%q~ne^T{x&VJ(`wdP`E$Rh=ue%bCT$PU5$Wr);ol`uvTb7HE2YIov1g z&+*r=C}{5b;?lidReoDyvd!ZYceI-B`0sL|uyM{NeP6$;*0VH2JYpsN{oPkyX)>#C zTl~W^Q+*!g!ihC)CzqdG_28kk^SOJ6JsRTFXNk0Z&0sV0Tx*xSqBxz&{^!-J2lD^% zRKM|&IFMf&%K7;B+{F8~hb2DA2JjsAcI=yODZD{=hNKbegwu&9zb9mt{=K_LL-LrKwx-_soLJ=bINQs>T{wM0Ou@%O2}9XgEr-zuu#dR68wzT#QV z*5k3Iz1y^op5I?ly?ds#{+I#<-4!Y@`B8f^Low=Ji*M4>q&f9MrCw{wnwGZmG-_C11_Hpsk%fBg*dOk)ErsH=VmR z+ir@O>Z;30AuI2k=uT;#WF9spwHdcJoszhV%ZwU+?b3-ZzGRKU3nR` zjV0Z3ONP&fh7?X7Ra^T@p61V61J>!8KJ(nW{LFtQ`)$l$|Mf+cd0hXr%%@}?(}VvE zpKPxhnYP;8i2oAbq*ZY(=2~-l+YTNGcdOmt=ESs-!ZEeW4?~BE5hkg>ddd+A0-82CT0Sw)?>Esp-z}DzIA?vs#k`h} z(M>l>V@;!)>qDotui;wLEga>xc5iLS*$m_MxWaX9M}EKEy2e_jo423m_&2XvTA6Kv zrYfB22gRpwm_%M&k+mR%Wyc@s#@0aJfo8lWaCm-H>#69}T2KKr?^%q{; zpKD{h@&%vn-i<0RrIZuZ{~Y`8c=-S6eYLBcuc+0f&3q~Twt4lx|8JUu1S22(oWJ;^ zd{p_I(&x`JJ_Y}@InG>pLqFW|?%DmBUB5;Cw>+0Qo+SFzHRJs`^>wr6?tLCpo&5dd z&9et@`ujW0fpl{0q^B`?D?Q&E^-mHqq|> zCZF%!)2?&m3*-siQ{5B4!~e&T*89N<(>q>&4!U&eeBi#CP9xbaw!ODEz0GEC;*9-r zrS6I99hIL7Cjw^Je(>!0_ak5YU*Dc5HSbmnoKQ$#_*E2N^793t+FmcKcrEJp`{3hWt``M)PfAwl!^gl2$dH*BPJ%XR|BFlQ^S51>C z{5q+A&g8l8gC~b=a`4cTGxWLgJ;1eS_V0_C{Ivlm87B$PRD378IH+v@k#DDjEVZjD zDqB`P+LUr%e(C8=-w*z+a)}aK`O&+2rHbqV#rjsGF7}3B>%Sj2<36nB9nJZlPvcl% zu$1jXd7(ZR9wpJu>~armSSL2uPx@hT-F~9A&fdQv?w9s!?%E^K=2&6FvGrTT^WZ08 z3e|sR{m_0gyNUA#--|TXhRmY@f6u5y<+8Tfs{HW@v-DxlYnNE0;`m3lOKIN3GqTHS z-0HsXShn|>=`6E#S?Q&J*SM{Fpk69d7WdI~{lpHNb$UA&t(uVTb8_mLZ!;=iPg%BZ z%?hbG_ts~=4{u)Fc2MKUR8i0A%bn)F`}v;Pu0mkJoTDqQt+?{E(KC?!%9;iJ;U{)H zE-zXYoRqxm1@2i|6)}PQBpVG;g-pujEzd8PD!)ef=(qF*x`8$%I{B z^q(vLT4c{MF+cKf{?U`0x9T?XUzsLfw0^Uni{PR%{rz?KpVY3lza!ML==LQ|2J_qc zUrrrfYenvY1ya?e(hy zJo{HBn-|5p{AT{+616aGk+Io-$%-bi?^=E(vIldq|f2XC~I++~N$v(BvGC}Cr zx48@bHI9Y7u6xiBEm=`h(*A4TjJ+D49avqx`Iv8>3;*}|+UidsLC3F3_=*^(UFvp; z5$Bl5VJh+AFhNoCf6B{9XorxEz5M1p(*E4?hg^S(kDjPq`hjJsi{^Xr!@Q3 zx~U$%DaWQ|zvb7Gikf$)j!I#zG}vg zjS0PWhyG^yeR}X<_rkY7KBnKD_3)h86NlfHA^m~PLhjq&+R4?(7QEB_anwsrWS68= zwZR;hI}4(YI0&AIC{tOldM#He%X;;lng!40?ymawi+Q`y{NMK%M6VICIa>3{@#NOC z9z9DJJG+)w9J{2nvmGYSny)yH@XBP41 z-d4#B30b=Lg^p^L&g~o94(7-%Gm)0^6nX4smbkL;YDwxct*AriefcwY9c4YzIMcvd zBS^6BwATJTzeN8md8ZU0JGK1djGRp@k?s8)%zwkg{XXi~=DjnQD`QUn^Re!AZOHDB zx3712i7uAg8?pcG8#c+eUuI>veDS@jwt7{@&WRlF%@$oeSoc^>{YlVYx618_d|x8t z3>%NgzcCTqbzo~!;{3qU1(!uw4_}B~bGhV&aotJlHP_<{=j?x)ke%4L#iS$C)NhrY zcIe6fo7R-BPMa&PlYRBmiLc8lzioea>-V;)=bfJIYW-=tgYn42`FFOaFHK(mSyk`x zZlNr_B0u)GMX!38L~odiKb5~AW++s(<(;}fBg?Yq8|ad;;dM9G57+@EnmN1Wv25v?e8uBd_*BpV}6wD`=wJ`=c}BJs8h16 zKHxJe{QZsWS^cw~-IEQ^U$b}-AOGrS6-7qx-_D0gWL$a~eW{!2Mo#Oe>QA>PGhF}VboQj`*7LPn_UcNp z-g>Y&I;(5p>rLLdrvuZ!e{YUExqqs#!2d!c?hm)-uhxBG___G}WcwrPw%;z^yd`#k zD=B2zriz5Jnhm~QkJird5d4+u8~Q42_0_Dc zDJQ3;cuq^HoT{Tg>0=YG*$h<|9kVoEfuwH=hisB0j0$fYW^wb8h&$BM!fCVV0JoYm z$6JaUh|zVZ9tao)AB??rEaU-ZuM`TqZPYs}I#vu;gy%=u_? zdc&e1DN#+|w)y3=j#Nxq$@RKcKQO{BXu_R8DKTHS&Rq4ZIMle7`&okK`fb|wuCZ?{ zw@>lZu6*Rdy694Sikd&~BsC$KbuHcOd+&D2_g(*W=3p(SQbt*Tv}4TVZ$gpmSJdq% ze<{koFWXz}nmz62HO(V?VggIg8Yh4Dsmt`WoO$Eb{)OH(-}~;oO_SMaCF3aCJ8x5t zRl4YT(|0$X|9l$$)%eWh8;ny+K5-qHEw_^M#iBx`>wl#Fm}zy0d+jT`ZL=t7=VtHi zx%=~8Zd>a4>B6TE9j^c5wywDLTd?!P_b*SL^qtQ7-Yp%$sT|ICme-?qp1?$j3oG93 z5!O`=|N8TBZApvpdiggyU$6V;xL(|FNAK$p^8&#Y9J^I_Ffd6hZ~u1+^1c8H@<9i46V(3+_mVa znVgtZ?t`)#rx*e0>c5fl&zW~BTkwj$;hiU6UK`gPop8lxav0|lm$esH)jnX}$~-@K z-llxz?VB@~UQXMe_pc@9g{_Ib|Gk>JZ{eSQGMCjU!@9Q)zR@r@-asT%cZ$7EL{uKqYw#(YpWR)a6+P3)Z;u(B8pE&nV*~OK9Au02tgW`_2>LrOY3kkWb#K<@MW&YchF(|M zpgm<)ZAsd^BERQvdsdgvKFeBu;&|i>*P~JYEoKTkvt;=xE4NPmqr0NBH}adS-|Pgo z3nghMGINwu7E1Cxw`{e1*Zu9`6A#u#b~eSizQvlqPW`*-5mBT3SmDpl6%p_IR~!EM zU(a;BYPd{h0(&*d$L?pJsI z_`$vL&KLRf(|3NUUa5ZleRaWg?-YgucmBuh{gdDM>koI%Irf8_d%tds+(2)C=_kg0D&-HZv(DN3Snp2N+g^9g{Wh2F zH8o79^=Zef)SP2iBm4AN?E4q_b9X&lI^};%-+`8IiYt9y_-|WZedyY9Trj<3(=OB)E}+3A1Ljk@`YH81B8lZ)n# zr+4n(KEj?c>v_+ov{mPg=L=WQzoFe{nVz$9dKruHiO=iW#Ok*M3%!}LX8y{H-x+dt zen^)~cUjEcuk95+>8ZHL#o6qyLppy>t5yi^*AM75un;(AYuGKZe|aoxU-b2v4$uD; zt(x;fkMp3*)oBOZQao=?yOX7!-^o2Mnz3igxvE`upC&)4Q_HQE-l|(#^xP*yt1(PU z-{;-ls;Uzev#U0iZ*&z^e%qdJ1rsl{QV@6 zpoOWg^|TJUYj+l_Z+daiSZMma8Q;zrbJZtX{k<@4XJN7Z9-aH0YOOyPwQhT6`t{y_ zuh811XI|Q`$niG2%zB4kc*EwWcXlo*O21(IK}va%aF=AoY43f^{tUew>Sg91Pj`I| zDiO%B%U4_(b!&-C`JZ(!3ObvtihoK5bXZL9mHVjSWOUG!{ZonPx%#OO;=B}U0(K;> z?w?#0E})X!%5*DjQRlVNGcGGOwCoU6RsYqrYcAVMC-Lja#W~YIE3xMI1k9G3yd?gb zYTJPc`6bh5$7P&QOEj5(_xqt0NkvkgDkhE_b${{8=!o*J^m-Ukxyx}X)8(Xi`9mvL zuJmA=aj``%&aiumdt+q4iap<3w4|lC)_0t~Ay(?tRJv^MyyRI1hMidx>V7&aojRJH z#5DP*XUOfi#*m_`P1Y${H67WP@5)|pY7Le!6WsUHB#Ci*onWw+alvyR*=v<=SG{|s zplbS%Uv;Ig>^ZF9{$aP!&=3Z|;#*i-TQV zo16Nw*Bn`{dE9+Q^3%?kTr=^Mn5$+#H>~RS>hUbCW&1bha%SmumsBh16!Yz`&2Ahh zYkJq7A0rZ(f1&K#WfpIhoj+fe-t&Lq#>-^o|K8ts&!>+Ymh3%jV(%fnG)Bp~ zoDa$tnX|gv9V2%yIKlr;dZn#~wnE%|gVWDEyc>9ZelMj_oFqoEW zl)yfBeSJ35G1Z;wj4yN+W!6W(yK-1rTi(pE)8|Zh@ot}~{4<}m^Ie^F_F?n$!&S@o z6s`T~KF4oXs-R1&c*n&npSI7wdh11lb8>5q!B+iJg;Jx^=vQ)Q-n^@3*wrL0xR{5t zRJhnIVjG*T#g8|^xx9A2)mLnBSiJpdf{d?-&tliLyHpxYZ7(0QjScvyy5qB?eA-;i z*iG;GIl|RM+?sydc*-ZwS(5Hk9LZW)ofC3NtR!=d^}HH6^Rs*ReAjlra9_Pu9~sLuT{jqi5>d*pV(bKG-e zCWM9`I3gJ$V>|Z>kLa^JodKl}Y$#;f-b&z_p4 z#`y+<=Ud;NeLdSCZC%Y*Q5EIezy5!jn)gEAH`w*7z;x{w$Iairy05h7X8o=&v7Zbl zCYy1-|IT)1*PHP9dG`}~S|?r?og69uMx`-sy!1 z|J*+8p;{Xe+FRGOYvH~L2B{Jz^I0QvSAA+aa&v=P=HtGzH}g6*y8d{H*v@I%wmq6{ z<2NZ2sqzWm5?i9}c&2UpAopF5ZU4f6xwb1;`5VP*pECaltUH+%b&z18_y7a^#*8jYD$fbYN zZS8hGD-haZ=i|G#Jg{Nn8W!`v`*WK_j+Wm)ufOJS&K_~)8TQZL#`ifK)@SD7)xUl3 z$bYqM>py%__vFg|E2Q@@*rq*V%^Ll4-^I_@KTN4mUjDD~VAr?JU$cg@l~A&;=;2ysal zrpY<+m-KxSYXmAH)@Q#fiQL=m_eEvF&D<+{e(qZvvU(HaUyr$4m_wzfuLx;6H`V!< z?N7TGYv!bVJ?62}#@Jk}a@U&E%fvn|?2NWKJIUv;%Ky5(nO7X|E3`ZL%C^3ob#gz) zUJ<(o_9fR`-?Hz#IJ0x3=(-oK!tE`WOzvJ-I!jOcb!-#ARp*M?yGuN`9BluUTk!h- zA~T81wdvx?9p$o9w|e|*J$vEz)vraev$ixVY5rd{?Z>|bt6!-3&T_hTan8*t?v4AV zt#-BjJ?+)g((~mL7I-B;^H|Gof0p%yp_9nB?gy9%)Ic`q4{;)rye>UpBb^_+=r*Z=2Hi|s7u&h*xF`4{(lEX43-?p>5hYft)r>gkvjhZsQH|4zk zZ$)Ft%Ni3W8qfH#_08NRITj1O<>YM^{FS}vV1I=t{<@mXGpl*emxW&VwBL2-YU#E^ zJi2oqXWC!tS=jVa{IS&inY^dg={4syxxLr1oUheg#aOdolZSpFlbFg5o~A?{dxL_@$J?3wE0LFK4!YE3v8O@sAEh zd*#RT|6G^1yLA4z(t5Eu&kD}I<8gnyt#7J?#m%G2Ht)I}Lp~P#`u!o!_x8~hThg7< za;6{b{I+d&%Be8kI%CbZ(ocVBEw2CU#k}Uhbom9dDj&_Slbt3%)oT9^{zgr+-;++w zIQpgLOy84NPE5%~zT)o|$Zve7QoiA8;J3q?t`pO|&&&zRjAUYd=YM{kkn6m#m#a#| zpI$bo*jB|jFYVM<+1S^oj<5W*)_;FUSjt<$pOd9tKknSo6wffTF1Y3Ro{PC9d-KlR z{vdhSEHJ+OC%eqZf_xN~!tz=jMcP_u=yszRc>saSq6uc3BqD-z_I_A$O zHvNfQ8rMIZ7S!MNPxAfcr{B}=Z+^Y>>2$ri$iH{f-tRX#c{AOR{P<_`?e?7qy(>{AzfJ zwQ}x)>Mo)9n>KGYJT(lGp3JiF_>?^=Tc@iSs_UHY=IUFuLqmLquDxvk^h;?GD}Ea9 zF0VcQbhdjM9R${~Ml9@363Mo~iQK)nsSE$tkIh5nDd?KC`}H z7@O`rzju90tl0{?&UGPIKW+YY!lU}h)1=Bs|3CLSZfO7e{`@`5d@rw;Cv0CG-}=z; zQEl_~U2A{rj9stDeTduQ=ecsR)&60g&(1V^9(Zv1{@-_hZ2qXWSO0yVWW#=g`;fwy z?i04RzFPNY`Lb1;lwI#wImve07Pp+vnqO}&te?cKH?gXG)h<^(3$OS7bvyh2GnbuJ zI0#J+c{U6-Bs+2gW>GjbmLNo)C55ks5YqMOxK=@axs-bmlH zxUUGza{|?h#TJ7GmRIc2Bed!)OF^28gCsgjR z-Tqtr;WPVryWcvNlYbvMUhH4H=-1ixb+4j5bzOd5DnG&cDVxbR-?Vf^ymqr%-K22E z4Tm2kOn5)@%5lCTqwKr4Y7Wi4`TT5;jKHz4KY2^E7Z#|NI;p&4e=2mcZt;?UW1_~s zq0N%>*4@eqIC1@R>j5A8?|05;Iq&0Hul1sYNoDKjzfHdl-6nRsEYwdmU@TxY^OKyH zKI7$=&HS2k0$q#Fwy#*H_0B!i`|iYTvia;fZ@=)J|1%{n%i45?@xg-=@(A(}KelBT;f!$Z{c$N808xs%D`M2uI?x6o_U(a5-Ke6_SOy%SQ zmYI&%llNFzAI>VBAre*0x#?ESo8)sA`A5vwD$Z74{dtwH^0AD?rYa-1QHUn#8(^pFd*lbty5Skx zAKzfncj?{nGAXQn3npS*xQz5VQ&IWAnsc1zs&woc^cf&+m!%L4?o8W$FvzAmx! z<(i|iokba??Sd+1s#gMhJ3sr}3o)2FP0%Yf_Y-*X5hmWr)Y@j^uVz zvY2DNZju`Jq&1c<#v89LoVoW#>CB0aTn0Y^Q@Gc8=hSamv%;uJwDE%C6(h+Bcjlb+ zSbFNp9KVNmg;H|WJEmr)6g$QhdgbjD6}+j#@q;z1IJ?$Itvs0;)wb^tujk38 zrN=IBi|Jn*Fe&M<@lLlI*J}%BE_{CIaD%GmON-^61^GfrlXH%6Twb~GNh6Zwx$f)A`Q&*}KIh42|C%T4yuU_KTsQ*mUy@HV-h zD?XhlR5t4Rx-#@~z&G7EVb>k!zN|kNcT^{Kv#)yDpPtmJElbk3ZdrA5_qurIxtC0n z%FlSY8}VJ3UAEttuiu{OeNO4A^*0MEvW~A|dL5=_6?J~~v}KXg-p!Ee@jsNfg#S4 z?02gQ+M}EHtn7ZFd)fDYX0v_0xtix*TD?#`cKIwVcbiX=az2NSDBWKy*;b}}J#kI& zqK|*uj%__W>Dd0Wp`Th6*OzOE6)#Zw-^Fu&b<>H(_3@hVdt(#37Dmp>EKub?9LZc* zBi*z4^^C-rywhi69G$)M>hBhd9gDWjRIJ?dT|_8n(%}t%__qHjZF?=X;YaL75$>Xe zLisXRfAe1WEW5cqe&5v+na^u?wB?@Ci}m?iK5_BB&g;kX7n~Pcslp~uJo~lVJCP4> z=g(D)S$^z92jem3nGPi&B)fN3pNA6KE2cslUYGM_6k< zkNxk07$trA$*C@XWXyjVNGi?NKPc;)Vfbv(mj>?j`L6`*S6kFv><|sVbk)?`IEr&m z0{5;*vsN{mboRQw(};{(@VZ^db?KvsbMwpRteO2wxn16(=11d9S@p6v7LIm1*94`` z*nMqPmSgmj3-j4y=XyPk;@hTMdbQ~12B)j3r=#qrywb6pw)0Kpal>=f^)2BRe?0db z>N`?*%K7)-sSh~40t1p4X#VoZ@pyI5V@mv_`*nE{YFc}r%HGWsm=w}!tY7h{bLvh{ zR=pW@H`mUME?$spu*l})S@mrR^QQgEFpM@hpPH|I!!KF*l1 zgm^e8o4%_3bm`cX56WkzdaTwyalOkR(1XwM4lC!oJ*N6gnO0}NpD^)3(6e=?t^bu= zJ2PW#n)~^mxA=C?emLn>#_eUPAq*+D%ggI71e(NN7kQ}BaP*7W>Hq%b>+SwJYQLS< zJ}pJGeuDMPQrY*Bmut4&x%y|$K9i6#nphMUV?8Jqi_%{TVByY@!u;)I5#%NpV{j?H+O{^_Pi z!u+Ki8Xo)k%CcpjeVCi@^sd4&tFT|!7oKnW#jj=66+6W@gSVqra9!aw!A#?b3-4}6 ztZTmC(WiIY!nSmJs!mD%mB~wr48(R7MCDB4*v(KWetH@2Ka+B%=wDf0 zG}mIsoTe!46NLe_Q#F*^4P^~FSVYX=?&gnZysW>rA+RMX=qq9OK8>I>sJ*%q=;IrIIv~fmajGI z{2NOpl+FA4la(6#KdfFbN%8Qq-aQ@GE$qLdzh3P;dTwp^V(aa`?@SWB*1G>(%D+y| z_NS0gdER~bcRLG@->v=<7oa0E^OTQ?gJzlkGOa%AjNg?S6&#ShpM*N zxGtYL9`m@`YoA|7c)@1nBG&@vg0(px!VeVa^^}D#_tH&IIkA7??*DHdeF>AlzfL=0 z{#V_)&>ah0XZj~cW^%sMEfG4P!dhG9eVKo%>wM9)&=WFCf{CNKWz}Y|JI$fvclADs}CNssd=s~QYU!!Xf3;a#1ZMKZj$QGN0oX)H(oP3 zYnxVoSYy^Cy|8^Lb_MKDrN1^;obPUm<@?gAx$>gd9*0EV1xLE}959GH^g3g^Qw#U{ z#>ODWdLA2I@s+2G1t<5NdH?e7QkJAo{NLZr>enhY*O>BfxxkLA?{56a`poax=d~o_ z=FHwr@54fmo6J9{aJ}QM{TEy(N>sXw9rm9A8tEjLZfB#Urc6UVMehsY{Mf(U2v3=3a#qV$ad~{vM zx1Oax;>wefsHtC+_>7g7Z&ix%pR9WKf$I;i;*O0g9!_&ku$tDjN^Pw?%X7V~1-r7N zb2d)Yt~@>QV&wu=qd4Cpz1^>E+Fmz&h(31de(YTzhZD2Hh5bucL6`lX}){ztiR+F?z-@?|&&br0?>x%En+Y{HT z`Wx7|K0i7^eC6ufC#N*|HM%NZi^^zFX!llnvFM+j9a|dv>Z5o2oG&B?tPlowgm|2%h2Yo~Fqor+rfi*V!3tw~4U-m_Av=roO;y5-ElmtH#BC%(pU zC(d6cI8}fx>}%tR+Rt7aEn<|PsIs^mT=%JDpW3sR$Bl%$f4|oLzIM;c)A>q;@7;H9 zK0W!WQ{beKt41?~UuSwR|E%!4!+pvAy3f9ooHUQkPnbMm|E{cizjAq*6@{-PxXmfA zJN`cI>Wgz6l^_pK)tIXIr^Lnw7<-8{IZnw)t(d4leL>axy%=*qYxcRroa?ypk8r4x&$X9r@0+z|!(4ZlI1}AN zx7Qd7zFMP2tTitxc(I{J6_3Wtf;gwH+t@oml`AO0QubsUe^tLW@3 z{U_+N%0DY3)v=pt{qu{}=l1=5o1TAr^X{6%2jBH-x4sNY@yP#axM%12{SOLXOx;~J zwdd5qow4S-3k}ofJy_OU`10TnH=pNwS0-nKD|ClGI^g`~j$?(f+w}Ow()kbEOj(>4 zd|>9%Pk6+T^MK|2#9)ENEHm=s-*fp%2Y%>&cVK=Fx6-xB1A0j9(plZ#P|c-^(m#<#eH6_omf}xYn8ZPuc!x zx=Ac(EmdDx|3}$t^CiX08|EGeoT=-rzGTfj&6P2^WxIVtmj*ttNfEYL`KWTk4lWa= z(2KII*;Axzg5TWpV|(Z08smlo`;wk*mm z-K)6JGU3*f-d|IrHr;bb>#$k+?8_ETrS4n5bE<4t30sItay<9o{jT<9UEyTw_jhd$ z-cOY7?c0C1H|9-2OySkgjPnbE&F7Syh<$nE(YMzeCkx-|wa%KACM1wE<(Ao8*Z-3e zmOIDKesm@FaKVEwZNG2NUUIJei;ZQTbYJoV?g^^L8^iXyo|4|lm64L{?VTJFy2iuxXs!x&@UV7=sBBp%L z`5KuVWs9}0{^;zS6wDzI>)EO=_B*Q5_4)TH$JD)oCx--=e7*Nb;!??D zdi$EN=W|cg2A9@-_ucJkJuhPJthlGkx;_UqUHvk1Z}95f%f9V;7kXpSZ?V|)ilWr# zPuf4Om8w26U3|w;*LTfpPK4ZAGTGd)eEu1A#zX)1XYDmBFgP0cY5n@-6HN2=s$Eh$ zEcR2W?YN5rU#5QIL5Y1S6B;Kik?eW6TQB?1%I+WDah?X(v^1T#7O}Hi%k-pJL`-Gf zD*S$Ld$#!eruYo2(1h(vPh?6sN}bU^VG!tfW9Hwe8$vfA~R*|Mx|%m!A%LPQJ;j5~Ta4$>&(Fl-jL=J4Xcnny#9au%hAE znuwR%&dp5x8Dea|T~+>J`qGadg^YR4Zf>ei-ovqZva9dyXP=izFZg;kw^=j$Lf6I8 zQ?q0&waz5&-l0c5!#{+IKPgots+bOj_V6{n2M}mbOjX{-4&SYnNYj2ybE@k)vuO_b*5RHUvATrblI*mS;40LNaqpB$xqF-m9C`kVQgdTZk|vnZ1q@l(Yq%F zv7Gwryu$3aSxpSvA?vZpE^srm{`dA}duAV)a3OTA*JpzbE0}k6N}b-cbkd1ayJXI= zcz?`jiJ9DXD(~DQjwO96o8}eNEL_heGV5OPGOLx2;fAqqwIwz$+bLVty~MER_br2X zZk>QmmAlWP=DikLyNhR5NARN8->&RgHACpexev{WaZk1cT=;gxp>SrxV^MBH$7|+s z6SvwNUbOXu$7-qTp`n2bLqDi}t2pfLY%(K8_wAIfO3P-uaG9TKGeR|0L)!|=8fyeh z+5;Oe&2q}0RuKHKL9%0`CZ}xgSHEnx7EbHL3j!Br&FO5BRx0AQGF*25O76;uJC3m^ z&THDH9cg%sSGO$XepXg%)w_kx?Q$os8Q-y$X_cYGqtF2C$i@U^}`TRsd%`j!}tXvlpxoBz2qWe1+_u2{vzF&0O=0!sn z@3F%&TQoBIE^w+^EIkrqJzH^R#P+Wbv-D;^oV9SHpZZqSc6Ij8XL&p9UZ{)K&Yh9` zhUHCkj&$ZeYgV^>_l9mS119U<(g33?FBdQ$oAIWRbE-i~A}d>wec!DW{=x@!Te1q9 zkG{@R^m(nc)h8yE6_y4rq#;urJJkyd)LrN{=*7u zt>$l={mOT8xdhwRoaz1%TOV#o*|Bfp+R&}hYCY0lgg6+N`TN{(TsMtZ+iQEK*$LU3 zw*oTyd~XC^+>xBL?p4;!oO?l9%heu6om{D=zFl+b4c#3_J*K4yl%1=8ZL)Q?+B=Cm zrES} z@8a-zmbytSxsgMxd5UQzhxuHOF+3~2@F9Pe z$n}s360F{S~p7)mCu;_N0q*Tx6qNGFrLoVNRPm~L=*ZNbr^taRIxaD$x7c>6+ z{ykRMk7x1%#`?+?3poxWsZA^N2zV9v_6=@+t1{bEmj>Oafh=f#;CziU1?;b>wfERyuT ze}{Xz#`ep5yU#mV$J*?bJoEX_Gv18v-A)qg4t$chlzrgW5 zwF`etPO2=rT&1LJ{^Q!@S?gt2{#8)VXWqPgn_ScD=>5$6j(kHvrz)K~RdxG9p4xkn>g}CR_nu@F z@8gv#y}j(|v|W~c6aO&^i=K!q*>Gi2it&@w4|>Z_WmMli_eYsY`q6(6rX2NmRtuk( zY-#rYsi0FEuH&Ei#Ens^FjS~!_rEG%XD-XC?DzkjzAa#vJD_TqceQxs**UtLY3fRk zn{p%HJJ&V1IWjk%?z*-41b=48#N*mC|4n>Wyw6{G#*6ERBs~6ES;fsho%$$kigLE~ z;nlVIId|@V+r%FCt$)}1TM1idRN4poi%-A&wMX{$o%P3C9~l>K^;s8s_KDoR(6d*x zf)khhYWg@QwfDUJrxVL}zFfu}|Jkds)JVtY4Y&I0uo`PfI2~cJ12hmNkqf zkq7(VsP{c$aZ7Ap@O8FRNUMO4`2M@R|G&N7HvM;%NS*EboAK!eDf)4Hetcp5^wU}A zan1USxyC)kVIQmg+GLp~?%L#URpRlg_W#_~{Y!=REq;GstKA%}=ChX5W_g`GcxU^J zgsen?m3m&c&F(tf+283liH-mJgTqm?&3A42@A>a^uFv!Gh-f|hM@lJkpHlHbkteIHYP{1Rr)HaU@uwL1e0 z5{{c5G!X7NkZ!XempOFdG!>KW(Hg4J#UJ_8PZ>{*|6fskfBX0CJ6}p(k1N0X@sGgF zn%lRxy^V{xQ-Af++1Au3Pix8Wzqy|(SI)`3n15vLsTFsBAE?Q`?>)P1`Q`GtC!Z{@ z5Bh!V+hO+Y`mwc#e6!_b?B?i}1^+Gce`3*W{r%xS>6Lk}7#5x9UUaBU;q}V}`b)mn z?3R1xWq04fMb3t6a{F(c`sVb^?ayw1p0DrgC;Bs>*yi_&w-e`ns-4Z-zMM~1YW>0N zNz?Q9sK)Z#Gu^ZKrpEc5p_Xey-&e$!?UVNPnv^YmfA`6-AFThcF5Y#>r1^Y|Nzv6$ zKO%P8Sn)bBn4I31H|fbTpTlqJWzW@js;`{LvRC@+SPrzGZ&l<&a}R2u=#V~ z*R|=-^6uSzQM+f!($Mo;c_S6O#C|y5+_obp;@#0}9p+C`-KYKCBiR_5=O%uB-`{iD z(lb9*6n5rhn^*~@&dQ4tTd`jKg5HaHb+O6c&(1fPSQ8zn8_NI1Avm;~*K(EP$>hV9 z>mTr*Z)d&FrMvOQlJ%(z;*+kGtkT|;Fl}sE$y3z|X`wKh5Oi8k?{ zjkqLebSI0q|IFmvGQC`p#}nDv=RVP&vuF0oLz2d!w|UN#=uJ0cJ`(CyVW zazlHM3n#y-DlB6)HBjdW7Glj_c|y&J;i%u<{-amjCpET7H{4t>J#ioZ*Xb#<^(Wt- zb}4G}(&emst`xX?Z+A1jxg$PMvhr!hJ^%bDwDTsmxH!Mps2jmFNK%6Y7gU&})KpJZq>TONJ!@9G?uy}bw6!rvWl4pUce zFA+1W)wnceKU=lllV2^-f~x&pYdf-T%#7uH&vNG2^M$7Cykw6_Z=CB?>E<-N?w1drn2~I*zOsdy+b^u zgM6p%Qrg?Ttud^b^kLbesj$ARh&ldM-ElZvSEL`@UnXV zo2RjA|770_=Q^Zxo}4{j{pObk_x!E5C0mY9b)4~sU->3y@v?~tJg*wxO9VYRKJ)DP znVr@1e@$Chu~)v*h_^d2Lgo0;5o5J)n%%!xZ~2Z z)%3IT5A(nOHH%)>H~4+AYMjpCui|i#?dYP=ZRav>$18YkuaINWXgYl2^t#o%mKAPU zbo-5rhTE(nKl8h%0uPt0zJBnL-~_os`3kB0s1q>}NmL$gKc6})?pRV~#&GV#q zl6l+ZNqgk~xcw;qwX$`;&&|^HS5(&}1^85*&Wz>OR8Dy&UjAxQ)~-8cbGEF%Ul_1( zl3?+*x}wewhpl;)pI5K9IAwAD_qxmPHHr;p&F~S8)Y5IpxfGTf^daVCKx~(sr<2;j zDN9!sI%w{cklp;%q%>V5HrY-7u=+#RE|>T=+@JqTlLYKi@KZJIz1y!$P4HZU3zY#rCMBHuxFxSY0fekggu|eM#K( zUr(>N2haDcRsDKg>6MJaIj$MS#dot#JYHbRK7H2xJ$#c*^BPv(@F?Rhn&Y6v&8Pvz5`B z!1?INZu?1d>@CBS|0bP`ce&b|y?;XDjhTi@+JTdd9hqYc0?yxW_I%ND=*V%2FpdJh zq|OIc2Olw=**v}D(9ioG9sBxkRw=ZIDv1i6U$4>sU{gi6e$(f~Q+qs4RIPkfP?c*w zePXKT@6V^MguLHu;CfOke2T16gPP%)^V3h8Rc%ase>ArG!ISE;lPOc~?QOqgTYj0R z_N>&>?DZ3$TrOIxb~ryQ?gm?UOa#M3)wOFM9Sy&JfpuTG@1!YP_dapdkqJ1FKlSvg zU7t92q`K$Sd#vPn=<8(^|Hpv$=Irv*Mz{Z_?Kq$6`tHs32M#~erDm?0vV8iAKW(wA zcD?3ZwdzFveO>LE@3&PWgMLIG`4w$e{B2QQl<>x&>I2+69rGooKK}YQaAr)5)$YgB zuJ8Ny`Nw}Pqw=XYT0}oxTDd@|M|^qLgm-_nxI0lV56z|Ef3M zI?bwMXF|eMPG`2|GWT9yt7N#P^f@~EOu?CuBMKKpe$}${>^(8zMMp^Wi?te44~13F zJIto;3F|&zr53aTD77_)EauD{J0-*km5V zQF3?hH=gS^e=46bGTya3uqbe&5Az$Psa52X7t)!Gu4>=qDY;S z&Foso;@c9%Q7nssMUqQ?bQ$PyOCIx#z4V$(eW8;_TS2PJbhnnxYTTRntL+wR1ab$t z$n6nwIsI3vI%x5!lQ;InF1$6_sM+&lNStWRYyC2=^2~nK4&B-FIq$!kIxlmt$?a!z zR1c_nUNy6EwJ_d)W>V7$ZTmBqE(!JAkqU2feb64*duqeUsVV!C)*z^TQy_prMJbu^1f`- zKJe^D3D4sA*A3s8Za%ypy)F6ae#Ku`ThH=eOKY22R&#mcnMn@m7DAzy_CI~PS5{u| zuiECHjQ5@&S$9%&Q$o?N>Vlkr+lRg{SXRV2O+#{vqJKu5`Q1g6UObsmW_iC;`)%GK z(Fi76e-p{-y?N{J$G`u*^Mur=wKq)W@12r$YSty2)hm5Bg_~UL@%Sl!XHK?jSipuw zF<<7V&)RgyX8EeKz7fueTHIytwSL+DQQ7!tQ`=#Ua4Bn7X`kc&^6fuN{qyMamETcU z+|(mA=ik0E>-p)YtviLjo|d+ssJC?Ljq|_j{=L6u-Kr2HzvWf;slD92XL4u%Tec>C z{#n;`(mU^aSshM0vm`64?ysd@HJfF^W#(r~^?+I&iUOrmh?G_&3((QU(L+!8owac^L|Jlgyu=mZi-|jc7_GZtReM|QJYVNgl z$EQ_S$9-SMQ=IWCH(;sNqD*I%x4n~lq|TV+mIq!tbFAX{0+X`9`E#bROjlQW@Lr`@ zl~ZTZ!DgF%l_r0bueHCOv?NwSna^RD$?Odp;!{#@#7|g~x~Qf=Tug$^CCf}zNTb3+ z(&pWbX&*lcJC!voxbNuEVcMQjAt5U8Qfumgn7_O{%HEgEr-(oLu3-5fIwZj9hw_Dp z7P+6{Pp&?xT{%~xcl%SRV|_~u1xtdYINZCBuIl8~OI*^DD7(sGtM?|mhp~mXjUvBA zg-n0Ye%h_BCM9D3ty^|>ky4WH{le8QZ93Mu==HS3hB{?yG4qhB2i~70gl6xLjJUrb zG<942=T+J7s)MVOZrYnzZ`ZcJHtRz`=tYOTpHWj1r{(MEamaspe_(BWS7bf9aekX3Vv$y}hG{yMk|Ag1?RM)ru zwwzeCJz=^yXYGnfSJGcQ-95lMjcLoXT`$fb`jjNS@o9wYWMRVtJz2%-dZ#$wu`Jt^ zJU2%9WKsT??snD)TbTfni~BTh9plxB6f=FNriQkHpOz zvVWfuxOn_<`&2i#(%fb5%DY@=Th8oa{_A@&<>su89jPmP6f^UeNc2t9HI^@q)#a&9 zC|^D6QD5roo*L%ID}C2m#2S>U%Z2`Fx_cr(^Z&xv}uu1okRcUG}ZUQ-j@;t3ZGTW=w;qqH%so)p&PR6 zS7~iL`^95Lg^O~?@`;OYE`Am!=i>ciiS`N8&2gn&o^BTz{8uo(N?xp7zIev<%*B^u z*X!-AI;#EV%w7)z2b;Z{AFO3*yy0Awv^bwR?dY+3aTme+LifMdZFu>h)bG51(pPE0 z7B!_d8d+N=phRUZ%ReZTMffkmr+ADg)QC1@VQ4ja#i}Rq8~RpH|JOXzA4<_CS>}s$|~l4WW~4Sl_G1C&c8f&_Ey)2 z@I~2NJT;Oz2bB5`^GP*te2~+epTyI~A#pi%$$p3V@ylaF9Q>76Zr-or?H#Lhd!p~* z8+tDDoK~ksn&~(PwuwwF-ZFv1P-6C+3p|IMLS;88xrNS+j9YB-&XB9J`IUmc zlkco+jl4arV{+b==~>_RN~#<>Q2)T$yWHWu%}lGgyYx%#zItYq&v@s+n|*l0p#8I~+8qS&~;?q*_Jde})c)g*FW2k@hp0zJtrLb;a z!L_*P8e!EF8q-`+5Aw&H_yafOA4jcXQlrP*ckF)-Qu%)B36-SEmQq= zbLjh~zU81rdqYOem1ccOj9;acDq^NWW4ll#<{omZmeD*6~5DE;CT|wt=%S06V#WmJS6n~g4g+X z7Ve%g^?5F_D@sV_McBr~!n`Fb_9tX54te_an$X(q(L5pltRw<6ZmS>j zvY*os^R1Bg*mU{jvYNIxSKhbqJS(*#W@+Nl3vc#_`t+u(lV2@8PdHljw0CsM9I0g| z|EyV9VdK1Q;-)os_mR-ZVwh3R{iW&Q4Ybo=T~Ngt^#pMHMvbV^HcKDf#Eq{g`kv$eiRT3@m~ z+sX4?V*h8qv->jgR@F{8SjHW+QfFm_3ENV!FJ_XP4@NyndjDhobiV!{hSyb2b{Lx$ zG5);r-}(8u&F@#9J5Y0i>+)o!bFy*2%Ac&+;GGt%d1SJ?%1g&5OAiW!YxlK?hbL_8 z*juX8ek5^2Kab$r+oq>g)nDi6-}(IG%E2}s`FS zefVB~`K$YirnMS2 z{?L#q3@VA6*e_#S6teC^kEZC7zG&%fsmo>>%sw?~(XDkV?RRwodG213_?Uj`rtn@K+bsYN7l#*kAOqS00rhYHu*zX%DFEoNz%wYTV z^NvD@1$|MqzH`@CmU#J0`kn-gg2cv`enFXoER zWbf$?{?i@&`-3!nubk^IQPSg%TC~G|^3S>VdQ@-fE2zGBYp?lQd;fy=OLm&x`z};Z z6Tf-H{^Xo*`)ZFEuW9~##pFbA-}aSt8ydsBy$(bsdF0MiQF)^g>6jjAuI;V#+xMNG zw|9!yta}~%5BN@aey{G^lUZI1cGlQ!Z~ArdUzxX}RlW5ILA!8U%j&WS_t~5}Qvwe< z@Al^Pc%1$I#V3J(9T(IzVv2RMUP;yOUifL}se<>PnV!2jKCgQeTCwM7%8TO`&uy7& zS#$pN&K4-(+{*iHX6df;rvr2h!{qGp<=y_CG?v=maAU?-`xTGdBjhC`N3uuQ z*4HtYZY?iNuKirMY0=VO-~UZHpe?xL^@ZT;!m-;D+PYZQm;X=rzA`$Tb&gAl#by*GF0yZ(K-*9Sj;&f4u^k>$K=CI@_vWtnQZ&v8PO=Yc=w zj(!IY?%AYy>e}&Wd6pX=sxyzixvL$g&h)=q)Q89GTGjViYL(9)+`iX;^p?5r=h-I< z8$IPRW@*_qX7PpT#cb=1bUlCHbVa<}hp$WAR>fpg)_R>?GHD+Fhl9Ho6*v|go4@Ya zyGcuSuUT~6WpmSn-9@1)6A$0baGJv({>3ByBJZ7ypyqWg8`!LQ3;(3@1ztj&5}Mk^;F2x{X)gJmt;?R*20#P`|!e# zjmBE5jh-*&li_1m(>5sXEy`=@W0U^7XQImab(5r6S8kbbYw9iiMaPp$tU2ds%1?RE z!LFha#(Ar6_ee-M&!2rhdC9S6zx-v7Yjzqv znqTqrw7*YZmCb{lKbs|mOO7t}QTr6~WBJnQCjN)7KK^_D-r}z^eKVe!Jt?VW2`gs4y=Hl=VM3Gf#|@>A{?8BG zetGNpx-#F1QwlH4>2zAhKKs*`Op#@mz9wwDR5)|aum5f5=FW+kJvTO3r$=YPtR=yl zLRRZGI`NC;_O7Tt;PU(a|L}=>_&;rO(Nnx-d7|J-n_-z~*rYG&w>Fs0aE^ZMwEWrQ zj*YHY7G2Kz{rY$6jmO(rj;gbnK3K0mPt23Uzx(M+xg6U?xBcg_%nYczbnX7!oO$*( zpH-?ZIvPxvd}yiWgor9}ma7ss(_Sb4_J7xqudfnlbffg4)BBgQ>fieh+C|@gQ~WGp zZ7=stt)#xfRAHIGo)X@aX7k74reaD`Y;MoOj7Wc_Dte{(EW|L!~4R{SAx z!xh!#!TP1E&RR_rQJYw``IhEY>x4SVmPvd3&;6=A#=DaBnJ(+u>0j%v7nv;GV)g3v zwnMrlbM9>Tq-FfAT)EbD(hWJccd?Y~Q(zo|KT;dp*q<-ad85<{My zwn)(AvA~%e-ZFMVUT+A}g4E z$x*DedC7Fm|6l(Jo%E6b?G%avdw?%u(w zv#>wQ(;|S?AlX7#Ok%dH$tg`nx3(IAJ!fCtmDJhe7-lx1E#iwZPms^)u6qjh9-%r0 z6FYM;Q*9;@La%Vel*%SX;X<^okzRUC0ot$)Z%ND)+ z8B*y>nYNVN+atPH{j{FqvBx&kd0X@!^vqm*nCo?ac>q(`iOLP4#TTrKFW7~1hkf^& zFIS*#EBnl-+&g>E~SE z*J=E9CoLz>VYlV{{OK{*3$EJ^qSaot?<`FZCVKswe{a`BpY$THrk!s>pO`ybZjxi;=T8fn+14(p?K#x5A|^kBe+^&JH#_#vLP?UM8`XbKWSHb~B)o5*)t4Je z86M(xEy-bR?7pww2Yjhr5Sz4an(o4jHQZuXbf=yZ-L<7Mu6|CYm36s6eUlbi! z_s!?D>h3=IGv`wC<`=i8mo@y-l-=`RmHo!a^>t6a-M8G-_RgmE{?-0{g|FWI{AT-l zj^7M-*-o9TGd6y`E`@8Y_kS)bomY}AbMjm^$JE z=gp7U_VtG?zuk3mdq_~BW?Eo(lklgKfEROPB=a@4y;(QmhJ2m#wwZsYJU@EE^q9!9 zWnYu#^0a@L>OV7F!}MN|o^?rP&*aKq>7{mlZ_M-D*8e~GJ5C@rRcNN<`uh97pS^J~ z4&gq%RC|+=Nb2QXY?GEQo3!xG?={zG0SZ+VfYI>Ey*TyTy zgX8`FdcOL-GCgSe0%MmYKC@EvExp(xZ|1&enVO}rBz^m-=&xdVXO0&q>dxR@z4_{b zTPx0=d%XYLn>%Gf=RaKYsorL*JjwXcwE9Zh)f>*fVtRbbt=;w!C#&Fm@ulS#w()c> zj`H5LqKB6`V(PS~|FX7=@%60o6E}PQ`fcTgxCyypcdaAlxj6)w3Pkg67SB@3S8Ncx z^y+r|UA9Lv)vgPa^naeaqMqraXpF;}!za!Ax{kg}(SLIw=wZda*!gP@JDaBeJ~c}O%=^kRbL%CpNh zS*>ikw&=Ci3$rZaZ7a__j<_n~dNCw)rRS!!$W^PBrK+#rSrryMW3$HV|K{2GOzI~C z?{bExxTQU*O;5f1{bG4|dF?mQtw8u^ChFnk1=Sst#e*R>heE%1d*bP{Gv$- zsZ2$8PA&VIr53x|PsdCpEkh+~l3$2wmyx)=&a<+(&61qiA3aR|URyb3NrITql&aEa zFD~Y6*s|xT+nHDH8$6@LL+wtkklb)5Vr{S|`&-8;C88Jiq|VIhYVnxR)HC6*f-LLJ zr!8OSx#&1w7nNq2q4TWp+j=>z1;!pd4W(;mOUk-Bi7tGPiV}sBm0xgsH(afo{@BGWcHXwgOrtrmY*%~z zZy)!avsmt9%X9&2fjb&z;($E*7emi4KxEjk%ydpt$d`Pv!H#^3K$!vohu%?Nq1N^pjt$8U}+ zTmIkqcmMk&_f*rz-Ca3eeGfQJzMt83Cz)gIWWU+R*3Q0lM10MXr;*3|zWx@DV|#ak zC){&s>HSSL=eN~(r5s+FJ!`$1W|g7f@TEi^QIi+*f9@w_;0FmFJRE`vY4I zT_(B~ZHe(y$Ugqz@1MFy+MWA7|CskZw|DzCS=)hc-;6tsalZGw?r#)l2(d_ZFf+?c4M%(ElbF%O~4!83=wbF0RUMQ?| z|ImRrn~pLmwk15hO9YrZZ~x^qIzGwcb7z@al1#!e;TwLviIWe!@tSklvuKChmj!1z z?#4|%eNZjGF7S>`xr2T7J916)#40iALs#vKyBDP1D?$eT}@*udlKu z$Z}Jv=}HM9VLr}~q)jVXyHYfwS%igOw`%u0u`g}1SiW6gTNwD1R?}rs^Pn6vZ`zVmMzkG&DPrv6UmE%VGf{L%DlQ~NHocb(ny^S$QR#T_D-PDQ!Zxqjw%VS zPeuFr!)N*3Oqdatx_-i`)X9$D>^2lI3zY84;d-iYXP+|1?w!-CA8);N<6FtDrL7CU zu`+(va;$hXsbPYsu2Q3l=(@uaDgmsbY|0JIUdwwbjhb9s9!kC096#;gKc|8skz+D@ z6m$a&cByD3n@pZzGNa;D_||}FES@Zxr&w1!?9?=zl6t`+^KgY`+zYm40^b$0BHNUf zmREM{^>b~P3R{rf#PVKQS@_7g?PZZiw)7fWugpp~X>5JPv}dDez397h85i#FtIf*` zU!Ht>>Z^!zH$oR}(|mD3;?nM#;N)!?H+Jjn@aC`2slNX0?dHw99nRckN)_`Iaos)X zq*ua?XE|o}>vm{d|600pVUu4Z;?F0mC9e5uo0`$L(kflh z#%W@Tn$nNe-NB+Sq++dZlySh@0 zqwuWNi}bl9V;6kLl6>6TtE4|wf8TzlyPXzE9FJ{{czjhki|srFea zuiSN%vytb}q%bG{b^UXBAPGWTPIhf$Kut)!F=OJB@Eo^~iF&X=%{x5qfDdco* zO_!+FJ+AL_g;QNO`Cj#Fa5c%&wt8`2+vfGhqn*#;Yq0X}6K40{g-gl&5K`3&kH1~uH~;yjN9XFy-CA!= zxqa&>kCTMet+{IVn7^cc3UhWgkrW7+zw?D`ej)Sq2|mt6HQJdeo2N;yN@)F|c6;jD ztaWTk0Zrl4PQ4R$_+k{Oam}QB6`TF~lkD3Rr(~UQmwa|EHTb2Iru5E9c?T5MPPi*u zQEU2k&)eod;cxqMs-o|2vRUC1;BlmD&9AoCD>r3@INZGSM!Ngd+*#c%yejHlX}cME zeJ{PY&O7z=x81o&kB~NKSc`?VLP$uGaxXa5+JFC{m z$=P_@JWm$8!+B=!TPyAx`~PwaORT$dGh$M0K;02tc9HW2HklJS-50AKDf)f;W$sC7 z)6<=IG?~w-`JZlV($=4KQG{3BU(oo~tEI=B&R*SnWseL`@!RvC=PYwmdicrng@ye> zizmh{W~!ZrJL-aaW=~r>H`ulLZl>|qIcbv3li7Y=ZFush{#&t1g3wOZDGzTK&w6_L z%oknVbRYhCpB!&0?{@sTpQF1>csI-Al`9Sh2+EbW`}MeOHacwfq9-guJ~wm4j>H@H zn- z$7{AWwsf96_HN~sh--ek+H@x;-;Voo>tO2z{a*FIkA84${%X^4LBEOBsPE0%89HrN z!THiAmw&8%usA78|!on>XNqcAJozfL#jFY zFCN!YS-QVjO?&UZDN6)GlP)bF@F2YCbMjLoc_jxNW zKQJ`1^7Yx}_j%O+-*r82{PWIp#W^L@dN=J&{?eJjv1#we8vf)e=gRXb;Nn+Zcja~Yk=hof* z9&~aF^R#J2P5GX?7QgCKoUB^*_sb_g%PTUj%S&GW*uwbBocXAIaDP~NUi``PneMkj zzOPKWQI`?2eDAfe@Z7I`8T(ST6#6@SRwOs}Ij>AwnG;`Jb<;6ddWwFip4sZIsb1Ia zdZe?LzrT^IEq>H?&y&gKG<>A_H>TL zIkQ!VvT8gdWZpfx{=K~O@cM11-fx_L+GfW&=7PDQ5{uXS-I=gM+TH5dS=M=fx&=Zx zRE{XFPRX;_aLnzu%)XEkrq4Cql1i$JUv&g!a(kY0w{gGAWV+=dOSJ6X&9#2NnwVc| za0Ds5d?I=#=IK=L)Q!3KJLSV)PFs3bv}r|gLVbDG^m`LaKepKJ+aDacP9P{!ZqM;$ zldpctiSXw-@ym2=#5F<7nf2+u>y}=-7dJ;qWrmpVO_tjwQI{uuEtsb=<#)-RZOz}k zKC1pY8hz@YUw(al(?#>;QrvU@F4?m*Dt6tw;z`TXPk(TA`X-ebknX?TD>+_#S=Z4k zPc61`h~HN}@K$@R#qs|BRAv`PzL>f=h9h|Y$_MByR^wXO+i%$P4IkNxQe?Hr$^ao1Mgha1dY|~c?cAWieMc0MU_TK6j zF8QBc$crU!n^GC9!@pIYNBTg!$F$ppv((I@9$u6EcP{&Oy4=)V6`RjWr^i=5J@i$w zFK`*}KDEzl6%X8OvDtB8K9~3slf9dNzL;5(!YUT;y)@zNm#OPx=Cqy<$=Y(rbEa;O z?%c+W|71U`JN6)VtqPyYz3D$Z&WN_17inI5^t{=h2=|?>YM z{w-nxuLb*0O1gbkd%Wb0Jam~JnCEshFO!1wnyzYcVt=80evgVTwVsbAF*aihVo3481an388Gx)UE z1(Suy>}B>6?6T$l+@ zN~>`FTPc^A>YA?|hOBe{S#uvV&6B%QoO{Y*)2|(le*E{CW}SU}Y~fXPUhm%_sX13A z_PBoE{BHSy2h~Mi1?0SQo}~&4$@Ob=uA06q{lyZkZND!XPgd{PSDCW+P1{!Kb+*%$ z9{1O#Z=U^0IVI`C*6j7ZDvMgazF|$AXEV`)QTf8xPHUm{9(%Mt-a7JHh+j?4Z;$cE z?#}P(a{e_+A6*{pSFxM^Bk57UQ2m@An~!W4kXLmp&iYiz6()P=0pDbGWj-@8!@M3* z&V5%aIKy16JO6XI-OKzIuECbJ&f%!%*|P0iuVb$@-Qy3R|N7hW-+|jZ5BhG{uAgY5 z(7np$s^Gs>b}`0h8WUT7&;Fa0Gk;6uNR@z zSb46*yB+$5l^-sxT&Zc)`^1TRiStpj7oT>do3C7V?@OiarSPxm=nKfOLr?4+1e z-mXvIrt8=J2o*^WKl!hG>%#Y2t52V9KbF09k5{slq?Me!t2*;! z!>*L-c$LJ`wwkY6N6eQmS50YFTEr0ERHt)K!=Q6Q@FXAJk8FVxLW)d97npzcRN$)p zE!CrVfMbGm$13gmA_qmM(=P;zq{`xzOSVLo7+ZGj{h#(}qU`pXiyeM4)|H=LJhj}^ zJV9Jhi=p!4$=~sNOCy`^U3uN8caeL_lWmVDM=ehDng8KjK+##=NhODQ*_xAb?yhQ4 zaLeC4al(^!zJtX)zi&uAzuRlNb%wtx-|l-Y0u71zOTM_TOfw1p|M}OQgoKK&r8X(M zbc<@UbbfWe`cfi#BamTTKm{S6Ls&zb8K)1atLN zBrcdCCG2}x@%qjjK zw{h{E2&J-z4Ubp#FrqXp>*WrK>dUV(6+l(?j?D zFur;@jnD7*)SGjbtuC8kSn1a?BW}}~Z}V*5o|N6+lD@B}{%7is)X+K(;du|3`D+B; zwSNDhkoTu|O{PuTTF%_BnHj6+$3Oq-CZ^-k=fd;l&)|hweWS- zJg+&PccxWDKGK_TYrTJsh|1S=q4}(ye|Iaa{%`Oxe&N2`ir;T7{LYs?XYs@5FXmV4 z+*WyI-p!(-o#T19bRX~QoFDxbZ~i{qe$77iTFKH)(qHcuMXbxWdbD=&?a*Hq@^Pu2 zbC{Q^R)JMC;W@ zt#>)E*0m)-*W;-D^{)q)7wq-u&JJpvx5RbVY_SLXH8Q83`a1Pg{`AxNt3&cMrqBQL zEq*dT-@Ctu-t)gxwKxBvVQ&$=azmW5>C9JhHv-QYF8XEJRdP9D=d#Z)o5Z|aPTsCl zoa(>KNHIWE;-`q~v`xk6r}{Pc(Thck;gKdp~BW?~t~dVYhX>hu^H0n0@X zT(2}oboa%}{+zve*WW2?=eu6x_*A_?=1<-Jm!h`DZ!`Db%U5Dk%$aB!EidhC)^src z!6carZx5Q!wp{<n2k1 z`b^iS-PL>d2G&;Xl3Tj^>J+y7%N9mKwFM)SXf%y*gXf^WxGi zu}4!xuX2@~aa%U0^sHy%F723gk0!2uRHDeQQ&)Dd{=9@g|3mScTdE3eV}8D0)vhS^ zUBK$o{m*yS&oc=+rc&~9Zr7&Zl>htXDspccOv|lfUA5_=jMXcH(arPIhg$I*=oT%x!(7IlDp~k61V>f9P`x|RH+Uy?AUR}eNaP^CN%+VXU>wF$M z&wcZH?V+fJOTYU+dUoa7L2-{qd5&zNpWgl5eRYX`RKDTgimrp^_mezBi_2BdeU3gg z<@8L|eO7*pCi8xIXMU}4(z(g^y>$*s-)3CQWy5V1w%~fHhajU?Tqmxv&8l|)C(>#%+xAt^w?K%NrNA{~{ z^5^>Zu3g)^^xVk~9w$xy?8!0V({kIJ91j>Vtvc7@G&xvPaLEn#pE_F_w;p+Tgx5gq zbLF1iEAB@oX5^h}>{<0uCjQRC$s7j*Ty6d@Ea&}mz5^BvPs-%-{_vle=q#b)#)ZPqi!`xYqm+fddiw{?|1c2zh2qP z3wAy&e)i>`-*<=9%mP_I*OQ+tHm^~BC9!j_(fm2$z9%QS7WxHF>YXrQgOkvj^P6Q3 zI?TwB*mHjRu@!3q&l>UaTw1R)t(yIEaAfrA-2Owyiqh>ZFRa!H)jN|nU-fryh>`LZ zt)(wAY^JKq3NA`BTG8_Q#!W;1@Bes9K8dG1>Pympe`0;(E8G5)9hFO#%;>BBU);HC z`|G&JCw^~#`{$`L?=!E&TAi&Gk1m{ZRu>D^=DDoc>3LN4$;UP}q3wb>YCG?L3)v|k zqII=qLi&}&NrF%AzKK|{>R^P}^Dm~MOgA6c{4QPSD#z}-Zf|0JkJ@sUwwuYH1f!!xFMYTlX&!6iePkU8&{wZ7b=cF&!-`vQ5drW5C*J!Mh zOBX*HxPw)w_4Ul9GAs7WHh(P-Z#nkCb;6~M)qPKIFP)WmrN@xj-s|ljW5dlWH`lzm zQIwk5Q`*)paBN<$?nK|1?>+YO+Rb&nrEz{ay2+=Xtxu))SLkr4}MN8&5$8R(1|7bj(h2|LF$; z%Q(66wByBcm8PU0-@Cykd%Dce6Nf%+d@|?oR#r~Ol#g4_A1zYO*|m1zgO2R?98*OP z&i#C(C~=#O@XO7q6Em0W=XdqtHtZJk_%~tS$1|&CjDMXvvUT=+$(CxPS8J^mXYIHv zclA)me!pKU=Wa7}dMaeKSpB#PbLr*ROI98Hkeie$P-4WxXTRKD{&b$n_nj)CJlpJ6S z1H~MUEOGmNj7#|VyO}Q}yzGX#6_lytC{K1@2@4ry~O8@C*mV~)^%Qy0=H+Oj2 z+*^M6K}O0QZAMcLw&zthn16nncwObQ+PPcYP9gERW%`rPED-r|^USpa3bQ7dPCOL3 z-FI2nE{-s_73bdTZtI`4Jg#KN9nbE7%uPNgLQJ-;-L>?wnfj@dTi(C_{<`X*|J0hV z*J2~Ls&bVXrHY-=blw`WtLAFV>jyVn|D02`^D;AA_{w3WYY6ji8@*&ZuT2ie(quj_ zFP`JV6Mn2j@XM4#J1%Sz`BBt;dByPy-B0$N_M2N(yRhW@okuI%=VkhDx@&j#{>ORu zlqxf$N@M~TF7jJBNjrLxhp5(p843+@>lDfrL@lnSxTxKFENQBHNU!K{>U#UFclNEG zQTumgHrsz?=e=`tc2z(4cJI(W=JGu=HMov_nl;H~t&dxRlG7^zYt2Alk+>~PdVUpTzP|qeew^BJ zaChInM=vgh?@4;B^W%2%YPN`u$K5;U%=m8f>-}R*clW2(XHSRwu32zgZsOF!r@DX7Fsf-;l6LKk4Bwy5?xbd$3qe^DYmWuzol3ka+xVfUWx^J|Bg#FB z=MG2l{Qlseb1RBFxj*~EH~Gz5+QY*+&3X2V^gFsA6FcA(^F3FwElldTr@^;XGZr2G zzw@=AXTz-AP1~xT{8C=M_L|@87c*C{w=2GK>t>b8ZRP&C_Vw#RvtoBJbbnqwd&7(1 zPQx<~p03;&IO%#p`far)vog;MT{c-?p09tAvv`rs4u_RH))pUKxbySp@GWNUEB2JL zP0Ty-GF|xW(aOMf$Gp0Yo(ahxCo9(^t!{r{W;{FDY@-c#XQ&+W2dC6qGZ<#R|Ehm; znm*^A%6pssbv(}eaCEv^SaGuD59vR$|0^DD%GXJIl>c%6*?o0_j|&A0`J_r(&b{7n z%XJaknaWA+(Gnsp|DJG6e8IQGV9|qjQ#Lr;x-7Y5s>*ZqMC{h$m!~8qzspg%)E{Ix zX~`6a`#(1J-#wa=a%$2|X@~k19`CEJAG46YfB#sN&hEPXT*}vVR=O!Zy1TaSeb*vl!9B0p}X&;OhJ(CE|6mWdn(R@GU3T;7?lwr}jd!N(4uA0ez^gro0@#q_M92e>Pr=ZkyfXnmPoQHn{Vi_hBsfWKL_@!J3Nq)XS<^C^Sq5!*zJ!w@#2lD7Priu_9{)0HJX@^ z^@nFIUt?|Jmv^PfF7Z8q{Mu$FGtH`$esDTZTbd=XXtx>5Ua5s2s!poO9Ii3tkxBGC zR`}__1c$gt7LOHIF8UtOF?{9PYo}&xd_>*tS)X3S@8}1w{`T7V@>J@4V0iA8++&JM6&*k3E>=AwqdZARbC*%X;cvZ96}_ghN^PCM+@f)MQrdxV z*C*V&ORH{Q2|0O={aCdH_j(QQSt?$;lHRB@1+MDy_#`}OrF2_Mrkkm#pVh(#XEwd} z{Pkzw;?2L0hdLImd?syl&b&PC9$R-LG=GDMhJb_kygD4>P0$6<1E49_m$gPT=ps-<}6M z`cG`jGnVQVR@6PM>2yq4@}7p!-$U6G9YdVfayULncr*9NOMQ*=x++$`*kaxnNuP0Q zoW*4*Vqu#8Tcp`7<7v@R{$7jiF=8Q%IaaHKzNcK#Rn5zm4p{0F5*s-=_I^vZfPO1S zQ$4qwPJ3o$3G#?-eYiEsWcT8UVk@SUPW)0b z(Sh@_Wzf5+%O3ufa(wsH=-J%F4J)5oS!gbQv8$;vud+46l&4&A+w(6SKF1CG7rXGM zo;}Bs>Y`zoCE)qQQg;!PYGF{v<8@B6e@$KBvDEDnUuSaA+7~CbJ-w-A#wc5`P_gUqDVp-tWZ%)p)Zb4V`zlT%Gu{S=fc=?xM3y z&YU@%3cTSjcvR(2nru2#VEX_4pB_P}I5&9u$a!^6_jQvVe?1i@#9C-|rOJez z+gu`eu}n#o*&+c+$=Z7#HYF`RncZ%^Wu_0Gec}CD|2yVC79ZVsro?U0I;XHOl~*h8 zPZxRV&SAmOE$^wdbk&!zCmsu%UIm_P7EfijPJXk)*m`=F_VM-h`+}@DH2*nNTj7|R zBd9lh>4#~XdV^LnW@mjnUEn!)Z*Qj5eohMEuMrus;Y8LwWui^7O zt_?klCl*_?FIYYK(yLdmeqN0^psXbO&a0&9&daSw>VN#TGjVvf?*E0~o(nYpANkGu z@9WI;xCdqbKYsuHbn8~}UGobr{{5%_?wj!YFT(GP=KTH1z5|v%R%Um6?-{Y(ZhF3R-ihUFSWHXKHM&-<6V3mmT)?$v^3I2i-OuhUKftt8 zX8yvx=X7K59q27u{d&*krv-ECcip?2kUuTyb#yPe!N?0 z^@bbG9;;HeZYc~qb6;lt{-=qDD{fe%NyvKNPG0l+r_J>WqrzCFi}wYx?(%Ng_{nXf zTV5mAu>*NFk*4QrZ+m1{+&dmU)q2yMlP5kndP%>2{_|7Vy=!5nuOFUOUvo4)$7<&K zb;sPlf6#Z}zPq{bP}=RIth22G^Vfe)OMul_yC{F0V=OXqB;gb(HcRg&p4$ z&%P@5TYf~%XNAP-I?FqYWEUmFN^uf`NuTGpLDiyGPkL)v>B;IsOz6vv#(n4ip+?>keGuJ0)MZYX4%z2}4E@%F|H+y~D zEW7e2x0KgcnOc@VyBM8c`z6?`P-&H(l(?Qm_iphMms}-dmY07kliUAz>2bb&HNk!> z&pv&?#vxPh`c8F@OEl-s1BEwtY|uWx&28atnVxdn3H1e4+iDWGEIw)|c>QtSGNIi< z)k4b+Z>_R$E^by%)!eJ@v{<~OT-jq*X6Ye~kdjOtb#Y%bKZ zbn&yd%i1{YTZQw^>B@=A`IgHan_8WDN?BERea603VOp!^Yi9gD|1SRa=M$5o?1WFO z^zpiP*&70#ZjvV}Z*YNPB z9^Y#7pRLD*H!FW}Uh$Zr@!p}c%>rM}^D*r&eayS@)Lr)N$IjGS@4h=%*=_mPwYB2g z=H2i*_j%IW9cMr1-QF1Z$@g~i)uoS*U;mqQc+(lxU-r?NNkQN1wqDF-*N<5B*nj5d z)&=uI=U>wQ6EBjt)=V^PfAoqFq4O(OCtB83DF%K%7W7fjRF>HT|Onx-z}+k#EHCuVzY&QMz$6EN$k{Mw4w ziPtXK1fOKRy_fTGnsrJ<*~Ra1idr8IFE2Q`x%uIp$4u_*9nR6KZE}s`CY!G{3H+lh zFC}L2?EEajlht>pOezxfp8oJ~=Z{58rfr^7HeV*Q{z1yoH7=4F-m5jguTsAwayjQ| zaQ(w&LFca9cbsWKC{k*LsuKYLC0?c8aFep8NI(k>Dd3>A(F4Jo@~#&(43s}9ez zH${z!t`kaonyqU3F z{WA7#4z|zt#)rxTAKkkDr|t33Pv_R#FSxzQq4->NX|2qJ= z?#r*|8}v7P<=d!q)V8Unq-c)i z^PJpf$eDJOe}^g4)B|zXbz9d5e>r$v)wSNaU%)eHf`o^Sp4X|5^D>@%F;8HzlaxMI z-&5eVrKP>_+t-G636Ud$iqp=woAJE~f9UdIqX?6-a@TbayYP+>X1$-`HE|5P7E7x| zZ$0hmx@<G{iC({&8|A_pvAU;MJl!th(jKl*AJdTTq6yn3 zrPeR9aGqE5+xy#|q@Nd!r{CR~{mZo7e_ctGxz5~sR-YNoXMDQ6D{b{Oz22+Yk4?JMgO8tk@b+y8xvEa&duudml-Z8yIAMYQ_*^>6q4-?~?S zJI)z>!#B@+iO}WF=FZ2Rn>($AzpK^hecX0rx8TyAa4T80j1#4HcinG)T(e(7aaESE zr;z9Vi#d-if6VT=C6S|Yz3pCJN!SOSbU%l4&$y>75@5*AXi<|beH<*fVu#ryMwz=1ug-n!_)9LuFa9J?5&`v&-VEj-VWzwY+t&Bm9@mR6Oop5Z&q z>xD>QT72Z5M0Syf|Nb#LmK(QZs*$4)YXWb-2FzXp?^D=dYSy zE>8rC#T4r*4Q&#nTyNhmIxznVYn4KbmSVfY!XmRJ=VFfOs>OO8*157Nk@w$QhxJ`= zIIrGoeB0Y2c7v^$dumg4y2jzsRjcH5@oQ~gYU4`B8lmp z{hco)yC(^9&*)Kn^`dE(XxM}mFHTNbTy2#V6zNm3|3u55S8vYUyg7IM;=ZYCvKjY; z9xPh1W~bxb9L=uv+p^kb8mIf-EXj$yo|0s(xnoAs>!P;YW6FDl)@@$=wXju7ZmNo7 zgXrCBzF89@O{Yli@4IR=A%sCO#r?C<{r2a_V!mBd%TAqfT0zMpY_a8(I?obMzRCSe z8+chi%{#a_@72NA>#763+bKG~44TS$+t_sZk|xm#r=+fjHy`hkoVaz$@6Xq5e>^C) zU;q2pgZU1rlNMi^v08dwV2G)|tya+a3wxKPxorIRrQe`#AMeMUiW;ds9$`lv4sj;- zeO|hW?^xr)*Fu{k7Ph5pyjfdz+rvy;d{bbo*skc7vW_E0CZ9fT*l?{R^?v^`t!brK zB($Sl!WKy@uYFqU;D2k%T+^$wbXNNa$X;)KTl2x}_;k_hiIwwzN|sl~WU+W3`Bvk- zBV0@3$yzo^v78}DjG0$UWx*OiQKc3D!Y2&Pl*hjvdF8Li71l)gK*Grpo zWX9pT2A4@2B31TmEGsB@yv%p;&G)6Nc;X*u%n5Tz3yzqtYUngUMyaQ(Lt`D!u|2sn zmLE}fnmsLLa@_y=gef9H@th0nHC&!;`umREZ*NBR|3-E3xhMaMY>|Jlb=t{ax@?z% z(r(+vFWINC;MzgQb0@xh(5bk-GtbN2hy919pT;&1*;(p6f>C0@KfTVWFPB%FA1vD0 z?ArWd>G}@$+5PrE5A3_D?Qi=b$}#$@?ZoDV&pMY0WIRpzq`>Ox{&nloX?+5@9R*c0 zxw+P=b8LI7P{Jpsd?#wLNSELb?#(WX{(JkRbw|#(`DT@>^2bN! zf95FjS1w6jZ++Ht?!t3@{|YisNNbtPSw-w!n!n8W<&?x_O!ue#ugIEjzP&ncos_B4 zrZ3Ot%&^;@|MkPC2hZ2Z?|wcjSD5|(zjrIADQHUt-%*%pRFe2CppE*puo7}{!i?&~GHQPP) zL&v@gi+*$(vU)6+Qdd$4@=We)HxrU;yLiv7;)TOz=4ReEFUn5D3%iuI3eNBh(vV#6 z!YSH7H|1;aMPpv8Xs<%kSJO-$i5;7~?4V9$@r(mArkV?`o%U$MITdql%U#WUWgG4; zXmu9c`65MTU4H_bNV}c;p2)}}C24_z9cuhO~a$*}U-ntNaA#$^&WTE3l-8CID zPv~g0;%$8u)>%PmmrbS<1onN^x?$hL#Pb%&SPjo(bE#Uofqk{pAjU2P)wB&cl z7)kHbUfrhnS-`#Nrj*iht3;W==nlohu2%{J&NlY3?|zUH+qv;b@U#=Zb!-GvPdr+i zSfXro+BZ1pV-?3SZg1Pv1IY=WW+Y6Hy*cIh@|g#Bt$oXTNYrn9H zv9p{mcKt7lI7g31XH61Yx`hR|Vb=2%E+Oe{QwlHgeAUhQBr)}p%Y*|d4%>2UZ4=GH z{8FAze)@Pb*WRDK{qq#BzYp81z_Gsc)YLB9i|>8gj4wY_{IvRa-tPTd?{DKyefd`3 z>hlXTNtQl?9o$Pg7h0O%t)HCyvTNge{hdBPVjWqd<&yV>@33w3;^Fzq%i`aW?on8` zSK&-?LX7te!QD^iwG>Af&zaEH{qET=qsA9j_1wQ^S(HECrkww!yp&(JYGzXT(nZTZ zH|~BPx-$Ir)2PjpiciGVZkTX)_T1Igx1>*A<2082xlQP7%G)ifPQOFFqvwuXlFARza)GT&_=@QE}AIeyMDQ*80=CpGch{^ z0;i1xSPd*TK76~pR99SPThoDCLRM;@CQndbugRK!=4;k657DDce=XjBKWgr!Eo<@m z?PlTW3nhOb z@F8`XadI@@+2s1RzUk|is)^NjPHXvc$>~OhN&GE^8}n1SP3+&wi%#)9KjBw*zy4M6 z?{8xA1Opddm0epkDZu?(`m*J(D&OB;y4d}Dndxn{R~x6>8mP1GKkCWtB2uzR&tun< zDua^hMhD(kjr*!rFFQ1`skk=FXs?CY_7ra+kMs#Otv>r4CvD1-zWHR$dk@DOI~L!} z5lZWl>O1}Dxrwy!$@>P+!uv|p%S?T<`+PWdaow6I?d1IJvVy@3ql!f#0k3{Xais5i z+vb+$$Ct;*>!={5KS@(rb=MPCF%kDmAO9L&csakx%xrdqhs?u>Mp19M((5bE$Mdw` z6FS6Ed4A#Iq$qu(s>E5E?7g{W2Yhr+)coT+{PNzh<>|X_Llv zmsZ7@JdZ+83acr$tv3+~nDwcNrK)7p6VvpmC2Vi(wkc#qex6%p_55e+tn-sHO*l<& zPCT5Q9x9fZ7XN3{EZui28qQq5>ao?;@$-QfNj`?6a?{^EH~7ZWYX2g|WVhxqvC7AK z&-d1|2p&&gcWbf#JGV)vKF_X+zQlbbd-8pWIVMGp*&be3n*P-{*yQna_I!(xS>@~H zrhB54XL0lYoeR>Y^c>t@^t(+ef2T%7_1)`6TE+j=Zoj6&tCD_DlMXU#W8+EsmDM5e6zXo$n9VG{9w+bQ@L+_5~y=f zxIZ`f)&tp^pf85=R@Ci3_H4?*@}Iww`(>ZaJ|z=kT)C2sxyj4#oMB{oyL&-j#kcS8 z4_>X7%iQ{C^2(*M(;U9^*UY&u6n2tbIIKs{^$vp<OXyWz!@F4bkWL5hc_ri{|%iu zOW}`fWhm3{p9Y~fQ&(@YtvIyh!3JNx=9_aCoVPpubBVy_bt37UM{F+H$nCtCzxINJ zSglCj{oPN3BmTZvt#?1{#_bT-MHN>j&D`zPD@2r-;EfQkSwYL4^@rLiW8oz6)q-0pD&EMSnEB4u@4ff)tz2&_1=j81R|NJ=K zCmbX5|Hca0|Js$aY&u?Cx#KCnJp1#PQ))Im{gKZZukMxHup@EuoaO54?_N8zXwv&z zS{lE131uZGDy}T+nese@<0PlSi>i4+`|`vybLxNIO<5m5S1y0&q9q=YOW!RuQIh@P zdi?yC z?Lh0M-?iz>_c^?{(tJUE@=mv4LtWl4jb?!%!fem%Etr2_ezW0)N@$plp{eKQzE>%k zF}Ie#)_-oe_GOQPm%i}p#JxORor`YI%30YqSE%LuQdgz>dfY`1Z9Sy)>XxtBu`b9j zbLX66^Dnlg|6#OwEOY*$RqKnp3DPFN12<^a&NL1;@GDeQUo5z+V)|`8-ptxXg3mpb zea^fuNOI;Az9juquHwn5$-CC;$eo+pBV&H4#?~nBNW|?&3tiP`>aNKAXd0fov#^mv zbF0CR(m6#}O#I7(>L>12XJ0m3sbza>kD=kq%!!Yee5ntL2;QS#u!tjFeX{2k_WLS* zmS?A}oPB$p+KXsm zxBtnd=_jr)ng+a@x$#Z!&acG<`l9P!$NxTXseAhNJ6{g_l)XAu9xit5ko*2mE8^$t z-~D*$(Y)1RVe4*%WtLuB7h7l8W|{LyUgqI!)mMQxzO2?s`fA|xUB5E$FYo@3TVK?E zdhpu#%d7QwzfZk#y>H@aspVIf?+g2I@8AEP0t0zvd5@Uc7L#{yKbF^?Jt@W9Zgngl zbN?*g9+}nyRj~%Qo+xn5|F8W=*gF2r-nIEhq}neoEB$m@GiuS{`m+~Q{JjDXE^E?B zp0Rt~feS0w&S&`Fzcs4gc6Nj4kLYfDJD1}9KAC#Q|DR4+RH`vwTTr7^viPO%;^Z&W zAO8Qd(a9>-qHNxw^M_vKYlydApWH5xzCf(t(o3~tp@~|bm#uK?*)r>3g8DATzrGVH zrz`(Fe2U{o_hZ)Pkf{?A+?Ok{>u8+LifM1N z>u%0Jv3qBOS66c7G|^>y8LoU=vzmQcl-I7voeIT27-N-eJr{-l->23TBKl<2&X|*r zRIjcPT(WuQfdEFur6&&sQpp7@n$xKsc9^U(imuKl}cr>&J7 zt;(sjr*Dr~&ZnhE8d)~!@;y$f^b6?;-m^fa^}ftK$W1 zclg|n3nV(8IoNo){o_8B${4%a$lR?<{l9EKKgp{&@zgrre^&N}6VJDs{ZZle(u)6T z{X6BPui}5Ujei&Y^O^gy?I0KHQIA#g>MO%02uu+4k=9IbTaorZ?`z7w;Az`^&%KGr zC@XpueSG?{hgE%3L*~p`|Nb>g2n3?7O%TD_(ddW6$;4*l3U z`-Qddw~MMbXL!W!-@fTiX>*zF?hS|YryZ`b{M4E6>o+NK@tddW9t)n|*|Q)d>geIs zPhW-oej)2_eKX*H(!Ral4Gg>6_Nrf9BYalBLUU?s-TCdJ-t57#5~tH`eHVIpO*=g2 za@MnN5!EL{UL9EHeapAyMEC2ud)^Ex`m9rAE-mD#Te3;QqIczUv#|Di_s&0hmMpGs z_Ic(5Tk}Px^Z)a`zxm@+@w#1&ms{`L=~!TVPI>#|7k#C7_sO|02$?)p@W=@R-~V6! zZT{_lewyb>8|#W?7c`50Tg_j(@Z>__5rbzbXHrZLGKLTU66@NT#{PB3X?Ac#y#9i;D zSKhd7UAoGn@ASJJ%{%+l48HljUisXU>u$uF*H!TihOaf!CqG+ZYFNUXWq4J>g+ngS z<@@PXb1rhb8g##`-~HF@*^k0L{dF&oTt5(cL{V-3(FbS#n&})1tS`*llw_b7x`jX6 zMX_s(y_L&Dl{s=<=NISv)$!fH&n+Z7kFDCSwz$N&B-qndYh{x|tFXIkCzp$Dq1*rAKx)g&r$p6PXB8qjwgAN&cB;r+Wd94qML)u z-xdC^CZ`lVIvj2~ExkU#~m;j#*R6Z=S@TilU-t#m0`C z%1`U>Nl}~{WwZJJlk@di`Okg@-`u-@8{1z)=I^-$=Y+U#l_W{u+~GL6^l*o5?Okg> zk^KF8E1YVsKl=0M&-3$tPKEnT$=koTN1>v=Cy zvzqF%FY?E?{s({WXhl3as5k^oVK(aZLc%=acuIH37i`9=F8MHoA}LZ zkyQ%j_|oft?3)|M+i%q}?JH)^aP65^)p%sb4`C$dN{xZLAfvEM@v6nP{FSrj-Pn{{UVU15;^V28MBl%ec7)?|;tcHo=HDe<)7Q_x z(Nw`SJ-}9+<>J%A;EY!xsn3+kEy9x@)=RJSl3s0BGvRY){)asMx!+DiUcDG8JEh`l zYV`JfKCEAR=1gV(zp4EFz2v>SJHLOq>_0zx?{8o8$>DwHzF+bwXUkVj@6>oRfBt>_ z3kP=}%vyE*yQ$RsIaN6@$SA!K{E@qVtsNx&FsJR|0Hk9)LW`Q z#CtEc^qvtow^V`Ug_VPRhUj0u7pkuBiW=1wk~7qz5@&Sk{=aqn{oe17zfZE0Un%!| zidwvGOQK>;y!m+%v1-nh2YfCrmijv3o6JFuP6qbRu}>VPi)Nm0v^{a$+hLP!k$&6< z=9(G1X9=%+!}GCDyqR`G;-1E^HJmcR1o9-_3c&KY#9`wgsm}-o4z_(y>WH z`tZk>+beyxvPs481tzJ4%~XByj-OdThn4Zz(q#r~dRJIFW$?5!%3G{Iy0CPYbDYea zh(lZ6rZw-G=5?sHtHl1N<4!lsF{-cNH}(oiI~0~;Qdl)qzAF+DzK=CogF6ZeA9`j4|Fcku<;rB4e!Op7-NUX}P~ z`t8{jj1L*-@SEEvo{(&w!>#pYLD8JgSNd1Y*gEgc@h|IppQju#sr-^?<8d%~>tcz< zMB`}3{ofr;5C5HX=&}LHxv>j{uE3+v1M6DH`C$u&I!;(`Hrl*t)$13#R`hWs(18`(2ib0W_0B}DWvCeJp#aU;(5#(BFNueV0de*g1> zLbN#fkya;KP8sdiRW zx1zSx8&2VMyP}LI1Tb)`7_ORbm}7F;JE&bVRiIDxJyD+cb2U5G&nQ;#M^|N^Xua`rT>}n-w~hum6AgQ@_xEQvc}{N9P}!5u_5};$#vQJt;z3Vn4^@6!W(yJ!(qs6}ZYv zMhB>VkUO^fq{URlor`*e-iFNX?eSi^Zo&;kiA7Ckr#94nQT5}f+WuGT&5Mwy+x>LH zdo7vruT7d7Q{l4YS?Jx9k&~EDo9( z@c4w@G+E}waZ+x_K72WGQbJ~lVWoy8ccQ7o%LA2d$N##mIGj;>#$wj&sp>DEo?54K zhrhG>%*{i(zY`{0?oa2rDr9GFlqVs$WBIi6w|35Xdu&@=plR9S)!}`2w#Xh-51II| zP9VF$H}rUhXqNVz?1_mVY$y82@Ws(`J%tr z#I9ZNTk}9BTtVA(&XGw6Rm8I`_vvIVmf^k5y6dD=NN1VK(}gT70b=HwrNTVZT0$QG zUZvNOYZWE1B4(q#wcM0l^BlKu#ilRIO5QSI)uq4PtHYM@gzHvu%`j>b-8ow?ZMCfI z8j-8>3$|`@O5@F6x3scxX14T{vSUrb{~gu}v2sRnFfC)5C*N`R`nlHBBNuOE8nrh) zRhh9WGE_f2YNho$PeYD?RewKScyHgA{eySSng^at*-pDBPrP_PuzK;Stnxjlve(S_ z`K#w?kT0{_*m=!gyK`}#XZ~-0-7_;`-HbC&ra5ISyFdG${bb8M;(@tqZ{7%)ktkVn zu&euX@ZQ(4JvImSzZ2PhHsHgg9~-ihrz}(u{`f@Y*_D9U<^O}(qE>1(7rOTB=Du52 z{MDiIy<)&b^HiVthIhC7taIxAQndD{boiQ{)CKQnxig5K&6>HK?=72nMs(pTDS772 zEh~RVUz@pm<=>9ovi(A9cTLavQkZPQKT-1Z&a7{RRg3yRZs9w7BucyUY+sVW9a+|k zo=^Q#au#o&@+9|b_1$l0_wD_*Zcl% z-7GzwzAv@%L)x!Tx{D9q>{(?l`EtH+pCi-N-_?m%eB{ru+a_n-zNeU@Cv&kz_D+A% z;VoONuN;4{$R_*Gj3V_Dp&F;`j^!t19?qA(u;9zj_ntPF{hQN^D=glh{2}l?w(V9! z{N-0)7cwTYXzi_2;7#Rpx_5jY$KQ!&(Vd=`GCy4t=$n`~zxH^#*F6f@bj%@j#vBEd(?S+ zII2J4exsf8f$uhb8?T-X^XyHPnY_luyX{|J(_X=vmD5-roUA-8#(iPil%7l3Tl8hs zIp5w=Nz9YGd9~u|p0d!l-V~ z-SpX)CtO9Pyma4%m<1_qGCSQw)Uv0}KQ}#Wz50@0i}v3B9ri8%`Pb}e<#R5C7$?uD z&aX~LOI=!#a({_$(9t=`t*U7++E)3R7PZC=Eh2cB@LA$3ZWxNYt2=>kRDwxj3k|Ey9bU~+R*X-Ox?!PlX&3(FNW^ATQ zW{+dpo?l9v|DN!A9_#$E%Tdhd;omJAPsrXj65*Zv^_gwx{Jw?NQ`B16le4v5U;GbU z?JE;A_n8FKsa>VkeKwOno&2>e?ZKy?uDk6W|3v+IqVv+k$^W5n_+FvQ&(uCS@v56% z=F3^P+i{QC{2%X?V`ho>o;|wA<_K#Vk9s*rQ~ASJg6qtbyJk+Aryw9U`_h`md-q)y z-kkQw<%G^X?-M)^n1n8@Zno{Zqqp}-@*34#W&_!2#*>3tVl)D_TN$f~$eO;0b1nbm zc&kO9=gUgHlBf_3qdcPx+t(bs(z0~&%fFe7Q9es=FvK)`dK7R|=2(rOn9Em(%fB+` zDx~VSU3fX|vA|M~Cmc=|21kXC^mOzYY{aeAKoJ-v4D_s+oQE<3h4eDm8P zSy%BrWJcc3UvB(U|LA?N*#0Hx&EoqE@;}2>+j7=O~ zR@r8_ZRr#9>6W~E>!ew3NG*N-C@X_2bD4u)p$Hcf)&X)K(vzHGkc*$4fastv*@2o_+t%qCdY?{eXroS?EM<1^%?6){D&plqIBwt2~a!=Y945^34Ck|A;wrz1_nWUsrv$@A_v2y{+1ls}hwWqJO=w zZxWuef9r|GdwkEaT|T=0%x{|)*Y;nEh?Cr-ZY%76sn2Y_YTCaG^Nz;X9DcArE8))M zH*@AcyBWll+|_nNGw#*WmGa(yYhLYL$-m5Q=C7<*^E=vhR%E|Q(^}YeGM!~{hsvGa zDW?~lN)2H@m3*>kQlq-wUip&J6uFa&u6*G<;WlT2;X;|Rg9j$oG|hAqVr%MCopJdu zZ<$`ns)7$6d=)ri9^H!B+MIhb+Tu{hE3cve_uGH;uJ1dTG-0LFq*n%-oh+yNQ|)|{ zii~XJB6F+aU4Jq?7RGGif$#mk2^EvpRqe{+_7_i${hpJbw8`q>uDp9I{J+Vp zyXmOOaJ;E8Rp=?-Rvtwou^G}CY1uBup-nt*eYW21JgDBf+S)O|Lw{w~fx|n4b}~2_ zT{@y`HaG0ywL_a~vM+vm%3ieLq1?fe+>=5cf-Mo9RyUSjui)OT&7PmM)J=5Bl6BKt zUlsiL(z5tX;*pLt?wOhSzpBKR8!uaTZeq0~$D@$>iLdU|RsX!DV5@#=mfnm<1`iL! zKWH($c;$eY=VVXWUPIKR@l+XZ>AT z)1#wi+lPKx*txSHcJBAQkay>{FPvB(we-Qsb2&%kRJVo3y2sI3SnN~We1n9zOCJE-F?+7LhJn5segl9`0aeY*X`h|-@5SZ=kTd- zubz8Yq&g#h{`R7KYcfl|-w$7X_2JgkxySa(SZ|!PCMzjIYW1fMcb~2XUZo5c{+=pX zoubY+2N)HTt4~U^zvuT}I^hn}`|3)|#Jc@WUo6FC1_pW8pcdj$PvTCWA^=Y#Zx3;Uw_9@zr zMa6>DgZjN~Sk2fDZ8|7?amS&5VKP?*w(V&D>@ab$lCGJPiFcc?>#>}M=hG5(+qW$d z-Nf+N^x-v?6VGQ)EC~+ZTG%RcU(Ke#O*d+P#_`9-jL)wtx_S@__p!dK@^g*Pnxzc19-z_R;>D3{;nR{{@Tq}T6W9KGsX zU&PW$Q`LpNr7i6>XMQf;>*6Bkr~7qjX~SK`jlRl#mFM=%HMpVcmBtnxB>lKaKJA(D zoG7MR@8FX{URA%YvZ{+Im2qwLvrK<|=Z^QxAZwFb)hpPxNi=>__}Xmp_{hYAGPlig z?*{N)6Mf~W-IYG~lkY@6Eu&c(M;aNQZQ3aAv!X`*=FOANx)X2vv~mUB-ype3m}5hQ zwdICo7iO3Tv%T2g?X#YTq6?rSa^!OOJwh=R(J9+h*O-{B%rI} z8?%c&_oOh3XWVx|si0fx$EIJMJvVym??ZEik2lYJu)y}|8p$&joXiHZ6_@_qed3YAceKvkS~j?wD)AHhcO30lwy@_W9D;+hzwk@AhQ6$tXLy z=E$Z)g-5m+G%E7!udPXa`r}k_tH7I&2YOGhUGVT&p2I26X9qJD@=q4L_VNEOu6ZA9 z?`(hJmtm7UD`s}VQW>d_dylXDd8O})ql~ur>Cmr}f)?@W`Eux_)$7dJRNeY^Ez1Y_ zNe#cnWgbT!W(5iT#t@s-&|o2f1$jp{Bj$&D_oZHP?aUv*;EB~le&EZWaraV2V<~#4l@2ACfXN+eZ{K)8^ z?CdMu=&O}+=fqO?eNSihKiZq;yL8#fXJ@RZRb7cQj9MU*xZ_xtbUssI-ZJUfEqCQt zU%K}E|JRnr^%CokxQf2fba4(nI$eizo#j8R=w{;p?=zs4C_&S@JNhNoWeeo3FuZ0I z#yfB7R2!>r{~j&5RiYfPH|^qO)69tPZow~AFHJwz&GY(Mp-|v%LC@Ya=AUnsKJMxK zabodxx$37^*Wb7pvG)AS{7=iZH&;f_s5@vnCt>O3NX;`oH+HXCu*=J&$8QYETqT)BR*^nYxMXVgEV^zHkPImVv-ET!$)alO)vW%`8Y zEh}!ToaS@;ba3+2WwW~y3cQwDJ$ds^PhR8VqKU|Qn$({F)Q)ojhxpXY8qE}2`qd0e<{xf zw$=B0&mQ36QFBnYnsoPaAXAdoGAADEw@+fcQaDRAc0KMY3l-x|Pj6ix$su=MG;Y<5 zSzXV{j&X)4x9^bkWl=tjLQsD<{w#U1k=gur%lj9{Gu#J1i zi-5I_vTcbiYt_~r&-Ib9vs=6Dy4R#@VbvbZkM)7H-l1EW^?1 zS+vA^SNQbvlRh!AUT)QHN+^+W`eN)Qu9n!6m{&Y=&fKWTnZN!XbNc?`>fN%(;kQ!r zUa3{cvHj$h>92Pz*|6K^Zqn4&$3NYa?|b~`UFP-Qw@TR9=pgUfW#97Gl;llW+P}|f zZS3tklA5PK=ZKhVX--&jVW)vsz|I=eDStd9wI23PpQF5-p=4{Az{FFBs)DAZZ_qfu z;g-zYR}+dOiy!{yep)9u?YHay|JvV8rd9v? zzvPaM>BL(*B^f`z*UDd9{=i-9&Do&eF8|LtRZ0Jx?z>@1)k@Qo_ElUt?{)|4``R*n zD{K1jHLho4X~z-WgD+>LEYzq_L$)R!W{2t~otHJ)xNF+Bcl*A4 zI6Z%#pyD~bUn>6l!Z+t!J@jX?%vrXXE9BPR-!LnlN4+ei;>1UG=kk)fGpD^@{`B|l zr@w{vy-Yv;tw;XziyLL1>LT_XPkx{BbZa4vd@avFIai6`+ zl=9Bw_m)51UDI1DZ@;Mi=i>I;Cx1uq={~9roph7CtwKzQA=F6Pta38{@;%39bUyBV za^=*qYZBSNx3hm|D~sA5%CCGvXW@Ol7FCyp=Va^+w75NgWim1Q1aWE@yxaX@itLVq zP5r^&3uf(zJ$_k@XHIU!3YCaMPj4ng&ePKm(mSU%{pJ>H{Sy|i{a&THcwc*RD!#mu zbGn`IC%K(1M}@-VVsaELQuXdef62bg8L#T}Y|FH0X-U_>O&qfhSmd+?3r?10ocwUk z=MO5XJ7>Q6vg-ANE0UMCT{cs_p0EEk`eqK>l$D3?{q4LicVnHwBB7;r#pfTkz82ph z{4D0rx=T}==TClIVAWTw{y6vcqsjXNXPxzZ&T-dH_L_{Z>$Ut165HP1tdmup8MZ!z zDN`-RS@rDod%M0Lt<2aQ!%+8NT90wp+BbuJ16Mv*_x#%C>BmOy*td+U~Not$Vh#S@SB(=4+wzC!8(RJt=4` zo-wVd#7*l<)zkuOld~La+|O=*6TxaNJ`8H1Gk)T)CQioK;o+n&x`xQt`% zQA@*a7X@V#aUazXb?%K<<1anG{Bq^B`;Li)oM!`gHFQeqc)M2$`u;Oayz1;N%*MR8 z?ZmPe#>L)|EZNb)oeS0Oy^fbiIJ;YG*4>`fJgeS{tUa;)z?*Gf7tBgjc{}aY0xr!d zN5yuz{>WNlv^M2-m3o8IEWvcUL#|i3$`&g52&DHt{rz%Ffy?zr-R^2!y-|8{z04}6p<&mOpqeAxY6N=e>UwCd39}ytg znjs|Ko4xFV$)Y>jNiiZ@YF;njS;RJ*={o1Z&J&s?OdFSp94irf8=RJB5_7xd*`FSaRL)ctOw!pp?Xh6IyEy+@g)=8|Ta@F(Q`G~#Gxl#y zmHhVPqSw=>o9Ae5{xE0lp-ivZ<3S!_#?NAlCe3I&wbLk4Y1hd%raaD1h1Rg` z^6arFVNss&Y@(^mW1dOLg2#MY*LQmeU0-FU${v*8A>ncF-=Xk>#?wA5ol+sGyJ(4- zZ)@()L&}F{dE5>$-5Il}Z~e^oFRIw&ikH7Pp1PLD&b4Ksdlg5X!t7(tEstI<%lf*g zgS+H!lFE(6`iu82_HUlq>oChc8D{O*b){N)#8_PdhH#F*zoU{*~FdTa-+FX05(jbcLtpl=@bObf1}XE?@S!p1(#m=J`V3isG{c3v#l3{br;^ z-uiX$R<95H-Rak!s|6;q-BMXzS8#FZrCDZ{%O6!4Dti@Kin>VX*{$Y^yKH!ER#RjC zj;BqtmNhTtc-5*MeJ$;B#}?l?EF8wqoY$OA(=K~q(7M3oMC+mY40(&yS-btu*CaeU z@OD*@R-sk(f}NjtEV{R4*JlgM^~ZebA0E8C+pl>qoAl-5UHMsS!&g>SJ%6>etBUQn zd#$p-`UZiwz%p7pBTM`CZnF3wNJ618p< zmIOoD z@t&*6hV_CQVvh1`l4ZLwi7oWp3%MIItJ43+Jbk6%`^e^_2IpHPW8Lmd@7=~*m2+0c zefwV0`*pK|+njeo=jJLkt#5rODKU?~t}QKkO@Qu`%m|00mG+_%p37xJd@S0xJwNDo zJuBEL;fx$l&|fy*o;qWJ*)pCzQ|o&asJHcl+Y?(u;w< z2EzI#=dRpd!1}2wbyMB4LdPRj>}PzxzMdEx|L5h!s$FMP=evLFchEEYV4+<4I8Ui? zMzyy@#GThl6W#^Q>2%%^S$UL&oy@icFL-r^SJ-Rg5g z6Pgbu6r8?p!Jm`4^Ep>NG0$J`cShvs{l}-y-;e&A_OW~%wx?e@uBraoo$4-&n2Uw(!2`E5rgw*?!eFM4z2&bwQU z)@c?piq{SrdiNG*r>DrA_3KIaxZBx>)$__Eg|m&v7vx&;C9KViKD1G9|62+E7hOl? zOLqQic=%w|%sG1)gc;S1*zR9EuJ+DN{>f3+!<-V^nU8Bk+-93UrR+f6Ym25JoARaG zQ|uD2ObdO(EwpvA`W1Ok4z=FYXE!^}uUlU_VY-@Uq~av&7&DXfqLZ_2w(KZBewMH2 z#oHd?|I71F>E>itCZDzYu`B0Kci*nht9C^eop^O;p{VGd{g?S)zU0h*WBEtIrmOcp z-xc4}&36OJjx71DVbeYQJYM&9qj+5G zhBe_)VGB1*Iq98pP-&&zY11b*Tb8X^?q~b$#>#BDZL2tIl0v)x?rBkEVgArpz9NA` z`~8MVhF|k9^!YDQI%A!G;@gdeTMa>p)7Gd>k8a?jwD^Di&>S3=5Wj(08t{|(}9wvMwr}XZ- z*-rt-Jr`y@xphpUI75W0q>Gbb~;r-#>rTTl4T#i3j-Lq%v#)I8A>nCp%xyvAJ{Xs3Hppz+f?hT>a6XmbH zHrgor_-TGGFQeVISox#%TPDm+$yQ;wYxLBTk@Zm1Tbb?$5`XNyx84eRtNv+b?#n$J zcAUI_*m1p7w6ZnZd83LOIUma3L`t%!#ZIl+v#%}v{*l4?omm&>bibK5w{8Dd$-W3Si*G7_ys2TUoRG_!P}(>&Q)#SeBn6h7L2Tkp_b zwO1gW?fGfXA7NhScF3tudik}o=Knkv(VYfXpBh`TUj-+;kMXcv$vI)_Wg$l4;Ntd| zX=_?vp4ie}))8{SD{|e*8^)G*|Oh0v#^WMRF=|A3W%hn#}koco7{GPkF zT=GNx(!FupUZrHpl^@zzkf9eY`R8fy&$vVRf7)$6OR6P9B3Fa zcmJVDm0SOJ$|=lmz8B{y>ryj+pNlJF^tP!9^2zI`-r988%j3TZi>Axs%AJ~v9Vaan zI3~>PpvNI7`M=RX($Hel`qVZr)9c?~IGN^&=H-5oD*l_h@Uq&gIzQhzfmhevKH1di z5Lo7Kzl_`eg-N%3bAH#>iRzv%KEK!+~CgK zu!Sj{*-5*0l&x0e5m~)zrG)o)Zd=}MXL;%-%;z|Dd(&1w(=DOj%4fcbxTo?-{?V^% zdw4`|u8_ELaAH8uW8R4mo;d`6(e_MUDQ&19k-lN>d_&#M8|_+4on$7=y?*d};?;cJ zE&o_v{o8f$dFp0~Y1%gq9u2ge`E$cdebeRqx*L}8Nr?OQMqi)hz0Y#Z`zxQc7aX$Q zpzD*q$Ra$#W=Ejzvso*7cN-u4$Km#Awfy22Ssz`BCO+11*Nf3;@waUaa#^%_yL<&h zqzAjY-yDU01GZmBEC21ha=&@a35W9^0=wPzxk$?|^J$(^aVu)$Gsnquf=WId^l!Yj zWA>ToYY+OpHgL;)3sx#n8V7 zu8{jLq^=(}eJ1#Pong=9Lp!W688CwKZj zc(L(l1N#h}oA37qz6gJ<6gFk&^i>6048#0_H`z9%+^I;|`mg`StM%K~=to>zz5dRU z^;L=bKb_oYZm+e zKX526Dy$~&aQbzxEn$yT6?BgEM_m(*7vDSYLT#gb(&_ER;d(zFo|d)$WA@`dycQ3d6Q~PV5v;E%DoaC#jcy)%MoAOh4*XzmGnCOZETad%HI#hHsRQcwakPy#B|g^7^chUC-BD zd6x3{p0)dli52g!WmIvjJ_qH*BfIKVean{Seu@qF z8N@Vi>$*P|kMT40U3@Uvdi|yYryUpmY7IQ{dHcuGjdyL1MO%J4()Nd0`i1`D7hn6m zR?nPs;>Dxh)eD$P{-!Pbe~Y8&3+tu4Z4Zynzpd(`^JRAFU*|_kHjN5bcg&goBK$&8 zh8lCG#@B626rIm2roZ05%)ss8rh<>50nUeK7O=~+`g@U4Ze`DY=DH9!!y?(DKNZD0D{GVs z(wP1Pm?hihp53sVhjTL5J1wQ^EpepLbrW;X>)da*!8%@vp&_Gu1cOQEqpA(Cs5C{^i-apt*Ry9lF`k55FVdhXo$(VPEy>!Z_tR)1D5@{8HO@A)qo z)qSVDUhh^j{n{_0dgo^L$+;?PvnIbjn#<_7F+TI#!zru8w%j}PXVav`Q>M+B)w`N%IIdzBWZsd$8+{& zuRfGrzAkCB!LYaZ=qAqfv!_nYPV=)ht2i}N{N+-E&3iZfIwWrQ$*J??r@znVFaDjf z=gq1VeveHvqaXAqFUsgFS#tUAtF0-=jLs)WNKV|-|DZ{~*F*Md%cRMw34v!5fB7`| zsTnK1$jdzx{pMal>6NTyrRRk&CgnxVX6N0wTIeqHMF@^_!L zinHzitFJfy@+BoTEzdIc`}OU!8yBzWJKd7?D)K6~x8uyBGc3!>W@Ltl+pNDB5wUf1 zpDxZIzNbj<`HodlS8Fe8bGkOCW%yml>3w0*ct`gO2%|Md{xz^;%$qd?{0*i)-rSU);k4a~Wc;U~0l zkKti1)debjlAQ-C7lk@}3Ey>kQYpuue{Nf5>WcU02ImKCGd9~Iw54yZ!S>)wRkU z&2C+P>SJ8FH>W#(BCqgi&(}-xFDgGVzOeqeBm4WNi}&82eEGX@^JLXK@9jPbDy(~u z$7E}(y!>Y@qtD(Uyle>|Ukh{=@0+*>u3wX*YX z9PTvi{;{nWXm;-DI)UD#ys>)wsdxcdU@E>!QcnRjzq_N}h#*I7@l-hRWx$mX1_@}h6LU9%}0I)|5b<=xtr9KCD7tGMR#k+ajIitl*5u9+<>J&i3lEwEbpda88p zi|>a%@Yl&3J2f;fAH@wpH_I=FV9CJ6UwqU=&)Sq6d zm(D)(zjNaKt)H#R+1g*Posla(WK%QioP9ynw}w^PdTn?9NahthjymQiZUKR; zXiT5a<@n8XK~C{X*9&IHpWF(5owRFHSPZvT9lNCMlBCSWsE5u1ANckp@${`%WV{r# z{%A_j6SlPi&jDv+WdbTGgFrXCCa2k*jBm zxW1@IYL5?Z<=WLhJfHp%+qHAH57%BF5&lRQ6^2hXKMJE?ZLayU`uRq!bz%AqN0*Ae znq_@<=fd>022a-MzHl}D(8u>q>G{Gx&CmOqg5#gx>e71E(OQo!clmruf2n5(#dF}op1L! z@!AKj)JWK3yiYduW0{ZCSI)h9-kj>STAR97eLMN_EmwF=>xCx?8|rVA)jegaSP_vD zvM}>ll|d~gs+XQJ{PlbCBegr-lBe2IW=Dd^q_~#wZ+cLiv`iC){ zDdgN1HLFhwb9KEL%^{P2-Jz z+;#OYU$^nMkSJv_>oT9#cKey;vg!#RuHI+8um5uWB+qy3*H>M9+4oG+Ev0C>?*Gp# zpKo%SGgBxjtNzfYf}=^>&iD4!lzFJB>uFu*^5|w>xp?|?@#tH7IN$a*mdrVN$$G+1 zAEB)izyIQ^knH%eqsQ@?N}A`k|Eb;gw^%PIFj>0J!1~KG)2!#SZOe_)BcFJ`YAN{n zb%wP>wAtsD!dV)Pmvr+erK7M-aLx8u*v``kO8iw5I-KQ&0 z^XsZNy?eXp>@^#23swQuEu9g&D}rof?s)v~Skij3q(X_@l;OIuttS2S2!Y&9HY+^gxIP>(nn6vAp^b=;h4hl4#E1e+nlI6$^S)Q`F zrX|nTeDRIl?3+V(v)~p>s@}O=>IePLe-Sn7?b2g#UH}`@=H zsikc*e^YbOx7!PzyO+HUO}L&GwDyY5x%sE1(d?yv>$R=kr{K&`>wS< z-e>tVFW~cco3hiVPU-H~)Bdsd@84O4u>!6KOWoG)x4%~!_0oOn&6`~pPiZeN_dGN8 z`F{T7r1>(%fm-Z~*UedVa_dU3P`6ngMw3*2TePv?YuwJa{^(o@yRylA6~51R7ENb6 zKOw_M`9XMg`O2Mle^0+(a`{twSzi1-dA;}F?LRj?{yqI9>)W++`0ZLW^Pi|Z&%b&r z{p0%De}C-n7SxF>*MF|ACb)7%K^N>d*$!8yj6F3WB(#8a$0)R|19<< zlY>eN^S9M~j6QVfs+W!y_uHpcF$>SGj*G2Vc%8O&n%bWm<<~AxZqzN1dK>+cW8<3r z`p-Am@ut>KeBv>=r9{SAXtt5B%H%1A7ghE+6im2w;fULB;r9MHQzsmY^xyS<;~&5F z``0rvZFc#7x;eRh^I8L&d3xnqM|(cVnf}?orDmzi)XL6vv;IGFj^THSD?L-PposSm z^Y!TmCAgkj_2eE5mEF>z=i@vf`>fB^t5RF^mTC1zPrQEKCfWK~_SZfCTrz)sPj&0~ z^g{o&;?>zbFCJ-6ON@FS!W#3iyvEDc_2-g9A+FEgUlVxea&>F@!Vv4OnTy%lzx|y4 zP-ec%jpHIsDnHbxT|77Wl8t=+!W{-IKK|EA1x~H*%xzk0n!|iEq2iL%-Cw-v&yf#N>9hqGzBd#+ly_d%*LYK{x@Jipu& zUSF`ay`{pVZ5ppS7$-ZUke|l zk9(xn8CKW}YlWZC^|^9;ZgEl&k_l5NkN4Mz&^teeEU!9(IsK-;xP9m&>O6MSYId>ZJv z#(-tA(;?@59|8nB` z)h(tEU9Yb3J+bmtl6BF&=QnPL9KJjwTf#4=)qV3ty~CGUoqJ}_?Xc0DzVqLzT^W*B z7roob=i%WyQ)u7U`?~Qd%kKw+Eusys{f7b3f;pNk2ZhcDdGs? z47?D3c~Ymkm}<+_R~&v%ulon4Y;Y{m{J?K}`hw$^7j;Ye&HHb@@^SebE3|4+Tx`sm zdpQCUE(-g5V<$$R4VzPAX(GC?(06fI!t?vjT`oQlPo3& z!zb~^Osz2E?yIjJDYNlJ-rqVUc2n+^Dz&u-JDrmEiRL|?_}HbtXKi5rwdN|J!)l@~ zhrbH7@b!v2Uf5h1%E_0WwCsAo^KC+JwphGU?J%2E&0PF%qLhD`MyW@QpWCHxc9&0? z8M!_1FVNY$fmN*j)X6ZX<&Pw1giLT+kjRIG)(CO_=sWy>hqZY=&$!Q@QIwUgVIgnpW|;aB37T_*OXKceQP2dpd# zFnVc{5xFk^MZ{^tK+XDybbZFvPvtJS1${DBD>xKz*|FmAx2t@`4_x1D$t-YQ>OLpu zR*q<$rynq0#=SencI>hF?XS!WmL4c$%QQ1#GF+TK#pkY< zm`^w-)4G&jSJiqRn5M39OW86lXXV=aDwnRROug=Wdg7^bvSHaOr2!w@A18h7`&08_ z*&{Et=sn-IZIC+WH!rZ}{ESse>JvjISo!yCJF>&K$MTNZy~kRT@0okDC0!+6$%ZU` zx0p-w@}6rQ`|oi5+BP}XaI>~{+5+~g8%(6H^%Sk2%O@Zh!?@Vm!`oTrtZydYtXEpv zEID&G>|t{Ak-ww)_4K+)>Iv5N{ATRR`)5aa?3Iy}NZp?hYiZdS=g)hXZ$Y=}5~m=J zgjae$cJEl$yYt+fGv80WJ+gU%?&Jxkdc50H%_JwE^ZX*b>+kmkF{VdyHM5uK zEIa+mWk$ZS{b8|Bc{!7dy8YemmNn)X_@zP0cX}z*+ZM+@-q8=E=kMg^}T-1&ZcMo z8N2_QpLkAO$W7QSdvHc1`&@24$@HjnJp7N z^H*Me{l?*%?aBL!KR^G@FQ&4;%xE4lWdy==49dQ%le+g=H$ zA|3OE@Wb9S?Hv0{Z`V9u@oC%k=I5MttCvkY z7aCsbvA`+Q^k_U=;gS9q7n-XKJYLonbPjAJyk=Hs-O6c6%UpuZ#%;`i}TM0GiK)OIL3Gnq3=rnBGudq*hRyRgx(SGber46K+0!X_@2% z^&IctOJ1k#Y!cbKEcZ6s+&KZIcg>5>EqUh`B0E7xs@=U^L|aPcsPFCTcWZhQ9?ko` z++x0pFBC+3QtMBRR|H$I2I)@XjgmudwQ~f{UkGnHP;V5 zDkjMb1hlrbb9!e4SE8?{a$fx*>Gs- zW^MJqg5_;o-*&y~)7rDky{|#lU~;ZbGw+;p=R(w8+O=ML8J-on$0BBi%toVmbwRA_ zJCeM2vxM`BEZW8EeCUqD?&QUff4H5|ezEd@K;+&1QMR8JDR=5Vb*#44u3b1e;o)PY zR2i=;zZ2(`1wJZykingLtUA8#U4XUcf@glamL)O8wv?!R_WEwEZ?`II62DYl`s$y- z!GYJ7{JuZ)A=^4`(d^x;($y?qPue0L;j;VhV@`*ryE*PkvS~i%$(&y2zKb?1|C}r^ zMLTQPisOk_u6XZCvTT%&lFRhDR$S+&AR<2VUaiEEY3p9f=!9I@t+rQwn`oYe6-}+UB>#6}rEg9=w0vuf12MJLv7+(yxDMx`0V7-!6~C1y$mEtk;iaU?Qwd@YyywKR?$gR9b&vyBh4Bmg?Q%kcK&Y8RA^m?5e ztq1S3WjS`f5*GE6c1@I?qq*u*R>mp0rF?UjG5)W*xoKYDy0A^h_)5KM4A%eNwOrY3 zbNch}PS!NPGZkOD57l!2iMcm#uF0o_z-HTo*%LKmf(>4{t>p~XzWwpZny@Q2QFAjM z)J~KSozby)<+E9D&bKaXSh4s_y~B-;Nl~F?lRaNZa7=6T4p0!apDbD*5^%|DVq1w* z?N8?~f>nRoioZ<#^7X5lW|*et^Uc8u<_8|9P8NBSyw%~d$@&(rF9x+YHKQ(YeGxml z^q$n$&WBvq3M#&{c6o7~>YJN+H_I>fv3BM!iM_w$c2(=oeRk$@X+YwOD^o?YB1_8V z#qI7rclO#`vD_^gGdXzw%BH4q`Rx!pxm+Nr>z&(X4xQy|x&&lcQZ}@#Z7Y2GV~ORq zupqYXXCAMrPHtC!$Qv_-&-qMhf#!s~qDZE^V+r>kE>es#|I2b%de4rCbDADg#5kv4 zJ>L^{wQ@(J**rzf*srp_)_ZT4{ybjV{W7OA-=k0=@ZD;5=2Hg+1y;REv%fdhUR>~+ zOYlQ?f#cYi$oF<<7>j%C%4-m*%2=G|~EWp%Yn`}=YK+C@AI zSE(1(Tyr`%TgxVwZJG#wdY9_qj>~;gwN8Es_a?`@`O&^3vGu?&ZrJ&n*d>dZp%7!7H^+{xZ9-3$LUfjE-P3 zX6DSQ%-yMJR^M0K0S@zzaW>X)@4h{Y!&R- z_LU>1)LE3vHY2jDaF4iG0ng^wi7KLU{9)(Lu>^7-v$?lP{kG{U-P3bps!kd2Tf2;v z+1)KaWwTGNqC?*XmpOdVY~s`OME-^do9ymWYRWcn5V3u|ODi*0J*U84=F6o8#qTnN z-c>DIeRJBpuQ9Iw&OKxam2g^N+nxHS=$po(+Xh!zW@cTPHLWrvLQQ$QspduJ`zu$T zX%PND;pN8T6|*7_UAeoM(W3qeKl6UxZ5nM-*C*T3dY_}MOZQ9FXcr%@Q5Bbb z8f$#{uhViat<4ujk1d?OEPVOyo;meXO?&izioe+He@N`v_b-KEdj&Il*KLbVV@+;n z*?F|^klzuG$h(IWtvWX!5b7)9wRvCM%-zhL^7muwqqE=d#;`QHocxzwXKKH)(LISH zwt?F){`St#wr|_xzb&$goKtt#bnfl`r!x~L+y9Mw&mI4w_F+tBT4pAjZO7CX%N!;( z7#cWjee|gG?4<3xoxOJRhnM>rU)Ea0`!hemd6hzZQ;2@&0=DEv&*Z*u&2hrBWWOC* z(Ej^Gcl*N38Ph`!U12|^&iV7s18zS?o2hT3wt9rQ&0c<*pYwR)%r9RyZEybRR-$m> z{l!&Lw-)v|&kxO4e||RMkYvqDi{AMuJ1uN~h(2E`)iJBII{fzRCz*>Y!UL;!MqM+R zuwBa79EiUpfUigQ_+}Oo*D?TG%8R zJ4skUvF>rFkUg?aMJ@K&q{X^2_&z|?SZ(j3DbjwZ7!dM?GZx^vI!@xGdT zxZ#ZAEp3VRV6F}xwyGN@_ZhmpGJ0097MnShPYzzDnU*14Flkn~x(@f0EtZxG8x)wr z&uo^ttYGrxgtO_glr0yIb2uC-J>Hq%eRmkXIty$>zOYsuBYc)82_EER&iX)S$f{z{ag03?@_rPs($DDy;arP?eDne zK7PHfZs+f>uiu#)=il3Na2axK63 z%&$yKme#ZQt;+H~{k?I{qgihY&YJi-FAnAH@$b@$aQpDPXQmBzJLA(gPks9(7yRwq z>de~nsQHH4x{1jt^NodHO;KKGkif#L%iJgK6??lUc2DsE6PM0QUNRrv7eBx2V{F?T z$)GZ0elo-A=@lL8rbx#Ln?K%h^SHsGYSXtD zo;)g^qhtF|_Z)8#Q~bW8)xlX}J73DwY1Uo7w%sqqs7Q(B-Q!a>7nEntHZE_fcYf zV;}x>Y1xK-&%fJo&e3yBX_?9v9O&g-$ohYh$hs#dPqKblB^)F7I`7x*oJ~7DBep*= zf6lz|<&)`;40@*9NM!pzd-J?(Ud*ibYHRn~2&J8^(R@&NuC!T!A^XXznssN-@XpZP zbkth1pW#$f>y3%ssY+D^q1v@48?H^>lJ2=&-+C9T_GXGad7T!)^hc7ZPBei-c8=MRO0*nB8&LH zC)TzlNgl3V&#HZ8*FOQ~+mX-PA5^G_Z`Yov{Kswo!pvP3H)fYVmu6>VJAEtK?CgZ; z=_ZoZGacsNJ91;UOj*Phk>k1(m)ROMzBf3KX;AB|pD&#BYn}3a1*KRe`Mff|w%=N< z?cY-Qw@548YhM43n?Gi;`2GF*GZHfHNZDGSl;%oxy|#E_=dd}RIV3Gc>x}&J)`{Y4v4ZquDDi z`&>Hp$Z68wMbh4q-c2|8HQZztG>e}0dcAO}s+scaSow)<%hr4=Il$NTTQiDp>+*R_ z+5QGPUcK{l4u3118gp2Bomc*%Ik)=Oi11xoKdF0$_?6Gk_He3A$Y_5QYGuy&R!b_# zquzaD$j3{}>~rr0o@ctn(9HQ(@o00hjnuUXZ$)^^?{2vARQ|^XgAG1v3^P|n)_*>G z{a?J)%a zG==$be8AKj27M_GMkfB&TUDRR_(*Ap>`v)B^~{$y>`PsJqolzHT_KjK+ajWUH+^-T zd%`OE=EV22;tQrlvl?7foB#Nq&*8w<4Ofr4I^^zuDW`4b#Oxwyy2ZGfD<=K_RYuPR zT`M+-g!pDKC-O%x+Ivs>__1x1*xsIwKDzDevA;65{B6%1yfvQcCpfR_%Prs%SU%yS z{(b$)Q?)0|Rbca-`{~cQ^l6UC{f>*?9IB|am*HW3(fILm+|~M{zqoJx{CxLx_sNCt zKhLzOe0V7PT=sNv`+v1|%RVPPxwL-Lf7d$yUq^P&Ji}AvZsu`hT87ttZFvd#{%KoS zG#lKXXv~*2dr<%O!RhNIZ%^FX`+aV1^%UE}4nh4DVd+w5C)vIiXSe@keYnkveYano zzvagZjc0dz|9!gCxVT%t@_YK`-m0Zj`Zvv6dFJ0E?X|L(tJp4AX++O>p71Qn!S=qr z|NpKxn;!1}@bBl;_HA+hZ|3~HH|58puKn*@u6}s6|M_P351KDe=uYx}{6y3{w(jxN zaGm9qob@a}-W{HqwTzP^iSOrkp-4pu+med)5>ux7wVt;2`!nN5@_yYvhCkoEw&yeB zH2reiG&;H?{(s@ZgVm?wf4q3y??11ScjtH0^@{#Ew;7vjg9|s^dXls;C+D`~RNt)` zldCq`RBmv8wfAJb+Si9q7Fo7TUmMf8#s7K=AK$U2Xzmxel(j#3-TK@-@5FRYUUAj_W>g5Tx^&dq#BHqFzuBv235%R6 zRDZWUq5t3euhD5!ihcK8>Y2S$G2{EvWs~`3a;=_!maUp+GeY}_R3vU&27oKF`PhRS_b?P@*$SZ-NS&k}Z{cPh#o>W;F> zJ_^yD-uCY49~+fl&rgcpS*|PD(!5%>E3hDhFs*Zqr!bMq{>UzH0*7z;I7Ul(TlKk=3O_Osv1 z|2nB(SgBR?G)=|W-{78-c$OO5vK3z8qPMoKTKFv5^V&@@$pxahr!Q+Ww+HK_gm&{xOt<(ard;# ziw(~0fAhlbQ}TCd%e^ME?^j;8*uH7=y*s8JhvaWu*|TGoZrGfnT!ns-_EzA&%!H{bf->7-QW&Q;dN*HiM&>`6HN_=}B{ zWYfE=&vY93c}qXU>lD6gvitwb`gIoTRz)5%R6Bo+m%S(M@XVTLx9?wLV0miKG)?Ny z+!yy$k0$^6-V(F!^wK&0d%x^A5`Uq5gw49nv{>u&sWbj*c0D<V-2vQF<>KNd_0vRi5sFJb0ckUp_(J*&~X)TO6_m>5oatM0e_E5Ob7 z+b?qQ6Q0~D?`F;`6hD|Kc{=#fuWK7l&z$P({J`{TN>`fbD<|FZD3{>dmJ$+Mlja&< zzT$i8&H@jSb9KEN-a0LRv*R^$$m!h8Hp?o)`~yQ(L#9k~Iwu|JeteeCs!7RQjKYrm zH4?imGtOPwZKAaOR_{-*Xj{)k!izDxae!J6)``OzEBPU<#a%6=|??k}aBeKOS=*-@GXN=9{ha?fL|3QihH zUOAyR>C5EU856z++h4U>vF}gnH`($}cG7)Q__d!O&9>~h8NO!Sr0w$};wsaZ7VSvh zZGG~RQMBLBi}Mua*=3{VeR@!G>Bfx;lWAMom@U8GQ(XQgFf}hZS?~JFR~Pf@%QCl? zoVUJLc>Y67_V?S5Zyh_yyZk}i{ZpaN!abz|Jwf(v)9u`!pIDz#mR@J_+0{txzCwNT z)kMZ%Ho<>wiw*m$BaX)H>TtZV?3q&(cY&v$*D*(q-ysGWZO3Izdv_>0`AuwYdwX6u zWWC2n`#9O}Z80u?1Lb|Yr^+rl8J#il>mjY~YUh*1jqjH{HS99<-adWO_XnECWgEkf zxu%=Qs1^k5v2fY<_uLL~U)eJ|!cFGt`OZ3-(Qxh+3vH!#LSDaar`KOZ)SRXX&Qx-Ss|uk=*fu4P~7Li(bsj*4!o;aY#Mkq?Sr_ z?pgUL1^d_0X6&AtJH!(g?Rvm=!tc7-7g-kLH=;UQ)+DSDJnW!8VZGW_n^nOr`h1rS zK6`4Yd3+I@Xt=E*$#s3ym%?2url>EOSYDdvdoG~0*!2dVd5FVvr-!}=loJB0CCVH4 z^5V6hSu`#?xvFhl(h(`I^sUDjPAA8)R~^5S} z@1{mFiKjj}bi?T9hIsDIJjtdbW_KR?u2~+W^EhQT*Nr!AcMUjf46PNS;^oA4P2l?7 zd~%)iK3~?SyB1og9cBw;HC+{VTrn{&bx~YsXiu2Zq2-NNznz}ncAQ_=d-K9Y3(u=O zIMVQTo#V`TmqUXSpRNfzkyY?APV8^q0^8UxZ4rr6m-+jJT9n4_U~^cRH(OgmyxnvX z6OX;Ji8q6Qz@vkyfwtZz%_kOcy6u&?eesLsFRjQb`6EW0!JEwt9oOu%_$jSrlYP@= zbI|PMSe&uAkf?Q1U?F^kqTIUbeOql`BK3|?@`0la z&#qowxaPiq_j%nH6R!lzyKKr8;&B!JxZ-gAaxv>R_PI9`dp2i(JZR-9@#)j@>E81{ z^vmTH+%+%dJIv(Pl{*_3CH%WDYazewC6QVsLMR<|pIXvJxTto@a(Iu3%p* zYc=B*kFT3u(CXMfGdHf1T((gA%7V6FW`hkezl}WH1uG(yLcZt3&6sN$)0@SUT&q5P zAH#yzk`An@C;L|>X&OE8kbkRmd6S5RdhgbwOU}NVw8YoWc<0^~Q{=ZaTU>i~e)X=b znT?yAV`u)!{Vn{yay6IHukZ0b^Hlc#ShG9to8PU8CwY>O3r*ALI+=X+*pl71dCO}9 zi$%X~?mnNk&Em;|&HvbEI`{msk}Tb!6uVO5fc&;F^A%T8`Hl)r{;VSNK>OsHnDB3B zkG}eG?dxs#^!Tki%bd-0-t4UZduL~HJHPzB8xgx}|6VIBz4+zy^|fp6?_VyEmLGAu z=IYIh;^$=lEu1@3`*re-g8!cr+Wr4BcxRe<$0Ip-_!E9bXg`X}{7 z-X+&oZYcA;cA@u1`Go~*i}w}0-{ajI<`A9Rlg`>KeSG)hskY1o+ZHv{W#2PcFVU7| z{>SOjpKWQ`5&l;{+4x`N;ZEtB|J}|&l5gABEI~`*t67ut&&!;A>Y!`T`g>K>0?Xd4 z$a7v6)^pE3dpyZEG@x+V!W{|^CC@g7v4qM?%w@ zb>zqWyvoP*(fiYnD{l|wx_%e34gxN8a|{J9?WxMzOI zFlpnvk?&tF?Z4kC?>4jj@$YXco%B3cNKAWcF^ARCy|%FS8H78k$mnK>u(&Cd6JFM<|m-?IMj{Nh*L z|F>K})qSx^iF$E8hyU?64cFZfXMDt-Ln-H^C(Fri(|%oW>{!Y&h2d;a zq}GbBTt!U&GIW+bS*eSpnZ<4m9L+TT))@9z13ywZbeSD;5)Er$Ay#cc0cat zy=}JR;LeZ#?iwFYU-UHZZqgxU*)cz>q=FBB~)8f6)ho`q$PF%n0?%g@h ze>EzE9(`5w#q0gMWnawe)|wThiTzQYsDA77&H2X{ef$~s=8Ip^&e$s-_|^BXj9+2Eld1{@-qn;VxN`F8Mm#rF9v&!v}tmcJ|#D)Prj!tUi3vv?Cb%kp>2=KtRL z_W8Bf(!b?Z{P$JusmUn2&TVErTm9L&cUBF5SyB!d8>HFIE_B#;KJC~{`x7;`pLLs_ zKDktMFQi1~R%WlmL)Fzr9GZT!`R?vd*wqsBXK_OCM!AI?DLdnR9=udEf5f)7sj~Um z0-d`mDlg-NKAa0+IlJ)5PuXU^%x~Ly9y_W}%!~RH8zi*F#xbam%_ugl=bY+`3DPAD z3~O|ZO9S7oJ)*6d8{hDAcVQ^Y+lxZJ&2v%$o!6|Jvn3&Cy~iQm$YW+xraC1m-*nUQ zSB^O4@?B=~|78!Wrz!NUZ-3%_#~>$@N5lVy(O$mT9p29_+=y8^>++2&7Kh*1@@SM9 z{BzG(kf*Zz-J?f}PTptAJS8)`S4iGicHu$$j?(XZ^|McY_GO-|zTt*#r{D{rS62^R zcrC^fxFVC$Ni6fmm5g;aTbr|4uATB>mPnptYI;cD5O5G6p-XSXJmKaXqeQ=|h&OqNSxXcXo94yw{w{ zKD*#I+xf_hgavZe8Nd^nvK7V$}V(A$h*LBK#$}0T7HuV+1Ej%s% zp^RJS#|Finf){w?x6C-;a6(l`cK_>Vcfb6btex{|S}lA2z1rQeAJ^^f`|Fy0pl+H@ znx1V9bLI6;;os*n@2wQSd;fHK?I*qDm3QN2U5ithwdUjW&Wm@ao}1iIH_=#-`65@p ztaX^=wrAdZb57)MS$Ff#uba+u3q5z9J7u-|TwN`P*5chldqZvVeS-?mNvH#=8f)qh&GHUFFY(R<3yb+;{N&)(jzem~}Z zMa5rBp6Nwyi?&Perg0!7R_H&i}+$scbKyywHi<%v5jcQV+k z6hCzO$duFgw0fT1X3u%kRzLmoW&Q!nd(&nzTULiuO^TK{-&50PG*ReoW9FP{jj*M! zxzn?q{FdFGezJl=g7czjx2w{mLL<2z_Kym6AHu#%q*~YQTa*J@b=V%jGv; z-m`tG@8X5~MI_g(o@QvC9}&7$_*SC(UWS2NF!n!DtByi#q&L7qz~ zqV_6>{g~DtP7$rQ{=4L6B>SGNT7QE-Sh2ilvPs!{^<0+x{qKfrs&6#U{k>t+el2n5 zJ8Jh2B+XShTpGFb^Q(Btjy}bOe>J`~FXZy9cfG-^ATW(nU--h!4~}0Fas>{t>0SS1 zcOt4HPBDy~kA>g$!0!!DnD!lv6-qc8`9nxbeS?@;(!!`8LG~GiDvFNh?W}s&*Z5A} z5glP!vc+~ONAtF$cT!IB9b^48+r*i{f93wlQ_l@*w?DnxW}3O+t;s{V{BQhIIF^Jj zv6->&g48b42|r}SJM>bvG{0e$n4w_*aLvpwOefEmug!nkc8>K^ZQV47lB}*Jj7cSV z6ZFNnTH`u?#_!UfA@p?r{pnLP%T(iz@bNcr_D(rbyi1yKeWaP@{wb%V2w{<^SY1PMyMWV&<14xAHE_?qcAR4Uf?Kd*`IX^_tZ_ zey6{c^#AOWlc?Ggw5Paus!d7S!&`693av;g+MRK1*>557sPGwwblA>5btth;{I4M# z5qvf__sQv=)zfNIo_AhepPy^Jal_j61$Jxudu^;%=00y0b2(=JM50^zv6$C$MkT{* z2@M(LjZKeaKlK`yzkmOBeogWJR^i|8_x;}LqRQ_1@9YPeZ~MNzvv2eFx9_z7`d%UO z{L+)_19m;Pp008GQQYs+DvopCXPuEYet+Q928rqCCLXA_kZQm5;i#B*E6*CA>p2<{ z`=^^k7wwYEF^O!~zw>GF!x)xD?<*`~XR@vL-|5vRC?j!eMt)*xiPwkIid>AcD--4~ zpU`Gg)}9$#e*a&t+Okb+@?`EC$T}xCcyHOQ)fKe!bW!ZI(lfn}r!p=uy833#)%Uy4 z8NIJK)6P6&)w=2I)%h`7)+n#H|MR?2*=HS7(*F2;#xg}WS`1I*F1b>6OyPG@z*E|$c&6b=e6w0u(aQiPduloU|rm?H1_Z&E-wOu4`Tm82a zeRHxJ4sNbIe5tqp>ATPy*>B75UX2eaSv2dXW9G+Y%ne8Gd!Deq`O&?PFFr}Spl*Y8 z$YRaz%gX$IUCMIoGKP~QU997-nN9QU+UfpyZH`KVy*Ja@FQNidWJ}caMAOR7wHW`s zv}1Gj_nXmj_x>H4`~8h`gBH*2{&)3Pv+4>K&OCcA=ggF_v_mP^=eg&{?oWUI^-hV7 zwA*jy<TSkAt;!(8LEiKg0R zrGjJZExTLZC~rDYaqa7~H%UG>otDo0T!st)V!&u1qEXf?ZDEB3wnX1egJv{=oO*Se?9%{#Yk z&&OqpW=_lIb}QTW?r`FdGz05dQ)MbY|GT?&>%Lqg`+bF(X%V}-%C)Ad&oq;M5^_<3 zIpXw0X}d3t{C@k2WF=$GE6-Q2tA510#N=nypKsfR%RkvCO#G$KeZj0=u{K=o!EJ$` z>{qw-9O>F<7s8`FdyDX<|Jf?`KWAL1bUEQ(_U7K+cN0!7R@wh=s(t1E<1;d|Co@-0 zPFZ#K?Ac`(=l*&8`})SauNy9#F)r6l%VYhrSF6_i!tJRKUu`&bVMqHrJ%Rfgi3Zam zOB3?=f+OZyd|+fdZWXm=N7l@csXrFK+FHG+DyV;g`SOdo4RygY9e#Ib&N@4_{bk&; zE1~Lc_NL}Krv*YTYn)`Y3$9ov@N|mlt5sXK<~Cm{C|kH$VwG0mXW#W(a?7TKo5miP z5b6_PzijH}+O;1{Z{MnJ(95!kIlC(1apC>X2Sv6T>~~IG`fE-$hvQu*)02tSX~rVA zJ}aL5e*Ns4)OV-noVS@(Ip>Ya^@+DntUkdX*!Xh$7VqgV*lq~PmXOmg2JOYe|pe?9aiKWR4S99r>VO4SGTE5wQFFM8Ed*9;adC?uNQXG09*rsdY6UUHaT|y0(vSw=^&C;63 zXY)Z@ImL0Ify<#7lgXz;?n$dWd#Ph_jaOo8V&_xWq)Jn7t%Qp+PRoWrm!#iOR-%fXhF zK3_lo68XJK>f+lu_v4zHr@s!H@bpcUiq__Z%Y*c^YWUgCd26sO^8YdKsD;0vRHDL? zwR_&bZrCv4NmIb?l&guk(;ja;cxroSETc-;)8`J(w+;!;xqV9i#HFP^7Y#SGO0+54 zJV`&!Q`|5$qN*w2sA0!a$&F`q^Ny*V3uR^~W9ntMOG^|?d%?8cv32bRf6ML`DW?pf zg;BFOzjq`E)rwz8=4Dn7)$9}~(3){mb=Sk98m0X*C9O$aqQ2X8eI|U%@lDFrD&p_W4VgWU`FJE12bG6Oj*_tZqD1hGSX(7*o=lhKJQjP z5}orqAtXTc{i-QvvRtk{(G%yP?<3;wYs=h~*Lf94-FKJ@$I!vpg}17#fN7m6-Z zQslD9oSUg7<1@9FYkTs`u99~LL}yo-o&LP)Z=}JNo#zZfrR6x3|8uA@mGFFZ-?8v@ z)6}T8=4TD3bfZ7(EHXNM=)f8W_6f{Z{PU!1q`eQkC}6wKcG>BG?Z%u3-3Q!6Pj#j} zEjV@O)55o#td2c69R4teCAY?PYZ0T`u@@mz85t7H8>bvyQU5|hRy}%3>@0&9hMUn97)?VzvDOr)!UlM$py;N&2M=?=Q}K;L53g=8BWz=8SJE#4d?HiV&RN z9$Y*-dq#!B4!1j9anC+@g@{*MU0=nOZxIq48~%LJiq$bIvoiP#FSmYse6wj4cf%ix zPZw^pt~md!z}Icw@5B^`>q0db=f^WWF247&(DBED3I7$-=N(hL=CHwmeHVjC`EIFY zp4GD}?=HPLch_O&jMS-TGefx}C+pkJ{ki{S{RxYi``Nbii}uB)csqXG(X&TX$M31Q z##N3ZsZts&O(iCNo$CV9e7OyHm-b|t3SY3)j<~vN<|2zFX0Mi9KJr0O)}caSrSLC_ z;wfLOocSinEzU||2-fg0%!tyUMMb884Ti*042rxHB zXr-Q6&J-EM-1EE5yX=I;jA^r+r4~+YTytCbKoD!?Jt4(-E+nNcAdX_ z@8To<8(Au;i@qE-dUEA^!Jp#TMn#tgoyDt`>M<=e;C7qhwrJImYYqS7iCW#W0CDrbmls|)0Ow{It80RF^%cIX%^;;9*ZV4eKGSctCYwW zaW(1)oFaQEEv>6Az%XA~ zP3kV!X+`rj4|XxHcX`FX=N8-H5`i7cb1fz2^h|T(TOfa@dG)Im;SwfHUy5W_Ynd`u zJygwE+w9*sy;gT%q=K?Nv&g6NLbF8Ak)cPoMeTenNb4N8MoUypS%PRNbb@%f7pM}rP zlV7=K&z>JL`*p9){A6U`ncgJ#viV=$fdikWb7YrII9pyiC#=|^rfcD0hMWb*zY9KL zSz9vQWVgG}7uC5_jOC{98e+m~PTXbTXrpK~(RG$YCV@bU*%b2M)ny#6V7 zuF0S$W-90HQ{Eo~lb6{y@I<4Q=c1ZoqqQD=`5{&)+zxxl@jCF()3w#cgM1CVSM9z**J5-%%VewZWsh? z{@{G(ZGuR$1;a$^l?p+kFZPwozi8gY?5p$qlHT9LOZ6wlH>Wp!l=b#nt?sN^I7$Cl zRneX(a8Im793X=yBLxJ=NKr2C_kK*O)7> zElFE1Q2c$3{AaG++Rrv6m)-6x`|+*sYV>Nod58aPNELrOH8OSvmy*?{Wjvn@*DiQE zBS+N5#qO5L0*-R#gzkrP7EgI@?QwFh@%c*oj+?scI3CWP6P(+jWc#F8uP&m2p& z-qIWtY3l22D!1~&t(vnZtrM_|9sPP7w&ZOeU~NiEA5w4tfrjoQ}J1b zw>M;M(uqBL%k#qaMRU7b4xHdwo?x8%>1>{A`02BGyJxAV*%s>*d!5TX@w@Bt@6O<5 zO(uc5k+SQO?k-SJm7DP?t0yH>Z_1;c*HT~IGkHBZ&sVbT;L)eq)64YN%kNpeWy{VL zZVNjNlcJ`scG=Ck^5%}m)oq;GDsdwGO#-w3R;yh4{kv%Wmb%Bk{aModUr`tJXGlDGkv*Sf$$^S{?{0jJIWl*V;H<8ey9yph zKU`R-=K5><*LBNM@3Mw7bFeF$?zVcd<3yrEim4Hvh`74<&evfxCF(atL7@R}`qx_CTFZcJPiBerIuo6K<;nJ<4E?use#D|xB=q^>a% zOsM0JsL43|HPEl`1jp2>V6AGd8I0-g%?##QI7#K4ie8cS}rw#7vo zxpYsm>=Jb1^L@NTGs~N4?RUo(ALl3fOWwNHXfOTk;3vT77B2DX;kj7XMcPiR2iAu8 zGKiJ781Zl(#^YME4(vf#V<$lNF9)1 z+h82U6TOfB2loT#d#gX?aD4c6`buiT;-*bp#WBZqt|~pS(Eqj~D>6ZR<*bInCkm2h zDmQCNL~KmRsX21j(tER3;q!!?38f-pF`X?*&Bv0|oJ<7UJ?3%vJ~TQlW2LaB#$--m zp8OS63HF7X&m8#E9;|iblB!DdPM{tH-rLt+(i* zwqs6UQ=+Zq2FKc>V&e-kXeY~N}l0olyQ(uG0 zk}Evix39T1#&NX1W_pxb)Yog^|9R80-Q7)h*8S@lr*F`ybK}WaooL(sLOxJ-cE9YOz)Tjno;qWQVHs+?mD^#akI&-Ca`O}!G zN0vzx#eZigGSXI=w#0G5iBdIh-qS&mGk*kqZrHnH^WHa%a;8q!lZtyk2!ZAP`?yx7#l)p-UHqM8!Fc<-JJK4DrQ zd*#6`9h0AaH`b;+h*f+qEy`9>ocP>A^C6??mK?)f@^S)qyJLe|Mu0SbL^LUcb&`l`S|>vik~5+{>9gs_aEPwqSdi< zeyr2!nmTI_sSLN^qtn7ePn$BE>ZJG{b$ZWvBjkdnY~9@T6PVr8rq5b`r{T69>#St1 zW+_3Ng45^Qb{@Fucc;d9&XdRIdx~!M@+Z&PQ_^(Qv*H}Lx6U=?I+|8#cHN-nu1k2BfF);TQIn&*{GEkrj2)LA_5aDU6BpUZ zciZ&piZ8Fu8e}V+U$818?x6nl4^gj;^n?o&WRpMan|?aA>h7CWujT%FPuKOnKhZxX zv8`5VFYA}w71Q4z{I>7An3k%*yIric-(USHsaRnmS_W>tc=D}<%8^p8 zl{4GV?t0fcE&R(ib?a{dlhQ5EFa4~W<`%hGM&$JUSN-34xfk$!Y0?X2TC785`WuVCouSY`pKTO^sftit}pI#ztHRV$Urb^U6Fj?bUu}xVXAD> zA$N8qmpr&?eDBq&`@K?l2V@CQ#kFiY+CS_ zwAj>l^}63S-kJV%_Ul!TtL~^o?Oz=jyjA9QnE0#9cT>(Qc?ZUv`I{1O!MXgMM#Q{1 zvqO`wmn}{@z%Fro_GOE6|DEL2R<=c{`6NndIH ze6zQvZ)bY{i&dG`cPqcM745O!eq~lo?cwmhOKQHfJ4>-IeselL<+{|i>>m$T2VDCX z?6$oBgypHnGjAK~Pyae`vgT!7Cx?S6H}{qFxtu%V_cE-*XP&p&m5&}r8)OdbztFh! zHe+(fj#;~&OiMjc5-Mpv(NLb@xk;PU1;g5ox6c-2?Bc!>=3&M&CBCwsiJ>v(L+RId zOo2ALzbvX~)x*xU*^cYSm)n->ekoO zFC;ewHzL^M+F@ah{j!tskF$SQ!1VK77CAZ;8!?p%Mqg6d7JsZaAT0$@Ni!VFH`p zjFYd(nS8Pw*aNLzFUGrZdDRc6LQm+Kw{^jWrXfzdZMyOc}6l2-O)=7^@v`jxRxL)dxW$L8hw zanp<)^{<}@eJ;D0um8H+g ztu>7`%JC^}lX*W~yR+-r^Ojsy&y6ppTP-|P_$cL*`?S&=!|;L#+cV|Xb*cva6Q}>Z zS92{PZi30;Ux+6RQ6#)P*YK`~SAo)P3IjUU_zX)cWh?bFH^` z=fs^llcIOG==4&b*(rKHc?TaA8BaHQY`Dj#I79D*#obj$X3kadJ?iMwm~uqo#r-D- z-Mcrd=e+(i`MIcs%GXNd;rD3PS)?dUEA%q_>TK}rAtB1-s##4^n5FqX5BOBC@4I}yPexLeTJe=&!UC< z&VIi4r1H7#`zg==9x%DZ=VN`oG{5?d*}KSTt5-Lr#HP&ai*c9P`Mu+9n5l1o`S1BF zR%R-s<+v8w-rv}|A?EzH)H!p%oc}#%hidNjd5`%rs=nRcwC>mKgE|)_@G>2;Zny6L zTYD|+$dkyF?K#;|?t<~N|L}6!WoJvz+O}}U<*EngFH|0=j9WHUQmOf_#FNXZm-1S2 zwce{3O^$ix?oc`7`F=-(haDYL-ma;fsrSSv_VKh2F}~B+vd33B@2om+eZSIwYfWBm z-8SK;v5*nK;@ zR%d9N^Qd}zPnzo!zyH_O{kMK8``3M49e?)F{wcNf{P%Y^EMCp<$oJZ>-XNy^bB!vU zrzJWiZrQNl%=xhNRa;{8)4Gr9>@@h9VA$tXAAaJgw>60Q=rp)kF5l@^Or?CC7Ez3-&WsFkwa?01{#UB(13DrKc_0ZIbM!w&&4!>lp zc*BH+R~n3YD2>&zzk(Jta=L_I*NVl4G|*s_8vXgQL1$ zZWe79nfESHd6>E=S!dGDSv;4SQdG9f{#@oDxBlB~&&!FP`Ug(ztzeb=EhJcM!Zw-r zK*ScKcN2E5h~bnsf3&Bz=KaOR8?UXL`u*L{)_cje8|=#8uRBrmZ8JCbHC=VT`FSr+ z9da_<|8XYo>JP3*SI(ZdFzeE{a2G?Z+0UW_rXA8cymeLE!t*)I8~Ccd^KaTftN8Ts8g*m|RHGTVfKzy-}dgaQ@l46W`|xwJFZ4s!YCi z`sSQ-KNSzSt1j`ez2+5_>%FVY!~Tr)g-Z)>y;T2Py0vfO!3EM>EpwFLeCC<^}`>WozF6d9H`C2Gax z&!#T0bY=QfEyI5-H|6S+h%dn&Zc{g&;k)U0teBxGD)WQ1-9(QiKJz}iBXF-TE0Uw41^2$$InqLNgOKUtRQVtEIul14i2C=cPMd?E9K?!MwIr zD{V#6MSaf+POtdwemwd6-QF`q)=FP+t=2=<`^UZVS1G+}xwR;z+HCU9e6H6@cRNol z+OFsuk0rr?Vo&}iS5R8%UPB)cd8bP z-|$#}VvpYEh-YhO%Ad8F_%q;H@{DA&Ra!}<&IdIWOm8w+ODy+auywVUjEpauU)}r9KFZ#&vg~Na(D>_+sz6qw|u?y98}?^544&hiGUq0qNt;yqcFFwbw^vNxyUO}! z`~Ax6_A)bMTNgg9)bEnNSN_TOx9stab8C<8{F`#$?s#CDOt4~v{zQf3I=$D=Pe^4{ zxz60P^50Ya>-lTn{YpHraa-COsqZH@o_d{D)tj~TV|d!ah=TVkqeAD4|MXS${_JyH zye&?*W$M}+@8n+i7;o18EH-E9)XIG`bvwR(<1Au4u%f(ZVT-9Yg#JWJh|u*9I9c}%n&j$|K87O)?MAZXZ?OZM<=HK?{@w> zg~uD89ZPz7?j$>7-YJPcItl0d54Ptln|ZU%(kxS@LxvaxH_y#{K3a3DM{9D z5iHTdj3+ge_}ASpxSXB8LjHvHT@{h*|Brv_ldjoTl=bz5_q|%1=()XV+eEK!n6lOB z^ww*6D&l7HR;8a*i+7*;%=&k!`5l|ekvX*+gL(LE^s zro);&`0ixI|14z(l)kLI95H#Ht&Dzf1Bb2q!AH}TM06z_7r9lNM!pf?*(K`pQ%1Gm z;)0kB4oWx9K316`eq}bUle#ee9_>uV^K!hTRx+>;0nz%Pxs7YUv{VB z?YBogKerui_nTjrQJ9i-d6v`keV+1a@+V|Y#_(G`Ic~In!q2~F>;>kBY+NQ_vtLas zBXZq@h5Ozve=6{l%j)a#Z?pcYUYgV;)0VCuBiXa0nc?4!tfs?;>cw7@3ijTi)#He%D_%}F-(<3HVa$<}HQl%Q%)9$0wl93IarNqw-D_`J1vzbRU8kQo zV^Qthy$MGq9D06eY2^99&V@JE-OG!zoczQ65ggs%y&nVM;1o&1)?uoj2B#Tx*~=xn^eA-vv%wes-((u{f8p za0p*NCABLfqoX+YY3+;%QJK29N%F*=qxWrk?M!2iPGA(B6CjZ^?X&oc-b1t0nuNmL zpD|Xn2S2m#S>9!`Y^rNp?5>iR=T-YtH8(SeNq0*)=hoRj-j-(%4ta`)n&$Io(SaIrKI6 z@lNs23RiZhPIK2inzZZb_tbflt1^pT`kz!k`P(>g8Bfrz*^WgGQ_e`XIm}r->7t(2 z&os9P4qZXn4ec?9gvE-LjunJIxm#|v>ciKQo0pw^m%K9|_pj-VZw$M*k9ox38sCa&J2&iNUqUV0znqO(tAwkn-;2=sBun6&iiiOWgP8B{GVEnjl7 zrSMc!&%E3zy4I>^HC8Fk=}ynwVLG{Hy1Zenckqkuf4OyS#TQO|tJxi06&O$dEF0-+j4%BbUW1TR3d)e@SpgapwmkJ4P93g-$(8a;*dUDa7DlD z^+oQvdrnVbt6}eEd;5NBT4L<+;@I`ZuQ|?_Pb(AEn%vpd$(ay!xNhc|P{aMb_3QR^ zOqgTv>D@=OgCSW9ceVtJz4Vd@)t})rY3tUOfQWzgv*w!0Jhq*h;QQT<^Z${)+#f!S z($IjB=7d0 zFcqG7A06wCKT9Ke%X-pF>)*`_-d)BT<~%FSDK`4ee7;4_>_=Ax6;6B=c75ljGKN0g zsPv_3}LN@=1p6WSDF}cb9wj03U?*tWSPC& z)X!~BdTZuwec<_Clkz8DR)2LXW2o>^zd3uVY;n6(Yy0}$&t;=?zr?5bDHT=sq^`10 z`*G6e)JKl=!w;FmO0L>1{C)0K=VI-vao)_1S;w`1|4Mx=ydb@9j`cClMdE4Sb#(4T z1k7A|HvgQcPtmEZz4GE0uWn6`mC!tHWS;i!ybYK0U!(XPb50z*u>VS4p63kx&mvhW zYl|7Z@@$;A+A;&Vc|I)dxHG|$H~o+D#YrWK7atTY4LDNv^h)=fV@?fXx!W!+@32fv z`TX+XL}llgKTV4?m#G~-bjmn{BldFK;g+Ns3##%Kcyun4yzu{Zq@Kuh>qzh7*43t= zMhbn&cUvM2BBsvEw2Bb3U}s>ybSy!3rD4b^&9%$Z4;_7<)W&zU;+<}~iNSvU1U3I_ z?8=h@&zoHQv&`}xYnicn3G3-kcb8fB3{jj>vahpJNKR%zBU3 zxBcON@x3Z7Y}2{Nf6R-HAGLI8oRqlDO^GpTp__~KTuu2tD;37A_dkRL>z3Jv*S%70 ze}30KHpi-w`&jc;tuuFinJzZ}x&Gs~zt!@0yzg25>^*nBDbBAZvG1J%yZ;w6v)tB3 z*PN~C(i;P{Oy7R%6npdQP`RI6?Hh-v@2`ZuG?u4DZOS`TIEQn_MB!;OCd4fjnw`X^ za`<_8s&@0#B{LP+b2hntowh_L_y=Px^X2VIx>FnU3_g81oUZL^e`kODb1$#$t9w%> zgp}Ix)Lu35^|r0vc9Wy*>aACQnBP}FXq>3@VB@a57xR|=SYt6+{-5oi-EA9=yq33I z`YUbo!Oh+~pY*A`Ox)G%*P8h7h|$W7*0yW0d3t>7c0QZuyxw`2t@#%l=ATxQ%AfXf zvVUnQZPkxjpkHze zx8&=S+E<_3mH666pgwH7cWQf8p|#Ap^Y8q%)?H3CGdG#6&mwnIWB(uSR`-)#Mpstd zwYaJ1cI)QXuf~&uLrWbaw!PZi_n0X{ZPEGF+&_2nrcOO8KkM~b$=LY~x_o63_Io;l}FSl>KJ(sI*|9^VT zZSQMSlgsN1E9M5i@8vrqQ~T#z?^>yA{)ayX?Yqdsxs7YtqPoL9n=f)5+h7<_$XQwT z@W4XJvjIM4m5<50-j3?zc%$T#weeZ&*Tk&ezUtMh&{ui6 zTcXyky_&IbYooNHWMsn5i7aUo7fw9-Y-4I;E}OwICgW{9Qg@EsXgfGh{d47?${Y!k zx*qwu{_l1$&gCNGLnwqE)1y_tQ{|Eae>wFn5t2dSrua=L}Q4qC{#^TX$< zx9=DJe*3#z-}bBfcRAZz>))@M{9U()?_S~Y$>m$-)!o1NyZ>7G^>(4XKNff2SJ>}g z=Xz@jUzd#Zo5k5qlQhb@`Cq5hTnxM57_fDXl}2aloLk?o%;E07r|EyPlJDI?U$^7p-rJ|yKfbZ5dh+T+ zjjMLQv2Z&VtM@qlUS!)^Kc2E@zIuNobe33cTYTtIQ0mRH(2U}nOWU5FyBD+XrBGhg zBI*ABGtSt3NMa4!bD-mJRrS0Gbaz^`_E-TQw{ER-;Gk`IyH~0Ox(ym(<`BQ`(Yma$5&@@ioX;;@%ah=0WX_| zH>s(Y+KwOEaH??Twj()gesv8~8>g|^Z7S``o_uBg$rARO2TwR|{7n5c-{Ln*ti#;z z?g~9G=Ns-@vXQ^2ZuPN#Pe48Aow8%|(%yI-TbC?$`}B?Y2I0$TJ-ss+Om?+yJlyl&D2IjH z@t=LjKfz>P)Td@ zGLfUspO(ab*j&2)!BeTfA(eV{Yxe}{>TaC7zOTFe#IvHxfM3hq=6#I0RUDle`Fz%- ztY`bhuQ+d)h;US1p(D^zur__+TsOUW+RN9i)7#SZu{MF_{?JS!BJ(jw_-7Fu9pu+xb=$k-5#O3Ad{rwW z7E38?s_{Hl(l@C~)po{_tM_!h3^#mX>W=!cWrwN{gQu(@>noKlS=t+V_e5zf(x00U z^;)<^r6>8xXI*=ZT`r~vD@}dp76e~ORpPJ?<_&yv!1e0BV;c(e4*Cg2-e=*>%X<0p z&8>#0oiSH~Ec!&9yt$`^f5~xryClxZG_^NaH>gudU3JX|c^*I4kUdE~vsQF1DwefO zU*ROO=FGFEQs2uujVGE_y^Ur*X-*asP_kYhxPh}!Uxy`;_t6xA0){o=#sRGLD<3VW zU3DsN4(HX3iPB6z?z-J8Q!09wnv}41#i3`xt}d($m#0oRHYaVR>;16GsLwuG%ATwH z5_$H_%9$#8!RMOE#Y+?|X(XZk zdP?)!OMR2;PqW-}%S|zVmT-H*^eH*jU!~%WgG3~Me!II%>f;1<^LGVxxBm9Nw)@p~ z{m+U&&%Q4SoAxi^U!8VH6o+w&^aCLgv30lZpNcremib(owQ6aW{#U+~Am_)vD}UE7 zD}5@v_R2^1u=usVeT`QecylMbSkgt`_+zIcdyqkPa!&a*{pek;c!rzr0 z@z=9+Hx#o@aPKrZ`25YW$tJl{+qbO}WAFTQq;rC%u+?0jcYRK4Hm+;;Ec56wSax{H z3)448H!$s1l{U=u%VBB^=~wq`{knF`ktZE_9Zyc(&5h@HB)DN|Rr8X@i3cp#wEvLo z-fES9x%mCg)%P~6`8M%x_sn~j9=M<1`&;kuI@9-6+b3tc?Y--E>s!usw&QM7W&O9? zoZg!I(d;B7!i=UXN zwmL~Q&+v-B-DC9Ch!`L%Dt-|o1>_x$xeF6kIf=Z6l*Po^`iU3Q}{Gvb2wLCxmE z#V=_+5v^&70%xk zZm_TGauT^3CUX2(NZ6r`6BzF;@mzPhHFu|;{^fVmi(>UQK8l;B_t#qK_R~G4b@w)% zcv!D}zcv5k%_Xc}PxoAK-`*Ly-P^OuNNcgCd{na0#gl5Ul>_6g8soASGO;I zW}vixd%X6%mr~2VRYzohoqPR@WZLc?nakd2i(n4HtIP>0H&b8xOi^<@dd>xgNFPeXZ7pIn|qsj@H-IevaMF-v7?u zRh2F5Dm;%n)bEK-c=%-IM`1q(uHR=r{A;}`eM57f z{FcXcQ|AS(-}PH7RP$|9;)9r5nST_^GE5)T*soACeIajiBR}t)uOagZZl?WLMJ+eH zb(A@_*s+@BuA-X$pR@6EYhK@eziVOH-(Gct-(T1M$H!>~S$`yM)ifs>k z6rFs{^HApwmC~h(J)3wx*so`lte;%swJWx&w`Bbnt21JmTpv3nJ}9WYR=8ZfHZZ@# zGk&kBq}`NcFOn3jF*V$oM2rKE>$$!)seIbmx5VYMp#d zFjdZ_e6{bU^dt9;^Br>ko%B`txpnQ@`*0^7V{Ay5^hwew1rlI0tX=S*=_gx>(NA=lE>V zO({>dE~?u8)%SL<{D#~<4b}v{oATv0)9)-kcOkx<`Tz1B*SDwDWULQb|6!_)c=A(j zdL7%muEmR=_idA5JH@((5WF#%n{3&*OBEw#x3{9oab6r`oGpC2N zgavNo+O=fL^2!hIO`Wg1d9lp-dob(L^0ynVY%hIXyDXfA+uJ|=*`|;Ow`TOMJ2-*; z_ybFmmmxi`S{awlOK@v!);-R+xO>m%+9{e3>IZ{U7p=ZhHG$#amFYc|MlX_nh$Wu(68Su5 z7n4k1O>cFUOIUcS|GM`pujK}BH=7`qs+?M|IQdkVVf?JqFM8dk_s7dy@X6fTd%JL@ z*e@=NnXB^JUn*QU^Cmm`Ebl@6gRFIPW?P)1Yef6N4qlZQ=e~^{9e4)H|}%D>88tpMt;{OsDD1eIj=*}R`u_s zFPbk|Uus{9pP+rPXtG-&)1u9O8@A}Wm3-TAcH90}5j)PhUlxD1SUvybtp)r>X&m1) z+9Do3e4-lWz;HnNu4micz&pL}9J}jo&gRJ%+~@E}Or!s%O1P-4YvbX`M?$8U@wKsR ztUEACbkdp+Z?z3qsJgFn=RB%@h{J-*sOV@DpfNTB+9MCubSmS{kkGe0pZ&qjl5P zCw|(PwDh9x;i8J8-qY&>k1o23CW*#u~BSJisN0H-IclW`^KIIkI575?{3;K z$>OWF9uu>oTag*Zqb(D!o%%T?n)&gHn+A@XHimVtSi3Fj%Isyq>kgVe_o|BWKkB%^ z`p%)45X-sWc?zIwNNy@g$deR$m5vlC{^?LEoEwRIb3dXMo-_GT=4N43^2S6=-Y5gm?6nc=ZMy()We5f@$}!6T6xEHW8W;dn#+fdRV?~kukfaC?unZd<0cDB zJNp!=UYT`5W3mtXHsKiyu3h`?v2jUL+ObH7FFRb$2)lpbPfAGG&>f*oD$Nlbh|I#xdUh$ENwukw8PF%{3&Tp$c zzIDR3j+<;AWqU(1AC+kb%~%*+Q*%&xK7;-}gSt=Zyo;Yqc)eczgl$)8&V9z2ru=5d zB{!JJO}6VkVZFuHeNxpliJfJSS9Bk3Tbyyl)t5_a;#v!@Y9?i~RbQuFVR__zW+JB_ zrwXe`kgA+ox5CZlGVNpUFMNNa>@sQc1~pZYj)-~cMcghM+>d z?V6!Z@@uk=E?A)H7#VHQlDmJ-wNMH5pIbcdtzGV{B)xHe(S7FT%I)$=tbEg!95kC3 zmbl^A&aj%({`)1aCEpJaJ=pJd-B$8q?fN$9dtG90KRlbs`l!<8b5zU4AgvENBB91> zN<>rS#ZEh^Uz>O-|GM4p6YhTkLbL0vl8? zX4Xu({<&M;ZYWu^B*vJz%Zz1iTv<#8(-D^Po>u<@0(n!d!0$_#=LVJXGP^M zRGdEjV&b}ZSJ$#_Dsz|RH{RQ&5UanJwFNFL3&W=!l=ZDBnEoWSC+fh3C4E{q@?T25z5DoBmz5Bw$(pWEPmUEA67=qb z-%?;=+_-R~{@G#4htutp7czexBaLUy7eD=j} z;$byqt_NYEF-&3|DFy}KFR!1`;bF0Tl4se5|5K*B9cQ}vZdIP{)f<;*Jgn2=_;ylr znpUHZu|aptH`&GrC2l#lkl9v>alQ@J4Ls8&MQ@z$nRn~ioVv_ybv9hj*Uz{g^D4rT z^UY=E<8EuaZf#7BUH^V1f11hZgiqWuQ&#F0`??!D@HS8B7XGklVdjT9Gaauq%~$v& z-NCwoYk}Zjqx$b3OG;vk>)xH(xpZo8!L~S_v!_2rOQR%1$MWIpG!E}gtlL5Tqb(PLGQscp`OEASZAL#xKeqM z=cVt=RqxuS&HlXSPT$jsm-yQH?&r0Cn^mXjWycaQdQ1$FA&3?J3=^mRq=H@ugo{ zm3H9rrMoef&wrik;dR^c{M+NmK6}a1+U@tc?ns(vn9Hn}-x68h88|J?i|b}oZf<&Z zoo>!io5!m+E#0v4jBurvUYf}srM8AWH&3Sod8o#?zc{#P)iKp4N4*(0AG*8CZt?5c zvmYhjxBC&mle+8Iri>HyySH3^BH%i6-QFJQ)60U;AX)_eE;H zzwPhQobFh^s<&s&V-AOX(N8+Iu8DfSYmVQSv@?}2`(({?PQ-~c8hlLNbYK1F-N`IX z#&dsuyw3gIesTTB&m8Sl9BsUP{wCY=s$acN-H?#FiDi<-BO(<-N_ILa+$=EV&=mvH3E zF74C4aLeUd^lD3;lY9GCZ0W0-;UR7G$zkh?Ky}&lo~d<-?q*x^&+v$5*Z<&L#q(K; zy?_5QqgA22hxT$=uK)FNitk*FS@v_qS+-44mXdCdH8J`(Ay_lTX2~4wbu4b*mtVX5 zWaG`!@QpdrGOnR~HXDvj%RgPlVJlNRLrdG^^6AHar{4UsaNXi1;_KtPo_R}N-k2`8 z@0@mqOkhn;D7RDXI%j*Y9f?^6Su(SyeQoN?l=S?&)kLgti%o`OoV;$~M26?r+4pfg zd#@zFEAjD`cUH?zhW`B3``Ybj*!Pr=o%*%DhB@L^Rp%_rYIJHlEmrT2n|J>MODIZwu}tnBNq;J@>4{m_{CJ6fo>{%g4K{P-W+PE_9Xa`P*UDwrv9`TMes zha64)95~oQC5*+JoZNX@ds7}B{K&ega91!#+@V`%ofy260|V}Rev>SZv-vIbhO1VY z{dt-EpEQNDUa~INBwan~mD3yy1un-oZqJLFp&>k_=iUZwCzBamEb|S$AME#j(x27h z5~t-9mh7^r&fVbtoS8HC&dc)WHc-E``>esd+W{*BPw%(hk*u#;n73AZiqoqf3$xRN zkNm$L!gM{p=IhDtNiVOQI(&Nf{=XL<{^?uyhnxNVpOwyUwS&K{RI%5b_`7k7itL1U zE-C#ck3B0H<~;UOVoO;q)?O-eZ((I9)YkRFo#(AnT%eyPL&pAC_v6A~2 zV_tD=`W+{Y>zB?y{JJ%5%A-xZ$Fu^AjU{u%zUYU)?>NYOQF(t;goNm)p4t=jrBpjj--0oGqlzqv3wzoeSUq-&{U%G$d zzs@Hom@+o+O|if8YL>v2yXUrTI_}3CvU9uR3lyk+~r+a+1b`5L=@;n&L@r zS8Nw;-)1D#DbUfYxkVzK-oKXjt{T$3Yu-WyMC?0 zWcU3y*^NcoJmz+1L=-hKIc^qzEF+_q$;*Cr0_W1rEa|i7M3=MJH>~8^W1MmQ)t)xf zIdk*!ue|jCxznIlG1Fm*@r8p+lg_QUo~B)}sc^Zu)HY#&wo|Lb@zQyVN0mRjJOW9l?le;6&sqwWmfL{H*b<@*oPyB6Rg+bBX|4;M zHqldHU1Ye(+?|}#qAxt04lA>rb8RY|eCTC*;+&@Ys;4=ueeX5fF|UYNb%!lnBq-JK z=?g#apy0~zy+Lk9Cwc6TiPF^X~jO|WQ?fY0~7SvT)6!)~rO;9iD?so5mfj(3E ze8kMVX0BOuPD3SBp=)k0Q*Ocx|GS1e3V+DIuV`0o{_^Q@%*tCHZ>#RER(e)&{-{gw zb>|b_`(xu4UeWz^vy!>c%ujcw*V`)Fr@tP|+-0;V{QZu-4pZmu7TLKaD)ORj`qB+E zCO&=Yd_s8w*V@DC`IU>$mfctEth&6P?QZ+lYZ2L1ZdKi1_+IY4)V`!%-&ViY^_TI> z{oeKZfAiNcW~-YUB(?}_XK@T*ospvvFmJiejKhJ4$~{@QTNL!C-{xE)_jr+6y6((b z2i7OLy0LtZuu%wHD6Br?twlUzmcp@T0hd+xi12Wh9dyobK76lp^5jh3RKX0v5_2Z^ zE?EHB-i&?kvmJFd&%Ze1oUtHt zyT7Tf_thQCq^3PQ;=M63k?LxaP;RiFFqj(<`Z zuvT%^a@FFUb3eX_nJc~O=-lefsR0HF2QNnTTCO|h^ulo6a|`|;gKM99j%V(F)*SyX z;g{a_kn8%b&ptiB{If=TzQ1tzGOg%4>9ZUKe@zMM^I5wsWQm84!s&A{BDy<_;{MFa zY;zUWvyz|j?3oRZ_bZ(vRj0ncnfD!`o6#cg>6xyYuc#Xw;0yH=E9cF1{!o&!U;V z{LGeMM#CrJcTPRt$a?Lq*Wrf3#3ePcytM+;Up_tX=w-yiolJqE$F#yP6dl#B=4!S+ zbmx}lo+n{-v*fvV{jluxWXpIaa;}cs>V(;zm8Vtmn))5D+0}%8d-!If{miACRgCP! zdgA}g_{dY47qj!*t#Z3>H;QgX$9_FkHR-T^?}EMBOBzesza&c7-=Fj^e@%(#VTF@& zj>lDfejIn(3FnGl(AXtC;~AIdx$3SRe3;w}amu2l6b5sc~L z4Dj!m9NfI5j#)?ZiTo|!sMZA_+Xt9-YWs zyjEd?!;S~nmXr&w`mN`b)bKwcYSu)7Sd9m_mOfOp-1&P&-%sz(wk2^|XT;y!xcZz! zx9z2YNp@a9k+U38q1svE^J>L~d;3aMyLnddu|X?3Bn)4}?mO>q}1)wsthxU@x4qGgV@l z)WoJ-gX1Mzb0!$(tWBFDd4p@-(U{ADxqtueZ1Tz4z3l8Nk1fn~({hgTZPQvkOX=3t zIa4HE+^5Z2+Zu9jMf4u4{gL11F1hyFU3|aSeW!WMf9EN7r?_k=^A%xf*cO$k`o(p| zq3uhQ)?bv0e5t-v-i0GbuHj;b$-D@=ok~Gg*G{y2TM_JkV6FAqT?z?aU6m8ocdD|^ z3aG?R|WJYTeFn!+l9ge@=9xi`(-Hs{Em4JnMv_n5i}sy%pdJ9Kh^ z?a|bOOOxJc2|x99e`mH=noqw=#nJNZtf_I^HeY^Fy)N2n>*86B|1x*(oBzq+h+ALf zga6aYe$QK@J?mk|8AtEsJb(BnYszKRu5mVvnfZ8+%&dwB&cYJ*tUe1(Wbc|V@%$3J zd;Er)Y0<1zN(VPiRLt5pZ*>FjvsEH4>VdrabEV}sWbaxR{^>-t!-~rCpsAV@W|_9{ zUSPcC_d_e$VAbq|7dNl`cC|iiBWtDU{zK3A;xuNTnJx45w3c>O20ig#KB?{6wH4Rp8nUF8KCRk) z?)6K5ncTe*mG5?*3f10u{i$_-?YC*4!~6CZ|9-0?@&EBNwM?I^9ZM%K2u^$Oy)-RLNEK>23yp{B4_1@0jqm!+?=N)*+ z&S{u$?s)%6vmpClqesoEn|uPrivl_=l7+Sfvb%mz6p09bAFC~(VjeL&>Eso5 z!$lWzqu;MP`TF*C_lGS3Oi_})(K%b)3-_LV@BRJqzgxGWcGbR~wSUKp<#+X$rM<72 z&A3l|Gnb^!)b==qA9F)ab%buP2@Uss_rh&O_Z1yZ63w%KNx1 zLpP%fKdQ83g$0r~IGqCkmnx@W{0?fo4~GFvZ-ZMv~xk)rWU zvvrNi7C)mVwAKAuU0m#MQ+WK(J9WSLcIEHxH1peKMEY8IN*H!|jqhosyk0Pt)B$>QBCieEm#s|5q z*e`{${|!>MT^JwLWX+&z>K7IiC-0{`Wro>47xuU7IPNLDWn|Z1uz6X+8MTLhnwwLn zv;5c{Q4*7`vHm-UjM^P$^)5%-hMNo5J@_*F!H!(jUhPtrt{7&~5b?<+8S9ESWEsdc zv|jJ*7W_V8W#b#Ajv1|cSGE7*s{Jn{`g%d(uIvj|hkW_mPV^eYsDGH96OkfJHq-94EhgZUpcBc;#6+7k> zOU`4lsEs<+nCo|HnzxM+>qdctET!RrGv)_Ywrq&@JT>{l@{La}ns^*aIXq#$Ui%y7 z5caJN_t}%;zpQ$=P-))&q?sJ6eMFC!%vdxl@m^wtpguQ4otC(Wen#aHlN=jCrL=%-S1PZok;AR)XW0?=ge@U1S86T@%?o=pW5)sOX&3gK zV(FGFStA;`ZuNy7Gb`3k<6I{&O?;KkJ=w#7Gkl#`+L{t?t`qxad)}eWc+Rp{hno+s zYB001$z*i$TwS19#&>gVKq>FRY0S@O8x+nqJ?$r{xAI1&jIh?TcdJ{L>RdluurT_x z(AC^iTE@J6A$0E)(P73+w zW^cRbxqPqo&WbU{t z^`p~U;nbl6N8*EbsfI34Jj`Yxwf0ot<#R282jAv#aoPKy&r&#=wQ>6Aq@-PiF=w7O ziTr5Nx##{c@Sa9@QP+%2DQ%&msV_4nmrXKnDiyzeXHWDOEiEQLEvBli46?=tU5;4o z+#DTqe#O~Wb^2}LQF{*EOWR%@zMlR6`!{9ssb-V_ zR|WlA@Fn}w@ukm~+!u^oAY=Su_6xPGEYkVhB})ak4Q8=7?N@)67$PQkmgD4g*G;S( z%N<3mix`$&_L}hEO2Uh_BpJz+<4fvxwXf^TkUG9EVLto%dhwZWEMLUm+AOVP!gX$T z_l-8G?YCsQD{m=o;l5>}Vt;4n=TmbZug{9)bz7EeX%H4IeKBYHW1lQd;iW6)L}|H+ z9!<&GC$enj($}Bv?FwM9lMD51JY(?G^2a=FtG}^#md&sTRsOxI`C0dkR`@r+4n#L1H9%v>;SUskBh(}uMxjSWtHG0MAk(B!jZ z&$6!mpRFoK3(X^BRd>%6JzMB|%;)SUdA9XuwT<3YhEJMua>uTz;eV=Ln6FCs!unZL zZYImahbJx_dbDq|{l{?m9fi4XkHyNm^X>C^ES51d{$p5|xnK9sO@YpeTVD(2`b_8$D3NjbZQ!Vt)n3yedGJAMi*8@z zTdQa6i=P?_{keL9*-fUZP4Cd-3(VVRW%@6OIPCdX()Rh3wA1%|wo0sOOEgyZ%~w$0 z81ZPj@BGW(m~Q1mwhbFDY}~YP?**&C)h`t?Le6s(edc%XT9jzY za&5Zk*)>zU6LoKgc$&`V?CEJtoU#9e$)XjKThrHQRS8dXK6{`rHhulEGxk@jr(Hku z-eYBc&{SVtzoka|uNp{c%U2m)O5a)j%z16;-33eBruuxy`x`n-;G{uWkFEWVxDv9#^LYo+f;p; zSCY1Ig7Mldi3>kn$aS}_`Ez3H_B-(}-@FL%yj(7oe|oM(P{f(%4wE@Nq?;96XZcLO z7qs)&i8Jehj&;uQlsmuN^`4uz!nQNM7RTH<&$tM2Pu%^GrIAZs&{FBtvLbe|xmR~H z)n4!I4Jpsqd-}XcPsY+IUGJ5j%yZ9Xoow!K@9X^9EgSvv-cJAaHM>23?ZJGdJk5pW z6XrM8mAh3<{}R8nUcvX1l&6%+&*)Do!5%729KlVAg|WTY!(OeO8nt(7i_-0vQqhhQ ztZ!CbD0g``$GJ;H{p5z8LjD`#+83wDNHBgWSjBHS!z<#01V>A!*);vDzncB(Q_W>d zvkqx6{S^?)(1_3!KJ>6jhHdVK;Q1^W>Z1FyMcf$e<~(`+OIPv8hxDX_mqTWMVtZU# zde~25MQx#4r)Jy2B8#%#ZxiIW>fH=d+HxKpNnVj?urne3==PYERaZZK+BCO#-F~j0e-B8{yMHl<*I+YmNtl}b z?R{nIKk*!_@iu+PIYrcmVR=GQGEdi&Y}Y5r0U^>gr5ld2shm=HtMbgA>s`X$Q@Py} z?OAK{SMTDvmJ`Km%Wa%rbN#~>25y;y>-$ZPryUBpWU&9r<=j&%C#hGRV&UdJU7dTF zak*Tsb?C($=Bmml@s3G17$le$oH0G}BSb_y(fiU<5s9b%2GXZ@r|>_I&5AVX=Xhn= zyTYSByMX(R@6DTynx!$qrmY)SPBcIGG*jzp&S{4r?TKrf6*MCpL%kv&JraF4rK};o zTVPt!A;!O48PCo?@N3#yJYzz~>ZK*uPR>ZpNaUO8pkAgiIrMbGuG8L3EzM_E?z^nW z<(Fy5(_FaZ(-gr9ucb{XogEA0{0sZt+xXrVPkoUQGO>E$#tRK*=K@pax7uEAvwWzv zY~4Sz6mij(LYepap+Xu3jnkj*TB`CtJp7TCQ-}S`ER&j7k9?P?ml><=esO~%EJJkS zZl22*UOzt?BbswJoR^b>J9qWA)e5~!oD&lNi0`rWQEHVgLLug%`Q{c82W^j%G9!*&rbG zO1XdMgZFK*I~z=6)f*+WW53KwOi+tlwDsDaGZQS#bS6yaediYuoq4dqOXioE(9eel zoo#jrs|KZPnB9>%!SYhn%JQs4-IIk+Wj9O`dU^PY*skAAA<7ej3@#nkSg6@weks<= z$SY8xm!-}}oAC&DLDP=*%KRj;<45;=eYx)Me6^Ja3S19u4-4>hR{hU+WGDOI*fJ4s z^TH3BDR!EVytsD6skAJu)h*1MV8qqPFPf$yxUBK@#^hj?$4&c!ShQ6|V&kT~vGXc@ zXL5H5|3i(UlpnTkygWI9-l=`FiVBL_EDVm6hHg&%R{VfT@qc*8nTQk5bJ8{%gol;r zI+h=q>@eeA`N>st&x>>QNlF?U|Gd+uceaDi`cC}Hc15ETmqdCN?+A*^GmyCA{a|zE zs%O~?syDVphAdo+=+xG zD=h`@g$rHF4D{8lXP-Bx!NnnPrGdKl8CvTMCa=Kcu`GusYDC2hTROcuExZmI0 zdMDzFb%xg}h0QAUzRc0drH|ql%$@P=_Q#Gjbpd~B|6Pmjw5mI;d;iC=u$Z^pPb5D$ zDXsjGyrZQ0;fmw03#EPc%&;;07qczy{3Pd@RkeQ(z1%u~$G6u0oO$~SCfNj^@2fX& zj+Z@iEx+Q!LG^hx4;qil-=Frph*O@eo;jrQlk$R}fBp%%8f>aqt&w{{dA`K`^E_#< zpJe_Bm|^zs-EuY=Uw`|9<2<(6?vndIJk>w{;QqE6FRi6Z7_VLV5Po9b zK90wVFKV2!=APmFTISc`%RYbqTeC%Z=g-Z)JfV4xsN9Cz;gOauy(v4rweQRG{V%I_ zd$~@@xP*=0CDF3lGHExrC7ZTQwr<7ch_t4&m#2v>m9tqGDAIiM?1YA(8%J1{N>}72 znPqlxdSxtJ{PC`w>jtj-6F0ls+e?Y5zWJhb6~c=M@;*6(d% z{?1n|_`GRleP-a+;lg8o%W4 zZ<5FRB!8RtCOfhF7`6yh?&CP0$M)vB-J^4Ya_cWjw9HmGcck)Zh3~tqxAcx$c1zqm z^6<;+2ii%zLcc%1iu$KzZ6JMq&Hhs-m(Gha=XJRV8#A4AthA>U_6Z%o zX@A(_^TOq^ntxlq1Yg=M$QzRIioLMbVukWVm-VvEC*l`1d8#K~@jRib)?>qQfBL+f zM>*Z;Opmu$6j$p`yl`2F#V-1Y?bnlxjy7wrwHsP_ls&q9$SULM>7J*5-2ciX`@MZP z%c1XuYmaCoi@t%w%x^Zod6>h$MJw$7mfm@4-nLB&5nNmyQ}+pJv;O3o+o&5-bz|X| z;4bE-=l)anr!rb!em(bK|Lr{Io8d`@+6F)5H%~IG;}e(FI&Wyk9`r%-{>iV8{>}1# z;V7{9snLsuqR2qLON^H{zLoY7-?m%r;2zPXe(L-5k{Wdq{o<=KnQ}A|z9bavxU8aj z#+)IP=TfHUhA#(tTQ>4t=U4vgt04WiZ+fBb{)cuxE15t2`g-Srh=E{kc>TVJHGFZK zj@5H^B_C7b*I3v)N3d)~#OI&wp?Bu*yQeA2y-jv$PV;H&@+{-E*L05`TYokpjP10S z;PZ@0pMT^(Oi)a_BKToXyy{(ryE=E(?lRh4ti6zaPhoFhm2lV+vxia!-<(daU3=$~K0B?>?yV z%?|ne$Y`S3k^4KJyzWIt54d0RDTty7uQnvv3=1tDVt1F7Y$~a;Aou~N=yk|Kta%8dU>bWP&KU}^xzK#~-e&y7BfJt239oo%gd#x29M#I?LY3zI<7aGkW=^jyZDi2F%s% zFI`<)1P^XYblqTFR=m#oO4YAfn-4z8Ij&zZ?P;X`-YsvQDaVCuF1zl+%)l3&CSh~_ z^etny>)a32=gP)!n3TQa*rCPCcErdQ`DJ;?dak;5eTs|0TP3D9%90_%S`!qSqDx<< zbbeF1%6xuZ#I+vbNNx7;qKiGLpce41-E23 zr(C}JWyO89`E&0q;*PtvHl^ggVZ>K^iJnz5h9a`=5@$cHImB_k>O-{8OwonKr*w?F zW*8nmVY{S=KT-PR&7hNKcNR{S>|1~QYW;DZsnRdJ+XUs7opQA3=2_GAW@*heqlgA! z|Hs`Pb!%d-**{}_x4^_nFwRv=c#;F3ipDEXq0=Rn6Q4Zwv`nzQcWw3h(3tiRtrWpG zC8cg@MeK3yA1}|^IK{kK>sCePt(E`R?Red{^!naRz9V-IbKKF;*E!K~pKJcKuNzkF z@w(#j|4~Rq?sJu^2FdJ}o>v1}79CzGTbB6e?qv1(_MG+SRYMk?xAosMdAWaUZ!^c(BFpjnpT#q zpIic&|NolK_SoM~OzzkEch&VwabZO+jVr~L9<8{PQ&L&|W9=%n`(1k%Zb`M%AX zyVh>XDutD09={9ERdF|p+o|1Mc(vtV`1~i_pE<91s$BZ~>xZV3U6SX4lDT!97jrLt z_;6JHri4yiZQ+L#>heF=OlGT|A&)cJ znJZU1vd$~Jq4jLVq^#o>sau1uT86J&_KNqB%gq~#pAP#il?yiV-hB0F@7JX%dfMq_uo4cxiR0Q`s_5FdR8gx zg;{KyYg~;V)=qL}{C3PzqSzp*eDaaLTz`R?GMB3U&);wV)Be|~@Hz#F8FQ{H?zs0l z%}cfMrgG{F%OZ1~)&+;lyvq+6*G^Yis-`)+*ON=yt@*d^QO4hE?Or7@&OcPWcy5WW zAm_@@EPD>U+n}BC;^4nk>OXxy&53&cb=l%af!3LxydM-SJau*nw%2}apa1U*zrF9h zZ!7297rtJ({oaSq>V7@;zM{*dJQ)28x1BOMuy}F5NvY}uf#oL~{Ex4c`6ZC!`LZuh zA*=O-G1LA1ovpWug1)cFSf#jp_9fRtA;G0r8Dnr2$Dv*+s@GM1H} zmCf(}IZ@kvd>Y@H67l}KMQ?g^A3b{_(B|}Wwzz@8si{{kd=?XTEpTotO?#PXp1-T` ztmsL<<=0KQFE{gXK2l$|zmD;_>r9IrrR4n%_ucB^Pc_+cOv^F$Qi<6%JnPWK2lwXc{_-y7{ajyp^u#Pr_N_~o z{=VF`xNi5dh@x*t^bAgB-{1Cc{dKK(KFR0!YP}wxifojy#%F*+yOHfmo|+x|iEfbraOYn0sC zB9&%uzqhOMg-DX9!j*=P^VaWsKC5|oROn5P@^jCo7g?{rJ#+upkJ0aiBaU!&TJOBR z=eh0ro&P_yIi6+SY+daA^X6RZ^z8g}zhzi!VqGbY_WnJ&d@8vdkj>%Ok)rm3I(o#gj1 zJa4}DX;Q}=uSHcy6qTm)bI$+xWy77lM_qg3pUrse>wZq@)NBpN^XgS^ZhBH9F^g+g6{p*KvFC;!Q;-x|*hJ`*y|g?)E7KY86+P`}p6jeejI= zebnr1Cb!F8wR{YxrcEjMSLaN)zaCe3i)inL#oPkyzSsnD`I z%YV+*C2TsgM5bHG6RS&UK$Rw=KQ5`as;l)aNF@%+F=cRMEM}*XbgZ z&*a1Y>RG(i+W*hvc%Es0iEEYkb4l~xkKpJ%;R^j1szXoDnD?|SW}9qNqgNN}Rwdca zEB+?T-#S*!Kk~?Rx?Hi?4=#!QpIGJ;vn;n-rN|j~c4mlpqATm4*PMA~?9~$g+|w;g zIrIJ;zr}UUpdvJVnfcjoo&RbsU&tB=DPU7lpdZ~0+;j*aliYLvBXBwP%wP|TKpJ84YPv1`Cd|?jT zlQJ$v_k9}ExAW9}QGBV^xWRtLm7KH5eg);-YbSr#(~aL&Tafwq+grn`{M{Zx5-cB| ze&2QW-jcWT?%S}ZiT$Y$+GD>Xw^I4%qZJkV4eo7VY6)nzmWg=$IX&_A&5zzGjy1FY z*yrX(TkgyKdA7IBb)LH(qn(}4x5#UDpLjgq9MA9iIepa?*1a1wC&aZLII5G}&dPcH zyNH$lx~;6`2afddL}+Usm?4&wQ#HCdK`}c3$ zUUIe1$5(IrydS64=lw`YToy2+vgo#T<+q8#;cpCT=PGW|f0li6ns3G7HS6SNTYo(9 zW6$O#OLsYLS-k7@y4`i3)}4Q3IQ_4;A8G_u?;u~0!+ilKyw#eJ!o zQ$fnlh5dG4F1U-YWsm*p=es-j;?HKW%-c?r z3C-wdih?s%bUE#uRLbpL@y~+opY@k!er~&`yS8Y^PWAK3pH#>9bPk6`(|iGrro6c1 z#nWAPg)$y#oY}hIcY)ff)|C=Um)kpc1@1VQvAADo%UMRfi$7 z_wK1C9`HB(`rqfvGy8k@W(xcGX7az-RQq91c;c0K<-L6KzE!T_^~-v%R53+qFPpH$ zh8Uj-{+-7;nizCta#KA8cdTR*4RT0j?T8dAci&sU^s=j=;nB-3mMMX}3%6e@ywR8y zr9OH28-=Lo)pBL>ML`>uPi5O3^;stJTn20S_Je$3zLT>V%Y(V5bGxWKP+Glpo#d<4 z-o;1L7F)#gD}4;$4f{WJlP}lPm}O3%T%NLNZ)jtlDA`@zaY(%r5xSiDff(8O^P}FMaPr-dzI^wVCUMwjE)7 zIpd4Kk6q_E&L!+n_U`!2^h|1&iQdY5_6^LYbC#rayy3a<#&*e-*J`I?XMLH{=FIls zsC5R@HA5$jwtT0f+8dsDcTSCZ|JbJg#F;}Gp4FZr@3<7CH!Q5WtjS$fe*8(Ht6}c- z!kG(t&8EaG+!T}he8)}4Bj@_kPOe=1nc3Rx!FBJ(ncsf$Jl%DR(f8?}7yPoaD=*jy zh|gsxFy z6S_tj-o|onCIqoc?&Xt@o3JHIZTxFRncJJu~q|vwrts;l67u@}`}8 zwi_DVY5CozutK@eQGxZ*+R+Dq$iuDtTI zzb0iy?5d*cMZD9kyLg-Yihab-+1x&5J@rp}@1Mq3jjwkV{=3zDR=Z1n+sW?ze|T0j zJ&j;1OgD_)=ySD+)pzRK80*=$4G(_Yd*_^$)?GbYu6d{Tr=VaxUv2s^VcXGieV^xflY@Pi%_(!V@0OiYaHDI!@)yP2 z^%K)Xt)*5zx}cga>fMqv_1&kUaKVMq-W!e1o+&E-qcrirDuqj~9}Dd`z1Htv7*ch( zYE#TT+o-a{w=e#F@3-g7KUtGr|^ndBNf< z?l;-#n|zn3vfJ6#yZ`XL4aH?;&)@t$y|XUhTI|_N_0ijdp8PRunf>oaZUUEG(OI2$ zmHp3x!xvA>uh^CPa-Ov6$HOXdt+m|l&pdW9NlwX*-oX8E+r2ME%x-ca&U+^Jo<2W2 zW|oSo|KYQ<|Jm=AUBAoN?(B)nIe)J1Oe$Pg5kDnw$Hc_l{X4(08X6|O6?5F}AP+sNA8~TmMh24D5$vvN*M8!0g@BOkqS;1Uw8q<0{p)b#;FJyjt z?7MMc)BgDG$5Ayia^_sw(w=UT+cw90o>NiSb-t)^Vpe#LT|L8=bkj-uU~X7c?d_Je*e-e^;NK;y#3azG84~Ua^QKPxwA+oNImQD%EcFt zrF1Pg8@KY8z{+U1#5hpxZ%(-7w8+WvDrQ(td;W&dh*neA*Y zF1y3)dFTFQeZ709n9OD?=Jx+@CN>H?%6|`5-M?why65cqR>iJ+C%+Dj-G1wI>8o%L z{loK%4))(_p19WA@bQx6+p}#}&N(*gC1=s@1+s$Cte%}0a(9>>n;_6N?^-^G@l2iW z=>L0?U-lg;Il4h~=dO^obqwYPlO@d}rtNt6^?B^+qL00MVrN{~uQspk+`;)5WFf#{v7472h$8z?RR4Osc|RK;_#`z)4t}O-c?_n z7SQf{;B5WXRS_Tl`)~WH_;|S<;~Z@z@n3T~Zf~EwS7!QLR$g|nc2nI4<;M4Z3r}0{_ng-a zUwvAo@_o*|O*<=3zn!);@#5_s#cZp~TN)yduYGTE?8jv$v42^ICGEpw#oXsa`+evZ z&e`I;#oy;T7IJv)f}Z>DTED98x%Ac1zjeAtj9~lEy)W18 zsarYo<-!V|IcL6nKVctrEit=>@!pa9iQPFJPiK0i*6eDke{$1{wZ!%fbNz?4S1s~t zZ*KaK`{(WF=liSwt=MX1>0we3cuH-~yIrRQ?wPxHOU2InKeW$3dUpE$63%m#MS5vX4A)rZ z*E8u{nLp{Ax!OmCPY;U2)RJw}ZTIYbx&H2P+2^juAC`YS#C+Q?`}U5LhcC->X0~mV zx>&2uRh#vAZ_wm?Y4;~vN`;P{^348J`0IGz3i0i46X(|aI?li5^!vY3Mdf=R-D5v= z&hf&>TSB7Dz8*mj*|~j|YPw!BaoP4a@s5fm!da z7@c0a_hyt?^zJ``dyUsM7^HEo+U!-T{b9n~_Uu(pZ|*zid^6zF&x&v6A1|!=@+o`f z@i#}O$8)<+5H-}ep?Z0(dPGRu+g}O?kL-B!C;!#OkT0`Vi~0uN(pq04Vs`%L>+H(Y zm!F(IzrAjC&KBeA#b4PYE?50gn;PMtr?Kng>PuyNjN-Xm^A78!d=ozQ)a+$T{}#2&&d>dwUh}57kMYqftzS-CFD{y2YoYA06^a>IRc7=3$v?sgQ(` zWS7)C0d`gir5-Ei`yFyAEZC*Kdg`@t*oe{oAtn82;hS@%^P1Jzf&EnwX^XTrWpjRnH7lddo| zb>7Xp%Cbm#^l~-zn6r-jzLBd)D&Ywgp#0u3lJC{)0i;$Iy3a z>dOZkx6a5HE_<*+-Fj9NtIR{SH|sx~jh&_V|HrZwN(Yn;EL5U4*P3N^8;NEsX$b2E zoeePUZJW(?%tqwtv~7(GI1K(}R_3kqDeaY%GQ8FGeuY=|R7sAL=dR9v*7rV%qhpzd z_i+<%(<{l|cfQR5VlcdW!^qlabBrqw*%d2XKV+$|?Uf6KgexPSJ*OmB|wd*`yT{nGbq-(GR& z8Rtc@uk&uLKA*F^wersT6E~}6Ur&E*&V6pi*7C+BHA+*flosheKNI}2XJh?-x#jb% z9&fq#bDi%&#m^ZEv1#JV9F9#*c;mC@d1r%j=0WzoCT=y|OWtu;Em;{+)MxzmP9ST` zCGYY>S&Bcowz0MM3%yr8zC&74E>6r}kK6Co>5`&fPp2K^-*)=N{as7m<=;_z;+eKv zaDm6Kqxuu%C*7a^Zc?4&uZ}OAo?U`}g?9QK*z{)om)9Q}4F4u8^TU-CJK63phx|Gw7=EZx&!a;BhI+Z%R1?-KV@yCQ<|>jm$oSpHFi-;j5t&7 zZpjUvK6&oq%Dj`!bL7tib?yGed^70JqU{|=6&fRZww6R?|NcB}7H3uN`Rwm+0w%Am z+;98W>6(-DKE=G<;wd57_fEMTe`j0t$qN4SFU@w&T>`E{ylTHow?%`pz3vW zW}%iskI^@;b6bKZ=fCOM{x#Gz;$)$DJfwXn~s#OjW^`j)xA1_!%!TGpLd?pC796L8IY0mpLTq$k-N7dZTu zy{y=G??QF=&qb=UWgqiR3|lcvO4&_D#Ot%<&B@%{mFhuz|ISL3lsSV&H1|)_jIe(O#)7ZTmdjrL@&EO%svFB1HFC_q{d{9_{g1^t{sf`r zg<7FSi_Ls*cPv@qJh3AvHA7o5bj1QbmnOZn0Y}e7C@QL4VN45CV-u6uwNd$4Ux#4o z3z3TV=kh*Z_L``l9{*1N{oUH{_dZw8nsid<>N9Dt65r>J;SU^E2+2w%RGQb8AM-pO zn|t?n)T+x7OI=n@?2-D&)V4f5(sZJStq|9f6B6@gxwM(zkYBX%5l2VWt*pRV3#(Qy zb#`(uTCDKuZK-S19F^9x#)WH2Ltm5zGq$=Q70^n81V#@3ppPFLNQyqzcF!STc(NU|zy zt9ZctS<~#7-o5vG-t2GB|1|B1|L~mcZ?oU?1-A z^Uh4Z;ieh>;jh!WEsEZFFbp-WlEmLKUqD` zu!N~zcRY#o#d2TduH=@Z@#Z5xC6rif8@K~ z)V?&qb^cPOeK*&O?OYlvsP1nk{~^HbQ~3@ty{X)X?M@k+_Xzl1oP5_^-s|z*-^%wS zxhq-!{$#aTAG`dni1nr2>{BK$8Wii4@7rV*B`F zSDEdEZ|pqc|KjG_8HKw^E43s!TZCUy>#1#2ZrQS;tMGJboV3@Bg7xbvJ7O6B?tNu_ zQMPBoM&Z(5I<7~{5BbDytF_NN@W1FF|leW_?R~B zJz~pJb@KmxyPl6On=WqBJ=pxauz!D3RO8eJk1LC2xOw;3Bv_@LI6o&N{PHdnOIr)m z8Got^wDMeJCHsAg%zg<) z8kFsBZR9kO4wT%!zqy)msm;mts&~A)x87b8s(JMKC%LhaCjm?w{J!>B;4+;JRw1&jF7$ExgB;6e=^lyt_L> zQhZuM>IdJVMj4Itle|VzYneTTPaHDHuiKy4XnoJ%%lU%y!B1MIXnpEneLpcct;S8R zI9pEHf5uGlw=hBC3Y@_uota|-l zwN8y{4KEAWdNy*K`1P&o>e?&!Tu!N7drfiAx>tLj3rw5xB;u>|R;z2@?OQg1j;RSU zPBrj8ST$i?RDD6vvoN!u>^<^&C#w>DbvGMn=WcxF&s*oe*#7C38-+ZJ7cKgG^39z0 zeYwi6dH*+mVAY85dJ6z9DtqI*$H_M)imMvZAlHbn?V9|_y&`$nluba&_7 zqjE|98>jE+z7hRK`I~6DXu0t3&c8<)AH93zP{?2CU#MR=VaIlhh=@maj|2)=Sop~3 z^$EClEk1JbkwoDd3%@(zcl__f+c?PR`w6IbO+LbWwE4)%M*^W8-L8^Yh3cI(_> ztUheFLH~~EJGS2k{}nLYk>zWtK4AMWu0Y_9G#?xHJLdKS3kxJ<_}mXnED(|5J$_(g zfy^E8ckJKW*$;dyV4B0BevtX0V}a2ersan+3#{farXOm4sQ4kkf?JM_zuo9Ki7Wz;Nyp!1&lEqW?v36ii_|haLE1Gz@^NQz@z9QaJbCFK|h99 zGi3vta74T2n+EkmlOHJUkkD)NerU8qW?h5!L#+xU8`gDg%MY0rygjs)`}g6}4<;2> zG5qESj33M_P`<-rept6a`wrXrru4(b4|aaAsj%C_5XYh4B!1ZY!O{;#6_$7S);EM7 zTK(Ya2dN6(J$!Ne`3>fWWe7jZ@G&p~`a6D8d zu_2kq@Q}pztx^TyeerN3%af z?ctl>=70S4N46R^JK_8zvp=NmVa-2!`$Oc9oEknm@%ioNkBdLx{^xP$yyEB!9I3;qi~cKRo}4)JfSl&p&$p;q#B&KV0`P?{A4ew*Eo*$Lt@af7t4T z_qX0Z_WnWn$Lb%oe;EG>)VJ6loBzQ7WBQNcKdk?R>Rb08yZ<2nWBHHjKg|CG|F_g1 z+y5Z`WB!lwKkWa6|F`}>_Wwcs$NC~iE>5APQ%obL^WL1IdvluX&8fCKHKsq=6f-gU zN!U)`cS_|`cb~lbRIbQ>=kz_@ccR}Zf1g@DwS4mLlYgHwetP%Gp_0GSzf!+)!k+Cm z5mBG)J_%H=u!09$YVnhcpCl^R*!bNGzvq81-Yy|AzH*O^<2()jN&HjzC#jzf zezNkDN#!mZ=Xsj)I`T^LTIVP6Pv)QAKcRn0`f2x*#ZMMLO@5O6bmu3V%6&C+YWCDL z?Qw|H$h|qeuVm>YX3Ht_zC2webJC$NRYO_w^jo8eQOk@bXBR15e;V>`g8vl%N#ZBF zpQ?Tes+_qeCQfnvl<<@4r8Gg5xizzDcI}C~r!Ze}zGnUu^OLim>V68V zoLv)^FL5I(I@#Lu?}hcf#&4}l*So3oGteGC-{deP~xql+H`Hb%B-b%JVQ=;9crnPa=!3FF7CT6g|aM^M=V@;NyfTi+G zmu26b&>hZ4mtr(w`y>IoRS@zr7SJ`e$4m;tYT6+6wyUI(osi(ePp63^u^EEf!WTWtQ z^9?UUPQ`7`IbpG3`PLh1ODBF?w8OANXj=K%51W$Hw5&|Gu9~yOyDG+eQH}B5P03{! z5^JOS=36wrlB%61yZGy-WS)gDbaKy&yq%tQ;RGxqP%@320Zwn+=NXbTfRBvDw-BotzTA2R}-HSUM-%D=Z-N)& zDTSped$zePy3`r8L`A~`fhkM>1fHL&&;icB}a*$*f$dvi#!NB+Fe#_hnX=87Tbca8FT4)c(4u&|cMh#bxD< z=5Kjxg}!!kzK+bfqaE;AV~yndm$U9as#_f4zd6RkwtmmN);ATh>WSJEl(Dw_?)^U z^{_{7;pC+y?>=r3y}fbK$-fa<)xK9hD^FhHcGuv?6xN@nTqpd6>z4%ScWzpE{nUw* z!n49JD*Z~yOmW{A>^=F62=Rw-xTw+i4!@6#oD4?X?RBenLK+KG#(_a9`>=)KG58LWS)BxBV|WBaGg(`u`hyc2NKzPe<# z;o+>)a+jOSUaa^Pu~XUpEl-8ftkh7!Us{`7*59Z~er1qONcM%Z;}hbo7sG{3PZ4>GO<7@;fW+m7YgE;YgRXQ0*?5U82;ot4zVN zW~-1Wd+;pv2$kh$9M42-REg-dwmI@jxX4m&x9-beqc3G?2J06aZ%TQqQs;AQ!q?AX za~HIU-00mbYklKb&C>vbPnAJ!9Z!4H`WBrP(h8SI)aB}Ishqjq_EwQo#=+;w>#g&4 zY;`#)*?w=EXPRG5>STj%bNj42x4e%Z47_ylSBKSmBd=SQHXkoaSzK!Ql51pce{J8k zJ-yGOW(Q;+Uhw8+jgNNV^_Go$F01X)d#d(ripR-~?JF*Oy-V47K_@@cZ_?4|XTQ?s z>rPdjc+_TvtoxJHWj70zKdn>|S6`x#I_s>azQXj452bFZoJzgnFZ(QY)k*t3|5YDf zEEA~S7U`S6Z2r;HmH9sUXBiU;!yN3Ab}4RLcBK5%-7}t>Ecgv(Ma^B5dMDYdM(wrs zPCvB^59fcH5o08|sHl5Z@+8rf+2bx0*G)yCS9=dANRMOceXb_%HL4 zbg=!lwBRUF6$l#WlTI!cV_1wqoV^HUC513W=?y8>>DkaD_OVt}ov9 zY@75_)$KDYyjb}r&weL0aq$WXcLUFfbEaOqZ0H*9T^%{=(=O&&)hk&Z6n#WoCqbe}oXW(u(Qi)V`Gg-wvPUgw*u-}S08Wx>+jXM{g{OL}av^q6{7Iw!~NN>S$Y zKKazBUH=MhC?8**@J84vqHvGJ@{h zi7_i7M_6H^@0B0!=D$uQ&xzMrcl1)0h}N6J>wl(I`Asois;V^CXycdC_(@8ljhRQ@ z?0mb*^ij4;&82N=_YEiRdU>nmL`&RG`6KTZq)OFviqb!I5AWK& zllkej38&wl`MP*d=8H-@)x)b}lvigIbeCL?xypRMl=<3+23Z@KGVU#0i>GwBFVgsO z^{R#1lqU)SZ-iIg{Fvibp&cT8*Sm9>z}n3{yobKMEzO#sUCQ%z1CMoX#S#5QDYqUx zX^*>diE*utVo&zd2QFGs>!QL=1}rMvZ+9Yy>(Pv5m&@++E4Lrgn<&e*>hQLiD(ctH z{Fm|f3l-R25%}zGk<*sG4%Y+x7hk`A;+VpsDmgPiCFqEOjFnpM_ZL=aaT5%@-vpfh z+Q~WL?I(_|;@7&no*5T(&lLKpySdqBje!25`+Sp2+4!sM=Q0={uA7v({`&XHSBfQf zz7TOfV!Ey7l%Cn|G1nUR|k`_k3MFKjCMcr-R^rjW#*0WyyiLg6|bi%e>`keIK9(0_1%l~$9gweBCS5E zShdEv%;M7ZD!w5yn`co?P3$Qd%htek*BrO!7jH7&%63GuOxN1wmgbjDO9R5glP%6h zX;~k=8+TLvx!-czu0>H#GkNx2+Ww+Ov#M;dUHbKF6N(xuHoiz%_;S)LjbFZ!8X-=!meh|)ajlX zX?=eCjqRUZe605^Tl%W+CF?)FqPsN$2iFsrpdJ`h6m<4h!$)1uNP|=a)E?bqcCrm zyuJNG%J}vRDY+Xe*CtLB^_PyBt~fjQSE*hRtez19XLIg3o*iW=X2f6VhqT8e?3;Ff1M z;>{nfJJ+)JeVK1>y7D6TLeKQoTrT(J^v;%;$mShZ_EGxe`ucQ;lkT=_746r3<;=V*Dy*y9rK~nxVS)}9cctJu zN6t?F#3cPomJc;&^E_U~#Tz;&D0|KK?Yt+q6lY~my>rOOOHJ>{%hr;qwhQ*mV+uR` zC+hIMJ1@*OdiObRX|PIUZG9V8r@3a$N@we33={RH@n)Zh*dJ2reJ}o_+$m4tbFYM% z*4;8$6yT&1(K~hh%PZ+ZpY&Gm44GGG*0r*wOLS|pz^coMg846QtvmhZ+#@CLtA>J? z8RFI*U-o{|r4wFK`?B+{Y3%iRbCgke%E`|%)iS|l5*p7go!+u0#Yg`+%Phm(^N|N_ z)}8H5y>i1!Tf=SbnNvK+uAZFHVe83cw_ea)FZJ8YAip!3GHZS(*SD|wRhRLr+jaiJ zc{N*ZE}#6c)H~|)tdN!Syz1Y4ljaPUnv^+NS^4~JBTjX}O*@tz&T!KF=<#&s>coOs zIa^AqyBM_2K9Xyl5%8OFahQl%_q@C!#b((psViDNg?FyXad~4VJln(n`VGOShC1(N z@UaTWolecj%b6W2)t}O}F*mGo>4rRurO%#RT=?|D=HE{WXGh-5ITmfV;kw`U%{%sN zPi>Z-x@euC=-j898e+M&1)Y$Hk~TJqyrE-k`9m#oUUR-s+Q)4-CuRKXi+vtglwLS5 zQ2bHsvk&FZ4_1oqyyLH`$5Q=fO7i`mviE{3)6dV{{O;4WyxBrug7!@cpSrfU>w#D3 zinUv8qaWQ<(NWWB>HeG?wj(bi%X;aO^nKN5zBz5(xc+R-<~^5JJ&V**_AkwGjocxk zBdXeUDq}~-&W&=f&d8p=HuF(lYL#?lu4%Vq$g5Jm+pDJLc$}WBtNs4!giUdQb06mX z3*B3%%)ffss!1DuI;!oTEiNfPr(RLDZK`O_Dc0xnO*!xXv9_GPhVP)qDn9Yor-J9K z{2ab4;1pNr>|OVd`A(iO_3pWV-qkzPZbWR|!~1HR=aH5*pVnBr&t6;JWORCS;Ax4y zQRzXhALnMb>)fo33%X%>_eO4T=>D3&?`EI=KXvb!seiTap1*YZ)dlTsR{sk;L!X!D zXJn=Rur&O*Gv?Tq)t-NS+?%&}=3EJw?pp02^(A**aIi}Lje`b@^ftOq`_|#Da(UA2 zZ5p~8eV)7u)ji!`a`xGsExE5XcgjxxEuFLC%el6*qFh`1zPac>Yh1AD(53^?JB#nj zKi6bbU7(q6Hfi0IMaJcCR<~rN+b@urY9IL|eD(f2=R3IEMVKsRF0{CN&faoUu+DUO zFYW52ZBbipx7o}RS(MTD_sZ*8%U0_0E{oOc3e{Sn#Sj`(%%K>%;dPBz@V(q3&uQ`Z z%6u}jA7rn0tnm6(7`<*$fNkmGg_=u+*WR@XzP=*n@YnV~u?MYrc{F<-?=K-l?h^{)8oUy}5eo?n+SX8Tamq5aB0+rRne=ThLmpdKF({ce9Fz& z%d_43@;0~L17=@x3?CeFlWX4TG@<+?%bD$!W-n}32>v>mVC5m5^Dj|KH?QW3*>YD& z>z)01&t~p6T^FdVDIs626|^c?{gcN@H|zf=l2-LkNnX{Ww)pfFrIicAc$41Ed15{z zB6_vd;fkJxcH4y0o=j7#TX%iOwCWUFwMDD%xaBPG>^dYSJ3D`0P-)Wncg61<&+T=p z)-CpJlq&pRe0i zibl^lU~0nn??m5ild@U$TeMfNxNLZI^178eAD-{%`FwCnvW9Mpaps~6hKdgVIJ=j} zFS%aHdfNQ1()<&(n{(Apv7ZZ`GxgQ)V$F$?iD9~*e|pQU)LSTWY00^iqf7G2U!PHL z<}xu_yV+pN-e0rMnx4Hi>wNJH6{+iowl3Xd5)#&!#4eCAF7yUT)7$pJJfW zlKXlJTjrwhty_K8ehTkYoF4L;=U-+>aPqCAr($waXB~KHx_0q1SCRZzC1&4d#h&+G zaQ08q%P6bf#mcuTpEhYPwGFn=t@iDU>^ybsYv7a%yQ7!rKC2Df6j9Tv`LU7vQSIzG zE%nnrz1jb&{P#tb6RVjV57Zx8TzdV_r1-+43xZ25qPBkic4Er5&uJO|_|)DX`KF@N zmVbT<7k8nP$1SNTC0orq7WHlyR+@CRz&ogJxwYKx<5#+j(_1!*Z{L<~C+;QFAFbG` z^XcND9~K+mNg=cMUvzP2N#?#PXV zqtajJ25tN9XOcDTPtIJ=2j(lxGbilr6W#Io@n-Fe(8pn`gq%dr*p@5T8id}>y8Bf8 zEAOumQO47XsfG&|dAbHJoK@Io@cqpFj*!ct_s!B&j;8G*yPM}ulvQ2KoBi+Gibq|R3Ln+KdKv#&E_2m8egB8N1u>B|Kk5U% zt!q43WN9pVS28km)@r_PhxJv?UwyYmop>`pG?zzvwfNQ9y(_1lKjV~CDl|LG(E4Qe zEZ?IW-(N8+pZ2W&eVFR0Y38>hUr&qo^1X1*Kf5^e#eW8?+9N9%K!EZ8e+DK7Mg|53 z9tH*mF$M-OkCAy910w?qn8yH`GfPfLNJwF5(iTc;QuuW%X10g~FN5I=R%-?Z076OM AJOBUy diff --git a/front/src/semantic/themes/default/assets/fonts/icons.woff2 b/front/src/semantic/themes/default/assets/fonts/icons.woff2 deleted file mode 100644 index 32b980833a0fc217628c69ad7a8db409155c0a1c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 105468 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") { + margin-left: 350px !important; + margin-top: 50px; + } + transform: none !important; +} + +.main.pusher > .ui.secondary.menu { + margin-left: 0; + margin-right: 0; + border: none; + box-shadow: inset 0px -2px 0px 0px rgba(34, 36, 38, 0.15); + .ui.item { + border: none; + border-bottom-style: none; + margin-bottom: 0px; + &.active { + box-shadow: inset 0px -2px 0px 0px #000; + } + } + @include media(">tablet") { + padding: 0 2.5rem; + } + @include media(">desktop") { + position: fixed; + left: 350px; + right: 0px; + top: 0px; + z-index: 99; + } + background-color: white; + .item { + padding-top: 1.5em; + padding-bottom: 1.5em; + } +} + +.service-messages { + position: fixed; + bottom: 1em; + left: 1em; + @include media(">desktop") { + left: 350px; + } +} +.main-pusher { + padding: 1.5rem 0; +} +.ui.stripe.segment, +#footer { + padding: 2em; + @include media(">tablet") { + padding: 4em; + } +} + +.ellipsis { + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; +} + +.ui.small.text.container { + max-width: 500px !important; +} + +.button.icon.tiny { + padding: 0.5em !important; +} + +.sidebar { + .logo { + &.bordered.icon { + padding: .5em .41em !important; + } + path { + fill: white; + } + } +} + +.discrete { + color: rgba(0, 0, 0, 0.87); +} +.link { + cursor: pointer; +} + +.ui.really.basic.button { + &:not(:focus) { + box-shadow: none !important; + background-color: none !important; + } +} + +.floated.buttons .button ~ .dropdown { + border-left: none; +} + +.ui.icon.header .circular.icon { + display: flex; + justify-content: center; +} + +.segment-content .button { + margin: 0.5em; +} + +a { + cursor: pointer; +} +.segment.hidden { + display: none; +} + +button.reset { + border: none; + margin: 0; + padding: 0; + width: auto; + overflow: visible; + + background: transparent; + + /* inherit font & color from ancestor */ + color: inherit; + font: inherit; + + /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */ + line-height: normal; + + /* Corrects font smoothing for webkit */ + -webkit-font-smoothing: inherit; + -moz-osx-font-smoothing: inherit; + /* Corrects inability to style clickable `input` types in iOS */ + -webkit-appearance: none; + text-align: inherit; +} + +.ui.table > caption { + font-weight: bold; + padding: 0.5em; + text-align: left; +} +[role="button"] { + cursor: pointer; +} + +.left.floated { + float: left; +} + +.right.floated { + float: right; +} diff --git a/front/src/style/_site.scss b/front/src/style/_site.scss new file mode 100644 index 000000000..eba288882 --- /dev/null +++ b/front/src/style/_site.scss @@ -0,0 +1,202 @@ +/*! + * # Semantic UI 2.4.1 - Site + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + + +/******************************* + Page +*******************************/ + +html, +body { + height: 100%; +} +html { + font-size: 14px; +} +body { + margin: 0px; + padding: 0px; + overflow-x: hidden; + min-width: 320px; + background: #FFFFFF; + font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; + font-size: 14px; + line-height: 1.4285em; + color: rgba(0, 0, 0, 0.87); + font-smoothing: antialiased; +} + + +/******************************* + Headers +*******************************/ + +h1, +h2, +h3, +h4, +h5 { + font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; + line-height: 1.28571429em; + margin: calc(2rem - 0.14285714em ) 0em 1rem; + font-weight: bold; + padding: 0em; +} +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: 0em; +} +h1:last-child, +h2:last-child, +h3:last-child, +h4:last-child, +h5:last-child { + margin-bottom: 0em; +} + + +/******************************* + Text +*******************************/ + +p { + margin: 0em 0em 1em; + line-height: 1.4285em; +} +p:first-child { + margin-top: 0em; +} +p:last-child { + margin-bottom: 0em; +} + +/*------------------- + Links +--------------------*/ + +a { + color: #4183C4; + text-decoration: none; +} +a:hover { + color: #1e70bf; + text-decoration: none; +} + + +/******************************* + Scrollbars +*******************************/ + + + +/******************************* + Highlighting +*******************************/ + + +/* Site */ +::-webkit-selection { + background-color: #CCE2FF; + color: rgba(0, 0, 0, 0.87); +} +::-moz-selection { + background-color: #CCE2FF; + color: rgba(0, 0, 0, 0.87); +} +::selection { + background-color: #CCE2FF; + color: rgba(0, 0, 0, 0.87); +} + +/* Form */ +textarea::-webkit-selection, +input::-webkit-selection { + background-color: rgba(100, 100, 100, 0.4); + color: rgba(0, 0, 0, 0.87); +} +textarea::-moz-selection, +input::-moz-selection { + background-color: rgba(100, 100, 100, 0.4); + color: rgba(0, 0, 0, 0.87); +} +textarea::selection, +input::selection { + background-color: rgba(100, 100, 100, 0.4); + color: rgba(0, 0, 0, 0.87); +} + +/* Force Simple Scrollbars */ +body ::-webkit-scrollbar { + -webkit-appearance: none; + width: 10px; + height: 10px; +} +body ::-webkit-scrollbar-track { + background: rgba(0, 0, 0, 0.1); + border-radius: 0px; +} +body ::-webkit-scrollbar-thumb { + cursor: pointer; + border-radius: 5px; + background: rgba(0, 0, 0, 0.25); + -webkit-transition: color 0.2s ease; + transition: color 0.2s ease; +} +body ::-webkit-scrollbar-thumb:window-inactive { + background: rgba(0, 0, 0, 0.15); +} +body ::-webkit-scrollbar-thumb:hover { + background: rgba(128, 135, 139, 0.8); +} + +/* Inverted UI */ +body .ui.inverted::-webkit-scrollbar-track { + background: rgba(255, 255, 255, 0.1); +} +body .ui.inverted::-webkit-scrollbar-thumb { + background: rgba(255, 255, 255, 0.25); +} +body .ui.inverted::-webkit-scrollbar-thumb:window-inactive { + background: rgba(255, 255, 255, 0.15); +} +body .ui.inverted::-webkit-scrollbar-thumb:hover { + background: rgba(255, 255, 255, 0.35); +} + + +/******************************* + Global Overrides +*******************************/ + + + +/******************************* + Site Overrides +*******************************/ diff --git a/front/yarn.lock b/front/yarn.lock index 7377b3816..cec181fce 100644 --- a/front/yarn.lock +++ b/front/yarn.lock @@ -6725,9 +6725,10 @@ selfsigned@^1.9.1: dependencies: node-forge "0.7.5" -semantic-ui-css@^2.3.3: - version "2.3.3" - resolved "https://registry.yarnpkg.com/semantic-ui-css/-/semantic-ui-css-2.3.3.tgz#134794cde03344092f2728ff61bf9203cf172834" +semantic-ui-css@^2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/semantic-ui-css/-/semantic-ui-css-2.4.1.tgz#f5aea39fafb787cbd905ec724272a3f9cba9004a" + integrity sha512-Pkp0p9oWOxlH0kODx7qFpIRYpK1T4WJOO4lNnpNPOoWKCrYsfHqYSKgk5fHfQtnWnsAKy7nLJMW02bgDWWFZFg== dependencies: jquery x.* From 7c8fc72f4965a641f3ae7060ed74acc35ce10f24 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Wed, 19 Dec 2018 22:15:37 +0100 Subject: [PATCH 04/16] Commented unused Semantic ui components --- front/src/embed.js | 1 - front/src/semantic.js | 14 +++++++------- front/src/style/_main.scss | 16 ++++++++-------- 3 files changed, 15 insertions(+), 16 deletions(-) diff --git a/front/src/embed.js b/front/src/embed.js index 31ada5480..6de3ca187 100644 --- a/front/src/embed.js +++ b/front/src/embed.js @@ -1,7 +1,6 @@ import Vue from 'vue' import Embed from './Embed' -import axios from 'axios' import VuePlyr from 'vue-plyr' Vue.use(VuePlyr) diff --git a/front/src/semantic.js b/front/src/semantic.js index 8e091af0d..a09faf997 100644 --- a/front/src/semantic.js +++ b/front/src/semantic.js @@ -1,16 +1,16 @@ -require('semantic-ui-css/components/accordion.min.js') +// require('semantic-ui-css/components/accordion.min.js') require('semantic-ui-css/components/api.min.js') require('semantic-ui-css/components/checkbox.min.js') -require('semantic-ui-css/components/colorize.min.js') +// require('semantic-ui-css/components/colorize.min.js') require('semantic-ui-css/components/dimmer.min.js') require('semantic-ui-css/components/dropdown.min.js') -require('semantic-ui-css/components/embed.min.js') +// require('semantic-ui-css/components/embed.min.js') require('semantic-ui-css/components/form.min.js') require('semantic-ui-css/components/modal.min.js') -require('semantic-ui-css/components/nag.min.js') +// require('semantic-ui-css/components/nag.min.js') require('semantic-ui-css/components/popup.min.js') require('semantic-ui-css/components/progress.min.js') -require('semantic-ui-css/components/rating.min.js') +// require('semantic-ui-css/components/rating.min.js') require('semantic-ui-css/components/search.min.js') require('semantic-ui-css/components/shape.min.js') require('semantic-ui-css/components/sidebar.min.js') @@ -19,6 +19,6 @@ require('semantic-ui-css/components/state.min.js') require('semantic-ui-css/components/sticky.min.js') require('semantic-ui-css/components/tab.min.js') require('semantic-ui-css/components/transition.min.js') -require('semantic-ui-css/components/video.min.js') +// require('semantic-ui-css/components/video.min.js') require('semantic-ui-css/components/visibility.min.js') -require('semantic-ui-css/components/visit.min.js') +// require('semantic-ui-css/components/visit.min.js') diff --git a/front/src/style/_main.scss b/front/src/style/_main.scss index 1f7a561b3..1aa074756 100644 --- a/front/src/style/_main.scss +++ b/front/src/style/_main.scss @@ -19,7 +19,7 @@ @import "~semantic-ui-css/components/button.css"; @import "~semantic-ui-css/components/container.css"; @import "~semantic-ui-css/components/divider.css"; -@import "~semantic-ui-css/components/flag.css"; +// @import "~semantic-ui-css/components/flag.css"; @import "~semantic-ui-css/components/header.css"; @import "~semantic-ui-css/components/icon.css"; @import "~semantic-ui-css/components/image.css"; @@ -28,8 +28,8 @@ @import "~semantic-ui-css/components/list.css"; @import "~semantic-ui-css/components/loader.css"; @import "~semantic-ui-css/components/placeholder.css"; -@import "~semantic-ui-css/components/rail.css"; -@import "~semantic-ui-css/components/reveal.css"; +// @import "~semantic-ui-css/components/rail.css"; +// @import "~semantic-ui-css/components/reveal.css"; @import "~semantic-ui-css/components/segment.css"; @import "~semantic-ui-css/components/step.css"; @@ -50,18 +50,18 @@ @import "~semantic-ui-css/components/statistic.css"; /* Modules */ -@import "~semantic-ui-css/components/accordion.css"; +// @import "~semantic-ui-css/components/accordion.css"; @import "~semantic-ui-css/components/checkbox.css"; @import "~semantic-ui-css/components/dimmer.css"; @import "~semantic-ui-css/components/dropdown.css"; -@import "~semantic-ui-css/components/embed.css"; +// @import "~semantic-ui-css/components/embed.css"; @import "~semantic-ui-css/components/modal.css"; -@import "~semantic-ui-css/components/nag.css"; +// @import "~semantic-ui-css/components/nag.css"; @import "~semantic-ui-css/components/popup.css"; @import "~semantic-ui-css/components/progress.css"; -@import "~semantic-ui-css/components/rating.css"; +// @import "~semantic-ui-css/components/rating.css"; @import "~semantic-ui-css/components/search.css"; -@import "~semantic-ui-css/components/shape.css"; +// @import "~semantic-ui-css/components/shape.css"; @import "~semantic-ui-css/components/sidebar.css"; @import "~semantic-ui-css/components/sticky.css"; @import "~semantic-ui-css/components/tab.css"; From c6e03b15c76ea438b77ee140c32319ba8880654b Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Wed, 19 Dec 2018 22:22:51 +0100 Subject: [PATCH 05/16] Ignore moment.js locales for smaller build --- front/vue.config.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/front/vue.config.js b/front/vue.config.js index 69bfdc34e..97af9f856 100644 --- a/front/vue.config.js +++ b/front/vue.config.js @@ -1,6 +1,11 @@ const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin; -let plugins = [] +const webpack = require('webpack'); + +let plugins = [ + // do not include moment.js locales since it's quite heavy + new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/), +] if (process.env.BUNDLE_ANALYZE === '1') { plugins.push(new BundleAnalyzerPlugin()) } From a2216330852b5c4efff79e94304ca009db8247bd Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Wed, 19 Dec 2018 23:26:21 +0100 Subject: [PATCH 06/16] See #638: fix skipping to last track in album --- front/src/store/queue.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/store/queue.js b/front/src/store/queue.js index 717616d2d..dba102b46 100644 --- a/front/src/store/queue.js +++ b/front/src/store/queue.js @@ -86,7 +86,7 @@ export default { if (callback && i + 1 === total) { p.then(callback) } - if (shouldPlay && p) { + if (shouldPlay && p && i + 1 === total) { p.then(() => { dispatch('next') }) From 5321cb4c46311f6645eabdfe7492e33a4fec0b38 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Wed, 19 Dec 2018 23:46:53 +0100 Subject: [PATCH 07/16] Enable gzip compression to reduce bandwidth consumption --- .../changelog.d/front-performance.enhancement | 51 +++++++++++++++++++ deploy/docker.proxy.template | 34 +++++++++++++ deploy/nginx.template | 35 +++++++++++++ docker/nginx/conf.dev | 33 ++++++++++++ 4 files changed, 153 insertions(+) create mode 100644 changes/changelog.d/front-performance.enhancement diff --git a/changes/changelog.d/front-performance.enhancement b/changes/changelog.d/front-performance.enhancement new file mode 100644 index 000000000..03ca0e478 --- /dev/null +++ b/changes/changelog.d/front-performance.enhancement @@ -0,0 +1,51 @@ +Improved front-end performance by stripping unused dependencies, reducing bundle size +and enabling gzip compression + +Enable gzip compression [manual action suggested] +------------------------------------------------- + +Gzip compression will be enabled on new instances by default +and will reduce the amount of bandwidth consumed by your instance. + +If you with to benefit from gzip compression on your instance, +edit your reverse proxy virtualhost file (located at ``/etc/nginx/sites-available/funkwhale.conf``) and add the following snippet +in the server block, then reload your nginx server:: + + server { + # ... exiting configuration + + # compression settings + gzip on; + gzip_comp_level 5; + gzip_min_length 256; + gzip_proxied any; + gzip_vary on; + + gzip_types + application/atom+xml + application/javascript + application/json + application/ld+json + application/activity+json + application/manifest+json + application/rss+xml + application/vnd.geo+json + application/vnd.ms-fontobject + application/x-font-ttf + application/x-web-app-manifest+json + application/xhtml+xml + application/xml + font/opentype + image/bmp + image/svg+xml + image/x-icon + text/cache-manifest + text/css + text/plain + text/vcard + text/vnd.rim.location.xloc + text/vtt + text/x-component + text/x-cross-domain-policy; + # end of compression settings + } diff --git a/deploy/docker.proxy.template b/deploy/docker.proxy.template index 319f287e7..812027bfa 100644 --- a/deploy/docker.proxy.template +++ b/deploy/docker.proxy.template @@ -29,6 +29,40 @@ server { # HSTS add_header Strict-Transport-Security "max-age=31536000"; + # compression settings + gzip on; + gzip_comp_level 5; + gzip_min_length 256; + gzip_proxied any; + gzip_vary on; + + gzip_types + application/atom+xml + application/javascript + application/json + application/ld+json + application/activity+json + application/manifest+json + application/rss+xml + application/vnd.geo+json + application/vnd.ms-fontobject + application/x-font-ttf + application/x-web-app-manifest+json + application/xhtml+xml + application/xml + font/opentype + image/bmp + image/svg+xml + image/x-icon + text/cache-manifest + text/css + text/plain + text/vcard + text/vnd.rim.location.xloc + text/vtt + text/x-component + text/x-cross-domain-policy; + location / { include /etc/nginx/funkwhale_proxy.conf; proxy_pass http://fw/; diff --git a/deploy/nginx.template b/deploy/nginx.template index b81ecc61a..702dc05ee 100644 --- a/deploy/nginx.template +++ b/deploy/nginx.template @@ -43,6 +43,41 @@ server { root ${FUNKWHALE_FRONTEND_PATH}; + # compression settings + gzip on; + gzip_comp_level 5; + gzip_min_length 256; + gzip_proxied any; + gzip_vary on; + + gzip_types + application/atom+xml + application/javascript + application/json + application/ld+json + application/activity+json + application/manifest+json + application/rss+xml + application/vnd.geo+json + application/vnd.ms-fontobject + application/x-font-ttf + application/x-web-app-manifest+json + application/xhtml+xml + application/xml + font/opentype + image/bmp + image/svg+xml + image/x-icon + text/cache-manifest + text/css + text/plain + text/vcard + text/vnd.rim.location.xloc + text/vtt + text/x-component + text/x-cross-domain-policy; + + # end of compression settings location / { include /etc/nginx/funkwhale_proxy.conf; # this is needed if you have file import via upload enabled diff --git a/docker/nginx/conf.dev b/docker/nginx/conf.dev index 297cfa509..3e7a3515a 100644 --- a/docker/nginx/conf.dev +++ b/docker/nginx/conf.dev @@ -43,6 +43,39 @@ http { charset utf-8; client_max_body_size 30M; include /etc/nginx/funkwhale_proxy.conf; + # compression settings + gzip on; + gzip_comp_level 5; + gzip_min_length 256; + gzip_proxied any; + gzip_vary on; + + gzip_types + application/atom+xml + application/javascript + application/json + application/ld+json + application/activity+json + application/manifest+json + application/rss+xml + application/vnd.geo+json + application/vnd.ms-fontobject + application/x-font-ttf + application/x-web-app-manifest+json + application/xhtml+xml + application/xml + font/opentype + image/bmp + image/svg+xml + image/x-icon + text/cache-manifest + text/css + text/plain + text/vcard + text/vnd.rim.location.xloc + text/vtt + text/x-component + text/x-cross-domain-policy; location /front/ { proxy_pass http://funkwhale-front/front/; From 95e087b342c8a947b47f2e5cec17bcfacf37b0b6 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Thu, 20 Dec 2018 00:21:57 +0100 Subject: [PATCH 08/16] Removed raven on front-end --- .../instance/dynamic_preferences_registry.py | 9 ----- front/package.json | 1 - front/src/App.vue | 6 --- front/src/components/Raven.vue | 40 ------------------- front/src/store/instance.js | 8 ---- front/src/views/admin/Settings.vue | 5 --- front/tests/unit/specs/store/instance.spec.js | 32 +++++++-------- 7 files changed, 16 insertions(+), 85 deletions(-) delete mode 100644 front/src/components/Raven.vue diff --git a/api/funkwhale_api/instance/dynamic_preferences_registry.py b/api/funkwhale_api/instance/dynamic_preferences_registry.py index 0edb94482..844fbb08b 100644 --- a/api/funkwhale_api/instance/dynamic_preferences_registry.py +++ b/api/funkwhale_api/instance/dynamic_preferences_registry.py @@ -58,15 +58,6 @@ class RavenDSN(types.StringPreference): field_kwargs = {"required": False} -@global_preferences_registry.register -class RavenEnabled(types.BooleanPreference): - show_in_api = True - section = raven - name = "front_enabled" - default = False - verbose_name = "Report front-end errors with Raven" - - @global_preferences_registry.register class InstanceNodeinfoEnabled(types.BooleanPreference): show_in_api = False diff --git a/front/package.json b/front/package.json index 72cd6c71c..adeb1fb19 100644 --- a/front/package.json +++ b/front/package.json @@ -20,7 +20,6 @@ "lodash": "^4.17.10", "masonry-layout": "^4.2.2", "moment": "^2.22.2", - "raven-js": "^3.26.4", "semantic-ui-css": "^2.4.1", "showdown": "^1.8.6", "vue": "^2.5.17", diff --git a/front/src/App.vue b/front/src/App.vue index ed2f4e36f..55cfab6e9 100644 --- a/front/src/App.vue +++ b/front/src/App.vue @@ -43,10 +43,6 @@ :version="version" @show:shortcuts-modal="showShortcutsModal = !showShortcutsModal" > - @@ -63,7 +59,6 @@ import GlobalEvents from '@/components/utils/global-events' import Sidebar from '@/components/Sidebar' import AppFooter from '@/components/Footer' -import Raven from '@/components/Raven' import ServiceMessages from '@/components/ServiceMessages' import locales from './locales' @@ -75,7 +70,6 @@ export default { components: { Sidebar, AppFooter, - Raven, PlaylistModal, ShortcutsModal, GlobalEvents, diff --git a/front/src/components/Raven.vue b/front/src/components/Raven.vue deleted file mode 100644 index f45d0ed22..000000000 --- a/front/src/components/Raven.vue +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - diff --git a/front/src/store/instance.js b/front/src/store/instance.js index a1a1530a9..72a960cd0 100644 --- a/front/src/store/instance.js +++ b/front/src/store/instance.js @@ -40,14 +40,6 @@ export default { enabled: { value: true } - }, - raven: { - front_enabled: { - value: false - }, - front_dsn: { - value: null - } } } }, diff --git a/front/src/views/admin/Settings.vue b/front/src/views/admin/Settings.vue index 890eba9fd..779bb7459 100644 --- a/front/src/views/admin/Settings.vue +++ b/front/src/views/admin/Settings.vue @@ -142,11 +142,6 @@ export default { "instance__nodeinfo_stats_enabled", "instance__nodeinfo_private" ] - }, - { - label: errorLabel, - id: "reporting", - settings: ["raven__front_enabled", "raven__front_dsn"] } ] } diff --git a/front/tests/unit/specs/store/instance.spec.js b/front/tests/unit/specs/store/instance.spec.js index b60b1fd47..7b70982fc 100644 --- a/front/tests/unit/specs/store/instance.spec.js +++ b/front/tests/unit/specs/store/instance.spec.js @@ -18,11 +18,11 @@ describe('store/instance', () => { describe('mutations', () => { it('settings', () => { - const state = {settings: {raven: {front_dsn: {value: 'test'}}}} - let settings = {raven: {front_enabled: {value: true}}} + const state = {settings: {users: {upload_quota: {value: 1}}}} + let settings = {users: {registration_enabled: {value: true}}} store.mutations.settings(state, settings) expect(state.settings).to.deep.equal({ - raven: {front_dsn: {value: 'test'}, front_enabled: {value: true}} + users: {upload_quota: {value: 1}, registration_enabled: {value: true}} }) }) }) @@ -32,13 +32,13 @@ describe('store/instance', () => { status: 200, response: [ { - section: 'raven', - name: 'front_dsn', - value: 'test' + section: 'users', + name: 'upload_quota', + value: 1 }, { - section: 'raven', - name: 'front_enabled', + section: 'users', + name: 'registration_enabled', value: false } ] @@ -50,15 +50,15 @@ describe('store/instance', () => { { type: 'settings', payload: { - raven: { - front_dsn: { - section: 'raven', - name: 'front_dsn', - value: 'test' + users: { + upload_quota: { + section: 'users', + name: 'upload_quota', + value: 1 }, - front_enabled: { - section: 'raven', - name: 'front_enabled', + registration_enabled: { + section: 'users', + name: 'registration_enabled', value: false } } From 3682aa81db24a3a36600842c994fba62c18a5480 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Thu, 20 Dec 2018 00:46:40 +0100 Subject: [PATCH 09/16] Disabled another Semantic UI module --- front/src/semantic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/semantic.js b/front/src/semantic.js index a09faf997..5267ba770 100644 --- a/front/src/semantic.js +++ b/front/src/semantic.js @@ -5,7 +5,7 @@ require('semantic-ui-css/components/checkbox.min.js') require('semantic-ui-css/components/dimmer.min.js') require('semantic-ui-css/components/dropdown.min.js') // require('semantic-ui-css/components/embed.min.js') -require('semantic-ui-css/components/form.min.js') +// require('semantic-ui-css/components/form.min.js') require('semantic-ui-css/components/modal.min.js') // require('semantic-ui-css/components/nag.min.js') require('semantic-ui-css/components/popup.min.js') From 17d86a28325b9b841668f52a011e15f485bdf054 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Thu, 20 Dec 2018 00:47:05 +0100 Subject: [PATCH 10/16] Lazy-load markdown renderer on about page for smaller bundle size --- front/src/components/About.vue | 15 ++- front/src/components/Sidebar.vue | 2 - front/src/components/discussion/Comment.vue | 53 -------- front/src/components/requests/Card.vue | 61 --------- front/src/components/requests/Form.vue | 127 ------------------ front/src/filters.js | 8 -- .../tests/unit/specs/filters/filters.spec.js | 9 +- 7 files changed, 13 insertions(+), 262 deletions(-) delete mode 100644 front/src/components/discussion/Comment.vue delete mode 100644 front/src/components/requests/Card.vue delete mode 100644 front/src/components/requests/Form.vue diff --git a/front/src/components/About.vue b/front/src/components/About.vue index 16c58b173..90cfb7682 100644 --- a/front/src/components/About.vue +++ b/front/src/components/About.vue @@ -27,9 +27,9 @@

{{ instance.short_description.value }}

+ v-html="markdown.makeHtml(instance.long_description.value)">
@@ -43,8 +43,17 @@ export default { components: { Stats }, - created() { + data () { + return { + markdown: null + } + }, + created () { this.$store.dispatch("instance/fetchSettings") + let self = this + import('showdown').then(module => { + self.markdown = new module.default.Converter() + }) }, computed: { ...mapState({ diff --git a/front/src/components/Sidebar.vue b/front/src/components/Sidebar.vue index d8029b1bd..5fc0458c9 100644 --- a/front/src/components/Sidebar.vue +++ b/front/src/components/Sidebar.vue @@ -206,10 +206,8 @@ export default { labels() { let mainMenu = this.$gettext("Main menu") let selectTrack = this.$gettext("Play this track") - let pendingRequests = this.$gettext("Pending import requests") let pendingFollows = this.$gettext("Pending follow requests") return { - pendingRequests, pendingFollows, mainMenu, selectTrack diff --git a/front/src/components/discussion/Comment.vue b/front/src/components/discussion/Comment.vue deleted file mode 100644 index ee9ce9b1f..000000000 --- a/front/src/components/discussion/Comment.vue +++ /dev/null @@ -1,53 +0,0 @@ - - diff --git a/front/src/components/requests/Card.vue b/front/src/components/requests/Card.vue deleted file mode 100644 index 36bbc944e..000000000 --- a/front/src/components/requests/Card.vue +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - diff --git a/front/src/components/requests/Form.vue b/front/src/components/requests/Form.vue deleted file mode 100644 index 667bd5f5a..000000000 --- a/front/src/components/requests/Form.vue +++ /dev/null @@ -1,127 +0,0 @@ - - - - - diff --git a/front/src/filters.js b/front/src/filters.js index 878b3c9f2..97dd2d5ee 100644 --- a/front/src/filters.js +++ b/front/src/filters.js @@ -1,7 +1,6 @@ import Vue from 'vue' import moment from 'moment' -import showdown from 'showdown' export function truncate (str, max, ellipsis) { max = max || 100 @@ -14,13 +13,6 @@ export function truncate (str, max, ellipsis) { Vue.filter('truncate', truncate) -export function markdown (str) { - const converter = new showdown.Converter() - return converter.makeHtml(str) -} - -Vue.filter('markdown', markdown) - export function ago (date) { const m = moment(date) return m.fromNow() diff --git a/front/tests/unit/specs/filters/filters.spec.js b/front/tests/unit/specs/filters/filters.spec.js index 8ee6b4b71..1464e5c97 100644 --- a/front/tests/unit/specs/filters/filters.spec.js +++ b/front/tests/unit/specs/filters/filters.spec.js @@ -1,6 +1,6 @@ import {expect} from 'chai' -import {truncate, markdown, ago, capitalize, year} from '@/filters' +import {truncate, ago, capitalize, year} from '@/filters' describe('filters', () => { describe('truncate', () => { @@ -20,13 +20,6 @@ describe('filters', () => { expect(output).to.equal('Hello pouet') }) }) - describe('markdown', () => { - it('renders markdown', () => { - const input = 'Hello world' - let output = markdown(input) - expect(output).to.equal('

Hello world

') - }) - }) describe('ago', () => { it('works', () => { const input = new Date() From b2acd1e8a85e6979aafc0530359f8ff961ffd3f1 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Thu, 20 Dec 2018 11:21:15 +0100 Subject: [PATCH 11/16] Use specific methods from lodash to reduce bundle size --- front/src/App.vue | 2 +- front/src/components/Pagination.vue | 2 +- front/src/components/audio/Search.vue | 2 +- front/src/components/audio/Track.vue | 2 +- front/src/components/audio/album/Widget.vue | 2 +- front/src/components/audio/track/Widget.vue | 4 ++-- front/src/components/federation/LibraryWidget.vue | 2 +- front/src/components/instance/Stats.vue | 2 +- front/src/components/library/Artist.vue | 2 +- front/src/components/library/Artists.vue | 2 +- front/src/components/library/FileUpload.vue | 1 + front/src/components/library/Radios.vue | 2 +- front/src/components/library/radios/Builder.vue | 2 +- front/src/components/library/radios/Filter.vue | 2 +- front/src/components/manage/library/FilesTable.vue | 2 +- .../components/manage/users/InvitationsTable.vue | 2 +- front/src/components/manage/users/UsersTable.vue | 2 +- front/src/components/playlists/PlaylistModal.vue | 2 +- front/src/components/playlists/Widget.vue | 2 +- front/src/lodash.js | 13 +++++++++++++ front/src/store/instance.js | 2 +- front/src/store/queue.js | 2 +- front/src/views/content/libraries/FilesTable.vue | 2 +- front/src/views/playlists/List.vue | 2 +- front/tests/unit/specs/store/queue.spec.js | 2 +- 25 files changed, 38 insertions(+), 24 deletions(-) create mode 100644 front/src/lodash.js diff --git a/front/src/App.vue b/front/src/App.vue index 55cfab6e9..d61e5a837 100644 --- a/front/src/App.vue +++ b/front/src/App.vue @@ -52,7 +52,7 @@ diff --git a/front/src/components/auth/Profile.vue b/front/src/components/auth/Profile.vue index e1bdd416c..32dae5336 100644 --- a/front/src/components/auth/Profile.vue +++ b/front/src/components/auth/Profile.vue @@ -7,7 +7,7 @@

- +
{{ profile.username }}
Registered since %{ date }
diff --git a/front/src/components/auth/Settings.vue b/front/src/components/auth/Settings.vue index f4e357f28..c417f9fbc 100644 --- a/front/src/components/auth/Settings.vue +++ b/front/src/components/auth/Settings.vue @@ -53,7 +53,7 @@

Current avatar

- +