From e4c044638beafbff33bc8282b0e17cdf0215a5e9 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Mon, 5 Mar 2018 21:43:07 +0100 Subject: [PATCH 1/3] Fixed 500 error in authentication --- api/funkwhale_api/common/auth.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api/funkwhale_api/common/auth.py b/api/funkwhale_api/common/auth.py index 6f99b3bba..75839b936 100644 --- a/api/funkwhale_api/common/auth.py +++ b/api/funkwhale_api/common/auth.py @@ -9,6 +9,7 @@ from rest_framework import exceptions from rest_framework_jwt.settings import api_settings from rest_framework_jwt.authentication import BaseJSONWebTokenAuthentication +from funkwhale_api.users.models import User class TokenHeaderAuth(BaseJSONWebTokenAuthentication): @@ -40,7 +41,7 @@ class TokenAuthMiddleware: auth = TokenHeaderAuth() try: user, token = auth.authenticate(scope) - except exceptions.AuthenticationFailed: + except (User.DoesNotExist, exceptions.AuthenticationFailed): user = AnonymousUser() scope['user'] = user From d27e09b19f450d7d81f5a97829767b78b97d26d7 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Mon, 5 Mar 2018 21:43:19 +0100 Subject: [PATCH 2/3] Upgraded semantic UI to 2.3 --- front/src/semantic/semantic.css | 51280 ++++++++-------- .../themes/default/assets/fonts/icons.eot | Bin 165742 -> 218340 bytes .../themes/default/assets/fonts/icons.svg | 3616 +- .../themes/default/assets/fonts/icons.ttf | Bin 165548 -> 218140 bytes .../themes/default/assets/fonts/icons.woff | Bin 98024 -> 130044 bytes .../themes/default/assets/fonts/icons.woff2 | Bin 77160 -> 105468 bytes .../themes/default/assets/images/flags.png | Bin 7 files changed, 27721 insertions(+), 27175 deletions(-) mode change 100755 => 100644 front/src/semantic/themes/default/assets/images/flags.png diff --git a/front/src/semantic/semantic.css b/front/src/semantic/semantic.css index f12877b85..a6b276359 100755 --- a/front/src/semantic/semantic.css +++ b/front/src/semantic/semantic.css @@ -1,26 +1,26 @@ - /* - * # Semantic UI - 2.2.10 - * 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 +* 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.2.10 - Reset - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # Semantic UI 2.3.0 - Reset +* http://github.com/semantic-org/semantic-ui/ +* +* +* Released under the MIT license +* http://opensource.org/licenses/MIT +* +*/ /******************************* - Reset + Reset *******************************/ /* Border-Box */ @@ -28,11 +28,13 @@ *, *:before, *:after { - box-sizing: inherit; + -webkit-box-sizing: inherit; + box-sizing: inherit; } html { - box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; } /* iPad Input Shadows */ @@ -41,498 +43,541 @@ input[type="text"], input[type="email"], input[type="search"], input[type="password"] { - -webkit-appearance: none; - -moz-appearance: none; - /* mobile firefox too! */ + -webkit-appearance: none; + -moz-appearance: none; + /* mobile firefox too! */ } -/******************************* - Theme Overrides -*******************************/ +/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */ -/*! normalize.css v3.0.1 | MIT License | git.io/normalize */ +/* Document + ========================================================================== */ /** - * Correct `block` display not defined in IE 8/9. - */ - -/*! normalize.css v3.0.1 | MIT License | git.io/normalize */ - -/** - * 1. Set default font family to sans-serif. - * 2. Prevent iOS text size adjust after orientation change, without disabling - * user zoom. - */ +* 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 { - font-family: sans-serif; - /* 1 */ - -ms-text-size-adjust: 100%; - /* 2 */ - -webkit-text-size-adjust: 100%; - /* 2 */ + line-height: 1.15; + /* 1 */ + -ms-text-size-adjust: 100%; + /* 2 */ + -webkit-text-size-adjust: 100%; + /* 2 */ } +/* Sections + ========================================================================== */ + /** - * Remove default margin. - */ +* Remove the margin in all browsers (opinionated). +*/ body { - margin: 0; + margin: 0; } -/* HTML5 display definitions - ========================================================================== */ - /** - * Correct `block` display not defined for any HTML5 element in IE 8/9. - * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox. - * Correct `block` display not defined for `main` in IE 11. - */ +* Add the correct display in IE 9-. +*/ article, aside, -details, -figcaption, -figure, footer, header, -hgroup, -main, nav, -section, -summary { - display: block; +section { + display: block; } /** - * 1. Correct `inline-block` display not defined in IE 8/9. - * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. - */ - -audio, -canvas, -progress, -video { - display: inline-block; - /* 1 */ - vertical-align: baseline; - /* 2 */ -} - -/** - * Prevent modern browsers from displaying `audio` without controls. - * Remove excess height in iOS 5 devices. - */ - -audio:not([controls]) { - display: none; - height: 0; -} - -/** - * Address `[hidden]` styling not present in IE 8/9/10. - * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. - */ - -[hidden], -template { - display: none; -} - -/* Links - ========================================================================== */ - -/** - * Remove the gray background color from active links in IE 10. - */ - -a { - background: transparent; -} - -/** - * Improve readability when focused and also mouse hovered in all browsers. - */ - -a:active, -a:hover { - outline: 0; -} - -/* Text-level semantics - ========================================================================== */ - -/** - * Address styling not present in IE 8/9/10/11, Safari, and Chrome. - */ - -abbr[title] { - border-bottom: 1px dotted; -} - -/** - * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. - */ - -b, -strong { - font-weight: bold; -} - -/** - * Address styling not present in Safari and Chrome. - */ - -dfn { - font-style: italic; -} - -/** - * Address variable `h1` font-size and margin within `section` and `article` - * contexts in Firefox 4+, Safari, and Chrome. - */ +* 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; -} - -/** - * Address styling not present in IE 8/9. - */ - -mark { - background: #ff0; - color: #000; -} - -/** - * Address inconsistent and variable font size in all browsers. - */ - -small { - font-size: 80%; -} - -/** - * Prevent `sub` and `sup` affecting `line-height` in all browsers. - */ - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sup { - top: -0.5em; -} - -sub { - bottom: -0.25em; -} - -/* Embedded content - ========================================================================== */ - -/** - * Remove border when inside `a` element in IE 8/9/10. - */ - -img { - border: 0; -} - -/** - * Correct overflow not hidden in IE 9/10/11. - */ - -svg:not(:root) { - overflow: hidden; + font-size: 2em; + margin: 0.67em 0; } /* Grouping content - ========================================================================== */ + ========================================================================== */ /** - * Address margin not present in IE 8/9 and Safari. - */ +* 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; + margin: 1em 40px; } /** - * Address differences between Firefox and other browsers. - */ +* 1. Add the correct box sizing in Firefox. +* 2. Show the overflow in Edge and IE. +*/ hr { - height: 0; + -webkit-box-sizing: content-box; + box-sizing: content-box; + /* 1 */ + height: 0; + /* 1 */ + overflow: visible; + /* 2 */ } /** - * Contain overflow in all browsers. - */ +* 1. Correct the inheritance and scaling of font size in all browsers. +* 2. Correct the odd `em` font sizing in all browsers. +*/ pre { - overflow: auto; + 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 */ } /** - * Address odd `em`-unit font size rendering in all browsers. - */ +* 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, -pre, samp { - font-family: monospace, monospace; - font-size: 1em; + 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 - ========================================================================== */ + ========================================================================== */ /** - * Known limitation: by default, Chrome and Safari on OS X allow very limited - * styling of `select`, unless a `border` property is set. - */ - -/** - * 1. Correct color not being inherited. - * Known issue: affects color of disabled elements. - * 2. Correct font properties not being inherited. - * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. - */ +* 1. Change the font styles in all browsers (opinionated). +* 2. Remove the margin in Firefox and Safari. +*/ button, input, optgroup, select, textarea { - color: inherit; - /* 1 */ - font: inherit; - /* 2 */ - margin: 0; - /* 3 */ + font-family: sans-serif; + /* 1 */ + font-size: 100%; + /* 1 */ + line-height: 1.15; + /* 1 */ + margin: 0; + /* 2 */ } /** - * Address `overflow` set to `hidden` in IE 8/9/10/11. - */ +* Show the overflow in IE. +* 1. Show the overflow in Edge. +*/ -button { - overflow: visible; +button, +input { + /* 1 */ + overflow: visible; } /** - * Address inconsistent `text-transform` inheritance for `button` and `select`. - * All other form control elements do not inherit `text-transform` values. - * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. - * Correct `select` style inheritance in Firefox. - */ +* Remove the inheritance of text transform in Edge, Firefox, and IE. +* 1. Remove the inheritance of text transform in Firefox. +*/ button, select { - text-transform: none; + /* 1 */ + text-transform: none; } /** - * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` - * and `video` controls. - * 2. Correct inability to style clickable `input` types in iOS. - * 3. Improve usability and consistency of cursor style between image-type - * `input` and others. - */ +* 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 input[type="button"], -input[type="reset"], -input[type="submit"] { - -webkit-appearance: button; - /* 2 */ - cursor: pointer; - /* 3 */ +html [type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; + /* 2 */ } /** - * Re-set default cursor for disabled elements. - */ - -button[disabled], -html input[disabled] { - cursor: default; -} - -/** - * Remove inner padding and border in Firefox 4+. - */ +* Remove the inner border and padding in Firefox. +*/ button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; } /** - * Address Firefox 4+ setting `line-height` on `input` using `!important` in - * the UA stylesheet. - */ +* Restore the focus styles unset by the previous rule. +*/ -input { - line-height: normal; +button:-moz-focusring, +[type="button"]:-moz-focusring, +[type="reset"]:-moz-focusring, +[type="submit"]:-moz-focusring { + outline: 1px dotted ButtonText; } /** - * It's recommended that you don't attempt to style these elements. - * Firefox's implementation doesn't respect box-sizing, padding, or width. - * - * 1. Address box sizing set to `content-box` in IE 8/9/10. - * 2. Remove excess padding in IE 8/9/10. - */ - -input[type="checkbox"], -input[type="radio"] { - box-sizing: border-box; - /* 1 */ - padding: 0; - /* 2 */ -} - -/** - * Fix the cursor style for Chrome's increment/decrement buttons. For certain - * `font-size` values of the `input`, it causes the cursor style of the - * decrement button to change from `default` to `text`. - */ - -input[type="number"]::-webkit-inner-spin-button, -input[type="number"]::-webkit-outer-spin-button { - height: auto; -} - -/** - * 1. Address `appearance` set to `searchfield` in Safari and Chrome. - * 2. Address `box-sizing` set to `border-box` in Safari and Chrome - * (include `-moz` to future-proof). - */ - -input[type="search"] { - -webkit-appearance: textfield; - /* 1 */ -} - -/** - * Remove inner padding and search cancel button in Safari and Chrome on OS X. - * Safari (but not Chrome) clips the cancel button when the search input has - * padding (and `textfield` appearance). - */ - -input[type="search"]::-webkit-search-cancel-button, -input[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -/** - * Define consistent border, margin, and padding. - */ +* Correct the padding in Firefox. +*/ fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; + padding: 0.35em 0.75em 0.625em; } /** - * 1. Correct `color` not being inherited in IE 8/9/10/11. - * 2. Remove padding so people aren't caught out if they zero out fieldsets. - */ +* 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 { - border: 0; - /* 1 */ - padding: 0; - /* 2 */ + -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 */ } /** - * Remove default vertical scrollbar in IE 8/9/10/11. - */ +* 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; + overflow: auto; } /** - * Don't inherit the `font-weight` (applied by a rule above). - * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. - */ +* 1. Add the correct box sizing in IE 10-. +* 2. Remove the padding in IE 10-. +*/ -optgroup { - font-weight: bold; +[type="checkbox"], +[type="radio"] { + -webkit-box-sizing: border-box; + box-sizing: border-box; + /* 1 */ + padding: 0; + /* 2 */ } -/* Tables - ========================================================================== */ - /** - * Remove most spacing between table cells. - */ +* Correct the cursor style of increment and decrement buttons in Chrome. +*/ -table { - border-collapse: collapse; - border-spacing: 0; +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; } -td, -th { - padding: 0; +/** +* 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 + Site Overrides *******************************/ /*! - * # Semantic UI 2.2.10 - Site - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # Semantic UI 2.3.0 - Site +* http://github.com/semantic-org/semantic-ui/ +* +* +* Released under the MIT license +* http://opensource.org/licenses/MIT +* +*/ /******************************* - Page + Page *******************************/ html, body { - height: 100%; + height: 100%; } html { - font-size: 100%; + 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: 100%; - line-height: 1.4285em; - color: rgba(0, 0, 0, 0.87); - font-smoothing: antialiased; + 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 + Headers *******************************/ h1, @@ -540,32 +585,32 @@ 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; + 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; + min-height: 1rem; + font-size: 2rem; } h2 { - font-size: 1.71428571rem; + font-size: 1.71428571rem; } h3 { - font-size: 1.28571429rem; + font-size: 1.28571429rem; } h4 { - font-size: 1.07142857rem; + font-size: 1.07142857rem; } h5 { - font-size: 1rem; + font-size: 1rem; } h1:first-child, @@ -573,7 +618,7 @@ h2:first-child, h3:first-child, h4:first-child, h5:first-child { - margin-top: 0em; + margin-top: 0em; } h1:last-child, @@ -581,288 +626,348 @@ h2:last-child, h3:last-child, h4:last-child, h5:last-child { - margin-bottom: 0em; + margin-bottom: 0em; } /******************************* - Text + Text *******************************/ p { - margin: 0em 0em 1em; - line-height: 1.4285em; + margin: 0em 0em 1em; + line-height: 1.4285em; } p:first-child { - margin-top: 0em; + margin-top: 0em; } p:last-child { - margin-bottom: 0em; + margin-bottom: 0em; } /*------------------- - Links + Links --------------------*/ a { - color: #4183C4; - text-decoration: none; + color: #4183C4; + text-decoration: none; } a:hover { - color: #1e70bf; - text-decoration: none; + color: #1e70bf; + text-decoration: none; } /******************************* - Highlighting + Scrollbars +*******************************/ + +/******************************* + Highlighting *******************************/ /* Site */ ::-webkit-selection { - background-color: #CCE2FF; - color: rgba(0, 0, 0, 0.87); + background-color: #CCE2FF; + color: rgba(0, 0, 0, 0.87); } ::-moz-selection { - background-color: #CCE2FF; - color: rgba(0, 0, 0, 0.87); + background-color: #CCE2FF; + color: rgba(0, 0, 0, 0.87); } ::selection { - background-color: #CCE2FF; - color: rgba(0, 0, 0, 0.87); + 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); + 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); + 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); + 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 + Global Overrides *******************************/ /******************************* - Site Overrides + Site Overrides *******************************/ /*! - * # Semantic UI 2.2.10 - Button - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # Semantic UI 2.3.0 - Button +* http://github.com/semantic-org/semantic-ui/ +* +* +* Released under the MIT license +* http://opensource.org/licenses/MIT +* +*/ /******************************* - Button + 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; - 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, 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; - will-change: ''; - -webkit-tap-highlight-color: transparent; + 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 + States *******************************/ /*-------------- - Hover + Hover ---------------*/ .ui.button:hover { - background-color: #CACBCD; - background-image: none; - 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); + 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; + opacity: 0.85; } /*-------------- - Focus + Focus ---------------*/ .ui.button:focus { - background-color: #CACBCD; - color: rgba(0, 0, 0, 0.8); - background-image: '' !important; - box-shadow: '' !important; + 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; + opacity: 0.85; } /*-------------- - Down + Down ---------------*/ .ui.button:active, .ui.active.button:active { - background-color: #BABBBC; - background-image: ''; - color: rgba(0, 0, 0, 0.9); - box-shadow: 0px 0px 0px 1px transparent inset, none; + 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 + Active ---------------*/ .ui.active.button { - background-color: #C0C1C2; - background-image: none; - box-shadow: 0px 0px 0px 1px transparent inset; - color: rgba(0, 0, 0, 0.95); + 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); + background-color: #C0C1C2; + background-image: none; + color: rgba(0, 0, 0, 0.95); } .ui.active.button:active { - background-color: #C0C1C2; - background-image: none; + background-color: #C0C1C2; + background-image: none; } /*-------------- - Loading + 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; + 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); + 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; - box-shadow: 0px 0px 0px 1px transparent; + 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; - box-shadow: none; + background-color: transparent; + -webkit-box-shadow: none; + box-shadow: none; } @-webkit-keyframes button-spin { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } + from { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } } @keyframes button-spin { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } + from { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } } .ui.basic.loading.button:not(.inverted):before { - border-color: rgba(0, 0, 0, 0.1); + border-color: rgba(0, 0, 0, 0.1); } .ui.basic.loading.button:not(.inverted):after { - border-top-color: #767676; + border-top-color: #767676; } /*------------------- - Disabled + Disabled --------------------*/ .ui.buttons .disabled.button, @@ -870,187 +975,189 @@ input::selection { .ui.button:disabled, .ui.disabled.button:hover, .ui.disabled.active.button { - cursor: default; - opacity: 0.45 !important; - background-image: none !important; - box-shadow: none !important; - pointer-events: none !important; + 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); + border-color: rgba(34, 36, 38, 0.5); } /******************************* - Types + Types *******************************/ /*------------------- - Animated + Animated --------------------*/ .ui.animated.button { - position: relative; - overflow: hidden; - padding-right: 0em !important; - vertical-align: middle; - z-index: 1; + position: relative; + overflow: hidden; + padding-right: 0em !important; + vertical-align: middle; + z-index: 1; } .ui.animated.button .content { - will-change: transform, opacity; + will-change: transform, opacity; } .ui.animated.button .visible.content { - position: relative; - margin-right: 1.5em; + position: relative; + margin-right: 1.5em; } .ui.animated.button .hidden.content { - position: absolute; - width: 100%; + 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; + -webkit-transition: right 0.3s ease 0s; + transition: right 0.3s ease 0s; } .ui.animated.button .visible.content { - left: auto; - right: 0%; + left: auto; + right: 0%; } .ui.animated.button .hidden.content { - top: 50%; - left: auto; - right: -100%; - margin-top: -0.5em; + 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%; + left: auto; + right: 200%; } .ui.animated.button:focus .hidden.content, .ui.animated.button:hover .hidden.content { - left: auto; - right: 0%; + 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; + -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; + -webkit-transform: translateY(0%); + transform: translateY(0%); + right: auto; } .ui.vertical.animated.button .hidden.content { - top: -50%; - left: 0%; - right: auto; + 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; + -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; + 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; + -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); + 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); + 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); + 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); + left: 0%; + right: auto; + opacity: 1; + -webkit-transform: scale(1); + transform: scale(1); } /*------------------- - Inverted + Inverted --------------------*/ .ui.inverted.button { - box-shadow: 0px 0px 0px 2px #FFFFFF inset !important; - background: transparent none; - color: #FFFFFF; - text-shadow: none !important; + -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; + margin: 0px 0px 0px -2px; } .ui.inverted.buttons .button:first-child { - margin-left: 0em; + margin-left: 0em; } .ui.inverted.vertical.buttons .button { - margin: 0px 0px -2px 0px; + margin: 0px 0px -2px 0px; } .ui.inverted.vertical.buttons .button:first-child { - margin-top: 0em; + margin-top: 0em; } /* States */ @@ -1058,638 +1165,663 @@ input::selection { /* Hover */ .ui.inverted.button:hover { - background: #FFFFFF; - box-shadow: 0px 0px 0px 2px #FFFFFF inset !important; - color: rgba(0, 0, 0, 0.8); + 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; - box-shadow: 0px 0px 0px 2px #FFFFFF inset !important; - color: rgba(0, 0, 0, 0.8); + 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; - box-shadow: 0px 0px 0px 2px #DCDDDE inset !important; - color: rgba(0, 0, 0, 0.8); + 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 + Labeled Button --------------------*/ .ui.labeled.button:not(.icon) { - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - background: none !important; - padding: 0px !important; - border: none !important; - box-shadow: none !important; + 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; + margin: 0px; } .ui.labeled.button > .label { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -webkit-align-items: 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); + 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; + 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; + 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; + 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; + 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; + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; } /*------------------- - Social + Social --------------------*/ /* Facebook */ .ui.facebook.button { - background-color: #3B5998; - color: #FFFFFF; - text-shadow: none; - background-image: none; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + 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; + background-color: #304d8a; + color: #FFFFFF; + text-shadow: none; } .ui.facebook.button:active { - background-color: #2d4373; - color: #FFFFFF; - text-shadow: none; + background-color: #2d4373; + color: #FFFFFF; + text-shadow: none; } /* Twitter */ .ui.twitter.button { - background-color: #55ACEE; - color: #FFFFFF; - text-shadow: none; - background-image: none; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + 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; + background-color: #35a2f4; + color: #FFFFFF; + text-shadow: none; } .ui.twitter.button:active { - background-color: #2795e9; - color: #FFFFFF; - text-shadow: none; + 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; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + 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; + background-color: #e0321c; + color: #FFFFFF; + text-shadow: none; } .ui.google.plus.button:active { - background-color: #c23321; - color: #FFFFFF; - text-shadow: none; + background-color: #c23321; + color: #FFFFFF; + text-shadow: none; } /* Linked In */ .ui.linkedin.button { - background-color: #1F88BE; - color: #FFFFFF; - text-shadow: none; + background-color: #1F88BE; + color: #FFFFFF; + text-shadow: none; } .ui.linkedin.button:hover { - background-color: #147baf; - color: #FFFFFF; - text-shadow: none; + background-color: #147baf; + color: #FFFFFF; + text-shadow: none; } .ui.linkedin.button:active { - background-color: #186992; - color: #FFFFFF; - text-shadow: none; + background-color: #186992; + color: #FFFFFF; + text-shadow: none; } /* YouTube */ .ui.youtube.button { - background-color: #CC181E; - color: #FFFFFF; - text-shadow: none; - background-image: none; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + 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: #bd0d13; - color: #FFFFFF; - text-shadow: none; + background-color: #e60000; + color: #FFFFFF; + text-shadow: none; } .ui.youtube.button:active { - background-color: #9e1317; - color: #FFFFFF; - text-shadow: none; + background-color: #cc0000; + color: #FFFFFF; + text-shadow: none; } /* Instagram */ .ui.instagram.button { - background-color: #49769C; - color: #FFFFFF; - text-shadow: none; - background-image: none; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + 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; + background-color: #3d698e; + color: #FFFFFF; + text-shadow: none; } .ui.instagram.button:active { - background-color: #395c79; - color: #FFFFFF; - text-shadow: none; + background-color: #395c79; + color: #FFFFFF; + text-shadow: none; } /* Pinterest */ .ui.pinterest.button { - background-color: #BD081C; - color: #FFFFFF; - text-shadow: none; - background-image: none; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + 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; + background-color: #ac0013; + color: #FFFFFF; + text-shadow: none; } .ui.pinterest.button:active { - background-color: #8c0615; - color: #FFFFFF; - text-shadow: none; + background-color: #8c0615; + color: #FFFFFF; + text-shadow: none; } /* VK */ .ui.vk.button { - background-color: #4D7198; - color: #FFFFFF; - background-image: none; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + 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; + background-color: #41648a; + color: #FFFFFF; } .ui.vk.button:active { - background-color: #3c5876; - color: #FFFFFF; + background-color: #3c5876; + color: #FFFFFF; } /*-------------- - Icon + 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: ''; + 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; + margin: 0em 0.42857143em 0em -0.21428571em; } .ui.button:not(.icon) > .right.icon:not(.button):not(.dropdown) { - margin: 0em -0.21428571em 0em 0.42857143em; + margin: 0em -0.21428571em 0em 0.42857143em; } /******************************* - Variations + Variations *******************************/ /*------------------- - Floated + Floated --------------------*/ .ui[class*="left floated"].buttons, .ui[class*="left floated"].button { - float: left; - margin-left: 0em; - margin-right: 0.25em; + 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; + float: right; + margin-right: 0em; + margin-left: 0.25em; } /*------------------- - Compact + Compact --------------------*/ .ui.compact.buttons .button, .ui.compact.button { - padding: 0.58928571em 1.125em 0.58928571em; + padding: 0.58928571em 1.125em 0.58928571em; } .ui.compact.icon.buttons .button, .ui.compact.icon.button { - padding: 0.58928571em 0.58928571em 0.58928571em; + 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; + padding: 0.58928571em 3.69642857em 0.58928571em; } /*------------------- - Sizes + Sizes --------------------*/ .ui.mini.buttons .button, .ui.mini.buttons .or, .ui.mini.button { - font-size: 0.78571429rem; + font-size: 0.78571429rem; } .ui.tiny.buttons .button, .ui.tiny.buttons .or, .ui.tiny.button { - font-size: 0.85714286rem; + font-size: 0.85714286rem; } .ui.small.buttons .button, .ui.small.buttons .or, .ui.small.button { - font-size: 0.92857143rem; + font-size: 0.92857143rem; } .ui.buttons .button, .ui.buttons .or, .ui.button { - font-size: 1rem; + font-size: 1rem; } .ui.large.buttons .button, .ui.large.buttons .or, .ui.large.button { - font-size: 1.14285714rem; + font-size: 1.14285714rem; } .ui.big.buttons .button, .ui.big.buttons .or, .ui.big.button { - font-size: 1.28571429rem; + font-size: 1.28571429rem; } .ui.huge.buttons .button, .ui.huge.buttons .or, .ui.huge.button { - font-size: 1.42857143rem; + font-size: 1.42857143rem; } .ui.massive.buttons .button, .ui.massive.buttons .or, .ui.massive.button { - font-size: 1.71428571rem; + font-size: 1.71428571rem; } /*-------------- - Icon Only + Icon Only ---------------*/ .ui.icon.buttons .button, .ui.icon.button { - padding: 0.78571429em 0.78571429em 0.78571429em; + 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; + opacity: 0.9; + margin: 0em !important; + vertical-align: top; } /*------------------- - Basic + 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; - box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; + 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 { - box-shadow: none; - border: 1px solid rgba(34, 36, 38, 0.15); - border-radius: 0.28571429rem; + -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; + border-radius: 0em; } .ui.basic.buttons .button:hover, .ui.basic.button:hover { - background: #FFFFFF !important; - color: rgba(0, 0, 0, 0.8) !important; - box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset; + 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; - box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset; + 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; - box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(34, 36, 38, 0.15) inset; + 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; - box-shadow: '' !important; - color: rgba(0, 0, 0, 0.95); + 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); + background-color: rgba(0, 0, 0, 0.05); } /* Vertical */ .ui.basic.buttons .button:hover { - 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; + -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 { - 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; + -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 { - box-shadow: '' !important; + -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; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; + 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; - box-shadow: 0px 0px 0px 2px #ffffff inset !important; + 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; - box-shadow: 0px 0px 0px 2px #ffffff inset !important; + 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; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.9) inset !important; + 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; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.7) inset; + 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); - box-shadow: 0px 0px 0px 2px #ffffff inset !important; + 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); - box-shadow: none; + border-left: 1px solid rgba(34, 36, 38, 0.15); + -webkit-box-shadow: none; + box-shadow: none; } .ui.basic.vertical.buttons .button { - border-left: none; + border-left: none; } .ui.basic.vertical.buttons .button { - border-left-width: 0px; - border-top: 1px solid rgba(34, 36, 38, 0.15); + 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; + border-top-width: 0px; } /*-------------- - Labeled Icon + Labeled Icon ---------------*/ .ui.labeled.icon.buttons .button, .ui.labeled.icon.button { - position: relative; - padding-left: 4.07142857em !important; - padding-right: 1.5em !important; + 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: ''; - box-shadow: -1px 0px 0px 0px transparent inset; + 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; + top: 0em; + left: 0em; } /* Right Labeled */ .ui[class*="right labeled"].icon.button { - padding-right: 4.07142857em !important; - padding-left: 1.5em !important; + 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; - box-shadow: 1px 0px 0px 0px transparent inset; + 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%); + 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; + border-radius: 0em; } .ui.labeled.icon.buttons .button:first-child > .icon { - border-top-left-radius: 0.28571429rem; - border-bottom-left-radius: 0.28571429rem; + 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; + 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; + 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; + 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; + padding-left: 1.5em !important; + padding-right: 1.5em !important; } /*-------------- - Toggle + Toggle ---------------*/ /* Toggle (Modifies active state to give affordances) */ @@ -1697,464 +1829,470 @@ input::selection { .ui.toggle.buttons .active.button, .ui.buttons .button.toggle.active, .ui.button.toggle.active { - background-color: #21BA45 !important; - box-shadow: none !important; - text-shadow: none; - color: #FFFFFF !important; + 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; + background-color: #16ab39 !important; + text-shadow: none; + color: #FFFFFF !important; } /*-------------- - Circular + Circular ---------------*/ .ui.circular.button { - border-radius: 10em; + border-radius: 10em; } .ui.circular.button > .icon { - width: 1em; - vertical-align: baseline; + width: 1em; + vertical-align: baseline; } /*------------------- - Or Buttons + Or Buttons --------------------*/ .ui.buttons .or { - position: relative; - width: 0.3em; - height: 2.57142857em; - z-index: 3; + 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; - box-shadow: 0px 0px 0px 1px transparent inset; + 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); + content: attr(data-text); } /* Fluid Or */ .ui.fluid.buttons .or { - width: 0em !important; + width: 0em !important; } .ui.fluid.buttons .or:after { - display: none; + display: none; } /*------------------- - Attached + Attached --------------------*/ /* Singular */ .ui.attached.button { - position: relative; - display: block; - margin: 0em; - border-radius: 0em; - box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) !important; + 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; + border-radius: 0.28571429rem 0.28571429rem 0em 0em; } .ui.attached.bottom.button { - border-radius: 0em 0em 0.28571429rem 0.28571429rem; + 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; + 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; + 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: -webkit-flex; - display: -ms-flexbox; - display: flex; - border-radius: 0em; - width: auto !important; - z-index: 2; - margin-left: -1px; - margin-right: -1px; + 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; + margin: 0em; } .ui.attached.buttons .button:first-child { - border-radius: 0em; + border-radius: 0em; } .ui.attached.buttons .button:last-child { - border-radius: 0em; + border-radius: 0em; } /* Top / Bottom */ .ui[class*="top attached"].buttons { - margin-bottom: -1px; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; + 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; + border-radius: 0.28571429rem 0em 0em 0em; } .ui[class*="top attached"].buttons .button:last-child { - border-radius: 0em 0.28571429rem 0em 0em; + border-radius: 0em 0.28571429rem 0em 0em; } .ui[class*="bottom attached"].buttons { - margin-top: -1px; - border-radius: 0em 0em 0.28571429rem 0.28571429rem; + 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; + border-radius: 0em 0em 0em 0.28571429rem; } .ui[class*="bottom attached"].buttons .button:last-child { - border-radius: 0em 0em 0.28571429rem 0em; + border-radius: 0em 0em 0.28571429rem 0em; } /* Left / Right */ .ui[class*="left attached"].buttons { - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - margin-right: 0em; - margin-left: -1px; - border-radius: 0em 0.28571429rem 0.28571429rem 0em; + 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; + 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; + margin-left: -1px; + border-radius: 0em 0em 0.28571429rem 0em; } .ui[class*="right attached"].buttons { - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - margin-left: 0em; - margin-right: -1px; - border-radius: 0.28571429rem 0em 0em 0.28571429rem; + 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; + 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; + margin-left: -1px; + border-radius: 0em 0em 0em 0.28571429rem; } /*------------------- - Fluid + Fluid --------------------*/ .ui.fluid.buttons, .ui.fluid.button { - width: 100%; + width: 100%; } .ui.fluid.button { - display: block; + display: block; } .ui.two.buttons { - width: 100%; + width: 100%; } .ui.two.buttons > .button { - width: 50%; + width: 50%; } .ui.three.buttons { - width: 100%; + width: 100%; } .ui.three.buttons > .button { - width: 33.333%; + width: 33.333%; } .ui.four.buttons { - width: 100%; + width: 100%; } .ui.four.buttons > .button { - width: 25%; + width: 25%; } .ui.five.buttons { - width: 100%; + width: 100%; } .ui.five.buttons > .button { - width: 20%; + width: 20%; } .ui.six.buttons { - width: 100%; + width: 100%; } .ui.six.buttons > .button { - width: 16.666%; + width: 16.666%; } .ui.seven.buttons { - width: 100%; + width: 100%; } .ui.seven.buttons > .button { - width: 14.285%; + width: 14.285%; } .ui.eight.buttons { - width: 100%; + width: 100%; } .ui.eight.buttons > .button { - width: 12.500%; + width: 12.500%; } .ui.nine.buttons { - width: 100%; + width: 100%; } .ui.nine.buttons > .button { - width: 11.11%; + width: 11.11%; } .ui.ten.buttons { - width: 100%; + width: 100%; } .ui.ten.buttons > .button { - width: 10%; + width: 10%; } .ui.eleven.buttons { - width: 100%; + width: 100%; } .ui.eleven.buttons > .button { - width: 9.09%; + width: 9.09%; } .ui.twelve.buttons { - width: 100%; + width: 100%; } .ui.twelve.buttons > .button { - width: 8.3333%; + width: 8.3333%; } /* Fluid Vertical Buttons */ .ui.fluid.vertical.buttons, .ui.fluid.vertical.buttons > .button { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - width: auto; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + width: auto; } .ui.two.vertical.buttons > .button { - height: 50%; + height: 50%; } .ui.three.vertical.buttons > .button { - height: 33.333%; + height: 33.333%; } .ui.four.vertical.buttons > .button { - height: 25%; + height: 25%; } .ui.five.vertical.buttons > .button { - height: 20%; + height: 20%; } .ui.six.vertical.buttons > .button { - height: 16.666%; + height: 16.666%; } .ui.seven.vertical.buttons > .button { - height: 14.285%; + height: 14.285%; } .ui.eight.vertical.buttons > .button { - height: 12.500%; + height: 12.500%; } .ui.nine.vertical.buttons > .button { - height: 11.11%; + height: 11.11%; } .ui.ten.vertical.buttons > .button { - height: 10%; + height: 10%; } .ui.eleven.vertical.buttons > .button { - height: 9.09%; + height: 9.09%; } .ui.twelve.vertical.buttons > .button { - height: 8.3333%; + height: 8.3333%; } /*------------------- - Colors + Colors --------------------*/ /*--- Black ---*/ .ui.black.buttons .button, .ui.black.button { - background-color: #1B1C1D; - color: #FFFFFF; - text-shadow: none; - background-image: none; + background-color: #1B1C1D; + color: #FFFFFF; + text-shadow: none; + background-image: none; } .ui.black.button { - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + -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; + 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; + 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; + 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; + background-color: #0f0f10; + color: #FFFFFF; + text-shadow: none; } /* Basic */ .ui.basic.black.buttons .button, .ui.basic.black.button { - box-shadow: 0px 0px 0px 1px #1B1C1D inset !important; - color: #1B1C1D !important; + -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; - box-shadow: 0px 0px 0px 1px #27292a inset !important; - color: #27292a !important; + 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; - box-shadow: 0px 0px 0px 1px #2f3032 inset !important; - color: #27292a !important; + 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; - box-shadow: 0px 0px 0px 1px #0f0f10 inset !important; - color: #343637 !important; + 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 { - box-shadow: 0px 0px 0px 1px #343637 inset !important; - color: #343637 !important; + -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; + margin-left: -1px; } /* Inverted */ .ui.inverted.black.buttons .button, .ui.inverted.black.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #D4D4D5 inset !important; - color: #FFFFFF; + 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, @@ -2165,28 +2303,29 @@ input::selection { .ui.inverted.black.button.active, .ui.inverted.black.buttons .button:active, .ui.inverted.black.button:active { - box-shadow: none !important; - color: #FFFFFF; + -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; + background-color: #000000; } .ui.inverted.black.buttons .button:focus, .ui.inverted.black.button:focus { - background-color: #000000; + background-color: #000000; } .ui.inverted.black.buttons .active.button, .ui.inverted.black.active.button { - background-color: #000000; + background-color: #000000; } .ui.inverted.black.buttons .button:active, .ui.inverted.black.button:active { - background-color: #000000; + background-color: #000000; } /* Inverted Basic */ @@ -2194,129 +2333,141 @@ input::selection { .ui.inverted.black.basic.buttons .button, .ui.inverted.black.buttons .basic.button, .ui.inverted.black.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; + 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 { - box-shadow: 0px 0px 0px 2px #000000 inset !important; - color: #FFFFFF !important; + -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 { - box-shadow: 0px 0px 0px 2px #000000 inset !important; - color: #545454 !important; + -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 { - box-shadow: 0px 0px 0px 2px #000000 inset !important; - color: #FFFFFF !important; + -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 { - box-shadow: 0px 0px 0px 2px #000000 inset !important; - color: #FFFFFF !important; + -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; + background-color: #767676; + color: #FFFFFF; + text-shadow: none; + background-image: none; } .ui.grey.button { - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + -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; + 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; + 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; + 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; + background-color: #696969; + color: #FFFFFF; + text-shadow: none; } /* Basic */ .ui.basic.grey.buttons .button, .ui.basic.grey.button { - box-shadow: 0px 0px 0px 1px #767676 inset !important; - color: #767676 !important; + -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; - box-shadow: 0px 0px 0px 1px #838383 inset !important; - color: #838383 !important; + 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; - box-shadow: 0px 0px 0px 1px #8a8a8a inset !important; - color: #838383 !important; + 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; - box-shadow: 0px 0px 0px 1px #696969 inset !important; - color: #909090 !important; + 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 { - box-shadow: 0px 0px 0px 1px #909090 inset !important; - color: #909090 !important; + -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; + margin-left: -1px; } /* Inverted */ .ui.inverted.grey.buttons .button, .ui.inverted.grey.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #D4D4D5 inset !important; - color: #FFFFFF; + 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, @@ -2327,28 +2478,29 @@ input::selection { .ui.inverted.grey.button.active, .ui.inverted.grey.buttons .button:active, .ui.inverted.grey.button:active { - box-shadow: none !important; - color: rgba(0, 0, 0, 0.6); + -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; + background-color: #cfd0d2; } .ui.inverted.grey.buttons .button:focus, .ui.inverted.grey.button:focus { - background-color: #c7c9cb; + background-color: #c7c9cb; } .ui.inverted.grey.buttons .active.button, .ui.inverted.grey.active.button { - background-color: #cfd0d2; + background-color: #cfd0d2; } .ui.inverted.grey.buttons .button:active, .ui.inverted.grey.button:active { - background-color: #c2c4c5; + background-color: #c2c4c5; } /* Inverted Basic */ @@ -2356,129 +2508,141 @@ input::selection { .ui.inverted.grey.basic.buttons .button, .ui.inverted.grey.buttons .basic.button, .ui.inverted.grey.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; + 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 { - box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important; - color: #FFFFFF !important; + -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 { - box-shadow: 0px 0px 0px 2px #c7c9cb inset !important; - color: #DCDDDE !important; + -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 { - box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important; - color: #FFFFFF !important; + -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 { - box-shadow: 0px 0px 0px 2px #c2c4c5 inset !important; - color: #FFFFFF !important; + -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; + background-color: #A5673F; + color: #FFFFFF; + text-shadow: none; + background-image: none; } .ui.brown.button { - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + -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; + 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; + 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; + 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; + background-color: #995a31; + color: #FFFFFF; + text-shadow: none; } /* Basic */ .ui.basic.brown.buttons .button, .ui.basic.brown.button { - box-shadow: 0px 0px 0px 1px #A5673F inset !important; - color: #A5673F !important; + -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; - box-shadow: 0px 0px 0px 1px #975b33 inset !important; - color: #975b33 !important; + 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; - box-shadow: 0px 0px 0px 1px #90532b inset !important; - color: #975b33 !important; + 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; - box-shadow: 0px 0px 0px 1px #995a31 inset !important; - color: #805031 !important; + 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 { - box-shadow: 0px 0px 0px 1px #805031 inset !important; - color: #805031 !important; + -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; + margin-left: -1px; } /* Inverted */ .ui.inverted.brown.buttons .button, .ui.inverted.brown.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #D67C1C inset !important; - color: #D67C1C; + 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, @@ -2489,28 +2653,29 @@ input::selection { .ui.inverted.brown.button.active, .ui.inverted.brown.buttons .button:active, .ui.inverted.brown.button:active { - box-shadow: none !important; - color: #FFFFFF; + -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; + background-color: #c86f11; } .ui.inverted.brown.buttons .button:focus, .ui.inverted.brown.button:focus { - background-color: #c16808; + background-color: #c16808; } .ui.inverted.brown.buttons .active.button, .ui.inverted.brown.active.button { - background-color: #cc6f0d; + background-color: #cc6f0d; } .ui.inverted.brown.buttons .button:active, .ui.inverted.brown.button:active { - background-color: #a96216; + background-color: #a96216; } /* Inverted Basic */ @@ -2518,129 +2683,141 @@ input::selection { .ui.inverted.brown.basic.buttons .button, .ui.inverted.brown.buttons .basic.button, .ui.inverted.brown.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; + 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 { - box-shadow: 0px 0px 0px 2px #c86f11 inset !important; - color: #D67C1C !important; + -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 { - box-shadow: 0px 0px 0px 2px #c16808 inset !important; - color: #D67C1C !important; + -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 { - box-shadow: 0px 0px 0px 2px #cc6f0d inset !important; - color: #D67C1C !important; + -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 { - box-shadow: 0px 0px 0px 2px #a96216 inset !important; - color: #D67C1C !important; + -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; + background-color: #2185D0; + color: #FFFFFF; + text-shadow: none; + background-image: none; } .ui.blue.button { - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + -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; + 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; + 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; + 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; + background-color: #1279c6; + color: #FFFFFF; + text-shadow: none; } /* Basic */ .ui.basic.blue.buttons .button, .ui.basic.blue.button { - box-shadow: 0px 0px 0px 1px #2185D0 inset !important; - color: #2185D0 !important; + -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; - box-shadow: 0px 0px 0px 1px #1678c2 inset !important; - color: #1678c2 !important; + 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; - box-shadow: 0px 0px 0px 1px #0d71bb inset !important; - color: #1678c2 !important; + 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; - box-shadow: 0px 0px 0px 1px #1279c6 inset !important; - color: #1a69a4 !important; + 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 { - box-shadow: 0px 0px 0px 1px #1a69a4 inset !important; - color: #1a69a4 !important; + -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; + margin-left: -1px; } /* Inverted */ .ui.inverted.blue.buttons .button, .ui.inverted.blue.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #54C8FF inset !important; - color: #54C8FF; + 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, @@ -2651,28 +2828,29 @@ input::selection { .ui.inverted.blue.button.active, .ui.inverted.blue.buttons .button:active, .ui.inverted.blue.button:active { - box-shadow: none !important; - color: #FFFFFF; + -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; + background-color: #3ac0ff; } .ui.inverted.blue.buttons .button:focus, .ui.inverted.blue.button:focus { - background-color: #2bbbff; + background-color: #2bbbff; } .ui.inverted.blue.buttons .active.button, .ui.inverted.blue.active.button { - background-color: #3ac0ff; + background-color: #3ac0ff; } .ui.inverted.blue.buttons .button:active, .ui.inverted.blue.button:active { - background-color: #21b8ff; + background-color: #21b8ff; } /* Inverted Basic */ @@ -2680,129 +2858,141 @@ input::selection { .ui.inverted.blue.basic.buttons .button, .ui.inverted.blue.buttons .basic.button, .ui.inverted.blue.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; + 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 { - box-shadow: 0px 0px 0px 2px #3ac0ff inset !important; - color: #54C8FF !important; + -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 { - box-shadow: 0px 0px 0px 2px #2bbbff inset !important; - color: #54C8FF !important; + -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 { - box-shadow: 0px 0px 0px 2px #3ac0ff inset !important; - color: #54C8FF !important; + -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 { - box-shadow: 0px 0px 0px 2px #21b8ff inset !important; - color: #54C8FF !important; + -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; + background-color: #21BA45; + color: #FFFFFF; + text-shadow: none; + background-image: none; } .ui.green.button { - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + -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; + 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; + 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; + 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; + background-color: #13ae38; + color: #FFFFFF; + text-shadow: none; } /* Basic */ .ui.basic.green.buttons .button, .ui.basic.green.button { - box-shadow: 0px 0px 0px 1px #21BA45 inset !important; - color: #21BA45 !important; + -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; - box-shadow: 0px 0px 0px 1px #16ab39 inset !important; - color: #16ab39 !important; + 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; - box-shadow: 0px 0px 0px 1px #0ea432 inset !important; - color: #16ab39 !important; + 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; - box-shadow: 0px 0px 0px 1px #13ae38 inset !important; - color: #198f35 !important; + 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 { - box-shadow: 0px 0px 0px 1px #198f35 inset !important; - color: #198f35 !important; + -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; + margin-left: -1px; } /* Inverted */ .ui.inverted.green.buttons .button, .ui.inverted.green.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #2ECC40 inset !important; - color: #2ECC40; + 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, @@ -2813,28 +3003,29 @@ input::selection { .ui.inverted.green.button.active, .ui.inverted.green.buttons .button:active, .ui.inverted.green.button:active { - box-shadow: none !important; - color: #FFFFFF; + -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; + background-color: #22be34; } .ui.inverted.green.buttons .button:focus, .ui.inverted.green.button:focus { - background-color: #19b82b; + background-color: #19b82b; } .ui.inverted.green.buttons .active.button, .ui.inverted.green.active.button { - background-color: #1fc231; + background-color: #1fc231; } .ui.inverted.green.buttons .button:active, .ui.inverted.green.button:active { - background-color: #25a233; + background-color: #25a233; } /* Inverted Basic */ @@ -2842,129 +3033,141 @@ input::selection { .ui.inverted.green.basic.buttons .button, .ui.inverted.green.buttons .basic.button, .ui.inverted.green.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; + 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 { - box-shadow: 0px 0px 0px 2px #22be34 inset !important; - color: #2ECC40 !important; + -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 { - box-shadow: 0px 0px 0px 2px #19b82b inset !important; - color: #2ECC40 !important; + -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 { - box-shadow: 0px 0px 0px 2px #1fc231 inset !important; - color: #2ECC40 !important; + -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 { - box-shadow: 0px 0px 0px 2px #25a233 inset !important; - color: #2ECC40 !important; + -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; + background-color: #F2711C; + color: #FFFFFF; + text-shadow: none; + background-image: none; } .ui.orange.button { - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + -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; + 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; + 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; + 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; + background-color: #f56100; + color: #FFFFFF; + text-shadow: none; } /* Basic */ .ui.basic.orange.buttons .button, .ui.basic.orange.button { - box-shadow: 0px 0px 0px 1px #F2711C inset !important; - color: #F2711C !important; + -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; - box-shadow: 0px 0px 0px 1px #f26202 inset !important; - color: #f26202 !important; + 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; - box-shadow: 0px 0px 0px 1px #e55b00 inset !important; - color: #f26202 !important; + 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; - box-shadow: 0px 0px 0px 1px #f56100 inset !important; - color: #cf590c !important; + 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 { - box-shadow: 0px 0px 0px 1px #cf590c inset !important; - color: #cf590c !important; + -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; + margin-left: -1px; } /* Inverted */ .ui.inverted.orange.buttons .button, .ui.inverted.orange.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #FF851B inset !important; - color: #FF851B; + 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, @@ -2975,28 +3178,29 @@ input::selection { .ui.inverted.orange.button.active, .ui.inverted.orange.buttons .button:active, .ui.inverted.orange.button:active { - box-shadow: none !important; - color: #FFFFFF; + -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; + background-color: #ff7701; } .ui.inverted.orange.buttons .button:focus, .ui.inverted.orange.button:focus { - background-color: #f17000; + background-color: #f17000; } .ui.inverted.orange.buttons .active.button, .ui.inverted.orange.active.button { - background-color: #ff7701; + background-color: #ff7701; } .ui.inverted.orange.buttons .button:active, .ui.inverted.orange.button:active { - background-color: #e76b00; + background-color: #e76b00; } /* Inverted Basic */ @@ -3004,129 +3208,141 @@ input::selection { .ui.inverted.orange.basic.buttons .button, .ui.inverted.orange.buttons .basic.button, .ui.inverted.orange.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; + 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 { - box-shadow: 0px 0px 0px 2px #ff7701 inset !important; - color: #FF851B !important; + -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 { - box-shadow: 0px 0px 0px 2px #f17000 inset !important; - color: #FF851B !important; + -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 { - box-shadow: 0px 0px 0px 2px #ff7701 inset !important; - color: #FF851B !important; + -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 { - box-shadow: 0px 0px 0px 2px #e76b00 inset !important; - color: #FF851B !important; + -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; + background-color: #E03997; + color: #FFFFFF; + text-shadow: none; + background-image: none; } .ui.pink.button { - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + -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; + 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; + 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; + 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; + background-color: #ea158d; + color: #FFFFFF; + text-shadow: none; } /* Basic */ .ui.basic.pink.buttons .button, .ui.basic.pink.button { - box-shadow: 0px 0px 0px 1px #E03997 inset !important; - color: #E03997 !important; + -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; - box-shadow: 0px 0px 0px 1px #e61a8d inset !important; - color: #e61a8d !important; + 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; - box-shadow: 0px 0px 0px 1px #e10f85 inset !important; - color: #e61a8d !important; + 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; - box-shadow: 0px 0px 0px 1px #ea158d inset !important; - color: #c71f7e !important; + 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 { - box-shadow: 0px 0px 0px 1px #c71f7e inset !important; - color: #c71f7e !important; + -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; + margin-left: -1px; } /* Inverted */ .ui.inverted.pink.buttons .button, .ui.inverted.pink.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #FF8EDF inset !important; - color: #FF8EDF; + 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, @@ -3137,28 +3353,29 @@ input::selection { .ui.inverted.pink.button.active, .ui.inverted.pink.buttons .button:active, .ui.inverted.pink.button:active { - box-shadow: none !important; - color: #FFFFFF; + -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; + background-color: #ff74d8; } .ui.inverted.pink.buttons .button:focus, .ui.inverted.pink.button:focus { - background-color: #ff65d3; + background-color: #ff65d3; } .ui.inverted.pink.buttons .active.button, .ui.inverted.pink.active.button { - background-color: #ff74d8; + background-color: #ff74d8; } .ui.inverted.pink.buttons .button:active, .ui.inverted.pink.button:active { - background-color: #ff5bd1; + background-color: #ff5bd1; } /* Inverted Basic */ @@ -3166,129 +3383,141 @@ input::selection { .ui.inverted.pink.basic.buttons .button, .ui.inverted.pink.buttons .basic.button, .ui.inverted.pink.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; + 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 { - box-shadow: 0px 0px 0px 2px #ff74d8 inset !important; - color: #FF8EDF !important; + -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 { - box-shadow: 0px 0px 0px 2px #ff65d3 inset !important; - color: #FF8EDF !important; + -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 { - box-shadow: 0px 0px 0px 2px #ff74d8 inset !important; - color: #FF8EDF !important; + -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 { - box-shadow: 0px 0px 0px 2px #ff5bd1 inset !important; - color: #FF8EDF !important; + -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; + background-color: #6435C9; + color: #FFFFFF; + text-shadow: none; + background-image: none; } .ui.violet.button { - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + -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; + 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; + 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; + 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; + background-color: #5626bf; + color: #FFFFFF; + text-shadow: none; } /* Basic */ .ui.basic.violet.buttons .button, .ui.basic.violet.button { - box-shadow: 0px 0px 0px 1px #6435C9 inset !important; - color: #6435C9 !important; + -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; - box-shadow: 0px 0px 0px 1px #5829bb inset !important; - color: #5829bb !important; + 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; - box-shadow: 0px 0px 0px 1px #4f20b5 inset !important; - color: #5829bb !important; + 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; - box-shadow: 0px 0px 0px 1px #5626bf inset !important; - color: #502aa1 !important; + 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 { - box-shadow: 0px 0px 0px 1px #502aa1 inset !important; - color: #502aa1 !important; + -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; + margin-left: -1px; } /* Inverted */ .ui.inverted.violet.buttons .button, .ui.inverted.violet.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #A291FB inset !important; - color: #A291FB; + 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, @@ -3299,28 +3528,29 @@ input::selection { .ui.inverted.violet.button.active, .ui.inverted.violet.buttons .button:active, .ui.inverted.violet.button:active { - box-shadow: none !important; - color: #FFFFFF; + -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; + background-color: #8a73ff; } .ui.inverted.violet.buttons .button:focus, .ui.inverted.violet.button:focus { - background-color: #7d64ff; + background-color: #7d64ff; } .ui.inverted.violet.buttons .active.button, .ui.inverted.violet.active.button { - background-color: #8a73ff; + background-color: #8a73ff; } .ui.inverted.violet.buttons .button:active, .ui.inverted.violet.button:active { - background-color: #7860f9; + background-color: #7860f9; } /* Inverted Basic */ @@ -3328,129 +3558,141 @@ input::selection { .ui.inverted.violet.basic.buttons .button, .ui.inverted.violet.buttons .basic.button, .ui.inverted.violet.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; + 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 { - box-shadow: 0px 0px 0px 2px #8a73ff inset !important; - color: #A291FB !important; + -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 { - box-shadow: 0px 0px 0px 2px #7d64ff inset !important; - color: #A291FB !important; + -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 { - box-shadow: 0px 0px 0px 2px #8a73ff inset !important; - color: #A291FB !important; + -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 { - box-shadow: 0px 0px 0px 2px #7860f9 inset !important; - color: #A291FB !important; + -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; + background-color: #A333C8; + color: #FFFFFF; + text-shadow: none; + background-image: none; } .ui.purple.button { - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + -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; + 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; + 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; + 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; + background-color: #9724be; + color: #FFFFFF; + text-shadow: none; } /* Basic */ .ui.basic.purple.buttons .button, .ui.basic.purple.button { - box-shadow: 0px 0px 0px 1px #A333C8 inset !important; - color: #A333C8 !important; + -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; - box-shadow: 0px 0px 0px 1px #9627ba inset !important; - color: #9627ba !important; + 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; - box-shadow: 0px 0px 0px 1px #8f1eb4 inset !important; - color: #9627ba !important; + 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; - box-shadow: 0px 0px 0px 1px #9724be inset !important; - color: #82299f !important; + 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 { - box-shadow: 0px 0px 0px 1px #82299f inset !important; - color: #82299f !important; + -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; + margin-left: -1px; } /* Inverted */ .ui.inverted.purple.buttons .button, .ui.inverted.purple.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #DC73FF inset !important; - color: #DC73FF; + 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, @@ -3461,28 +3703,29 @@ input::selection { .ui.inverted.purple.button.active, .ui.inverted.purple.buttons .button:active, .ui.inverted.purple.button:active { - box-shadow: none !important; - color: #FFFFFF; + -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; + background-color: #d65aff; } .ui.inverted.purple.buttons .button:focus, .ui.inverted.purple.button:focus { - background-color: #d24aff; + background-color: #d24aff; } .ui.inverted.purple.buttons .active.button, .ui.inverted.purple.active.button { - background-color: #d65aff; + background-color: #d65aff; } .ui.inverted.purple.buttons .button:active, .ui.inverted.purple.button:active { - background-color: #cf40ff; + background-color: #cf40ff; } /* Inverted Basic */ @@ -3490,129 +3733,141 @@ input::selection { .ui.inverted.purple.basic.buttons .button, .ui.inverted.purple.buttons .basic.button, .ui.inverted.purple.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; + 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 { - box-shadow: 0px 0px 0px 2px #d65aff inset !important; - color: #DC73FF !important; + -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 { - box-shadow: 0px 0px 0px 2px #d24aff inset !important; - color: #DC73FF !important; + -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 { - box-shadow: 0px 0px 0px 2px #d65aff inset !important; - color: #DC73FF !important; + -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 { - box-shadow: 0px 0px 0px 2px #cf40ff inset !important; - color: #DC73FF !important; + -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; + background-color: #DB2828; + color: #FFFFFF; + text-shadow: none; + background-image: none; } .ui.red.button { - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + -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; + 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; + 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; + 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; + background-color: #d41515; + color: #FFFFFF; + text-shadow: none; } /* Basic */ .ui.basic.red.buttons .button, .ui.basic.red.button { - box-shadow: 0px 0px 0px 1px #DB2828 inset !important; - color: #DB2828 !important; + -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; - box-shadow: 0px 0px 0px 1px #d01919 inset !important; - color: #d01919 !important; + 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; - box-shadow: 0px 0px 0px 1px #ca1010 inset !important; - color: #d01919 !important; + 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; - box-shadow: 0px 0px 0px 1px #d41515 inset !important; - color: #b21e1e !important; + 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 { - box-shadow: 0px 0px 0px 1px #b21e1e inset !important; - color: #b21e1e !important; + -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; + margin-left: -1px; } /* Inverted */ .ui.inverted.red.buttons .button, .ui.inverted.red.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #FF695E inset !important; - color: #FF695E; + 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, @@ -3623,28 +3878,29 @@ input::selection { .ui.inverted.red.button.active, .ui.inverted.red.buttons .button:active, .ui.inverted.red.button:active { - box-shadow: none !important; - color: #FFFFFF; + -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; + background-color: #ff5144; } .ui.inverted.red.buttons .button:focus, .ui.inverted.red.button:focus { - background-color: #ff4335; + background-color: #ff4335; } .ui.inverted.red.buttons .active.button, .ui.inverted.red.active.button { - background-color: #ff5144; + background-color: #ff5144; } .ui.inverted.red.buttons .button:active, .ui.inverted.red.button:active { - background-color: #ff392b; + background-color: #ff392b; } /* Inverted Basic */ @@ -3652,129 +3908,141 @@ input::selection { .ui.inverted.red.basic.buttons .button, .ui.inverted.red.buttons .basic.button, .ui.inverted.red.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; + 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 { - box-shadow: 0px 0px 0px 2px #ff5144 inset !important; - color: #FF695E !important; + -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 { - box-shadow: 0px 0px 0px 2px #ff4335 inset !important; - color: #FF695E !important; + -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 { - box-shadow: 0px 0px 0px 2px #ff5144 inset !important; - color: #FF695E !important; + -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 { - box-shadow: 0px 0px 0px 2px #ff392b inset !important; - color: #FF695E !important; + -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; + background-color: #00B5AD; + color: #FFFFFF; + text-shadow: none; + background-image: none; } .ui.teal.button { - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + -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; + 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; + 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; + 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; + background-color: #009c95; + color: #FFFFFF; + text-shadow: none; } /* Basic */ .ui.basic.teal.buttons .button, .ui.basic.teal.button { - box-shadow: 0px 0px 0px 1px #00B5AD inset !important; - color: #00B5AD !important; + -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; - box-shadow: 0px 0px 0px 1px #009c95 inset !important; - color: #009c95 !important; + 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; - box-shadow: 0px 0px 0px 1px #008c86 inset !important; - color: #009c95 !important; + 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; - box-shadow: 0px 0px 0px 1px #009c95 inset !important; - color: #00827c !important; + 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 { - box-shadow: 0px 0px 0px 1px #00827c inset !important; - color: #00827c !important; + -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; + margin-left: -1px; } /* Inverted */ .ui.inverted.teal.buttons .button, .ui.inverted.teal.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #6DFFFF inset !important; - color: #6DFFFF; + 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, @@ -3785,28 +4053,29 @@ input::selection { .ui.inverted.teal.button.active, .ui.inverted.teal.buttons .button:active, .ui.inverted.teal.button:active { - box-shadow: none !important; - color: rgba(0, 0, 0, 0.6); + -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; + background-color: #54ffff; } .ui.inverted.teal.buttons .button:focus, .ui.inverted.teal.button:focus { - background-color: #44ffff; + background-color: #44ffff; } .ui.inverted.teal.buttons .active.button, .ui.inverted.teal.active.button { - background-color: #54ffff; + background-color: #54ffff; } .ui.inverted.teal.buttons .button:active, .ui.inverted.teal.button:active { - background-color: #3affff; + background-color: #3affff; } /* Inverted Basic */ @@ -3814,129 +4083,141 @@ input::selection { .ui.inverted.teal.basic.buttons .button, .ui.inverted.teal.buttons .basic.button, .ui.inverted.teal.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; + 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 { - box-shadow: 0px 0px 0px 2px #54ffff inset !important; - color: #6DFFFF !important; + -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 { - box-shadow: 0px 0px 0px 2px #44ffff inset !important; - color: #6DFFFF !important; + -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 { - box-shadow: 0px 0px 0px 2px #54ffff inset !important; - color: #6DFFFF !important; + -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 { - box-shadow: 0px 0px 0px 2px #3affff inset !important; - color: #6DFFFF !important; + -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; + background-color: #B5CC18; + color: #FFFFFF; + text-shadow: none; + background-image: none; } .ui.olive.button { - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + -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; + 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; + 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; + 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; + background-color: #aac109; + color: #FFFFFF; + text-shadow: none; } /* Basic */ .ui.basic.olive.buttons .button, .ui.basic.olive.button { - box-shadow: 0px 0px 0px 1px #B5CC18 inset !important; - color: #B5CC18 !important; + -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; - box-shadow: 0px 0px 0px 1px #a7bd0d inset !important; - color: #a7bd0d !important; + 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; - box-shadow: 0px 0px 0px 1px #a0b605 inset !important; - color: #a7bd0d !important; + 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; - box-shadow: 0px 0px 0px 1px #aac109 inset !important; - color: #8d9e13 !important; + 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 { - box-shadow: 0px 0px 0px 1px #8d9e13 inset !important; - color: #8d9e13 !important; + -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; + margin-left: -1px; } /* Inverted */ .ui.inverted.olive.buttons .button, .ui.inverted.olive.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #D9E778 inset !important; - color: #D9E778; + 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, @@ -3947,28 +4228,29 @@ input::selection { .ui.inverted.olive.button.active, .ui.inverted.olive.buttons .button:active, .ui.inverted.olive.button:active { - box-shadow: none !important; - color: rgba(0, 0, 0, 0.6); + -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; + background-color: #d8ea5c; } .ui.inverted.olive.buttons .button:focus, .ui.inverted.olive.button:focus { - background-color: #daef47; + background-color: #daef47; } .ui.inverted.olive.buttons .active.button, .ui.inverted.olive.active.button { - background-color: #daed59; + background-color: #daed59; } .ui.inverted.olive.buttons .button:active, .ui.inverted.olive.button:active { - background-color: #cddf4d; + background-color: #cddf4d; } /* Inverted Basic */ @@ -3976,129 +4258,141 @@ input::selection { .ui.inverted.olive.basic.buttons .button, .ui.inverted.olive.buttons .basic.button, .ui.inverted.olive.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; + 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 { - box-shadow: 0px 0px 0px 2px #d8ea5c inset !important; - color: #D9E778 !important; + -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 { - box-shadow: 0px 0px 0px 2px #daef47 inset !important; - color: #D9E778 !important; + -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 { - box-shadow: 0px 0px 0px 2px #daed59 inset !important; - color: #D9E778 !important; + -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 { - box-shadow: 0px 0px 0px 2px #cddf4d inset !important; - color: #D9E778 !important; + -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; + background-color: #FBBD08; + color: #FFFFFF; + text-shadow: none; + background-image: none; } .ui.yellow.button { - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + -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; + 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; + 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; + 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; + background-color: #eaae00; + color: #FFFFFF; + text-shadow: none; } /* Basic */ .ui.basic.yellow.buttons .button, .ui.basic.yellow.button { - box-shadow: 0px 0px 0px 1px #FBBD08 inset !important; - color: #FBBD08 !important; + -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; - box-shadow: 0px 0px 0px 1px #eaae00 inset !important; - color: #eaae00 !important; + 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; - box-shadow: 0px 0px 0px 1px #daa300 inset !important; - color: #eaae00 !important; + 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; - box-shadow: 0px 0px 0px 1px #eaae00 inset !important; - color: #cd9903 !important; + 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 { - box-shadow: 0px 0px 0px 1px #cd9903 inset !important; - color: #cd9903 !important; + -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; + margin-left: -1px; } /* Inverted */ .ui.inverted.yellow.buttons .button, .ui.inverted.yellow.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #FFE21F inset !important; - color: #FFE21F; + 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, @@ -4109,28 +4403,29 @@ input::selection { .ui.inverted.yellow.button.active, .ui.inverted.yellow.buttons .button:active, .ui.inverted.yellow.button:active { - box-shadow: none !important; - color: rgba(0, 0, 0, 0.6); + -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; + background-color: #ffdf05; } .ui.inverted.yellow.buttons .button:focus, .ui.inverted.yellow.button:focus { - background-color: #f5d500; + background-color: #f5d500; } .ui.inverted.yellow.buttons .active.button, .ui.inverted.yellow.active.button { - background-color: #ffdf05; + background-color: #ffdf05; } .ui.inverted.yellow.buttons .button:active, .ui.inverted.yellow.button:active { - background-color: #ebcd00; + background-color: #ebcd00; } /* Inverted Basic */ @@ -4138,2319 +4433,3098 @@ input::selection { .ui.inverted.yellow.basic.buttons .button, .ui.inverted.yellow.buttons .basic.button, .ui.inverted.yellow.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; + 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 { - box-shadow: 0px 0px 0px 2px #ffdf05 inset !important; - color: #FFE21F !important; + -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 { - box-shadow: 0px 0px 0px 2px #f5d500 inset !important; - color: #FFE21F !important; + -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 { - box-shadow: 0px 0px 0px 2px #ffdf05 inset !important; - color: #FFE21F !important; + -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 { - box-shadow: 0px 0px 0px 2px #ebcd00 inset !important; - color: #FFE21F !important; + -webkit-box-shadow: 0px 0px 0px 2px #ebcd00 inset !important; + box-shadow: 0px 0px 0px 2px #ebcd00 inset !important; + color: #FFE21F !important; } /*------------------- - Primary + Primary --------------------*/ /*--- Standard ---*/ .ui.primary.buttons .button, .ui.primary.button { - background-color: #2185D0; - color: #FFFFFF; - text-shadow: none; - background-image: none; + background-color: #2185D0; + color: #FFFFFF; + text-shadow: none; + background-image: none; } .ui.primary.button { - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + -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; + 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; + 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; + 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; + background-color: #1279c6; + color: #FFFFFF; + text-shadow: none; } /* Basic */ .ui.basic.primary.buttons .button, .ui.basic.primary.button { - box-shadow: 0px 0px 0px 1px #2185D0 inset !important; - color: #2185D0 !important; + -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; - box-shadow: 0px 0px 0px 1px #1678c2 inset !important; - color: #1678c2 !important; + 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; - box-shadow: 0px 0px 0px 1px #0d71bb inset !important; - color: #1678c2 !important; + 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; - box-shadow: 0px 0px 0px 1px #1279c6 inset !important; - color: #1a69a4 !important; + 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 { - box-shadow: 0px 0px 0px 1px #1a69a4 inset !important; - color: #1a69a4 !important; + -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; + margin-left: -1px; } /*------------------- - Secondary + Secondary --------------------*/ /* Standard */ .ui.secondary.buttons .button, .ui.secondary.button { - background-color: #1B1C1D; - color: #FFFFFF; - text-shadow: none; - background-image: none; + background-color: #1B1C1D; + color: #FFFFFF; + text-shadow: none; + background-image: none; } .ui.secondary.button { - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + -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; + 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; + 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; + 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; + background-color: #27292a; + color: #FFFFFF; + text-shadow: none; } /* Basic */ .ui.basic.secondary.buttons .button, .ui.basic.secondary.button { - box-shadow: 0px 0px 0px 1px #1B1C1D inset !important; - color: #1B1C1D !important; + -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; - box-shadow: 0px 0px 0px 1px #27292a inset !important; - color: #27292a !important; + 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; - box-shadow: 0px 0px 0px 1px #2e3032 inset !important; - color: #27292a !important; + 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; - box-shadow: 0px 0px 0px 1px #27292a inset !important; - color: #343637 !important; + 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 { - box-shadow: 0px 0px 0px 1px #343637 inset !important; - color: #343637 !important; + -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; + margin-left: -1px; } /*--------------- - Positive + Positive ----------------*/ /* Standard */ .ui.positive.buttons .button, .ui.positive.button { - background-color: #21BA45; - color: #FFFFFF; - text-shadow: none; - background-image: none; + background-color: #21BA45; + color: #FFFFFF; + text-shadow: none; + background-image: none; } .ui.positive.button { - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + -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; + 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; + 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; + 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; + background-color: #13ae38; + color: #FFFFFF; + text-shadow: none; } /* Basic */ .ui.basic.positive.buttons .button, .ui.basic.positive.button { - box-shadow: 0px 0px 0px 1px #21BA45 inset !important; - color: #21BA45 !important; + -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; - box-shadow: 0px 0px 0px 1px #16ab39 inset !important; - color: #16ab39 !important; + 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; - box-shadow: 0px 0px 0px 1px #0ea432 inset !important; - color: #16ab39 !important; + 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; - box-shadow: 0px 0px 0px 1px #13ae38 inset !important; - color: #198f35 !important; + 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 { - box-shadow: 0px 0px 0px 1px #198f35 inset !important; - color: #198f35 !important; + -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; + margin-left: -1px; } /*--------------- - Negative + Negative ----------------*/ /* Standard */ .ui.negative.buttons .button, .ui.negative.button { - background-color: #DB2828; - color: #FFFFFF; - text-shadow: none; - background-image: none; + background-color: #DB2828; + color: #FFFFFF; + text-shadow: none; + background-image: none; } .ui.negative.button { - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + -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; + 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; + 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; + 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; + background-color: #d41515; + color: #FFFFFF; + text-shadow: none; } /* Basic */ .ui.basic.negative.buttons .button, .ui.basic.negative.button { - box-shadow: 0px 0px 0px 1px #DB2828 inset !important; - color: #DB2828 !important; + -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; - box-shadow: 0px 0px 0px 1px #d01919 inset !important; - color: #d01919 !important; + 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; - box-shadow: 0px 0px 0px 1px #ca1010 inset !important; - color: #d01919 !important; + 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; - box-shadow: 0px 0px 0px 1px #d41515 inset !important; - color: #b21e1e !important; + 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 { - box-shadow: 0px 0px 0px 1px #b21e1e inset !important; - color: #b21e1e !important; + -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; + margin-left: -1px; } /******************************* - Groups + Groups *******************************/ .ui.buttons { - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - font-size: 0em; - vertical-align: baseline; - margin: 0em 0.25em 0em 0em; + 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) { - box-shadow: none; + -webkit-box-shadow: none; + box-shadow: none; } /* Clearfix */ .ui.buttons:after { - content: "."; - display: block; - height: 0; - clear: both; - visibility: hidden; + content: "."; + display: block; + height: 0; + clear: both; + visibility: hidden; } /* Standard Group */ .ui.buttons .button { - -webkit-box-flex: 1; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - margin: 0em; - border-radius: 0em; - margin: 0px 0px 0px 0px; + -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 { - box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; + -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; + 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; + border-top-right-radius: 0.28571429rem; + border-bottom-right-radius: 0.28571429rem; } /* Vertical Style */ .ui.vertical.buttons { - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; + 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; - box-shadow: none; - border-radius: 0em; + 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; + 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; + 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; + border-radius: 0.28571429rem; } /******************************* - Theme Overrides + Theme Overrides *******************************/ /******************************* - Site Overrides + Site Overrides *******************************/ /*! - * # Semantic UI 2.2.10 - Container - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # Semantic UI 2.3.0 - Container +* http://github.com/semantic-org/semantic-ui/ +* +* +* Released under the MIT license +* http://opensource.org/licenses/MIT +* +*/ /******************************* - Container + Container *******************************/ /* All Sizes */ .ui.container { - display: block; - max-width: 100% !important; + 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.container { + width: auto !important; + margin-left: 1em !important; + margin-right: 1em !important; + } - .ui.grid.container { - width: auto !important; - } + .ui.grid.container { + width: auto !important; + } - .ui.relaxed.grid.container { - width: auto !important; - } + .ui.relaxed.grid.container { + width: auto !important; + } - .ui.very.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.container { + width: 723px; + margin-left: auto !important; + margin-right: auto !important; + } - .ui.grid.container { - width: calc( 723px + 2rem ) !important; - } + .ui.grid.container { + width: calc( 723px + 2rem ) !important; + } - .ui.relaxed.grid.container { - width: calc( 723px + 3rem ) !important; - } + .ui.relaxed.grid.container { + width: calc( 723px + 3rem ) !important; + } - .ui.very.relaxed.grid.container { - width: calc( 723px + 5rem ) !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.container { + width: 933px; + margin-left: auto !important; + margin-right: auto !important; + } - .ui.grid.container { - width: calc( 933px + 2rem ) !important; - } + .ui.grid.container { + width: calc( 933px + 2rem ) !important; + } - .ui.relaxed.grid.container { - width: calc( 933px + 3rem ) !important; - } + .ui.relaxed.grid.container { + width: calc( 933px + 3rem ) !important; + } - .ui.very.relaxed.grid.container { - width: calc( 933px + 5rem ) !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.container { + width: 1127px; + margin-left: auto !important; + margin-right: auto !important; + } - .ui.grid.container { - width: calc( 1127px + 2rem ) !important; - } + .ui.grid.container { + width: calc( 1127px + 2rem ) !important; + } - .ui.relaxed.grid.container { - width: calc( 1127px + 3rem ) !important; - } + .ui.relaxed.grid.container { + width: calc( 1127px + 3rem ) !important; + } - .ui.very.relaxed.grid.container { - width: calc( 1127px + 5rem ) !important; - } + .ui.very.relaxed.grid.container { + width: calc( 1127px + 5rem ) !important; + } } /******************************* - Types + Types *******************************/ /* Text Container */ .ui.text.container { - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - max-width: 700px !important; - line-height: 1.5; + font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; + max-width: 700px !important; + line-height: 1.5; } .ui.text.container { - font-size: 1.14285714rem; + 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.2.10 - 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; + 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); +} + /*-------------- - Hidden + 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; + border-color: transparent !important; } .ui.hidden.divider:before, .ui.hidden.divider:after { - display: none; + display: none; } /*-------------- - Inverted + Inverted ---------------*/ .ui.divider.inverted, .ui.vertical.inverted.divider, .ui.horizontal.inverted.divider { - color: #FFFFFF; + 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; + 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 + Fitted ---------------*/ .ui.fitted.divider { - margin: 0em; + margin: 0em; } /*-------------- - Clearing + Clearing ---------------*/ .ui.clearing.divider { - clear: both; + clear: both; } /*-------------- - Section + Section ---------------*/ .ui.section.divider { - margin-top: 2rem; - margin-bottom: 2rem; + margin-top: 2rem; + margin-bottom: 2rem; } /*-------------- - Sizes + Sizes ---------------*/ .ui.divider { - font-size: 1rem; + font-size: 1rem; } /******************************* - Theme Overrides + 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'); + 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'); - } + .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 + Site Overrides *******************************/ /*! - * # Semantic UI 2.2.10 - Flag - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # Semantic UI 2.3.0 - Flag +* http://github.com/semantic-org/semantic-ui/ +* +* +* Released under the MIT license +* http://opensource.org/licenses/MIT +* +*/ /******************************* - Flag + 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; + 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; + 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 + Theme Overrides *******************************/ i.flag.ad:before, i.flag.andorra:before { - background-position: 0px 0px; + background-position: 0px 0px; } i.flag.ae:before, i.flag.united.arab.emirates:before, i.flag.uae:before { - background-position: 0px -26px; + background-position: 0px -26px; } i.flag.af:before, i.flag.afghanistan:before { - background-position: 0px -52px; + background-position: 0px -52px; } i.flag.ag:before, i.flag.antigua:before { - background-position: 0px -78px; + background-position: 0px -78px; } i.flag.ai:before, i.flag.anguilla:before { - background-position: 0px -104px; + background-position: 0px -104px; } i.flag.al:before, i.flag.albania:before { - background-position: 0px -130px; + background-position: 0px -130px; } i.flag.am:before, i.flag.armenia:before { - background-position: 0px -156px; + background-position: 0px -156px; } i.flag.an:before, i.flag.netherlands.antilles:before { - background-position: 0px -182px; + background-position: 0px -182px; } i.flag.ao:before, i.flag.angola:before { - background-position: 0px -208px; + background-position: 0px -208px; } i.flag.ar:before, i.flag.argentina:before { - background-position: 0px -234px; + background-position: 0px -234px; } i.flag.as:before, i.flag.american.samoa:before { - background-position: 0px -260px; + background-position: 0px -260px; } i.flag.at:before, i.flag.austria:before { - background-position: 0px -286px; + background-position: 0px -286px; } i.flag.au:before, i.flag.australia:before { - background-position: 0px -312px; + background-position: 0px -312px; } i.flag.aw:before, i.flag.aruba:before { - background-position: 0px -338px; + background-position: 0px -338px; } i.flag.ax:before, i.flag.aland.islands:before { - background-position: 0px -364px; + background-position: 0px -364px; } i.flag.az:before, i.flag.azerbaijan:before { - background-position: 0px -390px; + background-position: 0px -390px; } i.flag.ba:before, i.flag.bosnia:before { - background-position: 0px -416px; + background-position: 0px -416px; } i.flag.bb:before, i.flag.barbados:before { - background-position: 0px -442px; + background-position: 0px -442px; } i.flag.bd:before, i.flag.bangladesh:before { - background-position: 0px -468px; + background-position: 0px -468px; } i.flag.be:before, i.flag.belgium:before { - background-position: 0px -494px; + background-position: 0px -494px; } i.flag.bf:before, i.flag.burkina.faso:before { - background-position: 0px -520px; + background-position: 0px -520px; } i.flag.bg:before, i.flag.bulgaria:before { - background-position: 0px -546px; + background-position: 0px -546px; } i.flag.bh:before, i.flag.bahrain:before { - background-position: 0px -572px; + background-position: 0px -572px; } i.flag.bi:before, i.flag.burundi:before { - background-position: 0px -598px; + background-position: 0px -598px; } i.flag.bj:before, i.flag.benin:before { - background-position: 0px -624px; + background-position: 0px -624px; } i.flag.bm:before, i.flag.bermuda:before { - background-position: 0px -650px; + background-position: 0px -650px; } i.flag.bn:before, i.flag.brunei:before { - background-position: 0px -676px; + background-position: 0px -676px; } i.flag.bo:before, i.flag.bolivia:before { - background-position: 0px -702px; + background-position: 0px -702px; } i.flag.br:before, i.flag.brazil:before { - background-position: 0px -728px; + background-position: 0px -728px; } i.flag.bs:before, i.flag.bahamas:before { - background-position: 0px -754px; + background-position: 0px -754px; } i.flag.bt:before, i.flag.bhutan:before { - background-position: 0px -780px; + background-position: 0px -780px; } i.flag.bv:before, i.flag.bouvet.island:before { - background-position: 0px -806px; + background-position: 0px -806px; } i.flag.bw:before, i.flag.botswana:before { - background-position: 0px -832px; + background-position: 0px -832px; } i.flag.by:before, i.flag.belarus:before { - background-position: 0px -858px; + background-position: 0px -858px; } i.flag.bz:before, i.flag.belize:before { - background-position: 0px -884px; + background-position: 0px -884px; } i.flag.ca:before, i.flag.canada:before { - background-position: 0px -910px; + background-position: 0px -910px; } i.flag.cc:before, i.flag.cocos.islands:before { - background-position: 0px -962px; + background-position: 0px -962px; } i.flag.cd:before, i.flag.congo:before { - background-position: 0px -988px; + background-position: 0px -988px; } i.flag.cf:before, i.flag.central.african.republic:before { - background-position: 0px -1014px; + background-position: 0px -1014px; } i.flag.cg:before, i.flag.congo.brazzaville:before { - background-position: 0px -1040px; + background-position: 0px -1040px; } i.flag.ch:before, i.flag.switzerland:before { - background-position: 0px -1066px; + background-position: 0px -1066px; } i.flag.ci:before, i.flag.cote.divoire:before { - background-position: 0px -1092px; + background-position: 0px -1092px; } i.flag.ck:before, i.flag.cook.islands:before { - background-position: 0px -1118px; + background-position: 0px -1118px; } i.flag.cl:before, i.flag.chile:before { - background-position: 0px -1144px; + background-position: 0px -1144px; } i.flag.cm:before, i.flag.cameroon:before { - background-position: 0px -1170px; + background-position: 0px -1170px; } i.flag.cn:before, i.flag.china:before { - background-position: 0px -1196px; + background-position: 0px -1196px; } i.flag.co:before, i.flag.colombia:before { - background-position: 0px -1222px; + background-position: 0px -1222px; } i.flag.cr:before, i.flag.costa.rica:before { - background-position: 0px -1248px; + background-position: 0px -1248px; } i.flag.cs:before, i.flag.serbia:before { - background-position: 0px -1274px; + background-position: 0px -1274px; } i.flag.cu:before, i.flag.cuba:before { - background-position: 0px -1300px; + background-position: 0px -1300px; } i.flag.cv:before, i.flag.cape.verde:before { - background-position: 0px -1326px; + background-position: 0px -1326px; } i.flag.cx:before, i.flag.christmas.island:before { - background-position: 0px -1352px; + background-position: 0px -1352px; } i.flag.cy:before, i.flag.cyprus:before { - background-position: 0px -1378px; + background-position: 0px -1378px; } i.flag.cz:before, i.flag.czech.republic:before { - background-position: 0px -1404px; + background-position: 0px -1404px; } i.flag.de:before, i.flag.germany:before { - background-position: 0px -1430px; + background-position: 0px -1430px; } i.flag.dj:before, i.flag.djibouti:before { - background-position: 0px -1456px; + background-position: 0px -1456px; } i.flag.dk:before, i.flag.denmark:before { - background-position: 0px -1482px; + background-position: 0px -1482px; } i.flag.dm:before, i.flag.dominica:before { - background-position: 0px -1508px; + background-position: 0px -1508px; } i.flag.do:before, i.flag.dominican.republic:before { - background-position: 0px -1534px; + background-position: 0px -1534px; } i.flag.dz:before, i.flag.algeria:before { - background-position: 0px -1560px; + background-position: 0px -1560px; } i.flag.ec:before, i.flag.ecuador:before { - background-position: 0px -1586px; + background-position: 0px -1586px; } i.flag.ee:before, i.flag.estonia:before { - background-position: 0px -1612px; + background-position: 0px -1612px; } i.flag.eg:before, i.flag.egypt:before { - background-position: 0px -1638px; + background-position: 0px -1638px; } i.flag.eh:before, i.flag.western.sahara:before { - background-position: 0px -1664px; + 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; + background-position: 0px -1716px; } i.flag.es:before, i.flag.spain:before { - background-position: 0px -1742px; + background-position: 0px -1742px; } i.flag.et:before, i.flag.ethiopia:before { - background-position: 0px -1768px; + background-position: 0px -1768px; } i.flag.eu:before, i.flag.european.union:before { - background-position: 0px -1794px; + background-position: 0px -1794px; } i.flag.fi:before, i.flag.finland:before { - background-position: 0px -1846px; + background-position: 0px -1846px; } i.flag.fj:before, i.flag.fiji:before { - background-position: 0px -1872px; + background-position: 0px -1872px; } i.flag.fk:before, i.flag.falkland.islands:before { - background-position: 0px -1898px; + background-position: 0px -1898px; } i.flag.fm:before, i.flag.micronesia:before { - background-position: 0px -1924px; + background-position: 0px -1924px; } i.flag.fo:before, i.flag.faroe.islands:before { - background-position: 0px -1950px; + background-position: 0px -1950px; } i.flag.fr:before, i.flag.france:before { - background-position: 0px -1976px; + background-position: 0px -1976px; } i.flag.ga:before, i.flag.gabon:before { - background-position: -36px 0px; + background-position: -36px 0px; } i.flag.gb:before, i.flag.united.kingdom:before { - background-position: -36px -26px; + background-position: -36px -26px; } i.flag.gd:before, i.flag.grenada:before { - background-position: -36px -52px; + background-position: -36px -52px; } i.flag.ge:before, i.flag.georgia:before { - background-position: -36px -78px; + background-position: -36px -78px; } i.flag.gf:before, i.flag.french.guiana:before { - background-position: -36px -104px; + background-position: -36px -104px; } i.flag.gh:before, i.flag.ghana:before { - background-position: -36px -130px; + background-position: -36px -130px; } i.flag.gi:before, i.flag.gibraltar:before { - background-position: -36px -156px; + background-position: -36px -156px; } i.flag.gl:before, i.flag.greenland:before { - background-position: -36px -182px; + background-position: -36px -182px; } i.flag.gm:before, i.flag.gambia:before { - background-position: -36px -208px; + background-position: -36px -208px; } i.flag.gn:before, i.flag.guinea:before { - background-position: -36px -234px; + background-position: -36px -234px; } i.flag.gp:before, i.flag.guadeloupe:before { - background-position: -36px -260px; + background-position: -36px -260px; } i.flag.gq:before, i.flag.equatorial.guinea:before { - background-position: -36px -286px; + background-position: -36px -286px; } i.flag.gr:before, i.flag.greece:before { - background-position: -36px -312px; + background-position: -36px -312px; } i.flag.gs:before, i.flag.sandwich.islands:before { - background-position: -36px -338px; + background-position: -36px -338px; } i.flag.gt:before, i.flag.guatemala:before { - background-position: -36px -364px; + background-position: -36px -364px; } i.flag.gu:before, i.flag.guam:before { - background-position: -36px -390px; + background-position: -36px -390px; } i.flag.gw:before, i.flag.guinea-bissau:before { - background-position: -36px -416px; + background-position: -36px -416px; } i.flag.gy:before, i.flag.guyana:before { - background-position: -36px -442px; + background-position: -36px -442px; } i.flag.hk:before, i.flag.hong.kong:before { - background-position: -36px -468px; + background-position: -36px -468px; } i.flag.hm:before, i.flag.heard.island:before { - background-position: -36px -494px; + background-position: -36px -494px; } i.flag.hn:before, i.flag.honduras:before { - background-position: -36px -520px; + background-position: -36px -520px; } i.flag.hr:before, i.flag.croatia:before { - background-position: -36px -546px; + background-position: -36px -546px; } i.flag.ht:before, i.flag.haiti:before { - background-position: -36px -572px; + background-position: -36px -572px; } i.flag.hu:before, i.flag.hungary:before { - background-position: -36px -598px; + background-position: -36px -598px; } i.flag.id:before, i.flag.indonesia:before { - background-position: -36px -624px; + background-position: -36px -624px; } i.flag.ie:before, i.flag.ireland:before { - background-position: -36px -650px; + background-position: -36px -650px; } i.flag.il:before, i.flag.israel:before { - background-position: -36px -676px; + background-position: -36px -676px; } i.flag.in:before, i.flag.india:before { - background-position: -36px -702px; + background-position: -36px -702px; } i.flag.io:before, i.flag.indian.ocean.territory:before { - background-position: -36px -728px; + background-position: -36px -728px; } i.flag.iq:before, i.flag.iraq:before { - background-position: -36px -754px; + background-position: -36px -754px; } i.flag.ir:before, i.flag.iran:before { - background-position: -36px -780px; + background-position: -36px -780px; } i.flag.is:before, i.flag.iceland:before { - background-position: -36px -806px; + background-position: -36px -806px; } i.flag.it:before, i.flag.italy:before { - background-position: -36px -832px; + background-position: -36px -832px; } i.flag.jm:before, i.flag.jamaica:before { - background-position: -36px -858px; + background-position: -36px -858px; } i.flag.jo:before, i.flag.jordan:before { - background-position: -36px -884px; + background-position: -36px -884px; } i.flag.jp:before, i.flag.japan:before { - background-position: -36px -910px; + background-position: -36px -910px; } i.flag.ke:before, i.flag.kenya:before { - background-position: -36px -936px; + background-position: -36px -936px; } i.flag.kg:before, i.flag.kyrgyzstan:before { - background-position: -36px -962px; + background-position: -36px -962px; } i.flag.kh:before, i.flag.cambodia:before { - background-position: -36px -988px; + background-position: -36px -988px; } i.flag.ki:before, i.flag.kiribati:before { - background-position: -36px -1014px; + background-position: -36px -1014px; } i.flag.km:before, i.flag.comoros:before { - background-position: -36px -1040px; + background-position: -36px -1040px; } i.flag.kn:before, i.flag.saint.kitts.and.nevis:before { - background-position: -36px -1066px; + background-position: -36px -1066px; } i.flag.kp:before, i.flag.north.korea:before { - background-position: -36px -1092px; + background-position: -36px -1092px; } i.flag.kr:before, i.flag.south.korea:before { - background-position: -36px -1118px; + background-position: -36px -1118px; } i.flag.kw:before, i.flag.kuwait:before { - background-position: -36px -1144px; + background-position: -36px -1144px; } i.flag.ky:before, i.flag.cayman.islands:before { - background-position: -36px -1170px; + background-position: -36px -1170px; } i.flag.kz:before, i.flag.kazakhstan:before { - background-position: -36px -1196px; + background-position: -36px -1196px; } i.flag.la:before, i.flag.laos:before { - background-position: -36px -1222px; + background-position: -36px -1222px; } i.flag.lb:before, i.flag.lebanon:before { - background-position: -36px -1248px; + background-position: -36px -1248px; } i.flag.lc:before, i.flag.saint.lucia:before { - background-position: -36px -1274px; + background-position: -36px -1274px; } i.flag.li:before, i.flag.liechtenstein:before { - background-position: -36px -1300px; + background-position: -36px -1300px; } i.flag.lk:before, i.flag.sri.lanka:before { - background-position: -36px -1326px; + background-position: -36px -1326px; } i.flag.lr:before, i.flag.liberia:before { - background-position: -36px -1352px; + background-position: -36px -1352px; } i.flag.ls:before, i.flag.lesotho:before { - background-position: -36px -1378px; + background-position: -36px -1378px; } i.flag.lt:before, i.flag.lithuania:before { - background-position: -36px -1404px; + background-position: -36px -1404px; } i.flag.lu:before, i.flag.luxembourg:before { - background-position: -36px -1430px; + background-position: -36px -1430px; } i.flag.lv:before, i.flag.latvia:before { - background-position: -36px -1456px; + background-position: -36px -1456px; } i.flag.ly:before, i.flag.libya:before { - background-position: -36px -1482px; + background-position: -36px -1482px; } i.flag.ma:before, i.flag.morocco:before { - background-position: -36px -1508px; + background-position: -36px -1508px; } i.flag.mc:before, i.flag.monaco:before { - background-position: -36px -1534px; + background-position: -36px -1534px; } i.flag.md:before, i.flag.moldova:before { - background-position: -36px -1560px; + background-position: -36px -1560px; } i.flag.me:before, i.flag.montenegro:before { - background-position: -36px -1586px; + background-position: -36px -1586px; } i.flag.mg:before, i.flag.madagascar:before { - background-position: -36px -1613px; + background-position: -36px -1613px; } i.flag.mh:before, i.flag.marshall.islands:before { - background-position: -36px -1639px; + background-position: -36px -1639px; } i.flag.mk:before, i.flag.macedonia:before { - background-position: -36px -1665px; + background-position: -36px -1665px; } i.flag.ml:before, i.flag.mali:before { - background-position: -36px -1691px; + background-position: -36px -1691px; } i.flag.mm:before, i.flag.myanmar:before, i.flag.burma:before { - background-position: -73px -1821px; + background-position: -73px -1821px; } i.flag.mn:before, i.flag.mongolia:before { - background-position: -36px -1743px; + background-position: -36px -1743px; } i.flag.mo:before, i.flag.macau:before { - background-position: -36px -1769px; + background-position: -36px -1769px; } i.flag.mp:before, i.flag.northern.mariana.islands:before { - background-position: -36px -1795px; + background-position: -36px -1795px; } i.flag.mq:before, i.flag.martinique:before { - background-position: -36px -1821px; + background-position: -36px -1821px; } i.flag.mr:before, i.flag.mauritania:before { - background-position: -36px -1847px; + background-position: -36px -1847px; } i.flag.ms:before, i.flag.montserrat:before { - background-position: -36px -1873px; + background-position: -36px -1873px; } i.flag.mt:before, i.flag.malta:before { - background-position: -36px -1899px; + background-position: -36px -1899px; } i.flag.mu:before, i.flag.mauritius:before { - background-position: -36px -1925px; + background-position: -36px -1925px; } i.flag.mv:before, i.flag.maldives:before { - background-position: -36px -1951px; + background-position: -36px -1951px; } i.flag.mw:before, i.flag.malawi:before { - background-position: -36px -1977px; + background-position: -36px -1977px; } i.flag.mx:before, i.flag.mexico:before { - background-position: -72px 0px; + background-position: -72px 0px; } i.flag.my:before, i.flag.malaysia:before { - background-position: -72px -26px; + background-position: -72px -26px; } i.flag.mz:before, i.flag.mozambique:before { - background-position: -72px -52px; + background-position: -72px -52px; } i.flag.na:before, i.flag.namibia:before { - background-position: -72px -78px; + background-position: -72px -78px; } i.flag.nc:before, i.flag.new.caledonia:before { - background-position: -72px -104px; + background-position: -72px -104px; } i.flag.ne:before, i.flag.niger:before { - background-position: -72px -130px; + background-position: -72px -130px; } i.flag.nf:before, i.flag.norfolk.island:before { - background-position: -72px -156px; + background-position: -72px -156px; } i.flag.ng:before, i.flag.nigeria:before { - background-position: -72px -182px; + background-position: -72px -182px; } i.flag.ni:before, i.flag.nicaragua:before { - background-position: -72px -208px; + background-position: -72px -208px; } i.flag.nl:before, i.flag.netherlands:before { - background-position: -72px -234px; + background-position: -72px -234px; } i.flag.no:before, i.flag.norway:before { - background-position: -72px -260px; + background-position: -72px -260px; } i.flag.np:before, i.flag.nepal:before { - background-position: -72px -286px; + background-position: -72px -286px; } i.flag.nr:before, i.flag.nauru:before { - background-position: -72px -312px; + background-position: -72px -312px; } i.flag.nu:before, i.flag.niue:before { - background-position: -72px -338px; + background-position: -72px -338px; } i.flag.nz:before, i.flag.new.zealand:before { - background-position: -72px -364px; + background-position: -72px -364px; } i.flag.om:before, i.flag.oman:before { - background-position: -72px -390px; + background-position: -72px -390px; } i.flag.pa:before, i.flag.panama:before { - background-position: -72px -416px; + background-position: -72px -416px; } i.flag.pe:before, i.flag.peru:before { - background-position: -72px -442px; + background-position: -72px -442px; } i.flag.pf:before, i.flag.french.polynesia:before { - background-position: -72px -468px; + background-position: -72px -468px; } i.flag.pg:before, i.flag.new.guinea:before { - background-position: -72px -494px; + background-position: -72px -494px; } i.flag.ph:before, i.flag.philippines:before { - background-position: -72px -520px; + background-position: -72px -520px; } i.flag.pk:before, i.flag.pakistan:before { - background-position: -72px -546px; + background-position: -72px -546px; } i.flag.pl:before, i.flag.poland:before { - background-position: -72px -572px; + background-position: -72px -572px; } i.flag.pm:before, i.flag.saint.pierre:before { - background-position: -72px -598px; + background-position: -72px -598px; } i.flag.pn:before, i.flag.pitcairn.islands:before { - background-position: -72px -624px; + background-position: -72px -624px; } i.flag.pr:before, i.flag.puerto.rico:before { - background-position: -72px -650px; + background-position: -72px -650px; } i.flag.ps:before, i.flag.palestine:before { - background-position: -72px -676px; + background-position: -72px -676px; } i.flag.pt:before, i.flag.portugal:before { - background-position: -72px -702px; + background-position: -72px -702px; } i.flag.pw:before, i.flag.palau:before { - background-position: -72px -728px; + background-position: -72px -728px; } i.flag.py:before, i.flag.paraguay:before { - background-position: -72px -754px; + background-position: -72px -754px; } i.flag.qa:before, i.flag.qatar:before { - background-position: -72px -780px; + background-position: -72px -780px; } i.flag.re:before, i.flag.reunion:before { - background-position: -72px -806px; + background-position: -72px -806px; } i.flag.ro:before, i.flag.romania:before { - background-position: -72px -832px; + background-position: -72px -832px; } i.flag.rs:before, i.flag.serbia:before { - background-position: -72px -858px; + background-position: -72px -858px; } i.flag.ru:before, i.flag.russia:before { - background-position: -72px -884px; + background-position: -72px -884px; } i.flag.rw:before, i.flag.rwanda:before { - background-position: -72px -910px; + background-position: -72px -910px; } i.flag.sa:before, i.flag.saudi.arabia:before { - background-position: -72px -936px; + background-position: -72px -936px; } i.flag.sb:before, i.flag.solomon.islands:before { - background-position: -72px -962px; + background-position: -72px -962px; } i.flag.sc:before, i.flag.seychelles:before { - background-position: -72px -988px; + background-position: -72px -988px; } i.flag.gb.sct:before, i.flag.scotland:before { - background-position: -72px -1014px; + background-position: -72px -1014px; } i.flag.sd:before, i.flag.sudan:before { - background-position: -72px -1040px; + background-position: -72px -1040px; } i.flag.se:before, i.flag.sweden:before { - background-position: -72px -1066px; + background-position: -72px -1066px; } i.flag.sg:before, i.flag.singapore:before { - background-position: -72px -1092px; + background-position: -72px -1092px; } i.flag.sh:before, i.flag.saint.helena:before { - background-position: -72px -1118px; + background-position: -72px -1118px; } i.flag.si:before, i.flag.slovenia:before { - background-position: -72px -1144px; + background-position: -72px -1144px; } i.flag.sj:before, i.flag.svalbard:before, i.flag.jan.mayen:before { - background-position: -72px -1170px; + background-position: -72px -1170px; } i.flag.sk:before, i.flag.slovakia:before { - background-position: -72px -1196px; + background-position: -72px -1196px; } i.flag.sl:before, i.flag.sierra.leone:before { - background-position: -72px -1222px; + background-position: -72px -1222px; } i.flag.sm:before, i.flag.san.marino:before { - background-position: -72px -1248px; + background-position: -72px -1248px; } i.flag.sn:before, i.flag.senegal:before { - background-position: -72px -1274px; + background-position: -72px -1274px; } i.flag.so:before, i.flag.somalia:before { - background-position: -72px -1300px; + background-position: -72px -1300px; } i.flag.sr:before, i.flag.suriname:before { - background-position: -72px -1326px; + background-position: -72px -1326px; } i.flag.st:before, i.flag.sao.tome:before { - background-position: -72px -1352px; + background-position: -72px -1352px; } i.flag.sv:before, i.flag.el.salvador:before { - background-position: -72px -1378px; + background-position: -72px -1378px; } i.flag.sy:before, i.flag.syria:before { - background-position: -72px -1404px; + background-position: -72px -1404px; } i.flag.sz:before, i.flag.swaziland:before { - background-position: -72px -1430px; + background-position: -72px -1430px; } i.flag.tc:before, i.flag.caicos.islands:before { - background-position: -72px -1456px; + background-position: -72px -1456px; } i.flag.td:before, i.flag.chad:before { - background-position: -72px -1482px; + background-position: -72px -1482px; } i.flag.tf:before, i.flag.french.territories:before { - background-position: -72px -1508px; + background-position: -72px -1508px; } i.flag.tg:before, i.flag.togo:before { - background-position: -72px -1534px; + background-position: -72px -1534px; } i.flag.th:before, i.flag.thailand:before { - background-position: -72px -1560px; + background-position: -72px -1560px; } i.flag.tj:before, i.flag.tajikistan:before { - background-position: -72px -1586px; + background-position: -72px -1586px; } i.flag.tk:before, i.flag.tokelau:before { - background-position: -72px -1612px; + background-position: -72px -1612px; } i.flag.tl:before, i.flag.timorleste:before { - background-position: -72px -1638px; + background-position: -72px -1638px; } i.flag.tm:before, i.flag.turkmenistan:before { - background-position: -72px -1664px; + background-position: -72px -1664px; } i.flag.tn:before, i.flag.tunisia:before { - background-position: -72px -1690px; + background-position: -72px -1690px; } i.flag.to:before, i.flag.tonga:before { - background-position: -72px -1716px; + background-position: -72px -1716px; } i.flag.tr:before, i.flag.turkey:before { - background-position: -72px -1742px; + background-position: -72px -1742px; } i.flag.tt:before, i.flag.trinidad:before { - background-position: -72px -1768px; + background-position: -72px -1768px; } i.flag.tv:before, i.flag.tuvalu:before { - background-position: -72px -1794px; + background-position: -72px -1794px; } i.flag.tw:before, i.flag.taiwan:before { - background-position: -72px -1820px; + background-position: -72px -1820px; } i.flag.tz:before, i.flag.tanzania:before { - background-position: -72px -1846px; + background-position: -72px -1846px; } i.flag.ua:before, i.flag.ukraine:before { - background-position: -72px -1872px; + background-position: -72px -1872px; } i.flag.ug:before, i.flag.uganda:before { - background-position: -72px -1898px; + background-position: -72px -1898px; } i.flag.um:before, i.flag.us.minor.islands:before { - background-position: -72px -1924px; + background-position: -72px -1924px; } i.flag.us:before, i.flag.america:before, i.flag.united.states:before { - background-position: -72px -1950px; + background-position: -72px -1950px; } i.flag.uy:before, i.flag.uruguay:before { - background-position: -72px -1976px; + background-position: -72px -1976px; } i.flag.uz:before, i.flag.uzbekistan:before { - background-position: -108px 0px; + background-position: -108px 0px; } i.flag.va:before, i.flag.vatican.city:before { - background-position: -108px -26px; + background-position: -108px -26px; } i.flag.vc:before, i.flag.saint.vincent:before { - background-position: -108px -52px; + background-position: -108px -52px; } i.flag.ve:before, i.flag.venezuela:before { - background-position: -108px -78px; + background-position: -108px -78px; } i.flag.vg:before, i.flag.british.virgin.islands:before { - background-position: -108px -104px; + background-position: -108px -104px; } i.flag.vi:before, i.flag.us.virgin.islands:before { - background-position: -108px -130px; + background-position: -108px -130px; } i.flag.vn:before, i.flag.vietnam:before { - background-position: -108px -156px; + background-position: -108px -156px; } i.flag.vu:before, i.flag.vanuatu:before { - background-position: -108px -182px; + background-position: -108px -182px; } i.flag.gb.wls:before, i.flag.wales:before { - background-position: -108px -208px; + background-position: -108px -208px; } i.flag.wf:before, i.flag.wallis.and.futuna:before { - background-position: -108px -234px; + background-position: -108px -234px; } i.flag.ws:before, i.flag.samoa:before { - background-position: -108px -260px; + background-position: -108px -260px; } i.flag.ye:before, i.flag.yemen:before { - background-position: -108px -286px; + background-position: -108px -286px; } i.flag.yt:before, i.flag.mayotte:before { - background-position: -108px -312px; + background-position: -108px -312px; } i.flag.za:before, i.flag.south.africa:before { - background-position: -108px -338px; + background-position: -108px -338px; } i.flag.zm:before, i.flag.zambia:before { - background-position: -108px -364px; + background-position: -108px -364px; } i.flag.zw:before, i.flag.zimbabwe:before { - background-position: -108px -390px; + background-position: -108px -390px; } /******************************* - Site Overrides + Site Overrides *******************************/ /*! - * # Semantic UI 2.2.10 - Header - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # Semantic UI 2.3.0 - Header +* http://github.com/semantic-org/semantic-ui/ +* +* +* Released under the MIT license +* http://opensource.org/licenses/MIT +* +*/ /******************************* - Header + 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); + 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; + margin-top: -0.14285714em; } .ui.header:last-child { - margin-bottom: 0em; + margin-bottom: 0em; } /*-------------- - Sub Header + 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); + display: block; + font-weight: normal; + padding: 0em; + margin: 0em; + font-size: 1rem; + line-height: 1.2em; + color: rgba(0, 0, 0, 0.6); } /*-------------- - Icon + Icon ---------------*/ .ui.header > .icon { - display: table-cell; - opacity: 1; - font-size: 1.5em; - padding-top: 0.14285714em; - vertical-align: middle; + 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; + display: inline-block; + padding: 0em; + margin-right: 0.75rem; } /*------------------- - Image + Image --------------------*/ .ui.header > .image:not(.icon), .ui.header > img { - display: inline-block; - margin-top: 0.14285714em; - width: 2.5em; - height: auto; - vertical-align: middle; + 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; + margin-right: 0.75rem; } /*-------------- - Content + Content ---------------*/ .ui.header .content { - display: inline-block; - vertical-align: top; + display: inline-block; + vertical-align: top; } /* After Image */ .ui.header > img + .content, .ui.header > .image + .content { - padding-left: 0.75rem; - vertical-align: middle; + padding-left: 0.75rem; + vertical-align: middle; } /* After Icon */ .ui.header > .icon + .content { - padding-left: 0.75rem; - display: table-cell; - vertical-align: middle; + padding-left: 0.75rem; + display: table-cell; + vertical-align: middle; } /*-------------- - Loose Coupling +Loose Coupling ---------------*/ .ui.header .ui.label { - font-size: ''; - margin-left: 0.5rem; - vertical-align: middle; + font-size: ''; + margin-left: 0.5rem; + vertical-align: middle; } /* Positioning */ .ui.header + p { - margin-top: 0em; + 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; } /******************************* @@ -6458,1233 +7532,524 @@ i.flag.zimbabwe:before { *******************************/ /*-------------- - Page + Loading ---------------*/ -h1.ui.header { - font-size: 2rem; +i.icon.loading { + height: 1em; + line-height: 1; + -webkit-animation: icon-loading 2s linear infinite; + animation: icon-loading 2s linear infinite; } -h2.ui.header { - font-size: 1.71428571rem; +@-webkit-keyframes icon-loading { + from { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } } -h3.ui.header { - font-size: 1.28571429rem; -} +@keyframes icon-loading { + from { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } -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; + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } } /******************************* States *******************************/ -.ui.disabled.header { - opacity: 0.45; +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 + 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-linear-gradient(transparent, rgba(0, 0, 0, 0.05)); - background: #545454 linear-gradient(transparent, rgba(0, 0, 0, 0.05)); - box-shadow: none; - border-color: transparent; -} - -.ui.inverted.block.header { - background: #545454 -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05)); - background: #545454 linear-gradient(transparent, rgba(0, 0, 0, 0.05)); - 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; - 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; - 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.2.10 - 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; + width: auto; + margin: 0em; } /*------------------- - Link + Link --------------------*/ i.link.icon, i.link.icons { - cursor: pointer; - opacity: 0.8; - -webkit-transition: opacity 0.1s ease; - transition: opacity 0.1s ease; + 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; + opacity: 1 !important; } /*------------------- - Circular + Circular --------------------*/ i.circular.icon { - border-radius: 500em !important; - line-height: 1 !important; - padding: 0.5em 0.5em !important; - box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset; - width: 2em !important; - height: 2em !important; + 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; - box-shadow: none; + border: none; + -webkit-box-shadow: none; + box-shadow: none; } /*------------------- - Flipped + Flipped --------------------*/ i.flipped.icon, i.horizontally.flipped.icon { - -webkit-transform: scale(-1, 1); - transform: scale(-1, 1); + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); } i.vertically.flipped.icon { - -webkit-transform: scale(1, -1); - transform: scale(1, -1); + -webkit-transform: scale(1, -1); + transform: scale(1, -1); } /*------------------- - Rotated + Rotated --------------------*/ i.rotated.icon, i.right.rotated.icon, i.clockwise.rotated.icon { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); + -webkit-transform: rotate(90deg); + transform: rotate(90deg); } i.left.rotated.icon, i.counterclockwise.rotated.icon { - -webkit-transform: rotate(-90deg); - transform: rotate(-90deg); + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); } /*------------------- - Bordered + Bordered --------------------*/ i.bordered.icon { - line-height: 1; - vertical-align: baseline; - width: 2em; - height: 2em; - padding: 0.5em 0.41em !important; - box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset; + 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; - box-shadow: none; + border: none; + -webkit-box-shadow: none; + box-shadow: none; } /*------------------- - Inverted + Inverted --------------------*/ /* Inverted Shapes */ i.inverted.bordered.icon, i.inverted.circular.icon { - background-color: #1B1C1D !important; - color: #FFFFFF !important; + background-color: #1B1C1D !important; + color: #FFFFFF !important; } i.inverted.icon { - color: #FFFFFF; + color: #FFFFFF; } /*------------------- - Colors + Colors --------------------*/ /* Red */ i.red.icon { - color: #DB2828 !important; + color: #DB2828 !important; } i.inverted.red.icon { - color: #FF695E !important; + color: #FF695E !important; } i.inverted.bordered.red.icon, i.inverted.circular.red.icon { - background-color: #DB2828 !important; - color: #FFFFFF !important; + background-color: #DB2828 !important; + color: #FFFFFF !important; } /* Orange */ i.orange.icon { - color: #F2711C !important; + color: #F2711C !important; } i.inverted.orange.icon { - color: #FF851B !important; + color: #FF851B !important; } i.inverted.bordered.orange.icon, i.inverted.circular.orange.icon { - background-color: #F2711C !important; - color: #FFFFFF !important; + background-color: #F2711C !important; + color: #FFFFFF !important; } /* Yellow */ i.yellow.icon { - color: #FBBD08 !important; + color: #FBBD08 !important; } i.inverted.yellow.icon { - color: #FFE21F !important; + color: #FFE21F !important; } i.inverted.bordered.yellow.icon, i.inverted.circular.yellow.icon { - background-color: #FBBD08 !important; - color: #FFFFFF !important; + background-color: #FBBD08 !important; + color: #FFFFFF !important; } /* Olive */ i.olive.icon { - color: #B5CC18 !important; + color: #B5CC18 !important; } i.inverted.olive.icon { - color: #D9E778 !important; + color: #D9E778 !important; } i.inverted.bordered.olive.icon, i.inverted.circular.olive.icon { - background-color: #B5CC18 !important; - color: #FFFFFF !important; + background-color: #B5CC18 !important; + color: #FFFFFF !important; } /* Green */ i.green.icon { - color: #21BA45 !important; + color: #21BA45 !important; } i.inverted.green.icon { - color: #2ECC40 !important; + color: #2ECC40 !important; } i.inverted.bordered.green.icon, i.inverted.circular.green.icon { - background-color: #21BA45 !important; - color: #FFFFFF !important; + background-color: #21BA45 !important; + color: #FFFFFF !important; } /* Teal */ i.teal.icon { - color: #00B5AD !important; + color: #00B5AD !important; } i.inverted.teal.icon { - color: #6DFFFF !important; + color: #6DFFFF !important; } i.inverted.bordered.teal.icon, i.inverted.circular.teal.icon { - background-color: #00B5AD !important; - color: #FFFFFF !important; + background-color: #00B5AD !important; + color: #FFFFFF !important; } /* Blue */ i.blue.icon { - color: #2185D0 !important; + color: #2185D0 !important; } i.inverted.blue.icon { - color: #54C8FF !important; + color: #54C8FF !important; } i.inverted.bordered.blue.icon, i.inverted.circular.blue.icon { - background-color: #2185D0 !important; - color: #FFFFFF !important; + background-color: #2185D0 !important; + color: #FFFFFF !important; } /* Violet */ i.violet.icon { - color: #6435C9 !important; + color: #6435C9 !important; } i.inverted.violet.icon { - color: #A291FB !important; + color: #A291FB !important; } i.inverted.bordered.violet.icon, i.inverted.circular.violet.icon { - background-color: #6435C9 !important; - color: #FFFFFF !important; + background-color: #6435C9 !important; + color: #FFFFFF !important; } /* Purple */ i.purple.icon { - color: #A333C8 !important; + color: #A333C8 !important; } i.inverted.purple.icon { - color: #DC73FF !important; + color: #DC73FF !important; } i.inverted.bordered.purple.icon, i.inverted.circular.purple.icon { - background-color: #A333C8 !important; - color: #FFFFFF !important; + background-color: #A333C8 !important; + color: #FFFFFF !important; } /* Pink */ i.pink.icon { - color: #E03997 !important; + color: #E03997 !important; } i.inverted.pink.icon { - color: #FF8EDF !important; + color: #FF8EDF !important; } i.inverted.bordered.pink.icon, i.inverted.circular.pink.icon { - background-color: #E03997 !important; - color: #FFFFFF !important; + background-color: #E03997 !important; + color: #FFFFFF !important; } /* Brown */ i.brown.icon { - color: #A5673F !important; + color: #A5673F !important; } i.inverted.brown.icon { - color: #D67C1C !important; + color: #D67C1C !important; } i.inverted.bordered.brown.icon, i.inverted.circular.brown.icon { - background-color: #A5673F !important; - color: #FFFFFF !important; + background-color: #A5673F !important; + color: #FFFFFF !important; } /* Grey */ i.grey.icon { - color: #767676 !important; + color: #767676 !important; } i.inverted.grey.icon { - color: #DCDDDE !important; + color: #DCDDDE !important; } i.inverted.bordered.grey.icon, i.inverted.circular.grey.icon { - background-color: #767676 !important; - color: #FFFFFF !important; + background-color: #767676 !important; + color: #FFFFFF !important; } /* Black */ i.black.icon { - color: #1B1C1D !important; + color: #1B1C1D !important; } i.inverted.black.icon { - color: #545454 !important; + color: #545454 !important; } i.inverted.bordered.black.icon, i.inverted.circular.black.icon { - background-color: #1B1C1D !important; - color: #FFFFFF !important; + background-color: #1B1C1D !important; + color: #FFFFFF !important; } /*------------------- - Sizes + Sizes --------------------*/ i.mini.icon, i.mini.icons { - line-height: 1; - font-size: 0.4em; + line-height: 1; + font-size: 0.4em; } i.tiny.icon, i.tiny.icons { - line-height: 1; - font-size: 0.5em; + line-height: 1; + font-size: 0.5em; } i.small.icon, i.small.icons { - line-height: 1; - font-size: 0.75em; + line-height: 1; + font-size: 0.75em; } i.icon, i.icons { - font-size: 1em; + font-size: 1em; } i.large.icon, i.large.icons { - line-height: 1; - vertical-align: middle; - font-size: 1.5em; + 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; + line-height: 1; + vertical-align: middle; + font-size: 2em; } i.huge.icon, i.huge.icons { - line-height: 1; - vertical-align: middle; - font-size: 4em; + line-height: 1; + vertical-align: middle; + font-size: 4em; } i.massive.icon, i.massive.icons { - line-height: 1; - vertical-align: middle; - font-size: 8em; + line-height: 1; + vertical-align: middle; + font-size: 8em; } /******************************* - Groups + Groups *******************************/ i.icons { - display: inline-block; - position: relative; - line-height: 1; + 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; + 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; + 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; + 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; + text-shadow: -1px -1px 0 #1B1C1D, 1px -1px 0 #1B1C1D, -1px 1px 0 #1B1C1D, 1px 1px 0 #1B1C1D; } /* - * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */ +* 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) +*/ /******************************* @@ -7710,3801 +8075,5231 @@ for instance `lemon icon` not `lemon outline icon` since there is only one lemon *******************************/ /******************************* - Icons + Icons *******************************/ -/* Web Content */ - -i.icon.search:before { - content: "\f002"; -} - -i.icon.mail.outline:before { - content: "\f003"; -} - -i.icon.signal:before { - content: "\f012"; -} - -i.icon.setting:before { - content: "\f013"; -} - -i.icon.home:before { - content: "\f015"; -} - -i.icon.inbox:before { - content: "\f01c"; -} - -i.icon.browser:before { - content: "\f022"; -} - -i.icon.tag:before { - content: "\f02b"; -} - -i.icon.tags:before { - content: "\f02c"; -} - -i.icon.image:before { - content: "\f03e"; -} - -i.icon.calendar:before { - content: "\f073"; -} - -i.icon.comment:before { - content: "\f075"; -} - -i.icon.shop:before { - content: "\f07a"; -} - -i.icon.comments:before { - content: "\f086"; -} - -i.icon.external:before { - content: "\f08e"; -} - -i.icon.privacy:before { - content: "\f084"; -} - -i.icon.settings:before { - content: "\f085"; -} - -i.icon.comments:before { - content: "\f086"; -} - -i.icon.external:before { - content: "\f08e"; -} - -i.icon.trophy:before { - content: "\f091"; -} - -i.icon.payment:before { - content: "\f09d"; -} - -i.icon.feed:before { - content: "\f09e"; -} - -i.icon.alarm.outline:before { - content: "\f0a2"; -} - -i.icon.tasks:before { - content: "\f0ae"; -} - -i.icon.cloud:before { - content: "\f0c2"; -} - -i.icon.lab:before { - content: "\f0c3"; -} - -i.icon.mail:before { - content: "\f0e0"; -} - -i.icon.dashboard:before { - content: "\f0e4"; -} - -i.icon.comment.outline:before { - content: "\f0e5"; -} - -i.icon.comments.outline:before { - content: "\f0e6"; -} - -i.icon.sitemap:before { - content: "\f0e8"; -} - -i.icon.idea:before { - content: "\f0eb"; -} - -i.icon.alarm:before { - content: "\f0f3"; -} - -i.icon.terminal:before { - content: "\f120"; -} - -i.icon.code:before { - content: "\f121"; -} - -i.icon.protect:before { - content: "\f132"; -} - -i.icon.calendar.outline:before { - content: "\f133"; -} - -i.icon.ticket:before { - content: "\f145"; -} - -i.icon.external.square:before { - content: "\f14c"; -} - -i.icon.bug:before { - content: "\f188"; -} - -i.icon.mail.square:before { - content: "\f199"; -} - -i.icon.history:before { - content: "\f1da"; -} - -i.icon.options:before { - content: "\f1de"; -} - -i.icon.text.telephone:before { - content: "\f1e4"; -} - -i.icon.find:before { - content: "\f1e5"; -} - -i.icon.alarm.mute:before { - content: "\f1f6"; -} - -i.icon.alarm.mute.outline:before { - content: "\f1f7"; -} - -i.icon.copyright:before { - content: "\f1f9"; -} - -i.icon.at:before { - content: "\f1fa"; -} - -i.icon.eyedropper:before { - content: "\f1fb"; -} - -i.icon.paint.brush:before { - content: "\f1fc"; -} - -i.icon.heartbeat:before { - content: "\f21e"; -} - -i.icon.mouse.pointer:before { - content: "\f245"; -} - -i.icon.hourglass.empty:before { - content: "\f250"; -} - -i.icon.hourglass.start:before { - content: "\f251"; -} - -i.icon.hourglass.half:before { - content: "\f252"; -} - -i.icon.hourglass.end:before { - content: "\f253"; -} - -i.icon.hourglass.full:before { - content: "\f254"; -} - -i.icon.hand.pointer:before { - content: "\f25a"; -} - -i.icon.trademark:before { - content: "\f25c"; -} - -i.icon.registered:before { - content: "\f25d"; -} - -i.icon.creative.commons:before { - content: "\f25e"; -} - -i.icon.add.to.calendar:before { - content: "\f271"; -} - -i.icon.remove.from.calendar:before { - content: "\f272"; -} - -i.icon.delete.calendar:before { - content: "\f273"; -} - -i.icon.checked.calendar:before { - content: "\f274"; -} - -i.icon.industry:before { - content: "\f275"; -} - -i.icon.shopping.bag:before { - content: "\f290"; -} - -i.icon.shopping.basket:before { - content: "\f291"; -} - -i.icon.hashtag:before { - content: "\f292"; -} - -i.icon.percent:before { - content: "\f295"; -} - -i.icon.handshake:before { - content: "\f2b5"; -} - -i.icon.open.envelope:before { - content: "\f2b6"; -} - -i.icon.open.envelope.outline:before { - content: "\f2b7"; -} - -i.icon.address.book:before { - content: "\f2b9"; -} - -i.icon.address.book.outline:before { - content: "\f2ba"; -} - -i.icon.address.card:before { - content: "\f2bb"; -} - -i.icon.address.card.outline:before { - content: "\f2bc"; -} - -i.icon.id.badge:before { - content: "\f2c1"; -} - -i.icon.id.card:before { - content: "\f2c2"; -} - -i.icon.id.card.outline:before { - content: "\f2c3"; -} - -i.icon.podcast:before { - content: "\f2ce"; -} - -i.icon.window.maximize:before { - content: "\f2d0"; -} - -i.icon.window.minimize:before { - content: "\f2d1"; -} - -i.icon.window.restore:before { - content: "\f2d2"; -} - -i.icon.window.close:before { - content: "\f2d3"; -} - -i.icon.window.close.outline:before { - content: "\f2d4"; -} - -/* User Actions */ - -i.icon.wait:before { - content: "\f017"; -} - -i.icon.download:before { - content: "\f019"; -} - -i.icon.repeat:before { - content: "\f01e"; -} - -i.icon.refresh:before { - content: "\f021"; -} - -i.icon.lock:before { - content: "\f023"; -} - -i.icon.bookmark:before { - content: "\f02e"; -} - -i.icon.print:before { - content: "\f02f"; -} - -i.icon.write:before { - content: "\f040"; -} - -i.icon.adjust:before { - content: "\f042"; -} - -i.icon.theme:before { - content: "\f043"; -} - -i.icon.edit:before { - content: "\f044"; -} - -i.icon.external.share:before { - content: "\f045"; -} - -i.icon.ban:before { - content: "\f05e"; -} - -i.icon.mail.forward:before { - content: "\f064"; -} - -i.icon.share:before { - content: "\f064"; -} - -i.icon.expand:before { - content: "\f065"; -} - -i.icon.compress:before { - content: "\f066"; -} - -i.icon.unhide:before { - content: "\f06e"; -} - -i.icon.hide:before { - content: "\f070"; -} - -i.icon.random:before { - content: "\f074"; -} - -i.icon.retweet:before { - content: "\f079"; -} - -i.icon.sign.out:before { - content: "\f08b"; -} - -i.icon.pin:before { - content: "\f08d"; -} - -i.icon.sign.in:before { - content: "\f090"; -} - -i.icon.upload:before { - content: "\f093"; -} - -i.icon.call:before { - content: "\f095"; -} - -i.icon.remove.bookmark:before { - content: "\f097"; -} - -i.icon.call.square:before { - content: "\f098"; -} - -i.icon.unlock:before { - content: "\f09c"; -} - -i.icon.configure:before { - content: "\f0ad"; -} - -i.icon.filter:before { - content: "\f0b0"; -} - -i.icon.wizard:before { - content: "\f0d0"; -} - -i.icon.undo:before { - content: "\f0e2"; -} - -i.icon.exchange:before { - content: "\f0ec"; -} - -i.icon.cloud.download:before { - content: "\f0ed"; -} - -i.icon.cloud.upload:before { - content: "\f0ee"; -} - -i.icon.reply:before { - content: "\f112"; -} - -i.icon.reply.all:before { - content: "\f122"; -} - -i.icon.erase:before { - content: "\f12d"; -} - -i.icon.unlock.alternate:before { - content: "\f13e"; -} - -i.icon.write.square:before { - content: "\f14b"; -} - -i.icon.share.square:before { - content: "\f14d"; -} - -i.icon.archive:before { - content: "\f187"; -} - -i.icon.translate:before { - content: "\f1ab"; -} - -i.icon.recycle:before { - content: "\f1b8"; -} - -i.icon.send:before { - content: "\f1d8"; -} - -i.icon.send.outline:before { - content: "\f1d9"; -} - -i.icon.share.alternate:before { - content: "\f1e0"; -} - -i.icon.share.alternate.square:before { - content: "\f1e1"; -} - -i.icon.add.to.cart:before { - content: "\f217"; -} - -i.icon.in.cart:before { - content: "\f218"; -} - -i.icon.add.user:before { - content: "\f234"; -} - -i.icon.remove.user:before { - content: "\f235"; -} - -i.icon.object.group:before { - content: "\f247"; -} - -i.icon.object.ungroup:before { - content: "\f248"; -} - -i.icon.clone:before { - content: "\f24d"; -} - -i.icon.talk:before { - content: "\f27a"; -} - -i.icon.talk.outline:before { - content: "\f27b"; -} - -/* Messages */ - -i.icon.help.circle:before { - content: "\f059"; -} - -i.icon.info.circle:before { - content: "\f05a"; -} - -i.icon.warning.circle:before { - content: "\f06a"; -} - -i.icon.warning.sign:before { - content: "\f071"; -} - -i.icon.announcement:before { - content: "\f0a1"; -} - -i.icon.help:before { - content: "\f128"; -} - -i.icon.info:before { - content: "\f129"; -} - -i.icon.warning:before { - content: "\f12a"; -} - -i.icon.birthday:before { - content: "\f1fd"; -} - -i.icon.help.circle.outline:before { - content: "\f29c"; -} - -/* Users */ - -i.icon.user:before { - content: "\f007"; -} - -i.icon.users:before { - content: "\f0c0"; -} - -i.icon.doctor:before { - content: "\f0f0"; -} - -i.icon.handicap:before { - content: "\f193"; -} - -i.icon.student:before { - content: "\f19d"; -} - -i.icon.child:before { - content: "\f1ae"; -} - -i.icon.spy:before { - content: "\f21b"; -} - -i.icon.user.circle:before { - content: "\f2bd"; -} - -i.icon.user.circle.outline:before { - content: "\f2be"; -} - -i.icon.user.outline:before { - content: "\f2c0"; -} - -/* Gender & Sexuality */ - -i.icon.female:before { - content: "\f182"; -} - -i.icon.male:before { - content: "\f183"; -} - -i.icon.woman:before { - content: "\f221"; -} - -i.icon.man:before { - content: "\f222"; -} - -i.icon.non.binary.transgender:before { - content: "\f223"; -} - -i.icon.intergender:before { - content: "\f224"; -} - -i.icon.transgender:before { - content: "\f225"; -} - -i.icon.lesbian:before { - content: "\f226"; -} - -i.icon.gay:before { - content: "\f227"; -} - -i.icon.heterosexual:before { - content: "\f228"; -} - -i.icon.other.gender:before { - content: "\f229"; -} - -i.icon.other.gender.vertical:before { - content: "\f22a"; -} - -i.icon.other.gender.horizontal:before { - content: "\f22b"; -} - -i.icon.neuter:before { - content: "\f22c"; -} - -i.icon.genderless:before { - content: "\f22d"; -} - /* Accessibility */ -i.icon.universal.access:before { - content: "\f29a"; -} - -i.icon.wheelchair:before { - content: "\f29b"; -} - -i.icon.blind:before { - content: "\f29d"; -} - -i.icon.audio.description:before { - content: "\f29e"; -} - -i.icon.volume.control.phone:before { - content: "\f2a0"; -} - -i.icon.braille:before { - content: "\f2a1"; -} - -i.icon.asl:before { - content: "\f2a3"; +i.icon.american.sign.language.interpreting:before { + content: "\f2a3"; } i.icon.assistive.listening.systems:before { - content: "\f2a2"; + content: "\f2a2"; } -i.icon.deafness:before { - content: "\f2a4"; +i.icon.audio.description:before { + content: "\f29e"; } -i.icon.sign.language:before { - content: "\f2a7"; +i.icon.blind:before { + content: "\f29d"; } -i.icon.low.vision:before { - content: "\f2a8"; +i.icon.braille:before { + content: "\f2a1"; } -/* View Adjustment */ - -i.icon.block.layout:before { - content: "\f009"; -} - -i.icon.grid.layout:before { - content: "\f00a"; -} - -i.icon.list.layout:before { - content: "\f00b"; -} - -i.icon.zoom:before { - content: "\f00e"; -} - -i.icon.zoom.out:before { - content: "\f010"; -} - -i.icon.resize.vertical:before { - content: "\f07d"; -} - -i.icon.resize.horizontal:before { - content: "\f07e"; -} - -i.icon.maximize:before { - content: "\f0b2"; -} - -i.icon.crop:before { - content: "\f125"; -} - -/* Literal Objects */ - -i.icon.cocktail:before { - content: "\f000"; -} - -i.icon.road:before { - content: "\f018"; -} - -i.icon.flag:before { - content: "\f024"; -} - -i.icon.book:before { - content: "\f02d"; -} - -i.icon.gift:before { - content: "\f06b"; -} - -i.icon.leaf:before { - content: "\f06c"; -} - -i.icon.fire:before { - content: "\f06d"; -} - -i.icon.plane:before { - content: "\f072"; -} - -i.icon.magnet:before { - content: "\f076"; -} - -i.icon.lemon:before { - content: "\f094"; -} - -i.icon.world:before { - content: "\f0ac"; -} - -i.icon.travel:before { - content: "\f0b1"; -} - -i.icon.shipping:before { - content: "\f0d1"; -} - -i.icon.money:before { - content: "\f0d6"; -} - -i.icon.legal:before { - content: "\f0e3"; -} - -i.icon.lightning:before { - content: "\f0e7"; -} - -i.icon.umbrella:before { - content: "\f0e9"; -} - -i.icon.treatment:before { - content: "\f0f1"; -} - -i.icon.suitcase:before { - content: "\f0f2"; -} - -i.icon.bar:before { - content: "\f0fc"; -} - -i.icon.flag.outline:before { - content: "\f11d"; -} - -i.icon.flag.checkered:before { - content: "\f11e"; -} - -i.icon.puzzle:before { - content: "\f12e"; -} - -i.icon.fire.extinguisher:before { - content: "\f134"; -} - -i.icon.rocket:before { - content: "\f135"; -} - -i.icon.anchor:before { - content: "\f13d"; -} - -i.icon.bullseye:before { - content: "\f140"; -} - -i.icon.sun:before { - content: "\f185"; -} - -i.icon.moon:before { - content: "\f186"; -} - -i.icon.fax:before { - content: "\f1ac"; -} - -i.icon.life.ring:before { - content: "\f1cd"; -} - -i.icon.bomb:before { - content: "\f1e2"; -} - -i.icon.soccer:before { - content: "\f1e3"; -} - -i.icon.calculator:before { - content: "\f1ec"; -} - -i.icon.diamond:before { - content: "\f219"; -} - -i.icon.sticky.note:before { - content: "\f249"; -} - -i.icon.sticky.note.outline:before { - content: "\f24a"; -} - -i.icon.law:before { - content: "\f24e"; -} - -i.icon.hand.peace:before { - content: "\f25b"; -} - -i.icon.hand.rock:before { - content: "\f255"; -} - -i.icon.hand.paper:before { - content: "\f256"; -} - -i.icon.hand.scissors:before { - content: "\f257"; -} - -i.icon.hand.lizard:before { - content: "\f258"; -} - -i.icon.hand.spock:before { - content: "\f259"; -} - -i.icon.tv:before { - content: "\f26c"; -} - -i.icon.thermometer.full:before { - content: "\f2c7"; -} - -i.icon.thermometer.three.quarters:before { - content: "\f2c8"; -} - -i.icon.thermometer.half:before { - content: "\f2c9"; -} - -i.icon.thermometer.quarter:before { - content: "\f2ca"; -} - -i.icon.thermometer.empty:before { - content: "\f2cb"; -} - -i.icon.shower:before { - content: "\f2cc"; -} - -i.icon.bathtub:before { - content: "\f2cd"; -} - -i.icon.snowflake:before { - content: "\f2dc"; -} - -/* Shapes */ - -i.icon.crosshairs:before { - content: "\f05b"; -} - -i.icon.asterisk:before { - content: "\f069"; -} - -i.icon.square.outline:before { - content: "\f096"; -} - -i.icon.certificate:before { - content: "\f0a3"; -} - -i.icon.square:before { - content: "\f0c8"; -} - -i.icon.quote.left:before { - content: "\f10d"; -} - -i.icon.quote.right:before { - content: "\f10e"; -} - -i.icon.spinner:before { - content: "\f110"; -} - -i.icon.circle:before { - content: "\f111"; -} - -i.icon.ellipsis.horizontal:before { - content: "\f141"; -} - -i.icon.ellipsis.vertical:before { - content: "\f142"; -} - -i.icon.cube:before { - content: "\f1b2"; -} - -i.icon.cubes:before { - content: "\f1b3"; -} - -i.icon.circle.notched:before { - content: "\f1ce"; -} - -i.icon.circle.thin:before { - content: "\f1db"; -} - -/* Item Selection */ - -i.icon.checkmark:before { - content: "\f00c"; -} - -i.icon.remove:before { - content: "\f00d"; -} - -i.icon.checkmark.box:before { - content: "\f046"; -} - -i.icon.move:before { - content: "\f047"; -} - -i.icon.add.circle:before { - content: "\f055"; -} - -i.icon.minus.circle:before { - content: "\f056"; -} - -i.icon.remove.circle:before { - content: "\f057"; -} - -i.icon.check.circle:before { - content: "\f058"; -} - -i.icon.remove.circle.outline:before { - content: "\f05c"; -} - -i.icon.check.circle.outline:before { - content: "\f05d"; -} - -i.icon.plus:before { - content: "\f067"; -} - -i.icon.minus:before { - content: "\f068"; -} - -i.icon.add.square:before { - content: "\f0fe"; -} - -i.icon.radio:before { - content: "\f10c"; -} - -i.icon.minus.square:before { - content: "\f146"; -} - -i.icon.minus.square.outline:before { - content: "\f147"; -} - -i.icon.check.square:before { - content: "\f14a"; -} - -i.icon.selected.radio:before { - content: "\f192"; -} - -i.icon.plus.square.outline:before { - content: "\f196"; -} - -i.icon.toggle.off:before { - content: "\f204"; -} - -i.icon.toggle.on:before { - content: "\f205"; -} - -/* Media */ - -i.icon.film:before { - content: "\f008"; -} - -i.icon.sound:before { - content: "\f025"; -} - -i.icon.photo:before { - content: "\f030"; -} - -i.icon.bar.chart:before { - content: "\f080"; -} - -i.icon.camera.retro:before { - content: "\f083"; -} - -i.icon.newspaper:before { - content: "\f1ea"; -} - -i.icon.area.chart:before { - content: "\f1fe"; -} - -i.icon.pie.chart:before { - content: "\f200"; -} - -i.icon.line.chart:before { - content: "\f201"; -} - -/* Pointers */ - -i.icon.arrow.circle.outline.down:before { - content: "\f01a"; -} - -i.icon.arrow.circle.outline.up:before { - content: "\f01b"; -} - -i.icon.chevron.left:before { - content: "\f053"; -} - -i.icon.chevron.right:before { - content: "\f054"; -} - -i.icon.arrow.left:before { - content: "\f060"; -} - -i.icon.arrow.right:before { - content: "\f061"; -} - -i.icon.arrow.up:before { - content: "\f062"; -} - -i.icon.arrow.down:before { - content: "\f063"; -} - -i.icon.chevron.up:before { - content: "\f077"; -} - -i.icon.chevron.down:before { - content: "\f078"; -} - -i.icon.pointing.right:before { - content: "\f0a4"; -} - -i.icon.pointing.left:before { - content: "\f0a5"; -} - -i.icon.pointing.up:before { - content: "\f0a6"; -} - -i.icon.pointing.down:before { - content: "\f0a7"; -} - -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.circle.down:before { - content: "\f0ab"; -} - -i.icon.caret.down:before { - content: "\f0d7"; -} - -i.icon.caret.up:before { - content: "\f0d8"; -} - -i.icon.caret.left:before { - content: "\f0d9"; -} - -i.icon.caret.right:before { - content: "\f0da"; -} - -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.double.down:before { - content: "\f103"; -} - -i.icon.angle.left:before { - content: "\f104"; -} - -i.icon.angle.right:before { - content: "\f105"; -} - -i.icon.angle.up:before { - content: "\f106"; -} - -i.icon.angle.down:before { - content: "\f107"; -} - -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.circle.down:before { - content: "\f13a"; -} - -i.icon.toggle.down:before { - content: "\f150"; -} - -i.icon.toggle.up:before { - content: "\f151"; -} - -i.icon.toggle.right:before { - content: "\f152"; -} - -i.icon.long.arrow.down:before { - content: "\f175"; -} - -i.icon.long.arrow.up:before { - content: "\f176"; -} - -i.icon.long.arrow.left:before { - content: "\f177"; -} - -i.icon.long.arrow.right:before { - content: "\f178"; -} - -i.icon.arrow.circle.outline.right:before { - content: "\f18e"; -} - -i.icon.arrow.circle.outline.left:before { - content: "\f190"; -} - -i.icon.toggle.left:before { - content: "\f191"; -} - -/* Mobile */ - -i.icon.tablet:before { - content: "\f10a"; -} - -i.icon.mobile:before { - content: "\f10b"; -} - -i.icon.battery.full:before { - content: "\f240"; -} - -i.icon.battery.high:before { - content: "\f241"; -} - -i.icon.battery.medium:before { - content: "\f242"; -} - -i.icon.battery.low:before { - content: "\f243"; -} - -i.icon.battery.empty:before { - content: "\f244"; -} - -/* Computer */ - -i.icon.power:before { - content: "\f011"; -} - -i.icon.trash.outline:before { - content: "\f014"; -} - -i.icon.disk.outline:before { - content: "\f0a0"; -} - -i.icon.desktop:before { - content: "\f108"; -} - -i.icon.laptop:before { - content: "\f109"; -} - -i.icon.game:before { - content: "\f11b"; -} - -i.icon.keyboard:before { - content: "\f11c"; -} - -i.icon.plug:before { - content: "\f1e6"; -} - -/* File System */ - -i.icon.trash:before { - content: "\f1f8"; -} - -i.icon.file.outline:before { - content: "\f016"; -} - -i.icon.folder:before { - content: "\f07b"; -} - -i.icon.folder.open:before { - content: "\f07c"; -} - -i.icon.file.text.outline:before { - content: "\f0f6"; -} - -i.icon.folder.outline:before { - content: "\f114"; -} - -i.icon.folder.open.outline:before { - content: "\f115"; -} - -i.icon.level.up:before { - content: "\f148"; -} - -i.icon.level.down:before { - content: "\f149"; -} - -i.icon.file:before { - content: "\f15b"; -} - -i.icon.file.text:before { - content: "\f15c"; -} - -i.icon.file.pdf.outline:before { - content: "\f1c1"; -} - -i.icon.file.word.outline:before { - content: "\f1c2"; -} - -i.icon.file.excel.outline:before { - content: "\f1c3"; -} - -i.icon.file.powerpoint.outline:before { - content: "\f1c4"; -} - -i.icon.file.image.outline:before { - content: "\f1c5"; -} - -i.icon.file.archive.outline:before { - content: "\f1c6"; -} - -i.icon.file.audio.outline:before { - content: "\f1c7"; -} - -i.icon.file.video.outline:before { - content: "\f1c8"; -} - -i.icon.file.code.outline:before { - content: "\f1c9"; -} - -/* Technologies */ - -i.icon.qrcode:before { - content: "\f029"; -} - -i.icon.barcode:before { - content: "\f02a"; -} - -i.icon.rss:before { - content: "\f09e"; -} - -i.icon.fork:before { - content: "\f126"; -} - -i.icon.html5:before { - content: "\f13b"; -} - -i.icon.css3:before { - content: "\f13c"; -} - -i.icon.rss.square:before { - content: "\f143"; -} - -i.icon.openid:before { - content: "\f19b"; -} - -i.icon.database:before { - content: "\f1c0"; -} - -i.icon.wifi:before { - content: "\f1eb"; -} - -i.icon.server:before { - content: "\f233"; -} - -i.icon.usb:before { - content: "\f287"; -} - -i.icon.bluetooth:before { - content: "\f293"; -} - -i.icon.bluetooth.alternative:before { - content: "\f294"; -} - -i.icon.microchip:before { - content: "\f2db"; -} - -/* Rating */ - -i.icon.heart:before { - content: "\f004"; -} - -i.icon.star:before { - content: "\f005"; -} - -i.icon.empty.star:before { - content: "\f006"; -} - -i.icon.thumbs.outline.up:before { - content: "\f087"; -} - -i.icon.thumbs.outline.down:before { - content: "\f088"; -} - -i.icon.star.half:before { - content: "\f089"; -} - -i.icon.empty.heart:before { - content: "\f08a"; -} - -i.icon.smile:before { - content: "\f118"; -} - -i.icon.frown:before { - content: "\f119"; -} - -i.icon.meh:before { - content: "\f11a"; -} - -i.icon.star.half.empty:before { - content: "\f123"; -} - -i.icon.thumbs.up:before { - content: "\f164"; -} - -i.icon.thumbs.down:before { - content: "\f165"; -} - -/* Audio */ - -i.icon.music:before { - content: "\f001"; -} - -i.icon.video.play.outline:before { - content: "\f01d"; -} - -i.icon.volume.off:before { - content: "\f026"; -} - -i.icon.volume.down:before { - content: "\f027"; -} - -i.icon.volume.up:before { - content: "\f028"; -} - -i.icon.record:before { - content: "\f03d"; -} - -i.icon.step.backward:before { - content: "\f048"; -} - -i.icon.fast.backward:before { - content: "\f049"; -} - -i.icon.backward:before { - content: "\f04a"; -} - -i.icon.play:before { - content: "\f04b"; -} - -i.icon.pause:before { - content: "\f04c"; -} - -i.icon.stop:before { - content: "\f04d"; -} - -i.icon.forward:before { - content: "\f04e"; -} - -i.icon.fast.forward:before { - content: "\f050"; -} - -i.icon.step.forward:before { - content: "\f051"; -} - -i.icon.eject:before { - content: "\f052"; -} - -i.icon.unmute:before { - content: "\f130"; -} - -i.icon.mute:before { - content: "\f131"; -} - -i.icon.video.play:before { - content: "\f144"; +i.icon.closed.captioning.outline:before { + content: "\f327"; } i.icon.closed.captioning:before { - content: "\f20a"; + content: "\f20a"; } -i.icon.pause.circle:before { - content: "\f28b"; +i.icon.deaf:before { + content: "\f2a4"; } -i.icon.pause.circle.outline:before { - content: "\f28c"; +i.icon.low.vision:before { + content: "\f2a8"; } -i.icon.stop.circle:before { - content: "\f28d"; +i.icon.phone.volume:before { + content: "\f2a0"; } -i.icon.stop.circle.outline:before { - content: "\f28e"; +i.icon.question.circle.outline:before { + content: "\f628"; } -/* Map, Locations, & Transportation */ - -i.icon.marker:before { - content: "\f041"; +i.icon.question.circle:before { + content: "\f059"; } -i.icon.coffee:before { - content: "\f0f4"; +i.icon.sign.language:before { + content: "\f2a7"; } -i.icon.food:before { - content: "\f0f5"; +i.icon.tty:before { + content: "\f1e4"; } -i.icon.building.outline:before { - content: "\f0f7"; +i.icon.universal.access:before { + content: "\f29a"; } -i.icon.hospital:before { - content: "\f0f8"; +i.icon.wheelchair:before { + content: "\f193"; } -i.icon.emergency:before { - content: "\f0f9"; +/* Arrows */ + +i.icon.angle.double.down:before { + content: "\f103"; } -i.icon.first.aid:before { - content: "\f0fa"; +i.icon.angle.double.left:before { + content: "\f100"; } -i.icon.military:before { - content: "\f0fb"; +i.icon.angle.double.right:before { + content: "\f101"; } -i.icon.h:before { - content: "\f0fd"; +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"; + content: "\f124"; } -i.icon.compass:before { - content: "\f14e"; +i.icon.long.arrow.alternate.down:before { + content: "\f309"; } -i.icon.space.shuttle:before { - content: "\f197"; +i.icon.long.arrow.alternate.left:before { + content: "\f30a"; } -i.icon.university:before { - content: "\f19c"; +i.icon.long.arrow.alternate.right:before { + content: "\f30b"; } -i.icon.building:before { - content: "\f1ad"; +i.icon.long.arrow.alternate.up:before { + content: "\f30c"; } -i.icon.paw:before { - content: "\f1b0"; +i.icon.mouse.pointer:before { + content: "\f245"; } -i.icon.spoon:before { - content: "\f1b1"; +i.icon.play:before { + content: "\f04b"; } -i.icon.car:before { - content: "\f1b9"; +i.icon.random:before { + content: "\f074"; } -i.icon.taxi:before { - content: "\f1ba"; +i.icon.recycle:before { + content: "\f1b8"; } -i.icon.tree:before { - content: "\f1bb"; +i.icon.redo.alternate:before { + content: "\f2f9"; } -i.icon.bicycle:before { - content: "\f206"; +i.icon.redo:before { + content: "\f01e"; } -i.icon.bus:before { - content: "\f207"; +i.icon.reply.all:before { + content: "\f122"; } -i.icon.ship:before { - content: "\f21a"; +i.icon.reply:before { + content: "\f3e5"; } -i.icon.motorcycle:before { - content: "\f21c"; +i.icon.retweet:before { + content: "\f079"; } -i.icon.street.view:before { - content: "\f21d"; +i.icon.share.square.outline:before { + content: "\f631"; } -i.icon.hotel:before { - content: "\f236"; +i.icon.share.square:before { + content: "\f14d"; } -i.icon.train:before { - content: "\f238"; +i.icon.share:before { + content: "\f064"; } -i.icon.subway:before { - content: "\f239"; +i.icon.sign.in.alternate:before { + content: "\f2f6"; } -i.icon.map.pin:before { - content: "\f276"; +i.icon.sign.out.alternate:before { + content: "\f2f5"; } -i.icon.map.signs:before { - content: "\f277"; +i.icon.sort.alphabet.down:before { + content: "\f15d"; } -i.icon.map.outline:before { - content: "\f278"; +i.icon.sort.alphabet.up:before { + content: "\f15e"; } -i.icon.map:before { - content: "\f279"; +i.icon.sort.amount.down:before { + content: "\f160"; } -/* Tables */ - -i.icon.table:before { - content: "\f0ce"; +i.icon.sort.amount.up:before { + content: "\f161"; } -i.icon.columns:before { - content: "\f0db"; +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"; + content: "\f0dc"; } -i.icon.sort.descending:before { - content: "\f0dd"; +i.icon.sync.alternate:before { + content: "\f2f1"; } -i.icon.sort.ascending:before { - content: "\f0de"; -} - -i.icon.sort.alphabet.ascending:before { - content: "\f15d"; -} - -i.icon.sort.alphabet.descending:before { - content: "\f15e"; -} - -i.icon.sort.content.ascending:before { - content: "\f160"; -} - -i.icon.sort.content.descending:before { - content: "\f161"; -} - -i.icon.sort.numeric.ascending:before { - content: "\f162"; -} - -i.icon.sort.numeric.descending:before { - content: "\f163"; -} - -/* Text Editor */ - -i.icon.font:before { - content: "\f031"; -} - -i.icon.bold:before { - content: "\f032"; -} - -i.icon.italic:before { - content: "\f033"; +i.icon.sync:before { + content: "\f021"; } i.icon.text.height:before { - content: "\f034"; + content: "\f034"; } i.icon.text.width:before { - content: "\f035"; + content: "\f035"; } -i.icon.align.left:before { - content: "\f036"; +i.icon.undo.alternate:before { + content: "\f2ea"; } -i.icon.align.center:before { - content: "\f037"; +i.icon.undo:before { + content: "\f0e2"; } -i.icon.align.right:before { - content: "\f038"; +i.icon.upload:before { + content: "\f093"; } -i.icon.align.justify:before { - content: "\f039"; +/* Audio & Video */ + +i.icon.backward:before { + content: "\f04a"; } -i.icon.list:before { - content: "\f03a"; +i.icon.circle.outline:before { + content: "\f323"; } -i.icon.outdent:before { - content: "\f03b"; +i.icon.circle:before { + content: "\f111"; } -i.icon.indent:before { - content: "\f03c"; +i.icon.compress:before { + content: "\f066"; } -i.icon.linkify:before { - content: "\f0c1"; +i.icon.eject:before { + content: "\f052"; } -i.icon.cut:before { - content: "\f0c4"; +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"; + content: "\f0c5"; } -i.icon.attach:before { - content: "\f0c6"; +i.icon.copyright.outline:before { + content: "\f333"; } -i.icon.save:before { - content: "\f0c7"; +i.icon.copyright:before { + content: "\f1f9"; } -i.icon.content:before { - content: "\f0c9"; +i.icon.cut:before { + content: "\f0c4"; } -i.icon.unordered.list:before { - content: "\f0ca"; +i.icon.edit.outline:before { + content: "\f336"; } -i.icon.ordered.list:before { - content: "\f0cb"; +i.icon.edit:before { + content: "\f044"; } -i.icon.strikethrough:before { - content: "\f0cc"; +i.icon.envelope.open.outline:before { + content: "\f337"; } -i.icon.underline:before { - content: "\f0cd"; +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"; + content: "\f0ea"; } -i.icon.unlinkify:before { - content: "\f127"; +i.icon.pen.square:before { + content: "\f14b"; } -i.icon.superscript:before { - content: "\f12b"; +i.icon.pencil.alternate:before { + content: "\f303"; } -i.icon.subscript:before { - content: "\f12c"; +i.icon.percent:before { + content: "\f295"; } -i.icon.header:before { - content: "\f1dc"; +i.icon.phone.square:before { + content: "\f098"; } -i.icon.paragraph:before { - content: "\f1dd"; +i.icon.phone:before { + content: "\f095"; } -i.icon.text.cursor:before { - content: "\f246"; +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.euro:before { - content: "\f153"; +i.icon.dollar.sign:before { + content: "\f155"; } -i.icon.pound:before { - content: "\f154"; +i.icon.euro.sign:before { + content: "\f153"; } -i.icon.dollar:before { - content: "\f155"; +i.icon.lira.sign:before { + content: "\f195"; } -i.icon.rupee:before { - content: "\f156"; +i.icon.money.bill.alternate.outline:before { + content: "\f623"; } -i.icon.yen:before { - content: "\f157"; +i.icon.money.bill.alternate:before { + content: "\f3d1"; } -i.icon.ruble:before { - content: "\f158"; +i.icon.pound.sign:before { + content: "\f154"; } -i.icon.won:before { - content: "\f159"; +i.icon.ruble.sign:before { + content: "\f158"; } -i.icon.bitcoin:before { - content: "\f15a"; +i.icon.rupee.sign:before { + content: "\f156"; } -i.icon.lira:before { - content: "\f195"; +i.icon.shekel.sign:before { + content: "\f20b"; } -i.icon.shekel:before { - content: "\f20b"; +i.icon.won.sign:before { + content: "\f159"; } -/* Payment Options */ - -i.icon.paypal:before { - content: "\f1ed"; -} - -i.icon.google.wallet:before { - content: "\f1ee"; -} - -i.icon.visa:before { - content: "\f1f0"; -} - -i.icon.mastercard:before { - content: "\f1f1"; -} - -i.icon.discover:before { - content: "\f1f2"; -} - -i.icon.american.express:before { - content: "\f1f3"; -} - -i.icon.paypal.card:before { - content: "\f1f4"; -} - -i.icon.stripe:before { - content: "\f1f5"; -} - -i.icon.japan.credit.bureau:before { - content: "\f24b"; -} - -i.icon.diners.club:before { - content: "\f24c"; -} - -i.icon.credit.card.alternative:before { - content: "\f283"; -} - -/* Networks and Websites*/ - -i.icon.twitter.square:before { - content: "\f081"; -} - -i.icon.facebook.square:before { - content: "\f082"; -} - -i.icon.linkedin.square:before { - content: "\f08c"; -} - -i.icon.github.square:before { - content: "\f092"; -} - -i.icon.twitter:before { - content: "\f099"; -} - -i.icon.facebook.f:before { - content: "\f09a"; -} - -i.icon.github:before { - content: "\f09b"; -} - -i.icon.pinterest:before { - content: "\f0d2"; -} - -i.icon.pinterest.square:before { - content: "\f0d3"; -} - -i.icon.google.plus.square:before { - content: "\f0d4"; -} - -i.icon.google.plus:before { - content: "\f0d5"; -} - -i.icon.linkedin:before { - content: "\f0e1"; -} - -i.icon.github.alternate:before { - content: "\f113"; -} - -i.icon.maxcdn:before { - content: "\f136"; -} - -i.icon.youtube.square:before { - content: "\f166"; -} - -i.icon.youtube:before { - content: "\f167"; -} - -i.icon.xing:before { - content: "\f168"; -} - -i.icon.xing.square:before { - content: "\f169"; -} - -i.icon.youtube.play:before { - content: "\f16a"; -} - -i.icon.dropbox:before { - content: "\f16b"; -} - -i.icon.stack.overflow:before { - content: "\f16c"; -} - -i.icon.instagram:before { - content: "\f16d"; -} - -i.icon.flickr:before { - content: "\f16e"; -} - -i.icon.adn:before { - content: "\f170"; -} - -i.icon.bitbucket:before { - content: "\f171"; -} - -i.icon.bitbucket.square:before { - content: "\f172"; -} - -i.icon.tumblr:before { - content: "\f173"; -} - -i.icon.tumblr.square:before { - content: "\f174"; -} - -i.icon.apple:before { - content: "\f179"; -} - -i.icon.windows:before { - content: "\f17a"; -} - -i.icon.android:before { - content: "\f17b"; -} - -i.icon.linux:before { - content: "\f17c"; -} - -i.icon.dribble:before { - content: "\f17d"; -} - -i.icon.skype:before { - content: "\f17e"; -} - -i.icon.foursquare:before { - content: "\f180"; -} - -i.icon.trello:before { - content: "\f181"; -} - -i.icon.gittip:before { - content: "\f184"; -} - -i.icon.vk:before { - content: "\f189"; -} - -i.icon.weibo:before { - content: "\f18a"; -} - -i.icon.renren:before { - content: "\f18b"; -} - -i.icon.pagelines:before { - content: "\f18c"; -} - -i.icon.stack.exchange:before { - content: "\f18d"; -} - -i.icon.vimeo.square:before { - content: "\f194"; -} - -i.icon.slack:before { - content: "\f198"; -} - -i.icon.wordpress:before { - content: "\f19a"; -} - -i.icon.yahoo:before { - content: "\f19e"; -} - -i.icon.google:before { - content: "\f1a0"; -} - -i.icon.reddit:before { - content: "\f1a1"; -} - -i.icon.reddit.square:before { - content: "\f1a2"; -} - -i.icon.stumbleupon.circle:before { - content: "\f1a3"; -} - -i.icon.stumbleupon:before { - content: "\f1a4"; -} - -i.icon.delicious:before { - content: "\f1a5"; -} - -i.icon.digg:before { - content: "\f1a6"; -} - -i.icon.pied.piper:before { - content: "\f1a7"; -} - -i.icon.pied.piper.alternate:before { - content: "\f1a8"; -} - -i.icon.drupal:before { - content: "\f1a9"; -} - -i.icon.joomla:before { - content: "\f1aa"; -} - -i.icon.behance:before { - content: "\f1b4"; -} - -i.icon.behance.square:before { - content: "\f1b5"; -} - -i.icon.steam:before { - content: "\f1b6"; -} - -i.icon.steam.square:before { - content: "\f1b7"; -} - -i.icon.spotify:before { - content: "\f1bc"; -} - -i.icon.deviantart:before { - content: "\f1bd"; -} - -i.icon.soundcloud:before { - content: "\f1be"; -} - -i.icon.vine:before { - content: "\f1ca"; -} - -i.icon.codepen:before { - content: "\f1cb"; -} - -i.icon.jsfiddle:before { - content: "\f1cc"; -} - -i.icon.rebel:before { - content: "\f1d0"; -} - -i.icon.empire:before { - content: "\f1d1"; -} - -i.icon.git.square:before { - content: "\f1d2"; -} - -i.icon.git:before { - content: "\f1d3"; -} - -i.icon.hacker.news:before { - content: "\f1d4"; -} - -i.icon.tencent.weibo:before { - content: "\f1d5"; -} - -i.icon.qq:before { - content: "\f1d6"; -} - -i.icon.wechat:before { - content: "\f1d7"; -} - -i.icon.slideshare:before { - content: "\f1e7"; -} - -i.icon.twitch:before { - content: "\f1e8"; -} - -i.icon.yelp:before { - content: "\f1e9"; -} - -i.icon.lastfm:before { - content: "\f202"; -} - -i.icon.lastfm.square:before { - content: "\f203"; -} - -i.icon.ioxhost:before { - content: "\f208"; -} - -i.icon.angellist:before { - content: "\f209"; -} - -i.icon.meanpath:before { - content: "\f20c"; -} - -i.icon.buysellads:before { - content: "\f20d"; -} - -i.icon.connectdevelop:before { - content: "\f20e"; -} - -i.icon.dashcube:before { - content: "\f210"; -} - -i.icon.forumbee:before { - content: "\f211"; -} - -i.icon.leanpub:before { - content: "\f212"; -} - -i.icon.sellsy:before { - content: "\f213"; -} - -i.icon.shirtsinbulk:before { - content: "\f214"; -} - -i.icon.simplybuilt:before { - content: "\f215"; -} - -i.icon.skyatlas:before { - content: "\f216"; -} - -i.icon.facebook:before { - content: "\f230"; -} - -i.icon.pinterest:before { - content: "\f231"; -} - -i.icon.whatsapp:before { - content: "\f232"; -} - -i.icon.viacoin:before { - content: "\f237"; -} - -i.icon.medium:before { - content: "\f23a"; -} - -i.icon.y.combinator:before { - content: "\f23b"; -} - -i.icon.optinmonster:before { - content: "\f23c"; -} - -i.icon.opencart:before { - content: "\f23d"; -} - -i.icon.expeditedssl:before { - content: "\f23e"; -} - -i.icon.gg:before { - content: "\f260"; -} - -i.icon.gg.circle:before { - content: "\f261"; -} - -i.icon.tripadvisor:before { - content: "\f262"; -} - -i.icon.odnoklassniki:before { - content: "\f263"; -} - -i.icon.odnoklassniki.square:before { - content: "\f264"; -} - -i.icon.pocket:before { - content: "\f265"; -} - -i.icon.wikipedia:before { - content: "\f266"; -} - -i.icon.safari:before { - content: "\f267"; -} - -i.icon.chrome:before { - content: "\f268"; -} - -i.icon.firefox:before { - content: "\f269"; -} - -i.icon.opera:before { - content: "\f26a"; -} - -i.icon.internet.explorer:before { - content: "\f26b"; -} - -i.icon.contao:before { - content: "\f26d"; -} - -i.icon.\35 00px:before { - content: "\f26e"; -} - -i.icon.amazon:before { - content: "\f270"; -} - -i.icon.houzz:before { - content: "\f27c"; -} - -i.icon.vimeo:before { - content: "\f27d"; -} - -i.icon.black.tie:before { - content: "\f27e"; -} - -i.icon.fonticons:before { - content: "\f280"; -} - -i.icon.reddit.alien:before { - content: "\f281"; -} - -i.icon.microsoft.edge:before { - content: "\f282"; -} - -i.icon.codiepie:before { - content: "\f284"; -} - -i.icon.modx:before { - content: "\f285"; -} - -i.icon.fort.awesome:before { - content: "\f286"; -} - -i.icon.product.hunt:before { - content: "\f288"; -} - -i.icon.mixcloud:before { - content: "\f289"; -} - -i.icon.scribd:before { - content: "\f28a"; -} - -i.icon.gitlab:before { - content: "\f296"; -} - -i.icon.wpbeginner:before { - content: "\f297"; -} - -i.icon.wpforms:before { - content: "\f298"; -} - -i.icon.envira.gallery:before { - content: "\f299"; -} - -i.icon.glide:before { - content: "\f2a5"; -} - -i.icon.glide.g:before { - content: "\f2a6"; -} - -i.icon.viadeo:before { - content: "\f2a9"; -} - -i.icon.viadeo.square:before { - content: "\f2aa"; -} - -i.icon.snapchat:before { - content: "\f2ab"; -} - -i.icon.snapchat.ghost:before { - content: "\f2ac"; -} - -i.icon.snapchat.square:before { - content: "\f2ad"; -} - -i.icon.pied.piper.hat:before { - content: "\f2ae"; -} - -i.icon.first.order:before { - content: "\f2b0"; -} - -i.icon.yoast:before { - content: "\f2b1"; -} - -i.icon.themeisle:before { - content: "\f2b2"; -} - -i.icon.google.plus.circle:before { - content: "\f2b3"; -} - -i.icon.font.awesome:before { - content: "\f2b4"; -} - -i.icon.linode:before { - content: "\f2b8"; -} - -i.icon.quora:before { - content: "\f2c4"; -} - -i.icon.free.code.camp:before { - content: "\f2c5"; -} - -i.icon.telegram:before { - content: "\f2c6"; -} - -i.icon.bandcamp:before { - content: "\f2d5"; -} - -i.icon.grav:before { - content: "\f2d6"; -} - -i.icon.etsy:before { - content: "\f2d7"; -} - -i.icon.imdb:before { - content: "\f2d8"; -} - -i.icon.ravelry:before { - content: "\f2d9"; -} - -i.icon.eercast:before { - content: "\f2da"; -} - -i.icon.superpowers:before { - content: "\f2dd"; -} - -i.icon.wpexplorer:before { - content: "\f2de"; -} - -i.icon.meetup:before { - content: "\f2e0"; -} - -/******************************* - Aliases -*******************************/ - -i.icon.like:before { - content: "\f004"; -} - -i.icon.favorite:before { - content: "\f005"; -} - -i.icon.video:before { - content: "\f008"; -} - -i.icon.check:before { - content: "\f00c"; -} - -i.icon.close:before { - content: "\f00d"; -} - -i.icon.cancel:before { - content: "\f00d"; -} - -i.icon.delete:before { - content: "\f00d"; -} - -i.icon.x:before { - content: "\f00d"; -} - -i.icon.zoom.in:before { - content: "\f00e"; -} - -i.icon.magnify:before { - content: "\f00e"; -} - -i.icon.shutdown:before { - content: "\f011"; -} - -i.icon.clock:before { - content: "\f017"; -} - -i.icon.time:before { - content: "\f017"; -} - -i.icon.play.circle.outline:before { - content: "\f01d"; -} - -i.icon.headphone:before { - content: "\f025"; -} - -i.icon.camera:before { - content: "\f030"; -} - -i.icon.video.camera:before { - content: "\f03d"; -} - -i.icon.picture:before { - content: "\f03e"; -} - -i.icon.pencil:before { - content: "\f040"; -} - -i.icon.compose:before { - content: "\f040"; -} - -i.icon.point:before { - content: "\f041"; -} - -i.icon.tint:before { - content: "\f043"; -} - -i.icon.signup:before { - content: "\f044"; -} - -i.icon.plus.circle:before { - content: "\f055"; -} - -i.icon.question.circle:before { - content: "\f059"; -} - -i.icon.dont:before { - content: "\f05e"; -} - -i.icon.minimize:before { - content: "\f066"; -} - -i.icon.add:before { - content: "\f067"; -} - -i.icon.exclamation.circle:before { - content: "\f06a"; -} - -i.icon.attention:before { - content: "\f06a"; -} - -i.icon.eye:before { - content: "\f06e"; -} - -i.icon.exclamation.triangle:before { - content: "\f071"; -} - -i.icon.shuffle:before { - content: "\f074"; -} - -i.icon.chat:before { - content: "\f075"; -} - -i.icon.cart:before { - content: "\f07a"; -} - -i.icon.shopping.cart:before { - content: "\f07a"; -} - -i.icon.bar.graph:before { - content: "\f080"; -} - -i.icon.key:before { - content: "\f084"; -} - -i.icon.cogs:before { - content: "\f085"; -} - -i.icon.discussions:before { - content: "\f086"; -} - -i.icon.like.outline:before { - content: "\f087"; -} - -i.icon.dislike.outline:before { - content: "\f088"; -} - -i.icon.heart.outline:before { - content: "\f08a"; -} - -i.icon.log.out:before { - content: "\f08b"; -} - -i.icon.thumb.tack:before { - content: "\f08d"; -} - -i.icon.winner:before { - content: "\f091"; -} - -i.icon.phone:before { - content: "\f095"; -} - -i.icon.bookmark.outline:before { - content: "\f097"; -} - -i.icon.phone.square:before { - content: "\f098"; -} - -i.icon.credit.card:before { - content: "\f09d"; -} - -i.icon.hdd.outline:before { - content: "\f0a0"; -} - -i.icon.bullhorn:before { - content: "\f0a1"; -} - -i.icon.bell.outline:before { - content: "\f0a2"; -} - -i.icon.hand.outline.right:before { - content: "\f0a4"; -} - -i.icon.hand.outline.left:before { - content: "\f0a5"; -} - -i.icon.hand.outline.up:before { - content: "\f0a6"; -} - -i.icon.hand.outline.down:before { - content: "\f0a7"; -} - -i.icon.globe:before { - content: "\f0ac"; -} - -i.icon.wrench:before { - content: "\f0ad"; -} - -i.icon.briefcase:before { - content: "\f0b1"; -} - -i.icon.group:before { - content: "\f0c0"; -} - -i.icon.linkify:before { - content: "\f0c1"; -} - -i.icon.chain:before { - content: "\f0c1"; -} - -i.icon.flask:before { - content: "\f0c3"; -} - -i.icon.sidebar:before { - content: "\f0c9"; -} - -i.icon.bars:before { - content: "\f0c9"; -} - -i.icon.list.ul:before { - content: "\f0ca"; -} - -i.icon.list.ol:before { - content: "\f0cb"; -} - -i.icon.numbered.list:before { - content: "\f0cb"; -} - -i.icon.magic:before { - content: "\f0d0"; -} - -i.icon.truck:before { - content: "\f0d1"; -} - -i.icon.currency:before { - content: "\f0d6"; -} - -i.icon.triangle.down:before { - content: "\f0d7"; -} - -i.icon.dropdown:before { - content: "\f0d7"; -} - -i.icon.triangle.up:before { - content: "\f0d8"; -} - -i.icon.triangle.left:before { - content: "\f0d9"; -} - -i.icon.triangle.right:before { - content: "\f0da"; -} - -i.icon.envelope:before { - content: "\f0e0"; -} - -i.icon.conversation:before { - content: "\f0e6"; -} - -i.icon.rain:before { - content: "\f0e9"; -} - -i.icon.clipboard:before { - content: "\f0ea"; -} - -i.icon.lightbulb:before { - content: "\f0eb"; -} - -i.icon.bell:before { - content: "\f0f3"; -} - -i.icon.ambulance:before { - content: "\f0f9"; -} - -i.icon.medkit:before { - content: "\f0fa"; -} - -i.icon.fighter.jet:before { - content: "\f0fb"; -} - -i.icon.beer:before { - content: "\f0fc"; -} - -i.icon.plus.square:before { - content: "\f0fe"; -} - -i.icon.computer:before { - content: "\f108"; -} - -i.icon.circle.outline:before { - content: "\f10c"; -} - -i.icon.gamepad:before { - content: "\f11b"; -} - -i.icon.star.half.full:before { - content: "\f123"; -} - -i.icon.broken.chain:before { - content: "\f127"; -} - -i.icon.question:before { - content: "\f128"; -} - -i.icon.exclamation:before { - content: "\f12a"; -} - -i.icon.eraser:before { - content: "\f12d"; -} - -i.icon.microphone:before { - content: "\f130"; -} - -i.icon.microphone.slash:before { - content: "\f131"; -} - -i.icon.shield:before { - content: "\f132"; -} - -i.icon.target:before { - content: "\f140"; -} - -i.icon.play.circle:before { - content: "\f144"; -} - -i.icon.pencil.square:before { - content: "\f14b"; -} - -i.icon.eur:before { - content: "\f153"; -} - -i.icon.gbp:before { - content: "\f154"; -} - -i.icon.usd:before { - content: "\f155"; -} - -i.icon.inr:before { - content: "\f156"; -} - -i.icon.cny:before { - content: "\f157"; -} - -i.icon.rmb:before { - content: "\f157"; -} - -i.icon.jpy:before { - content: "\f157"; -} - -i.icon.rouble:before { - content: "\f158"; -} - -i.icon.rub:before { - content: "\f158"; -} - -i.icon.krw:before { - content: "\f159"; -} - -i.icon.btc:before { - content: "\f15a"; -} - -i.icon.gratipay:before { - content: "\f184"; -} - -i.icon.zip:before { - content: "\f187"; -} - -i.icon.dot.circle.outline:before { - content: "\f192"; -} - -i.icon.try:before { - content: "\f195"; -} - -i.icon.graduation:before { - content: "\f19d"; -} - -i.icon.circle.outline:before { - content: "\f1db"; -} - -i.icon.sliders:before { - content: "\f1de"; -} - -i.icon.weixin:before { - content: "\f1d7"; -} - -i.icon.tty:before { - content: "\f1e4"; -} - -i.icon.teletype:before { - content: "\f1e4"; -} - -i.icon.binoculars:before { - content: "\f1e5"; -} - -i.icon.power.cord:before { - content: "\f1e6"; -} - -i.icon.wi-fi:before { - content: "\f1eb"; -} - -i.icon.visa.card:before { - content: "\f1f0"; -} - -i.icon.mastercard.card:before { - content: "\f1f1"; -} - -i.icon.discover.card:before { - content: "\f1f2"; -} - -i.icon.amex:before { - content: "\f1f3"; -} - -i.icon.american.express.card:before { - content: "\f1f3"; -} - -i.icon.stripe.card:before { - content: "\f1f5"; -} - -i.icon.bell.slash:before { - content: "\f1f6"; -} - -i.icon.bell.slash.outline:before { - content: "\f1f7"; -} - -i.icon.area.graph:before { - content: "\f1fe"; -} - -i.icon.pie.graph:before { - content: "\f200"; -} - -i.icon.line.graph:before { - content: "\f201"; -} - -i.icon.cc:before { - content: "\f20a"; -} - -i.icon.sheqel:before { - content: "\f20b"; -} - -i.icon.ils:before { - content: "\f20b"; -} - -i.icon.plus.cart:before { - content: "\f217"; -} - -i.icon.arrow.down.cart:before { - content: "\f218"; -} - -i.icon.detective:before { - content: "\f21b"; -} - -i.icon.venus:before { - content: "\f221"; -} - -i.icon.mars:before { - content: "\f222"; -} - -i.icon.mercury:before { - content: "\f223"; -} - -i.icon.intersex:before { - content: "\f224"; -} - -i.icon.venus.double:before { - content: "\f226"; -} - -i.icon.female.homosexual:before { - content: "\f226"; -} - -i.icon.mars.double:before { - content: "\f227"; -} - -i.icon.male.homosexual:before { - content: "\f227"; -} - -i.icon.venus.mars:before { - content: "\f228"; -} - -i.icon.mars.stroke:before { - content: "\f229"; -} - -i.icon.mars.alternate:before { - content: "\f229"; -} - -i.icon.mars.vertical:before { - content: "\f22a"; -} - -i.icon.mars.stroke.vertical:before { - content: "\f22a"; -} - -i.icon.mars.horizontal:before { - content: "\f22b"; -} - -i.icon.mars.stroke.horizontal:before { - content: "\f22b"; -} - -i.icon.asexual:before { - content: "\f22d"; -} - -i.icon.facebook.official:before { - content: "\f230"; -} - -i.icon.user.plus:before { - content: "\f234"; -} - -i.icon.user.times:before { - content: "\f235"; -} - -i.icon.user.close:before { - content: "\f235"; -} - -i.icon.user.cancel:before { - content: "\f235"; -} - -i.icon.user.delete:before { - content: "\f235"; -} - -i.icon.user.x:before { - content: "\f235"; -} - -i.icon.bed:before { - content: "\f236"; -} - -i.icon.yc:before { - content: "\f23b"; -} - -i.icon.ycombinator:before { - content: "\f23b"; -} - -i.icon.battery.four:before { - content: "\f240"; -} - -i.icon.battery.three:before { - content: "\f241"; -} - -i.icon.battery.three.quarters:before { - content: "\f241"; -} - -i.icon.battery.two:before { - content: "\f242"; -} - -i.icon.battery.half:before { - content: "\f242"; -} - -i.icon.battery.one:before { - content: "\f243"; -} - -i.icon.battery.quarter:before { - content: "\f243"; -} - -i.icon.battery.zero:before { - content: "\f244"; -} - -i.icon.i.cursor:before { - content: "\f246"; -} - -i.icon.jcb:before { - content: "\f24b"; -} - -i.icon.japan.credit.bureau.card:before { - content: "\f24b"; -} - -i.icon.diners.club.card:before { - content: "\f24c"; -} - -i.icon.balance:before { - content: "\f24e"; -} - -i.icon.hourglass.outline:before { - content: "\f250"; -} - -i.icon.hourglass.zero:before { - content: "\f250"; -} - -i.icon.hourglass.one:before { - content: "\f251"; -} - -i.icon.hourglass.two:before { - content: "\f252"; -} - -i.icon.hourglass.three:before { - content: "\f253"; -} - -i.icon.hourglass.four:before { - content: "\f254"; -} - -i.icon.grab:before { - content: "\f255"; -} - -i.icon.hand.victory:before { - content: "\f25b"; -} - -i.icon.tm:before { - content: "\f25c"; -} - -i.icon.r.circle:before { - content: "\f25d"; -} - -i.icon.television:before { - content: "\f26c"; -} - -i.icon.five.hundred.pixels:before { - content: "\f26e"; -} - -i.icon.calendar.plus:before { - content: "\f271"; +i.icon.yen.sign:before { + content: "\f157"; } -i.icon.calendar.minus:before { - content: "\f272"; -} +/* Date & Time */ -i.icon.calendar.times:before { - content: "\f273"; +i.icon.calendar.check.outline:before { + content: "\f311"; } i.icon.calendar.check:before { - content: "\f274"; + content: "\f274"; } -i.icon.factory:before { - content: "\f275"; +i.icon.calendar.minus.outline:before { + content: "\f312"; } -i.icon.commenting:before { - content: "\f27a"; +i.icon.calendar.minus:before { + content: "\f272"; } -i.icon.commenting.outline:before { - content: "\f27b"; +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"; + content: "\f282"; } -i.icon.ms.edge:before { - content: "\f282"; +i.icon.elementor:before { + content: "\f430"; } -i.icon.wordpress.beginner:before { - content: "\f297"; +i.icon.ember:before { + content: "\f423"; } -i.icon.wordpress.forms:before { - content: "\f298"; +i.icon.empire:before { + content: "\f1d1"; } i.icon.envira:before { - content: "\f299"; + content: "\f299"; } -i.icon.question.circle.outline:before { - content: "\f29c"; +i.icon.erlang:before { + content: "\f39d"; } -i.icon.assistive.listening.devices:before { - content: "\f2a2"; +i.icon.ethereum:before { + content: "\f42e"; } -i.icon.als:before { - content: "\f2a2"; +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"; + 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"; + content: "\f2a3"; } -i.icon.deaf:before { - content: "\f2a4"; +i.icon.asl:before { + content: "\f2a3"; } -i.icon.american.sign.language.interpreting:before { - content: "\f2a3"; +i.icon.assistive.listening.devices:before { + content: "\f2a2"; } -i.icon.hard.of.hearing:before { - content: "\f2a4"; +i.icon.attach:before { + content: "\f0c6"; } -i.icon.signing:before { - content: "\f2a7"; +i.icon.attention:before { + content: "\f06a"; } -i.icon.new.pied.piper:before { - content: "\f2ae"; +i.icon.balance:before { + content: "\f24e"; } -i.icon.theme.isle:before { - content: "\f2b2"; +i.icon.bar.chart:before { + content: "\f080"; } -i.icon.google.plus.official:before { - content: "\f2b3"; +i.icon.bar.graph:before { + content: "\f080"; } -i.icon.fa:before { - content: "\f2b4"; +i.icon.bar:before { + content: "\f0fc"; } -i.icon.vcard:before { - content: "\f2bb"; +i.icon.bathtub:before { + content: "\f2cd"; } -i.icon.vcard.outline:before { - content: "\f2bc"; +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"; + content: "\f2c2"; } -i.icon.drivers.license.outline:before { - content: "\f2c3"; +i.icon.dropdown:before { + content: "\f0d7"; } -i.icon.thermometer:before { - content: "\f2c7"; +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"; + content: "\f2cd"; } -i.icon.bath: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: "\f2d3"; + content: "\f410"; } -i.icon.times.rectangle.outline:before { - content: "\f2d4"; +i.icon.write:before { + content: "\f303"; +} + +i.icon.youtube.play:before { + content: "\f167"; } /******************************* - Site Overrides + Site Overrides *******************************/ /*! - * # Semantic UI 2.2.10 - Image - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # Semantic UI 2.3.0 - Image +* http://github.com/semantic-org/semantic-ui/ +* +* +* Released under the MIT license +* http://opensource.org/licenses/MIT +* +*/ /******************************* - Image + Image *******************************/ .ui.image { - position: relative; - display: inline-block; - vertical-align: middle; - max-width: 100%; - background-color: transparent; + position: relative; + display: inline-block; + vertical-align: middle; + max-width: 100%; + background-color: transparent; } img.ui.image { - display: block; + display: block; } .ui.image svg, .ui.image img { - display: block; - max-width: 100%; - height: auto; + display: block; + max-width: 100%; + height: auto; } /******************************* - States + States *******************************/ .ui.hidden.images, .ui.hidden.image { - display: none; + display: none; } .ui.hidden.transition.images, .ui.hidden.transition.image { - display: block; - visibility: hidden; + display: block; + visibility: hidden; +} + +.ui.images > .hidden.transition { + display: inline-block; + visibility: hidden; } .ui.disabled.images, .ui.disabled.image { - cursor: default; - opacity: 0.45; + cursor: default; + opacity: 0.45; } /******************************* - Variations + Variations *******************************/ /*-------------- - Inline + Inline ---------------*/ .ui.inline.image, .ui.inline.image svg, .ui.inline.image img { - display: inline-block; + display: inline-block; } /*------------------ - Vertical Aligned + 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; + 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; + 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; + display: inline-block; + vertical-align: bottom; } /*-------------- - Rounded + Rounded ---------------*/ .ui.rounded.images .image, .ui.rounded.image, .ui.rounded.images .image > *, .ui.rounded.image > * { - border-radius: 0.3125em; + border-radius: 0.3125em; } /*-------------- - Bordered + Bordered ---------------*/ .ui.bordered.images .image, @@ -11513,27 +13308,27 @@ img.ui.image { .ui.bordered.image img, .ui.bordered.image svg, img.ui.bordered.image { - border: 1px solid rgba(0, 0, 0, 0.1); + border: 1px solid rgba(0, 0, 0, 0.1); } /*-------------- - Circular + Circular ---------------*/ .ui.circular.images, .ui.circular.image { - overflow: hidden; + overflow: hidden; } .ui.circular.images .image, .ui.circular.image, .ui.circular.images .image > *, .ui.circular.image > * { - border-radius: 500rem; + border-radius: 500rem; } /*-------------- - Fluid + Fluid ---------------*/ .ui.fluid.images, @@ -11542,13 +13337,13 @@ img.ui.bordered.image { .ui.fluid.images svg, .ui.fluid.image svg, .ui.fluid.image img { - display: block; - width: 100%; - height: auto; + display: block; + width: 100%; + height: auto; } /*-------------- - Avatar + Avatar ---------------*/ .ui.avatar.images .image, @@ -11557,2060 +13352,2068 @@ img.ui.bordered.image { .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; + margin-right: 0.25em; + display: inline-block; + width: 2em; + height: 2em; + border-radius: 500rem; } /*------------------- - Spaced + Spaced --------------------*/ .ui.spaced.image { - display: inline-block !important; - margin-left: 0.5em; - margin-right: 0.5em; + display: inline-block !important; + margin-left: 0.5em; + margin-right: 0.5em; } .ui[class*="left spaced"].image { - margin-left: 0.5em; - margin-right: 0em; + margin-left: 0.5em; + margin-right: 0em; } .ui[class*="right spaced"].image { - margin-left: 0em; - margin-right: 0.5em; + margin-left: 0em; + margin-right: 0.5em; } /*------------------- - Floated + Floated --------------------*/ .ui.floated.image, .ui.floated.images { - float: left; - margin-right: 1em; - margin-bottom: 1em; + 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; + float: right; + margin-right: 0em; + margin-bottom: 1em; + margin-left: 1em; } .ui.floated.images:last-child, .ui.floated.image:last-child { - margin-bottom: 0em; + margin-bottom: 0em; } .ui.centered.images, .ui.centered.image { - margin-left: auto; - margin-right: auto; + margin-left: auto; + margin-right: auto; } /*-------------- - Sizes + Sizes ---------------*/ .ui.mini.images .image, .ui.mini.images img, .ui.mini.images svg, .ui.mini.image { - width: 35px; - height: auto; - font-size: 0.78571429rem; + 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; + 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; + 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; + 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; + 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; + 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; + 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; + width: 960px; + height: auto; + font-size: 1.71428571rem; } /******************************* - Groups + Groups *******************************/ .ui.images { - font-size: 0em; - margin: 0em -0.25rem 0rem; + 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; + display: inline-block; + margin: 0em 0.25rem 0.5rem; } /******************************* - Theme Overrides + Theme Overrides *******************************/ /******************************* - Site Overrides + Site Overrides *******************************/ /*! - * # Semantic UI 2.2.10 - Input - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # Semantic UI 2.3.0 - Input +* http://github.com/semantic-org/semantic-ui/ +* +* +* Released under the MIT license +* http://opensource.org/licenses/MIT +* +*/ /******************************* - Standard + Standard *******************************/ /*-------------------- - Inputs + Inputs ---------------------*/ .ui.input { - position: relative; - font-weight: normal; - font-style: normal; - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - color: rgba(0, 0, 0, 0.87); + 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; - -webkit-flex: 1 0 auto; - -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: box-shadow 0.1s ease, border-color 0.1s ease; - transition: box-shadow 0.1s ease, border-color 0.1s ease; - box-shadow: none; +.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 + Placeholder ---------------------*/ /* browsers require these rules separate */ -.ui.input input::-webkit-input-placeholder { - color: rgba(191, 191, 191, 0.87); +.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::-moz-placeholder { + color: rgba(191, 191, 191, 0.87); } -.ui.input input:-ms-input-placeholder { - color: rgba(191, 191, 191, 0.87); +.ui.input > input:-ms-input-placeholder { + color: rgba(191, 191, 191, 0.87); } /******************************* - States + States *******************************/ /*-------------------- - Disabled + Disabled ---------------------*/ .ui.disabled.input, -.ui.input input[disabled] { - opacity: 0.45; +.ui.input:not(.disabled) input[disabled] { + opacity: 0.45; } -.ui.disabled.input input, -.ui.input input[disabled] { - pointer-events: none; +.ui.disabled.input > input, +.ui.input:not(.disabled) input[disabled] { + pointer-events: none; } /*-------------------- - Active + Active ---------------------*/ -.ui.input input: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); - box-shadow: none; + 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 + 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); + 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; - box-shadow: 0px 0px 0px 1px transparent; + 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 + Focus ---------------------*/ -.ui.input.focus input, -.ui.input input:focus { - border-color: #85B7D9; - background: #FFFFFF; - color: rgba(0, 0, 0, 0.8); - box-shadow: none; +.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::-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::-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); +.ui.input.focus > input:-ms-input-placeholder, +.ui.input > input:focus:-ms-input-placeholder { + color: rgba(115, 115, 115, 0.87); } /*-------------------- - Error + Error ---------------------*/ -.ui.input.error input { - background-color: #FFF6F6; - border-color: #E0B4B4; - color: #9F3A38; - box-shadow: none; +.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::-webkit-input-placeholder { + color: #e7bdbc; } -.ui.input.error input::-moz-placeholder { - color: #e7bdbc; +.ui.input.error > input::-moz-placeholder { + color: #e7bdbc; } -.ui.input.error input:-ms-input-placeholder { - color: #e7bdbc !important; +.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::-webkit-input-placeholder { + color: #da9796; } -.ui.input.error input:focus::-moz-placeholder { - color: #da9796; +.ui.input.error > input:focus::-moz-placeholder { + color: #da9796; } -.ui.input.error input:focus:-ms-input-placeholder { - color: #da9796 !important; +.ui.input.error > input:focus:-ms-input-placeholder { + color: #da9796 !important; } /******************************* - Variations + Variations *******************************/ /*-------------------- - Transparent + Transparent ---------------------*/ -.ui.transparent.input input { - border-color: transparent !important; - background-color: transparent !important; - padding: 0em !important; - box-shadow: none !important; +.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; + width: 1.1em; } .ui.transparent.icon.input > input { - padding-left: 0em !important; - padding-right: 2em !important; + padding-left: 0em !important; + padding-right: 2em !important; } .ui.transparent[class*="left icon"].input > input { - padding-left: 2em !important; - padding-right: 0em !important; + padding-left: 2em !important; + padding-right: 0em !important; } /* Transparent Inverted */ .ui.transparent.inverted.input { - color: #FFFFFF; + color: #FFFFFF; } -.ui.transparent.inverted.input input { - color: inherit; +.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::-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::-moz-placeholder { + color: rgba(255, 255, 255, 0.5); } -.ui.transparent.inverted.input input:-ms-input-placeholder { - color: rgba(255, 255, 255, 0.5); +.ui.transparent.inverted.input > input:-ms-input-placeholder { + color: rgba(255, 255, 255, 0.5); } /*-------------------- - Icon + 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; + 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; + pointer-events: none; } -.ui.icon.input input { - padding-right: 2.67142857em !important; +.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; + left: 0; + position: absolute; + text-align: center; + top: 50%; + width: 100%; + margin-top: -0.5em; } .ui.icon.input > i.link.icon { - cursor: pointer; + cursor: pointer; } .ui.icon.input > i.circular.icon { - top: 0.35em; - right: 0.5em; + 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; + 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; + right: auto; + left: 0.5em; } .ui[class*="left icon"].input > input { - padding-left: 2.67142857em !important; - padding-right: 1em !important; + padding-left: 2.67142857em !important; + padding-right: 1em !important; } /* Focus */ .ui.icon.input > input:focus ~ i.icon { - opacity: 1; + opacity: 1; } /*-------------------- - Labeled + Labeled ---------------------*/ /* Adjacent Label */ .ui.labeled.input > .label { - -webkit-box-flex: 0; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - margin: 0; - font-size: 1em; + -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; + 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; + 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; + 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; + 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 { + 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 + .label { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; } -.ui[class*="right labeled"].input input:focus { - border-right-color: #85B7D9 !important; +.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; + 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"]: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; + padding-right: 3.25em !important; } .ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"]) > .icon { - margin-right: 1.25em; + margin-right: 1.25em; } /* Left Labeled */ -.ui[class*="left corner labeled"].labeled.input input { - padding-left: 2.5em !important; +.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; + padding-left: 3.25em !important; } .ui[class*="left corner labeled"].icon.input > .icon { - margin-left: 1.25em; + margin-left: 1.25em; } /* Corner Label Position */ .ui.input > .ui.corner.label { - top: 1px; - right: 1px; + top: 1px; + right: 1px; } .ui.input > .ui.left.corner.label { - right: auto; - left: 1px; + right: auto; + left: 1px; } /*-------------------- - Action + Action ---------------------*/ .ui.action.input > .button, .ui.action.input > .buttons { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-flex: 0; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; + 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; + 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; + 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; + 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; + border-radius: 0px 0.28571429rem 0.28571429rem 0px; } /* Input Focus */ -.ui.action.input:not([class*="left action"]) input:focus { - border-right-color: #85B7D9 !important; +.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; + 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; + 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; + border-radius: 0.28571429rem 0px 0px 0.28571429rem; } /* Input Focus */ .ui[class*="left action"].input > input:focus { - border-left-color: #85B7D9 !important; + border-left-color: #85B7D9 !important; } /*-------------------- - Inverted + Inverted ---------------------*/ /* Standard */ -.ui.inverted.input input { - border: none; +.ui.inverted.input > input { + border: none; } /*-------------------- - Fluid + Fluid ---------------------*/ .ui.fluid.input { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; + display: -webkit-box; + display: -ms-flexbox; + display: flex; } .ui.fluid.input > input { - width: 0px !important; + width: 0px !important; } /*-------------------- - Size + Size ---------------------*/ .ui.mini.input { - font-size: 0.78571429em; + font-size: 0.78571429em; } .ui.small.input { - font-size: 0.92857143em; + font-size: 0.92857143em; } .ui.input { - font-size: 1em; + font-size: 1em; } .ui.large.input { - font-size: 1.14285714em; + font-size: 1.14285714em; } .ui.big.input { - font-size: 1.28571429em; + font-size: 1.28571429em; } .ui.huge.input { - font-size: 1.42857143em; + font-size: 1.42857143em; } .ui.massive.input { - font-size: 1.71428571em; + font-size: 1.71428571em; } /******************************* - Theme Overrides + Theme Overrides *******************************/ /******************************* - Site Overrides + Site Overrides *******************************/ /*! - * # Semantic UI 2.2.10 - Label - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # Semantic UI 2.3.0 - Label +* http://github.com/semantic-org/semantic-ui/ +* +* +* Released under the MIT license +* http://opensource.org/licenses/MIT +* +*/ /******************************* - Label + 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; + 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; + margin-left: 0em; } .ui.label:last-child { - margin-right: 0em; + margin-right: 0em; } /* Link */ a.ui.label { - cursor: pointer; + 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; + cursor: pointer; + color: inherit; + opacity: 0.5; + -webkit-transition: 0.1s opacity ease; + transition: 0.1s opacity ease; } .ui.label > a:hover { - opacity: 1; + opacity: 1; } /* Image */ .ui.label > img { - width: auto !important; - vertical-align: middle; - height: 2.1666em !important; + width: auto !important; + vertical-align: middle; + height: 2.1666em !important; } /* Icon */ .ui.label > .icon { - width: auto; - margin: 0em 0.75em 0em 0em; + 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; + 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; + 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; + 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; + opacity: 1; } /*------------------- - Group + Group --------------------*/ .ui.labels > .label { - margin: 0em 0.5em 0.5em 0em; + margin: 0em 0.5em 0.5em 0em; } /*------------------- - Coupling + Coupling --------------------*/ .ui.header > .ui.label { - margin-top: -0.29165em; + 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; + 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; + border-top-right-radius: 0; } .ui.top.attached.segment > .ui.bottom.left.attached.label { - border-bottom-left-radius: 0; + border-bottom-left-radius: 0; } .ui.top.attached.segment > .ui.bottom.right.attached.label { - border-bottom-right-radius: 0; + 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; + margin-top: 2rem !important; } .ui.bottom.attached.label:first-child ~ :last-child:not(.attached) { - margin-top: 0em; - margin-bottom: 2rem !important; + margin-top: 0em; + margin-bottom: 2rem !important; } /******************************* - Types + 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; - box-shadow: none; + 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; + 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; + 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 + 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; + 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; + 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; - box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3); - border-radius: 500rem; + 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 + 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; + 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; + 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; + 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; + 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; + 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; + 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; + left: -0.78571429em; } /* Segment */ .ui.segment > .ui.corner.label { - top: -1px; - right: -1px; + top: -1px; + right: -1px; } .ui.segment > .ui.left.corner.label { - right: auto; - left: -1px; + right: auto; + left: -1px; } /*------------------- - Ribbon + 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); + 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; + 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; + 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 ); + 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; + 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; + 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; + position: absolute; + top: 1rem; } .ui.card .image > .ui.ribbon.label, .ui.image > .ui.ribbon.label { - left: calc( 0.05rem - 1.2em ); + 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; + 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 ); + 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; + left: calc(100% + 0.78571429em + 1.2em ); + padding-left: 0.833em; } /*------------------- - Attached + 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; + 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; + 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; + 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; + 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; + 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; + top: auto; + bottom: 0em; + left: auto; + right: 0em; + width: auto; + border-radius: 0.28571429rem 0em 0.21428571rem 0em; } /******************************* - States + States *******************************/ /*------------------- - Disabled + Disabled --------------------*/ .ui.label.disabled { - opacity: 0.5; + opacity: 0.5; } /*------------------- - Hover + 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); + 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); + color: rgba(0, 0, 0, 0.8); } /*------------------- - Active + Active --------------------*/ .ui.active.label { - background-color: #D0D0D0; - border-color: #D0D0D0; - background-image: none; - color: rgba(0, 0, 0, 0.95); + 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); + background-color: #D0D0D0; + background-image: none; + color: rgba(0, 0, 0, 0.95); } /*------------------- - Active Hover + 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); + 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); + background-color: #C8C8C8; + background-image: none; + color: rgba(0, 0, 0, 0.95); } /*------------------- - Visible + Visible --------------------*/ .ui.labels.visible .label, .ui.label.visible:not(.dropdown) { - display: inline-block !important; + display: inline-block !important; } /*------------------- - Hidden + Hidden --------------------*/ .ui.labels.hidden .label, .ui.label.hidden { - display: none !important; + display: none !important; } /******************************* - Variations + Variations *******************************/ /*------------------- - Colors + Colors --------------------*/ /*--- Red ---*/ .ui.red.labels .label, .ui.red.label { - background-color: #DB2828 !important; - border-color: #DB2828 !important; - color: #FFFFFF !important; + 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; + 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; + background-color: transparent !important; } /* Ribbon */ .ui.red.ribbon.label { - border-color: #b21e1e !important; + border-color: #b21e1e !important; } /* Basic */ .ui.basic.red.label { - background-color: #FFFFFF !important; - color: #DB2828 !important; - border-color: #DB2828 !important; + 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; + 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; + 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; + 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; + background-color: transparent !important; } /* Ribbon */ .ui.orange.ribbon.label { - border-color: #cf590c !important; + border-color: #cf590c !important; } /* Basic */ .ui.basic.orange.label { - background-color: #FFFFFF !important; - color: #F2711C !important; - border-color: #F2711C !important; + 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; + 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; + 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; + 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; + background-color: transparent !important; } /* Ribbon */ .ui.yellow.ribbon.label { - border-color: #cd9903 !important; + border-color: #cd9903 !important; } /* Basic */ .ui.basic.yellow.label { - background-color: #FFFFFF !important; - color: #FBBD08 !important; - border-color: #FBBD08 !important; + 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; + 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; + 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; + 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; + background-color: transparent !important; } /* Ribbon */ .ui.olive.ribbon.label { - border-color: #198f35 !important; + border-color: #198f35 !important; } /* Basic */ .ui.basic.olive.label { - background-color: #FFFFFF !important; - color: #B5CC18 !important; - border-color: #B5CC18 !important; + 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; + 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; + 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; + 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; + background-color: transparent !important; } /* Ribbon */ .ui.green.ribbon.label { - border-color: #198f35 !important; + border-color: #198f35 !important; } /* Basic */ .ui.basic.green.label { - background-color: #FFFFFF !important; - color: #21BA45 !important; - border-color: #21BA45 !important; + 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; + 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; + 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; + 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; + background-color: transparent !important; } /* Ribbon */ .ui.teal.ribbon.label { - border-color: #00827c !important; + border-color: #00827c !important; } /* Basic */ .ui.basic.teal.label { - background-color: #FFFFFF !important; - color: #00B5AD !important; - border-color: #00B5AD !important; + 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; + 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; + 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; + 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; + background-color: transparent !important; } /* Ribbon */ .ui.blue.ribbon.label { - border-color: #1a69a4 !important; + border-color: #1a69a4 !important; } /* Basic */ .ui.basic.blue.label { - background-color: #FFFFFF !important; - color: #2185D0 !important; - border-color: #2185D0 !important; + 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; + 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; + 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; + 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; + background-color: transparent !important; } /* Ribbon */ .ui.violet.ribbon.label { - border-color: #502aa1 !important; + border-color: #502aa1 !important; } /* Basic */ .ui.basic.violet.label { - background-color: #FFFFFF !important; - color: #6435C9 !important; - border-color: #6435C9 !important; + 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; + 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; + 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; + 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; + background-color: transparent !important; } /* Ribbon */ .ui.purple.ribbon.label { - border-color: #82299f !important; + border-color: #82299f !important; } /* Basic */ .ui.basic.purple.label { - background-color: #FFFFFF !important; - color: #A333C8 !important; - border-color: #A333C8 !important; + 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; + 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; + 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; + 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; + background-color: transparent !important; } /* Ribbon */ .ui.pink.ribbon.label { - border-color: #c71f7e !important; + border-color: #c71f7e !important; } /* Basic */ .ui.basic.pink.label { - background-color: #FFFFFF !important; - color: #E03997 !important; - border-color: #E03997 !important; + 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; + 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; + 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; + 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; + background-color: transparent !important; } /* Ribbon */ .ui.brown.ribbon.label { - border-color: #805031 !important; + border-color: #805031 !important; } /* Basic */ .ui.basic.brown.label { - background-color: #FFFFFF !important; - color: #A5673F !important; - border-color: #A5673F !important; + 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; + 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; + 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; + 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; + background-color: transparent !important; } /* Ribbon */ .ui.grey.ribbon.label { - border-color: #805031 !important; + border-color: #805031 !important; } /* Basic */ .ui.basic.grey.label { - background-color: #FFFFFF !important; - color: #767676 !important; - border-color: #767676 !important; + 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; + 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; + 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; + 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; + background-color: transparent !important; } /* Ribbon */ .ui.black.ribbon.label { - border-color: #805031 !important; + border-color: #805031 !important; } /* Basic */ .ui.basic.black.label { - background-color: #FFFFFF !important; - color: #1B1C1D !important; - border-color: #1B1C1D !important; + 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; + background-color: #FFFFFF !important; + color: #27292a !important; + border-color: #27292a !important; } /*------------------- - Basic + Basic --------------------*/ .ui.basic.label { - background: none #FFFFFF; - border: 1px solid rgba(34, 36, 38, 0.15); - color: rgba(0, 0, 0, 0.87); - box-shadow: none; + 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; - box-shadow: 1px solid rgba(34, 36, 38, 0.15); - box-shadow: none; + 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; + border-color: inherit; } /*------------------- - Fluid + Fluid --------------------*/ .ui.label.fluid, .ui.fluid.labels > .label { - width: 100%; - box-sizing: border-box; + width: 100%; + -webkit-box-sizing: border-box; + box-sizing: border-box; } /*------------------- - Inverted + Inverted --------------------*/ .ui.inverted.labels .label, .ui.inverted.label { - color: rgba(255, 255, 255, 0.9) !important; + color: rgba(255, 255, 255, 0.9) !important; } /*------------------- - Horizontal + 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; + margin: 0em 0.5em 0em 0em; + padding: 0.4em 0.833em; + min-width: 3em; + text-align: center; } /*------------------- - Circular + 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; + 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; + min-width: 0em; + min-height: 0em; + overflow: hidden; + width: 0.5em; + height: 0.5em; + vertical-align: baseline; } /*------------------- - Pointing + Pointing --------------------*/ .ui.pointing.label { - position: relative; + position: relative; } .ui.attached.pointing.label { - position: absolute; + position: absolute; } .ui.pointing.label:before { - background-color: inherit; - background-image: inherit; - border-width: none; - border-style: solid; - border-color: inherit; + 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; + 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; + 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%; + 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; + 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%; + 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; + 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; + 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; + 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; + 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 */ @@ -13619,133 +15422,133 @@ a.ui.basic.label:hover { .ui.basic.pointing.label:before, .ui.basic[class*="pointing above"].label:before { - margin-top: -1px; + 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; + bottom: auto; + top: 100%; + margin-top: 1px; } /*--- Left ---*/ .ui.basic[class*="left pointing"].label:before { - top: 50%; - left: -1px; + top: 50%; + left: -1px; } /*--- Right ---*/ .ui.basic[class*="right pointing"].label:before { - top: 50%; - right: -1px; + top: 50%; + right: -1px; } /*------------------ - Floating Label + Floating Label -------------------*/ .ui.floating.label { - position: absolute; - z-index: 100; - top: -1em; - left: 100%; - margin: 0em 0em 0em -1.5em !important; + position: absolute; + z-index: 100; + top: -1em; + left: 100%; + margin: 0em 0em 0em -1.5em !important; } /*------------------- - Sizes + Sizes --------------------*/ .ui.mini.labels .label, .ui.mini.label { - font-size: 0.64285714rem; + font-size: 0.64285714rem; } .ui.tiny.labels .label, .ui.tiny.label { - font-size: 0.71428571rem; + font-size: 0.71428571rem; } .ui.small.labels .label, .ui.small.label { - font-size: 0.78571429rem; + font-size: 0.78571429rem; } .ui.labels .label, .ui.label { - font-size: 0.85714286rem; + font-size: 0.85714286rem; } .ui.large.labels .label, .ui.large.label { - font-size: 1rem; + font-size: 1rem; } .ui.big.labels .label, .ui.big.label { - font-size: 1.28571429rem; + font-size: 1.28571429rem; } .ui.huge.labels .label, .ui.huge.label { - font-size: 1.42857143rem; + font-size: 1.42857143rem; } .ui.massive.labels .label, .ui.massive.label { - font-size: 1.71428571rem; + font-size: 1.71428571rem; } /******************************* - Theme Overrides + Theme Overrides *******************************/ /******************************* - Site Overrides + Site Overrides *******************************/ /*! - * # Semantic UI 2.2.10 - List - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # Semantic UI 2.3.0 - List +* http://github.com/semantic-org/semantic-ui/ +* +* +* Released under the MIT license +* http://opensource.org/licenses/MIT +* +*/ /******************************* - List + List *******************************/ ul.ui.list, ol.ui.list, .ui.list { - list-style-type: none; - margin: 1em 0em; - padding: 0em 0em; + 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; + 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; + margin-bottom: 0em; + padding-bottom: 0em; } /******************************* - Content + Content *******************************/ /* List Item */ @@ -13754,37 +15557,37 @@ 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; + 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; + 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; + 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; + padding-bottom: 0em; } /* Child List */ @@ -13792,9 +15595,9 @@ ol.ui.list li:last-child, ul.ui.list ul, ol.ui.list ol, .ui.list .list { - clear: both; - margin: 0em; - padding: 0.75em 0em 0.25em 0.5em; + clear: both; + margin: 0em; + padding: 0.75em 0em 0.25em 0.5em; } /* Child Item */ @@ -13802,222 +15605,222 @@ ol.ui.list ol, ul.ui.list ul li, ol.ui.list ol li, .ui.list .list > .item { - padding: 0.14285714em 0em; - line-height: inherit; + 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: 0.07142857em; - padding-right: 0.28571429em; - vertical-align: top; - -webkit-transition: color 0.1s ease; - transition: color 0.1s ease; + 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; + 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; + 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; + padding-right: 0.5em; } .ui.list .list > .item > .image img, .ui.list > .item > .image img { - vertical-align: top; + 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; + display: inline-block; } /* Content */ .ui.list .list > .item > .content, .ui.list > .item > .content { - line-height: 1.14285714em; + 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; + 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; + display: inline-block; } .ui.list .list > .item > .content > .list, .ui.list > .item > .content > .list { - margin-left: 0em; - padding-left: 0em; + 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); + 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); + display: block; + color: rgba(0, 0, 0, 0.7); } /* Child Link */ .ui.list > .item a, .ui.list .list > .item a { - cursor: pointer; + cursor: pointer; } /* Linking Item */ .ui.list .list > a.item, .ui.list > a.item { - cursor: pointer; - color: #4183C4; + cursor: pointer; + color: #4183C4; } .ui.list .list > a.item:hover, .ui.list > a.item:hover { - color: #1e70bf; + 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); + 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; + cursor: pointer; + color: #4183C4 !important; } .ui.list .list > .item a.header:hover, .ui.list > .item a.header:hover { - color: #1e70bf !important; + color: #1e70bf !important; } /* Floated Content */ .ui[class*="left floated"].list { - float: left; + float: left; } .ui[class*="right floated"].list { - float: right; + float: right; } .ui.list .list > .item [class*="left floated"], .ui.list > .item [class*="left floated"] { - float: left; - margin: 0em 1em 0em 0em; + 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; + float: right; + margin: 0em 0em 0em 1em; } /******************************* - Coupling + 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; + 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; + border: none; + background: none; } .ui.menu .ui.list .list > .item:first-child, .ui.menu .ui.list > .item:first-child { - padding-top: 0em; + padding-top: 0em; } .ui.menu .ui.list .list > .item:last-child, .ui.menu .ui.list > .item:last-child { - padding-bottom: 0em; + padding-bottom: 0em; } /******************************* - Types + Types *******************************/ /*------------------- - Horizontal + Horizontal --------------------*/ .ui.horizontal.list { - display: inline-block; - font-size: 0em; + display: inline-block; + font-size: 0em; } .ui.horizontal.list > .item { - display: inline-block; - margin-left: 1em; - font-size: 1rem; + 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; + margin-left: 0em !important; + padding-left: 0em !important; } .ui.horizontal.list .list { - padding-left: 0em; - padding-bottom: 0em; + padding-left: 0em; + padding-bottom: 0em; } .ui.horizontal.list > .item > .image, @@ -14026,151 +15829,151 @@ ol.ui.list ol li, .ui.horizontal.list .list > .item > .icon, .ui.horizontal.list > .item > .content, .ui.horizontal.list .list > .item > .content { - vertical-align: middle; + 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; + padding-top: 0.21428571em; + padding-bottom: 0.21428571em; } /* Horizontal List */ .ui.horizontal.list > .item > i.icon { - margin: 0em; - padding: 0em 0.25em 0em 0em; + margin: 0em; + padding: 0em 0.25em 0em 0em; } .ui.horizontal.list > .item > .icon, .ui.horizontal.list > .item > .icon + .content { - float: none; - display: inline-block; + float: none; + display: inline-block; } /******************************* - States + States *******************************/ /*------------------- - Disabled + Disabled --------------------*/ .ui.list .list > .disabled.item, .ui.list > .disabled.item { - pointer-events: none; - color: rgba(40, 40, 40, 0.3) !important; + 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; + color: rgba(225, 225, 225, 0.3) !important; } /*------------------- - Hover + Hover --------------------*/ .ui.list .list > a.item:hover .icon, .ui.list > a.item:hover .icon { - color: rgba(0, 0, 0, 0.87); + color: rgba(0, 0, 0, 0.87); } /******************************* - Variations + Variations *******************************/ /*------------------- - Inverted + Inverted --------------------*/ .ui.inverted.list .list > a.item > .icon, .ui.inverted.list > a.item > .icon { - color: rgba(255, 255, 255, 0.7); + 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); + 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); + 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); + cursor: pointer; + color: rgba(255, 255, 255, 0.9); } .ui.inverted.list .list > a.item:hover, .ui.inverted.list > a.item:hover { - color: #1e70bf; + color: #1e70bf; } /* Linking Content */ .ui.inverted.list .item a:not(.ui) { - color: rgba(255, 255, 255, 0.9) !important; + color: rgba(255, 255, 255, 0.9) !important; } .ui.inverted.list .item a:not(.ui):hover { - color: #1e70bf !important; + color: #1e70bf !important; } /*------------------- - Aligned + Aligned --------------------*/ .ui.list[class*="top aligned"] .image, .ui.list[class*="top aligned"] .content, .ui.list [class*="top aligned"] { - vertical-align: top !important; + 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; + 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; + vertical-align: bottom !important; } /*------------------- - Link + 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; + color: rgba(0, 0, 0, 0.4); + -webkit-transition: 0.1s color ease; + transition: 0.1s color ease; } -.ui.link.list a.item:hover, -.ui.link.list .item a:not(.ui):hover { - color: rgba(0, 0, 0, 0.8); +.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 a.item:active, -.ui.link.list .item a:not(.ui):active { - color: rgba(0, 0, 0, 0.9); +.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 .active.item, -.ui.link.list .active.item a:not(.ui) { - color: rgba(0, 0, 0, 0.95); +.ui.link.list.list .active.item, +.ui.link.list.list .active.item a:not(.ui) { + color: rgba(0, 0, 0, 0.95); } /* Inverted */ @@ -14178,87 +15981,87 @@ ol.ui.list ol li, .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); + color: rgba(255, 255, 255, 0.5); } -.ui.inverted.link.list a.item:hover, -.ui.inverted.link.list .item a:not(.ui):hover { - color: #ffffff; +.ui.inverted.link.list.list a.item:hover, +.ui.inverted.link.list.list .item a:not(.ui):hover { + color: #ffffff; } -.ui.inverted.link.list a.item:active, -.ui.inverted.link.list .item a:not(.ui):active { - 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 a.active.item, -.ui.inverted.link.list .active.item a:not(.ui) { - color: #ffffff; +.ui.inverted.link.list.list a.active.item, +.ui.inverted.link.list.list .active.item a:not(.ui) { + color: #ffffff; } /*------------------- - Selection + 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; + 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; + 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); + 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); + 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); + 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); + 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; + 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; + 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; + background: rgba(255, 255, 255, 0.08); + color: #ffffff; } /* Celled / Divided Selection List */ @@ -14267,284 +16070,284 @@ ol.ui.list ol li, .ui.divided.selection.list .list > .item, .ui.celled.selection.list > .item, .ui.divided.selection.list > .item { - border-radius: 0em; + border-radius: 0em; } /*------------------- - Animated + 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; + -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; + padding-left: 1em; } /*------------------- - Fitted + Fitted --------------------*/ .ui.fitted.list:not(.selection) .list > .item, .ui.fitted.list:not(.selection) > .item { - padding-left: 0em; - padding-right: 0em; + 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; + margin-left: -0.5em; + margin-right: -0.5em; } /*------------------- - Bulleted + Bulleted --------------------*/ ul.ui.list, .ui.bulleted.list { - margin-left: 1.25rem; + margin-left: 1.25rem; } ul.ui.list li, .ui.bulleted.list .list > .item, .ui.bulleted.list > .item { - position: relative; + 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; + -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); + color: rgba(0, 0, 0, 0.87); } ul.ui.list ul, .ui.bulleted.list .list { - padding-left: 1.25rem; + padding-left: 1.25rem; } /* Horizontal Bulleted */ ul.ui.horizontal.bulleted.list, .ui.horizontal.bulleted.list { - margin-left: 0em; + margin-left: 0em; } ul.ui.horizontal.bulleted.list li, .ui.horizontal.bulleted.list > .item { - margin-left: 1.75rem; + margin-left: 1.75rem; } ul.ui.horizontal.bulleted.list li:first-child, .ui.horizontal.bulleted.list > .item:first-child { - margin-left: 0em; + margin-left: 0em; } ul.ui.horizontal.bulleted.list li::before, .ui.horizontal.bulleted.list > .item::before { - color: rgba(0, 0, 0, 0.87); + 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; + display: none; } /*------------------- - Ordered + 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; + 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; + 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; + 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); + 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); + content: attr(data-value); } ol.ui.list li[value]:before { - content: attr(value); + content: attr(value); } /* Child Lists */ ol.ui.list ol, .ui.ordered.list .list { - margin-left: 1em; + margin-left: 1em; } ol.ui.list ol li:before, .ui.ordered.list .list > .item:before { - margin-left: -2em; + margin-left: -2em; } /* Horizontal Ordered */ ol.ui.horizontal.list, .ui.ordered.horizontal.list { - margin-left: 0em; + 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; + position: static; + margin: 0em 0.5em 0em 0em; } /*------------------- - Divided + Divided --------------------*/ .ui.divided.list > .item { - border-top: 1px solid rgba(34, 36, 38, 0.15); + border-top: 1px solid rgba(34, 36, 38, 0.15); } .ui.divided.list .list > .item { - border-top: none; + border-top: none; } .ui.divided.list .item .list > .item { - border-top: none; + border-top: none; } .ui.divided.list .list > .item:first-child, .ui.divided.list > .item:first-child { - border-top: none; + border-top: none; } /* Sub Menu */ .ui.divided.list:not(.horizontal) .list > .item:first-child { - border-top-width: 1px; + border-top-width: 1px; } /* Divided bulleted */ .ui.divided.bulleted.list:not(.horizontal), .ui.divided.bulleted.list .list { - margin-left: 0em; - padding-left: 0em; + margin-left: 0em; + padding-left: 0em; } .ui.divided.bulleted.list > .item:not(.horizontal) { - padding-left: 1.25rem; + padding-left: 1.25rem; } /* Divided Ordered */ .ui.divided.ordered.list { - margin-left: 0em; + margin-left: 0em; } .ui.divided.ordered.list .list > .item, .ui.divided.ordered.list > .item { - padding-left: 1.25rem; + padding-left: 1.25rem; } .ui.divided.ordered.list .item .list { - margin-left: 0em; - margin-right: 0em; - padding-bottom: 0.21428571em; + margin-left: 0em; + margin-right: 0em; + padding-bottom: 0.21428571em; } .ui.divided.ordered.list .item .list > .item { - padding-left: 1em; + padding-left: 1em; } /* Divided Selection */ .ui.divided.selection.list .list > .item, .ui.divided.selection.list > .item { - margin: 0em; - border-radius: 0em; + margin: 0em; + border-radius: 0em; } /* Divided horizontal */ .ui.divided.horizontal.list { - margin-left: 0em; + margin-left: 0em; } .ui.divided.horizontal.list > .item:not(:first-child) { - padding-left: 0.5em; + padding-left: 0.5em; } .ui.divided.horizontal.list > .item:not(:last-child) { - padding-right: 0.5em; + 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; + 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; + border-left: none; } /* Inverted */ @@ -14552,1163 +16355,1173 @@ ol.ui.horizontal.list li:before, .ui.divided.inverted.list > .item, .ui.divided.inverted.list > .list, .ui.divided.inverted.horizontal.list > .item { - border-color: rgba(255, 255, 255, 0.1); + border-color: rgba(255, 255, 255, 0.1); } /*------------------- - Celled + 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; + 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); + 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; + padding-top: 0.21428571em; + padding-bottom: 0.21428571em; } /* Sub Menu */ .ui.celled.list .item .list > .item { - border-width: 0px; + border-width: 0px; } .ui.celled.list .list > .item:first-child { - border-top-width: 0px; + border-top-width: 0px; } /* Celled Bulleted */ .ui.celled.bulleted.list { - margin-left: 0em; + margin-left: 0em; } .ui.celled.bulleted.list .list > .item, .ui.celled.bulleted.list > .item { - padding-left: 1.25rem; + padding-left: 1.25rem; } .ui.celled.bulleted.list .item .list { - margin-left: -1.25rem; - margin-right: -1.25rem; - padding-bottom: 0.21428571em; + margin-left: -1.25rem; + margin-right: -1.25rem; + padding-bottom: 0.21428571em; } /* Celled Ordered */ .ui.celled.ordered.list { - margin-left: 0em; + margin-left: 0em; } .ui.celled.ordered.list .list > .item, .ui.celled.ordered.list > .item { - padding-left: 1.25rem; + padding-left: 1.25rem; } .ui.celled.ordered.list .item .list { - margin-left: 0em; - margin-right: 0em; - padding-bottom: 0.21428571em; + margin-left: 0em; + margin-right: 0em; + padding-bottom: 0.21428571em; } .ui.celled.ordered.list .list > .item { - padding-left: 1em; + padding-left: 1em; } /* Celled Horizontal */ .ui.horizontal.celled.list { - margin-left: 0em; + 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; + 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); + 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); + 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); + border-color: 1px solid rgba(255, 255, 255, 0.1); } /*------------------- - Relaxed + Relaxed --------------------*/ .ui.relaxed.list:not(.horizontal) > .item:not(:first-child) { - padding-top: 0.42857143em; + padding-top: 0.42857143em; } .ui.relaxed.list:not(.horizontal) > .item:not(:last-child) { - padding-bottom: 0.42857143em; + padding-bottom: 0.42857143em; } .ui.horizontal.relaxed.list .list > .item:not(:first-child), .ui.horizontal.relaxed.list > .item:not(:first-child) { - padding-left: 1rem; + padding-left: 1rem; } .ui.horizontal.relaxed.list .list > .item:not(:last-child), .ui.horizontal.relaxed.list > .item:not(:last-child) { - padding-right: 1rem; + padding-right: 1rem; } /* Very Relaxed */ .ui[class*="very relaxed"].list:not(.horizontal) > .item:not(:first-child) { - padding-top: 0.85714286em; + padding-top: 0.85714286em; } .ui[class*="very relaxed"].list:not(.horizontal) > .item:not(:last-child) { - padding-bottom: 0.85714286em; + 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; + 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; + padding-right: 1.5rem; } /*------------------- - Sizes + Sizes --------------------*/ .ui.mini.list { - font-size: 0.78571429em; + font-size: 0.78571429em; } .ui.tiny.list { - font-size: 0.85714286em; + font-size: 0.85714286em; } .ui.small.list { - font-size: 0.92857143em; + font-size: 0.92857143em; } .ui.list { - font-size: 1em; + font-size: 1em; } .ui.large.list { - font-size: 1.14285714em; + font-size: 1.14285714em; } .ui.big.list { - font-size: 1.28571429em; + font-size: 1.28571429em; } .ui.huge.list { - font-size: 1.42857143em; + font-size: 1.42857143em; } .ui.massive.list { - font-size: 1.71428571em; + font-size: 1.71428571em; } .ui.mini.horizontal.list .list > .item, .ui.mini.horizontal.list > .item { - font-size: 0.78571429rem; + font-size: 0.78571429rem; } .ui.tiny.horizontal.list .list > .item, .ui.tiny.horizontal.list > .item { - font-size: 0.85714286rem; + font-size: 0.85714286rem; } .ui.small.horizontal.list .list > .item, .ui.small.horizontal.list > .item { - font-size: 0.92857143rem; + font-size: 0.92857143rem; } .ui.horizontal.list .list > .item, .ui.horizontal.list > .item { - font-size: 1rem; + font-size: 1rem; } .ui.large.horizontal.list .list > .item, .ui.large.horizontal.list > .item { - font-size: 1.14285714rem; + font-size: 1.14285714rem; } .ui.big.horizontal.list .list > .item, .ui.big.horizontal.list > .item { - font-size: 1.28571429rem; + font-size: 1.28571429rem; } .ui.huge.horizontal.list .list > .item, .ui.huge.horizontal.list > .item { - font-size: 1.42857143rem; + font-size: 1.42857143rem; } .ui.massive.horizontal.list .list > .item, .ui.massive.horizontal.list > .item { - font-size: 1.71428571rem; + font-size: 1.71428571rem; } /******************************* - Theme Overrides + Theme Overrides *******************************/ /******************************* - User Variable Overrides + User Variable Overrides *******************************/ /*! - * # Semantic UI 2.2.10 - Loader - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # Semantic UI 2.3.0 - Loader +* http://github.com/semantic-org/semantic-ui/ +* +* +* Released under the MIT license +* http://opensource.org/licenses/MIT +* +*/ /******************************* - Loader + 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%); + 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); + 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; - box-shadow: 0px 0px 0px 1px transparent; + 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); - } + from { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } } @keyframes loader { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } + from { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } + 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; + width: 4.57142857rem; + height: 4.57142857rem; + margin: 0em 0em 0em -2.28571429rem; } /*------------------- - Coupling + Coupling --------------------*/ /* Show inside active dimmer */ .ui.dimmer .loader { - display: block; + display: block; } /* Black Dimmer */ .ui.dimmer .ui.loader { - color: rgba(255, 255, 255, 0.9); + color: rgba(255, 255, 255, 0.9); } .ui.dimmer .ui.loader:before { - border-color: rgba(255, 255, 255, 0.15); + border-color: rgba(255, 255, 255, 0.15); } .ui.dimmer .ui.loader:after { - border-color: #FFFFFF transparent transparent; + border-color: #FFFFFF transparent transparent; } /* White Dimmer (Inverted) */ .ui.inverted.dimmer .ui.loader { - color: rgba(0, 0, 0, 0.87); + color: rgba(0, 0, 0, 0.87); } .ui.inverted.dimmer .ui.loader:before { - border-color: rgba(0, 0, 0, 0.1); + border-color: rgba(0, 0, 0, 0.1); } .ui.inverted.dimmer .ui.loader:after { - border-color: #767676 transparent transparent; + border-color: #767676 transparent transparent; } /******************************* - Types + Types *******************************/ /*------------------- - Text + Text --------------------*/ .ui.text.loader { - width: auto !important; - height: auto !important; - text-align: center; - font-style: normal; + width: auto !important; + height: auto !important; + text-align: center; + font-style: normal; } /******************************* - States + States *******************************/ .ui.indeterminate.loader:after { - -webkit-animation-direction: reverse; - animation-direction: reverse; - -webkit-animation-duration: 1.2s; - animation-duration: 1.2s; + animation-direction: reverse; + -webkit-animation-duration: 1.2s; + animation-duration: 1.2s; } .ui.loader.active, .ui.loader.visible { - display: block; + display: block; } .ui.loader.disabled, .ui.loader.hidden { - display: none; + display: none; } /******************************* - Variations + Variations *******************************/ /*------------------- - Sizes + Sizes --------------------*/ /* Loader */ .ui.inverted.dimmer .ui.mini.loader, .ui.mini.loader { - width: 1rem; - height: 1rem; - font-size: 0.78571429em; + 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; + 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; + 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; + 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; + 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; + 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; + 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; + width: 4.57142857rem; + height: 4.57142857rem; + font-size: 1.71428571em; } /* Text Loader */ .ui.mini.text.loader { - min-width: 1rem; - padding-top: 1.78571429rem; + min-width: 1rem; + padding-top: 1.78571429rem; } .ui.tiny.text.loader { - min-width: 1.14285714rem; - padding-top: 1.92857143rem; + min-width: 1.14285714rem; + padding-top: 1.92857143rem; } .ui.small.text.loader { - min-width: 1.71428571rem; - padding-top: 2.5rem; + min-width: 1.71428571rem; + padding-top: 2.5rem; } .ui.text.loader { - min-width: 2.28571429rem; - padding-top: 3.07142857rem; + min-width: 2.28571429rem; + padding-top: 3.07142857rem; } .ui.large.text.loader { - min-width: 3.42857143rem; - padding-top: 4.21428571rem; + min-width: 3.42857143rem; + padding-top: 4.21428571rem; } .ui.big.text.loader { - min-width: 3.71428571rem; - padding-top: 4.5rem; + min-width: 3.71428571rem; + padding-top: 4.5rem; } .ui.huge.text.loader { - min-width: 4.14285714rem; - padding-top: 4.92857143rem; + min-width: 4.14285714rem; + padding-top: 4.92857143rem; } .ui.massive.text.loader { - min-width: 4.57142857rem; - padding-top: 5.35714286rem; + min-width: 4.57142857rem; + padding-top: 5.35714286rem; } /*------------------- - Inverted + Inverted --------------------*/ .ui.inverted.loader { - color: rgba(255, 255, 255, 0.9); + color: rgba(255, 255, 255, 0.9); } .ui.inverted.loader:before { - border-color: rgba(255, 255, 255, 0.15); + border-color: rgba(255, 255, 255, 0.15); } .ui.inverted.loader:after { - border-top-color: #FFFFFF; + border-top-color: #FFFFFF; } /*------------------- - Inline + Inline --------------------*/ .ui.inline.loader { - position: relative; - vertical-align: middle; - margin: 0em; - left: 0em; - top: 0em; - -webkit-transform: none; - transform: none; + 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; + display: inline-block; } /* Centered Inline */ .ui.centered.inline.loader.active, .ui.centered.inline.loader.visible { - display: block; - margin-left: auto; - margin-right: auto; + display: block; + margin-left: auto; + margin-right: auto; } /******************************* - Theme Overrides + Theme Overrides *******************************/ /******************************* - Site Overrides + Site Overrides *******************************/ /*! - * # Semantic UI 2.2.10 - Rail - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # Semantic UI 2.3.0 - Rail +* http://github.com/semantic-org/semantic-ui/ +* +* +* Released under the MIT license +* http://opensource.org/licenses/MIT +* +*/ /******************************* - Rails + Rails *******************************/ .ui.rail { - position: absolute; - top: 0%; - width: 300px; - height: 100%; + 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; + 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; + left: 100%; + right: auto; + padding: 0em 0em 0em 2rem; + margin: 0em 0em 0em 2rem; } /******************************* - Variations + Variations *******************************/ /*-------------- - Internal + Internal ---------------*/ .ui.left.internal.rail { - left: 0%; - right: auto; - padding: 0em 0em 0em 2rem; - margin: 0em 0em 0em 2rem; + 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; + left: auto; + right: 0%; + padding: 0em 2rem 0em 0em; + margin: 0em 2rem 0em 0em; } /*-------------- - Dividing + Dividing ---------------*/ .ui.dividing.rail { - width: 302.5px; + 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); + 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; + border-left: 1px solid rgba(34, 36, 38, 0.15); + padding: 0em 0em 0em 2.5rem; + margin: 0em 0em 0em 2.5rem; } /*-------------- - Distance + Distance ---------------*/ .ui.close.rail { - width: calc( 300px + 1em ); + width: calc( 300px + 1em ); } .ui.close.left.rail { - padding: 0em 1em 0em 0em; - margin: 0em 1em 0em 0em; + padding: 0em 1em 0em 0em; + margin: 0em 1em 0em 0em; } .ui.close.right.rail { - padding: 0em 0em 0em 1em; - margin: 0em 0em 0em 1em; + padding: 0em 0em 0em 1em; + margin: 0em 0em 0em 1em; } .ui.very.close.rail { - width: calc( 300px + 0.5em ); + width: calc( 300px + 0.5em ); } .ui.very.close.left.rail { - padding: 0em 0.5em 0em 0em; - margin: 0em 0.5em 0em 0em; + 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; + padding: 0em 0em 0em 0.5em; + margin: 0em 0em 0em 0.5em; } /*-------------- - Attached + Attached ---------------*/ .ui.attached.left.rail, .ui.attached.right.rail { - padding: 0em; - margin: 0em; + padding: 0em; + margin: 0em; } /*-------------- - Sizing + Sizing ---------------*/ .ui.mini.rail { - font-size: 0.78571429rem; + font-size: 0.78571429rem; } .ui.tiny.rail { - font-size: 0.85714286rem; + font-size: 0.85714286rem; } .ui.small.rail { - font-size: 0.92857143rem; + font-size: 0.92857143rem; } .ui.rail { - font-size: 1rem; + font-size: 1rem; } .ui.large.rail { - font-size: 1.14285714rem; + font-size: 1.14285714rem; } .ui.big.rail { - font-size: 1.28571429rem; + font-size: 1.28571429rem; } .ui.huge.rail { - font-size: 1.42857143rem; + font-size: 1.42857143rem; } .ui.massive.rail { - font-size: 1.71428571rem; + font-size: 1.71428571rem; } /******************************* - Theme Overrides + Theme Overrides *******************************/ /******************************* - Site Overrides + Site Overrides *******************************/ /*! - * # Semantic UI 2.2.10 - Reveal - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # Semantic UI 2.3.0 - Reveal +* http://github.com/semantic-org/semantic-ui/ +* +* +* Released under the MIT license +* http://opensource.org/licenses/MIT +* +*/ /******************************* - Reveal + Reveal *******************************/ .ui.reveal { - display: inherit; - position: relative !important; - font-size: 0em !important; + 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; + 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; + 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; + z-index: 4 !important; } /******************************* - Types + Types *******************************/ /*-------------- - Slide + Slide ---------------*/ .ui.slide.reveal { - position: relative !important; - overflow: hidden !important; - white-space: nowrap; + 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; + 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; + 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; + 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; + -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; + -webkit-transform: translateX(0%) !important; + transform: translateX(0%) !important; } .ui.slide.right.reveal > .visible.content { - -webkit-transform: translateX(0%) !important; - transform: translateX(0%) !important; + -webkit-transform: translateX(0%) !important; + transform: translateX(0%) !important; } .ui.slide.right.reveal > .hidden.content { - -webkit-transform: translateX(-100%) !important; - transform: translateX(-100%) !important; + -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; + -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; + -webkit-transform: translateX(0%) !important; + transform: translateX(0%) !important; } .ui.slide.up.reveal > .hidden.content { - -webkit-transform: translateY(100%) !important; - transform: translateY(100%) !important; + -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; + -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; + -webkit-transform: translateY(0%) !important; + transform: translateY(0%) !important; } .ui.slide.down.reveal > .hidden.content { - -webkit-transform: translateY(-100%) !important; - transform: translateY(-100%) !important; + -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; + -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; + -webkit-transform: translateY(0%) !important; + transform: translateY(0%) !important; } /*-------------- - Fade + Fade ---------------*/ .ui.fade.reveal > .visible.content { - opacity: 1; + opacity: 1; } .ui.fade.active.reveal > .visible.content, .ui.fade.reveal:hover > .visible.content { - opacity: 0; + opacity: 0; } /*-------------- - Move + Move ---------------*/ .ui.move.reveal { - position: relative !important; - overflow: hidden !important; - white-space: nowrap; + 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; + 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; + position: relative !important; } .ui.move.reveal > .hidden.content { - position: absolute !important; - left: 0% !important; - width: 100% !important; + 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; + -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; + -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; + -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; + -webkit-transform: translateY(100%) !important; + transform: translateY(100%) !important; } /*-------------- - Rotate + Rotate ---------------*/ .ui.rotate.reveal > .visible.content { - -webkit-transition-duration: 0.5s; - transition-duration: 0.5s; - -webkit-transform: rotate(0deg); - transform: rotate(0deg); + -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; + -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); + -webkit-transform: rotate(110deg); + transform: rotate(110deg); } .ui.rotate.left.reveal > .visible.content { - -webkit-transform-origin: bottom left; - transform-origin: bottom left; + -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); + -webkit-transform: rotate(-110deg); + transform: rotate(-110deg); } /******************************* - States + 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; + 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; + display: none !important; } /******************************* - Variations + Coupling +*******************************/ + +.ui.reveal > .ui.ribbon.label { + z-index: 5; +} + +/******************************* + Variations *******************************/ /*-------------- - Visible + Visible ---------------*/ .ui.visible.reveal { - overflow: visible; + overflow: visible; } /*-------------- - Instant + Instant ---------------*/ .ui.instant.reveal > .content { - -webkit-transition-delay: 0s !important; - transition-delay: 0s !important; + -webkit-transition-delay: 0s !important; + transition-delay: 0s !important; } /*-------------- - Sizing + Sizing ---------------*/ .ui.reveal > .content { - font-size: 1rem !important; + font-size: 1rem !important; } /******************************* - Theme Overrides + Theme Overrides *******************************/ /******************************* - Site Overrides + Site Overrides *******************************/ /*! - * # Semantic UI 2.2.10 - Segment - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # Semantic UI 2.3.0 - Segment +* http://github.com/semantic-org/semantic-ui/ +* +* +* Released under the MIT license +* http://opensource.org/licenses/MIT +* +*/ /******************************* - Segment + Segment *******************************/ .ui.segment { - position: relative; - background: #FFFFFF; - 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); + 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; + margin-top: 0em; } .ui.segment:last-child { - margin-bottom: 0em; + margin-bottom: 0em; } /* Vertical */ .ui.vertical.segment { - margin: 0em; - padding-left: 0em; - padding-right: 0em; - background: none transparent; - border-radius: 0px; - box-shadow: none; - border: none; - border-bottom: 1px solid rgba(34, 36, 38, 0.15); + 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; + border-bottom: none; } /*------------------- - Loose Coupling + Loose Coupling --------------------*/ /* Header */ .ui.inverted.segment > .ui.header { - color: #FFFFFF; + color: #FFFFFF; } /* Label */ .ui[class*="bottom attached"].segment > [class*="top attached"].label { - border-top-left-radius: 0em; - border-top-right-radius: 0em; + 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; + 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; + 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; + border-bottom-left-radius: 0em; + border-bottom-right-radius: 0em; } /* Grid */ @@ -15716,136 +17529,139 @@ ol.ui.horizontal.list li:before, .ui.page.grid.segment, .ui.grid > .row > .ui.segment.column, .ui.grid > .ui.segment.column { - padding-top: 2em; - padding-bottom: 2em; + padding-top: 2em; + padding-bottom: 2em; } .ui.grid.segment { - margin: 1rem 0em; - border-radius: 0.28571429rem; + margin: 1rem 0em; + border-radius: 0.28571429rem; } /* Table */ .ui.basic.table.segment { - background: #FFFFFF; - border: 1px solid rgba(34, 36, 38, 0.15); - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); + 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; + padding: 1em 1em; } /******************************* - Types + Types *******************************/ /*------------------- - Piled + Piled --------------------*/ .ui.piled.segments, .ui.piled.segment { - margin: 3em 0em; - box-shadow: ''; - z-index: auto; + margin: 3em 0em; + -webkit-box-shadow: ''; + box-shadow: ''; + z-index: auto; } .ui.piled.segment:first-child { - margin-top: 0em; + margin-top: 0em; } .ui.piled.segment:last-child { - margin-bottom: 0em; + 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); - box-shadow: ''; + 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; + -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; + -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; + margin-top: 3em; + margin-bottom: 0em; } .ui.piled.segment[class*="top attached"]:first-child { - margin-top: 0em; + margin-top: 0em; } .ui.piled.segment[class*="bottom attached"] { - margin-top: 0em; - margin-bottom: 3em; + margin-top: 0em; + margin-bottom: 3em; } .ui.piled.segment[class*="bottom attached"]:last-child { - margin-bottom: 0em; + margin-bottom: 0em; } /*------------------- - Stacked + Stacked --------------------*/ .ui.stacked.segment { - padding-bottom: 1.4em; + 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; + 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; + display: none; } /* Add additional page */ .ui.tall.stacked.segments:before, .ui.tall.stacked.segment:before { - display: block; - bottom: 0px; + display: block; + bottom: 0px; } /* Inverted */ @@ -15854,1044 +17670,1038 @@ ol.ui.horizontal.list li: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); + background-color: rgba(0, 0, 0, 0.03); + border-top: 1px solid rgba(34, 36, 38, 0.35); } /*------------------- - Padded + Padded --------------------*/ .ui.padded.segment { - padding: 1.5em; + padding: 1.5em; } .ui[class*="very padded"].segment { - padding: 3em; + padding: 3em; } /* Padded vertical */ .ui.padded.segment.vertical.segment, .ui[class*="very padded"].vertical.segment { - padding-left: 0px; - padding-right: 0px; + padding-left: 0px; + padding-right: 0px; } /*------------------- - Compact + Compact --------------------*/ .ui.compact.segment { - display: table; + display: table; } /* Compact Group */ .ui.compact.segments { - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; + 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; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; + display: block; + -webkit-box-flex: 0; + -ms-flex: 0 1 auto; + flex: 0 1 auto; } /*------------------- - Circular + Circular --------------------*/ .ui.circular.segment { - display: table-cell; - padding: 2em; - text-align: center; - vertical-align: middle; - border-radius: 500em; + display: table-cell; + padding: 2em; + text-align: center; + vertical-align: middle; + border-radius: 500em; } /*------------------- - Raised + Raised --------------------*/ .ui.raised.segments, .ui.raised.segment { - box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); + -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 + Groups *******************************/ /* Group */ .ui.segments { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - position: relative; - margin: 1rem 0em; - border: 1px solid rgba(34, 36, 38, 0.15); - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); - border-radius: 0.28571429rem; + -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; + margin-top: 0em; } .ui.segments:last-child { - margin-bottom: 0em; + margin-bottom: 0em; } /* Nested Segment */ .ui.segments > .segment { - top: 0px; - bottom: 0px; - border-radius: 0px; - margin: 0em; - width: auto; - box-shadow: none; - border: none; - border-top: 1px solid rgba(34, 36, 38, 0.15); + 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; + 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; - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none; - border-radius: 0em 0em 0.28571429rem 0.28571429rem; + 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; + border-radius: 0.28571429rem; } /* Nested Group */ .ui.segments > .ui.segments { - border-top: 1px solid rgba(34, 36, 38, 0.15); - margin: 1rem 1rem; + border-top: 1px solid rgba(34, 36, 38, 0.15); + margin: 1rem 1rem; } .ui.segments > .segments:first-child { - border-top: none; + border-top: none; } .ui.segments > .segment + .segments:not(.horizontal) { - margin-top: 0em; + margin-top: 0em; } /* Horizontal Group */ .ui.horizontal.segments { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - background-color: transparent; - border-radius: 0px; - padding: 0em; - background-color: #FFFFFF; - 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); + 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; - box-shadow: none; - border-top: 1px solid rgba(34, 36, 38, 0.15); + 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; - -webkit-flex: 1 1 auto; - 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; - box-shadow: none; - border-left: 1px solid rgba(34, 36, 38, 0.15); + -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; + border-top: none; } .ui.horizontal.segments > .segment:first-child { - border-left: none; + border-left: none; } /******************************* - States + States *******************************/ /*-------------- - Disabled + Disabled ---------------*/ .ui.disabled.segment { - opacity: 0.45; - color: rgba(40, 40, 40, 0.3); + opacity: 0.45; + color: rgba(40, 40, 40, 0.3); } /*-------------- - Loading + 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; + 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; + 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; - box-shadow: 0px 0px 0px 1px transparent; - visibility: visible; - z-index: 101; + 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); - } + from { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } } @keyframes segment-spin { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } + from { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } } /******************************* - Variations + Variations *******************************/ /*------------------- - Basic + Basic --------------------*/ .ui.basic.segment { - background: none transparent; - box-shadow: none; - border: none; - border-radius: 0px; + background: none transparent; + -webkit-box-shadow: none; + box-shadow: none; + border: none; + border-radius: 0px; } /*------------------- - Clearing + Clearing --------------------*/ .ui.clearing.segment:after { - content: "."; - display: block; - height: 0; - clear: both; - visibility: hidden; + content: "."; + display: block; + height: 0; + clear: both; + visibility: hidden; } /*------------------- - Colors + Colors --------------------*/ /* Red */ .ui.red.segment:not(.inverted) { - border-top: 2px solid #DB2828; + border-top: 2px solid #DB2828 !important; } .ui.inverted.red.segment { - background-color: #DB2828 !important; - color: #FFFFFF !important; + background-color: #DB2828 !important; + color: #FFFFFF !important; } /* Orange */ .ui.orange.segment:not(.inverted) { - border-top: 2px solid #F2711C; + border-top: 2px solid #F2711C !important; } .ui.inverted.orange.segment { - background-color: #F2711C !important; - color: #FFFFFF !important; + background-color: #F2711C !important; + color: #FFFFFF !important; } /* Yellow */ .ui.yellow.segment:not(.inverted) { - border-top: 2px solid #FBBD08; + border-top: 2px solid #FBBD08 !important; } .ui.inverted.yellow.segment { - background-color: #FBBD08 !important; - color: #FFFFFF !important; + background-color: #FBBD08 !important; + color: #FFFFFF !important; } /* Olive */ .ui.olive.segment:not(.inverted) { - border-top: 2px solid #B5CC18; + border-top: 2px solid #B5CC18 !important; } .ui.inverted.olive.segment { - background-color: #B5CC18 !important; - color: #FFFFFF !important; + background-color: #B5CC18 !important; + color: #FFFFFF !important; } /* Green */ .ui.green.segment:not(.inverted) { - border-top: 2px solid #21BA45; + border-top: 2px solid #21BA45 !important; } .ui.inverted.green.segment { - background-color: #21BA45 !important; - color: #FFFFFF !important; + background-color: #21BA45 !important; + color: #FFFFFF !important; } /* Teal */ .ui.teal.segment:not(.inverted) { - border-top: 2px solid #00B5AD; + border-top: 2px solid #00B5AD !important; } .ui.inverted.teal.segment { - background-color: #00B5AD !important; - color: #FFFFFF !important; + background-color: #00B5AD !important; + color: #FFFFFF !important; } /* Blue */ .ui.blue.segment:not(.inverted) { - border-top: 2px solid #2185D0; + border-top: 2px solid #2185D0 !important; } .ui.inverted.blue.segment { - background-color: #2185D0 !important; - color: #FFFFFF !important; + background-color: #2185D0 !important; + color: #FFFFFF !important; } /* Violet */ .ui.violet.segment:not(.inverted) { - border-top: 2px solid #6435C9; + border-top: 2px solid #6435C9 !important; } .ui.inverted.violet.segment { - background-color: #6435C9 !important; - color: #FFFFFF !important; + background-color: #6435C9 !important; + color: #FFFFFF !important; } /* Purple */ .ui.purple.segment:not(.inverted) { - border-top: 2px solid #A333C8; + border-top: 2px solid #A333C8 !important; } .ui.inverted.purple.segment { - background-color: #A333C8 !important; - color: #FFFFFF !important; + background-color: #A333C8 !important; + color: #FFFFFF !important; } /* Pink */ .ui.pink.segment:not(.inverted) { - border-top: 2px solid #E03997; + border-top: 2px solid #E03997 !important; } .ui.inverted.pink.segment { - background-color: #E03997 !important; - color: #FFFFFF !important; + background-color: #E03997 !important; + color: #FFFFFF !important; } /* Brown */ .ui.brown.segment:not(.inverted) { - border-top: 2px solid #A5673F; + border-top: 2px solid #A5673F !important; } .ui.inverted.brown.segment { - background-color: #A5673F !important; - color: #FFFFFF !important; + background-color: #A5673F !important; + color: #FFFFFF !important; } /* Grey */ .ui.grey.segment:not(.inverted) { - border-top: 2px solid #767676; + border-top: 2px solid #767676 !important; } .ui.inverted.grey.segment { - background-color: #767676 !important; - color: #FFFFFF !important; + background-color: #767676 !important; + color: #FFFFFF !important; } /* Black */ .ui.black.segment:not(.inverted) { - border-top: 2px solid #1B1C1D; + border-top: 2px solid #1B1C1D !important; } .ui.inverted.black.segment { - background-color: #1B1C1D !important; - color: #FFFFFF !important; + background-color: #1B1C1D !important; + color: #FFFFFF !important; } /*------------------- - Aligned + Aligned --------------------*/ .ui[class*="left aligned"].segment { - text-align: left; + text-align: left; } .ui[class*="right aligned"].segment { - text-align: right; + text-align: right; } .ui[class*="center aligned"].segment { - text-align: center; + text-align: center; } /*------------------- - Floated + Floated --------------------*/ .ui.floated.segment, .ui[class*="left floated"].segment { - float: left; - margin-right: 1em; + float: left; + margin-right: 1em; } .ui[class*="right floated"].segment { - float: right; - margin-left: 1em; + float: right; + margin-left: 1em; } /*------------------- - Inverted + Inverted --------------------*/ .ui.inverted.segment { - border: none; - box-shadow: none; + 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); + background: #1B1C1D; + color: rgba(255, 255, 255, 0.9); } /* Nested */ .ui.inverted.segment .segment { - color: rgba(0, 0, 0, 0.87); + color: rgba(0, 0, 0, 0.87); } .ui.inverted.segment .inverted.segment { - color: rgba(255, 255, 255, 0.9); + color: rgba(255, 255, 255, 0.9); } /* Attached */ .ui.inverted.attached.segment { - border-color: #555555; + border-color: #555555; } /*------------------- - Emphasis + Emphasis --------------------*/ /* Secondary */ .ui.secondary.segment { - background: #F3F4F5; - color: rgba(0, 0, 0, 0.6); + background: #F3F4F5; + color: rgba(0, 0, 0, 0.6); } .ui.secondary.inverted.segment { - 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); + 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); + background: #DCDDDE; + color: rgba(0, 0, 0, 0.6); } .ui.tertiary.inverted.segment { - 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); + 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 + Attached --------------------*/ /* Middle */ .ui.attached.segment { - top: 0px; - bottom: 0px; - border-radius: 0px; - margin: 0em -1px; - width: calc(100% + 2px ); - max-width: calc(100% + 2px ); - box-shadow: none; - border: 1px solid #D4D4D5; + 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; + 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; + 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; + margin-top: 0em; } /* Bottom */ .ui.segment[class*="bottom attached"] { - bottom: 0px; - margin-top: 0em; - top: 0px; - margin-bottom: 1rem; - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none; - border-radius: 0em 0em 0.28571429rem 0.28571429rem; + 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; + margin-bottom: 0em; } /*------------------- - Size + Size --------------------*/ .ui.mini.segments .segment, .ui.mini.segment { - font-size: 0.78571429rem; + font-size: 0.78571429rem; } .ui.tiny.segments .segment, .ui.tiny.segment { - font-size: 0.85714286rem; + font-size: 0.85714286rem; } .ui.small.segments .segment, .ui.small.segment { - font-size: 0.92857143rem; + font-size: 0.92857143rem; } .ui.segments .segment, .ui.segment { - font-size: 1rem; + font-size: 1rem; } .ui.large.segments .segment, .ui.large.segment { - font-size: 1.14285714rem; + font-size: 1.14285714rem; } .ui.big.segments .segment, .ui.big.segment { - font-size: 1.28571429rem; + font-size: 1.28571429rem; } .ui.huge.segments .segment, .ui.huge.segment { - font-size: 1.42857143rem; + font-size: 1.42857143rem; } .ui.massive.segments .segment, .ui.massive.segment { - font-size: 1.71428571rem; + font-size: 1.71428571rem; } /******************************* - Theme Overrides + Theme Overrides *******************************/ /******************************* - Site Overrides + Site Overrides *******************************/ /*! - * # Semantic UI 2.2.10 - Step - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # Semantic UI 2.3.0 - Step +* http://github.com/semantic-org/semantic-ui/ +* +* +* Released under the MIT license +* http://opensource.org/licenses/MIT +* +*/ /******************************* - Plural + Plural *******************************/ .ui.steps { - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-align: stretch; - -webkit-align-items: stretch; - -ms-flex-align: stretch; - align-items: stretch; - margin: 1em 0em; - background: ''; - box-shadow: none; - line-height: 1.14285714em; - border-radius: 0.28571429rem; - border: 1px solid rgba(34, 36, 38, 0.15); + 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; + margin-top: 0em; } /* Last Steps */ .ui.steps:last-child { - margin-bottom: 0em; + margin-bottom: 0em; } /******************************* - Singular + Singular *******************************/ .ui.steps .step { - position: relative; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-flex: 1; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - vertical-align: middle; - -webkit-box-align: center; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - margin: 0em 0em; - padding: 1.14285714em 2em; - background: #FFFFFF; - color: rgba(0, 0, 0, 0.87); - 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, box-shadow 0.1s ease; - transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease; + 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, 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-transform: translateY(-50%) translateX(50%) rotate(-45deg); - transform: translateY(-50%) translateX(50%) rotate(-45deg); + 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; + 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; + border-radius: 0em 0.28571429rem 0.28571429rem 0em; } .ui.steps .step:last-child { - border-right: none; - margin-right: 0em; + border-right: none; + margin-right: 0em; } /* Only Step */ .ui.steps .step:only-child { - border-radius: 0.28571429rem; + border-radius: 0.28571429rem; } /******************************* - Content + Content *******************************/ /* Title */ .ui.steps .step .title { - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - font-size: 1.14285714em; - font-weight: bold; + font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; + font-size: 1.14285714em; + font-weight: bold; } .ui.steps .step > .title { - width: 100%; + width: 100%; } /* Description */ .ui.steps .step .description { - font-weight: normal; - font-size: 0.92857143em; - color: rgba(0, 0, 0, 0.87); + font-weight: normal; + font-size: 0.92857143em; + color: rgba(0, 0, 0, 0.87); } .ui.steps .step > .description { - width: 100%; + width: 100%; } .ui.steps .step .title ~ .description { - margin-top: 0.25em; + margin-top: 0.25em; } /* Icon */ .ui.steps .step > .icon { - line-height: 1; - font-size: 2.5em; - margin: 0em 1rem 0em 0em; + 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; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: middle; - -ms-flex-item-align: middle; - align-self: middle; + 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; - -webkit-flex-grow: 1 0 auto; - -ms-flex-positive: 1 0 auto; - flex-grow: 1 0 auto; + -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; + width: auto; } /* Link */ .ui.steps .link.step, .ui.steps a.step { - cursor: pointer; + cursor: pointer; } /******************************* - Types + Types *******************************/ /*-------------- - Ordered + Ordered ---------------*/ .ui.ordered.steps { - counter-reset: ordered; + counter-reset: ordered; } .ui.ordered.steps .step:before { - display: block; - position: static; - text-align: center; - content: counters(ordered, "."); - -webkit-align-self: middle; - -ms-flex-item-align: middle; - align-self: middle; - margin-right: 1rem; - font-size: 2.5em; - counter-increment: ordered; - font-family: inherit; - font-weight: bold; + 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; - -webkit-align-self: middle; - -ms-flex-item-align: middle; - align-self: middle; + display: block; + -ms-flex-item-align: middle; + align-self: middle; } /*-------------- - Vertical + Vertical ---------------*/ .ui.vertical.steps { - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - overflow: visible; + 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; - -webkit-justify-content: flex-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); + -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; + 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; + border-bottom: none; + border-radius: 0em 0em 0.28571429rem 0.28571429rem; } .ui.vertical.steps .step:only-child { - border-radius: 0.28571429rem; + border-radius: 0.28571429rem; } /* Arrow */ .ui.vertical.steps .step:after { - display: none; + display: none; } .ui.vertical.steps .step:after { - top: 50%; - right: 0%; - border-width: 0px 1px 1px 0px; + top: 50%; + right: 0%; + border-width: 0px 1px 1px 0px; } .ui.vertical.steps .step:after { - display: none; + display: none; } .ui.vertical.steps .active.step:after { - display: block; + display: block; } .ui.vertical.steps .step:last-child:after { - display: none; + display: none; } .ui.vertical.steps .active.step:last-child:after { - display: block; + display: block; } /*--------------- - Responsive + Responsive ----------------*/ /* Mobile (Default) */ @media only screen and (max-width: 767px) { - .ui.steps { - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - overflow: visible; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - } + .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 .step { - width: 100% !important; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - border-radius: 0em; - padding: 1.14285714em 2em; - } + .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 .step:first-child { - padding: 1.14285714em 2em; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; - } + .ui.steps:not(.unstackable) .step:first-child { + padding: 1.14285714em 2em; + border-radius: 0.28571429rem 0.28571429rem 0em 0em; + } - .ui.steps .step:last-child { - border-radius: 0em 0em 0.28571429rem 0.28571429rem; - } + .ui.steps:not(.unstackable) .step:last-child { + border-radius: 0em 0em 0.28571429rem 0.28571429rem; + } - /* Arrow */ + /* Arrow */ - .ui.steps .step:after { - display: none !important; - } + .ui.steps:not(.unstackable) .step:after { + display: none !important; + } - /* Content */ + /* Content */ - .ui.steps .step .content { - text-align: center; - } + .ui.steps:not(.unstackable) .step .content { + text-align: center; + } - /* Icon */ + /* Icon */ - .ui.steps .step > .icon, - .ui.ordered.steps .step:before { - margin: 0em 0em 1rem 0em; - } + .ui.steps:not(.unstackable) .step > .icon, + .ui.ordered.steps:not(.unstackable) .step:before { + margin: 0em 0em 1rem 0em; + } } /******************************* - States + States *******************************/ /* Link Hover */ @@ -16900,8 +18710,8 @@ ol.ui.horizontal.list li:before, .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); + background: #F9FAFB; + color: rgba(0, 0, 0, 0.8); } /* Link Down */ @@ -16910,46 +18720,46 @@ ol.ui.horizontal.list li:before, .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); + background: #F3F4F5; + color: rgba(0, 0, 0, 0.9); } /* Active */ .ui.steps .step.active { - cursor: auto; - background: #F3F4F5; + cursor: auto; + background: #F3F4F5; } .ui.steps .step.active:after { - background: #F3F4F5; + background: #F3F4F5; } .ui.steps .step.active .title { - color: #4183C4; + color: #4183C4; } .ui.ordered.steps .step.active:before, .ui.steps .active.step .icon { - color: rgba(0, 0, 0, 0.85); + color: rgba(0, 0, 0, 0.85); } /* Active Arrow */ .ui.steps .step:after { - display: block; + display: block; } .ui.steps .active.step:after { - display: block; + display: block; } .ui.steps .step:last-child:after { - display: none; + display: none; } .ui.steps .active.step:last-child:after { - display: none; + display: none; } /* Active Hover */ @@ -16958,153 +18768,149 @@ ol.ui.horizontal.list li:before, .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); + 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; + color: #21BA45; } /* Disabled */ .ui.steps .disabled.step { - cursor: auto; - background: #FFFFFF; - pointer-events: none; + 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); + color: rgba(40, 40, 40, 0.3); } .ui.steps .disabled.step:after { - background: #FFFFFF; + background: #FFFFFF; } /******************************* - Variations + Variations *******************************/ /*-------------- - Stackable + Stackable ---------------*/ /* Tablet Or Below */ @media only screen and (max-width: 991px) { - .ui[class*="tablet stackable"].steps { - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - overflow: visible; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - } + .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 */ + /* Steps */ - .ui[class*="tablet stackable"].steps .step { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - border-radius: 0em; - padding: 1.14285714em 2em; - } + .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: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; - } + .ui[class*="tablet stackable"].steps .step:last-child { + border-radius: 0em 0em 0.28571429rem 0.28571429rem; + } - /* Arrow */ + /* Arrow */ - .ui[class*="tablet stackable"].steps .step:after { - display: none !important; - } + .ui[class*="tablet stackable"].steps .step:after { + display: none !important; + } - /* Content */ + /* Content */ - .ui[class*="tablet stackable"].steps .step .content { - text-align: center; - } + .ui[class*="tablet stackable"].steps .step .content { + text-align: center; + } - /* Icon */ + /* Icon */ - .ui[class*="tablet stackable"].steps .step > .icon, - .ui[class*="tablet stackable"].ordered.steps .step:before { - margin: 0em 0em 1rem 0em; - } + .ui[class*="tablet stackable"].steps .step > .icon, + .ui[class*="tablet stackable"].ordered.steps .step:before { + margin: 0em 0em 1rem 0em; + } } /*-------------- - Fluid + Fluid ---------------*/ /* Fluid */ .ui.fluid.steps { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - width: 100%; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + width: 100%; } /*-------------- - Attached + 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; + 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; + border-radius: 0.28571429rem 0em 0em 0em; } .ui.attached.steps .step:last-child { - border-radius: 0em 0.28571429rem 0em 0em; + border-radius: 0em 0.28571429rem 0em 0em; } /* Bottom */ .ui.bottom.attached.steps { - margin: 0 -1px 0em; - border-radius: 0em 0em 0.28571429rem 0.28571429rem; + 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; + border-radius: 0em 0em 0em 0.28571429rem; } .ui.bottom.attached.steps .step:last-child { - border-radius: 0em 0em 0.28571429rem 0em; + border-radius: 0em 0em 0.28571429rem 0em; } /*------------------- - Evenly Divided + Evenly Divided --------------------*/ .ui.one.steps, @@ -17115,7 +18921,7 @@ ol.ui.horizontal.list li:before, .ui.six.steps, .ui.seven.steps, .ui.eight.steps { - width: 100%; + width: 100%; } .ui.one.steps > .step, @@ -17126,302 +18932,301 @@ ol.ui.horizontal.list li:before, .ui.six.steps > .step, .ui.seven.steps > .step, .ui.eight.steps > .step { - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; } .ui.one.steps > .step { - width: 100%; + width: 100%; } .ui.two.steps > .step { - width: 50%; + width: 50%; } .ui.three.steps > .step { - width: 33.333%; + width: 33.333%; } .ui.four.steps > .step { - width: 25%; + width: 25%; } .ui.five.steps > .step { - width: 20%; + width: 20%; } .ui.six.steps > .step { - width: 16.666%; + width: 16.666%; } .ui.seven.steps > .step { - width: 14.285%; + width: 14.285%; } .ui.eight.steps > .step { - width: 12.500%; + width: 12.500%; } /*------------------- - Sizes + Sizes --------------------*/ .ui.mini.steps .step, .ui.mini.step { - font-size: 0.78571429rem; + font-size: 0.78571429rem; } .ui.tiny.steps .step, .ui.tiny.step { - font-size: 0.85714286rem; + font-size: 0.85714286rem; } .ui.small.steps .step, .ui.small.step { - font-size: 0.92857143rem; + font-size: 0.92857143rem; } .ui.steps .step, .ui.step { - font-size: 1rem; + font-size: 1rem; } .ui.large.steps .step, .ui.large.step { - font-size: 1.14285714rem; + font-size: 1.14285714rem; } .ui.big.steps .step, .ui.big.step { - font-size: 1.28571429rem; + font-size: 1.28571429rem; } .ui.huge.steps .step, .ui.huge.step { - font-size: 1.42857143rem; + font-size: 1.42857143rem; } .ui.massive.steps .step, .ui.massive.step { - font-size: 1.71428571rem; + font-size: 1.71428571rem; } /******************************* - Theme Overrides + 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'); + 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'; - /* '' */ + font-family: 'Step'; + content: '\e800'; + /* '' */ } /******************************* - Site Overrides + Site Overrides *******************************/ /*! - * # Semantic UI 2.2.10 - Breadcrumb - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # Semantic UI 2.3.0 - Breadcrumb +* http://github.com/semantic-org/semantic-ui/ +* +* +* Released under the MIT license +* http://opensource.org/licenses/MIT +* +*/ /******************************* - Breadcrumb + Breadcrumb *******************************/ .ui.breadcrumb { - line-height: 1; - display: inline-block; - margin: 0em 0em; - vertical-align: middle; + line-height: 1; + display: inline-block; + margin: 0em 0em; + vertical-align: middle; } .ui.breadcrumb:first-child { - margin-top: 0em; + margin-top: 0em; } .ui.breadcrumb:last-child { - margin-bottom: 0em; + margin-bottom: 0em; } /******************************* - Content + 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; + 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; + color: #4183C4; } .ui.breadcrumb a:hover { - color: #1e70bf; + color: #1e70bf; } /* Icon Divider */ .ui.breadcrumb .icon.divider { - font-size: 0.85714286em; - vertical-align: baseline; + font-size: 0.85714286em; + vertical-align: baseline; } /* Section */ .ui.breadcrumb a.section { - cursor: pointer; + cursor: pointer; } .ui.breadcrumb .section { - display: inline-block; - margin: 0em; - padding: 0em; + display: inline-block; + margin: 0em; + padding: 0em; } /* Loose Coupling */ .ui.breadcrumb.segment { - display: inline-block; - padding: 0.78571429em 1em; + display: inline-block; + padding: 0.78571429em 1em; } /******************************* - States + States *******************************/ .ui.breadcrumb .active.section { - font-weight: bold; + font-weight: bold; } /******************************* - Variations + Variations *******************************/ .ui.mini.breadcrumb { - font-size: 0.78571429rem; + font-size: 0.78571429rem; } .ui.tiny.breadcrumb { - font-size: 0.85714286rem; + font-size: 0.85714286rem; } .ui.small.breadcrumb { - font-size: 0.92857143rem; + font-size: 0.92857143rem; } .ui.breadcrumb { - font-size: 1rem; + font-size: 1rem; } .ui.large.breadcrumb { - font-size: 1.14285714rem; + font-size: 1.14285714rem; } .ui.big.breadcrumb { - font-size: 1.28571429rem; + font-size: 1.28571429rem; } .ui.huge.breadcrumb { - font-size: 1.42857143rem; + font-size: 1.42857143rem; } .ui.massive.breadcrumb { - font-size: 1.71428571rem; + font-size: 1.71428571rem; } /******************************* - Theme Overrides + Theme Overrides *******************************/ /******************************* - Site Overrides + Site Overrides *******************************/ /*! - * # Semantic UI 2.2.10 - Form - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # Semantic UI 2.3.0 - Form +* http://github.com/semantic-org/semantic-ui/ +* +* +* Released under the MIT license +* http://opensource.org/licenses/MIT +* +*/ /******************************* - Elements + Elements *******************************/ /*-------------------- - Form + Form ---------------------*/ .ui.form { - position: relative; - max-width: 100%; + position: relative; + max-width: 100%; } /*-------------------- - Content + Content ---------------------*/ .ui.form > p { - margin: 1em 0em; + margin: 1em 0em; } /*-------------------- - Field + Field ---------------------*/ .ui.form .field { - clear: both; - margin: 0em 0em 1em; + clear: both; + margin: 0em 0em 1em; } .ui.form .field:last-child, .ui.form .fields:last-child .field { - margin-bottom: 0em; + margin-bottom: 0em; } .ui.form .fields .field { - clear: both; - margin: 0em; + clear: both; + margin: 0em; } /*-------------------- - Labels + 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; + 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 + Standard Inputs ---------------------*/ .ui.form textarea, @@ -17437,15 +19242,15 @@ ol.ui.horizontal.list li:before, .ui.form input[type="text"], .ui.form input[type="file"], .ui.form input[type="url"] { - width: 100%; - vertical-align: top; + 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; + height: 1.21428571em; } .ui.form input:not([type]), @@ -17460,108 +19265,111 @@ ol.ui.horizontal.list li:before, .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; - 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-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; - 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; + 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; + height: 12em; + min-height: 8em; + max-height: 24em; } .ui.form textarea, .ui.form input[type="checkbox"] { - vertical-align: top; + vertical-align: top; } /*-------------------------- - Input w/ attached Button + Input w/ attached Button ---------------------------*/ .ui.form input.attached { - width: auto; + width: auto; } /*-------------------- - Basic Select + 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; - 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; + 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 + Dropdown ---------------------*/ /* Block */ .ui.form .field > .selection.dropdown { - width: 100%; + width: 100%; } .ui.form .field > .selection.dropdown > .dropdown.icon { - float: right; + float: right; } /* Inline */ .ui.form .inline.fields .field > .selection.dropdown, .ui.form .inline.field > .selection.dropdown { - width: auto; + width: auto; } .ui.form .inline.fields .field > .selection.dropdown > .dropdown.icon, .ui.form .inline.field > .selection.dropdown > .dropdown.icon { - float: none; + float: none; } /*-------------------- - UI Input + UI Input ---------------------*/ /* Block */ @@ -17569,22 +19377,22 @@ ol.ui.horizontal.list li:before, .ui.form .field .ui.input, .ui.form .fields .field .ui.input, .ui.form .wide.field .ui.input { - width: 100%; + 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; + width: auto; + vertical-align: middle; } /* Auto Input */ .ui.form .fields .field .ui.input input, .ui.form .field .ui.input input { - width: auto; + width: auto; } /* Full Width Input */ @@ -17599,140 +19407,142 @@ ol.ui.horizontal.list li:before, .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; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - width: 0px; + -webkit-box-flex: 1; + -ms-flex: 1 0 auto; + flex: 1 0 auto; + width: 0px; } /*-------------------- - Types of Messages + Types of Messages ---------------------*/ .ui.form .success.message, .ui.form .warning.message, .ui.form .error.message { - display: none; + display: none; } /* Assumptions */ .ui.form .message:first-child { - margin-top: 0px; + margin-top: 0px; } /*-------------------- - Validation Prompt + Validation Prompt ---------------------*/ .ui.form .field .prompt.label { - white-space: normal; - background: #FFFFFF !important; - border: 1px solid #E0B4B4 !important; - color: #9F3A38 !important; + 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; + 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; + border-width: 0px 0px 1px 1px; + bottom: auto; + right: auto; + top: 50%; + left: 0em; } /******************************* - States + States *******************************/ /*-------------------- - Autofilled + Autofilled ---------------------*/ .ui.form .field.field input:-webkit-autofill { - box-shadow: 0px 0px 0px 100px #FFFFF0 inset !important; - border-color: #E5DFA1 !important; + -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 { - box-shadow: 0px 0px 0px 100px #FFFFF0 inset !important; - border-color: #D5C315 !important; + -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 { - box-shadow: 0px 0px 0px 100px #FFFAF0 inset !important; - border-color: #E0B4B4 !important; + -webkit-box-shadow: 0px 0px 0px 100px #FFFAF0 inset !important; + box-shadow: 0px 0px 0px 100px #FFFAF0 inset !important; + border-color: #E0B4B4 !important; } /*-------------------- - Placeholder + Placeholder ---------------------*/ /* browsers require these rules separate */ .ui.form ::-webkit-input-placeholder { - color: rgba(191, 191, 191, 0.87); + color: rgba(191, 191, 191, 0.87); } .ui.form :-ms-input-placeholder { - color: rgba(191, 191, 191, 0.87); + color: rgba(191, 191, 191, 0.87); } .ui.form ::-moz-placeholder { - color: rgba(191, 191, 191, 0.87); + color: rgba(191, 191, 191, 0.87); } .ui.form :focus::-webkit-input-placeholder { - color: rgba(115, 115, 115, 0.87); + color: rgba(115, 115, 115, 0.87); } .ui.form :focus:-ms-input-placeholder { - color: rgba(115, 115, 115, 0.87); + color: rgba(115, 115, 115, 0.87); } .ui.form :focus::-moz-placeholder { - color: rgba(115, 115, 115, 0.87); + color: rgba(115, 115, 115, 0.87); } /* Error Placeholder */ .ui.form .error ::-webkit-input-placeholder { - color: #e7bdbc; + color: #e7bdbc; } .ui.form .error :-ms-input-placeholder { - color: #e7bdbc !important; + color: #e7bdbc !important; } .ui.form .error ::-moz-placeholder { - color: #e7bdbc; + color: #e7bdbc; } .ui.form .error :focus::-webkit-input-placeholder { - color: #da9796; + color: #da9796; } .ui.form .error :focus:-ms-input-placeholder { - color: #da9796 !important; + color: #da9796 !important; } .ui.form .error :focus::-moz-placeholder { - color: #da9796; + color: #da9796; } /*-------------------- - Focus + Focus ---------------------*/ .ui.form input:not([type]):focus, @@ -17747,83 +19557,82 @@ ol.ui.horizontal.list li:before, .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; - box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset; + 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; - box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset; - -webkit-appearance: none; + 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 + Success ---------------------*/ /* On Form */ .ui.form.success .success.message:not(:empty) { - display: block; + display: block; } .ui.form.success .compact.success.message:not(:empty) { - display: inline-block; + display: inline-block; } .ui.form.success .icon.success.message:not(:empty) { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; + display: -webkit-box; + display: -ms-flexbox; + display: flex; } /*-------------------- - Warning + Warning ---------------------*/ /* On Form */ .ui.form.warning .warning.message:not(:empty) { - display: block; + display: block; } .ui.form.warning .compact.warning.message:not(:empty) { - display: inline-block; + display: inline-block; } .ui.form.warning .icon.warning.message:not(:empty) { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; + display: -webkit-box; + display: -ms-flexbox; + display: flex; } /*-------------------- - Error + Error ---------------------*/ /* On Form */ .ui.form.error .error.message:not(:empty) { - display: block; + display: block; } .ui.form.error .compact.error.message:not(:empty) { - display: inline-block; + display: inline-block; } .ui.form.error .icon.error.message:not(:empty) { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; + display: -webkit-box; + display: -ms-flexbox; + display: flex; } /* On Field(s) */ @@ -17832,13 +19641,13 @@ ol.ui.horizontal.list li:before, .ui.form .field.error label, .ui.form .fields.error .field .input, .ui.form .field.error .input { - color: #9F3A38; + color: #9F3A38; } .ui.form .fields.error .field .corner.label, .ui.form .field.error .corner.label { - border-color: #9F3A38; - color: #FFFFFF; + border-color: #9F3A38; + color: #FFFFFF; } .ui.form .fields.error .field textarea, @@ -17869,11 +19678,12 @@ ol.ui.horizontal.list li:before, .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: ''; - box-shadow: none; + background: #FFF6F6; + border-color: #E0B4B4; + color: #9F3A38; + border-radius: ''; + -webkit-box-shadow: none; + box-shadow: none; } .ui.form .field.error textarea:focus, @@ -17890,21 +19700,22 @@ ol.ui.horizontal.list li:before, .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; - box-shadow: none; + 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; + -webkit-appearance: menulist-button; } /*------------------ - Dropdown Error + Dropdown Error --------------------*/ .ui.form .fields.error .field .ui.dropdown, @@ -17912,170 +19723,171 @@ ol.ui.horizontal.list li:before, .ui.form .field.error .ui.dropdown, .ui.form .field.error .ui.dropdown .text, .ui.form .field.error .ui.dropdown .item { - background: #FFF6F6; - color: #9F3A38; + background: #FFF6F6; + color: #9F3A38; } .ui.form .fields.error .field .ui.dropdown, .ui.form .field.error .ui.dropdown { - border-color: #E0B4B4 !important; + border-color: #E0B4B4 !important; } .ui.form .fields.error .field .ui.dropdown:hover, .ui.form .field.error .ui.dropdown:hover { - border-color: #E0B4B4 !important; + border-color: #E0B4B4 !important; } .ui.form .fields.error .field .ui.dropdown:hover .menu, .ui.form .field.error .ui.dropdown:hover .menu { - border-color: #E0B4B4; + 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; + 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; + 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; + 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; + background-color: #FDCFCF !important; } /*-------------------- - Checkbox Error + 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; + 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; + 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; + color: #9F3A38; } /*-------------------- - Disabled + Disabled ---------------------*/ .ui.form .disabled.fields .field, .ui.form .disabled.field, .ui.form .field :disabled { - pointer-events: none; - opacity: 0.45; + pointer-events: none; + opacity: 0.45; } .ui.form .field.disabled > label, .ui.form .fields.disabled > label { - opacity: 0.45; + opacity: 0.45; } .ui.form .field.disabled :disabled { - opacity: 1; + opacity: 1; } /*-------------- - Loading + Loading ---------------*/ .ui.loading.form { - position: relative; - cursor: default; - pointer-events: none; + 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; + 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; - box-shadow: 0px 0px 0px 1px transparent; - visibility: visible; - z-index: 101; + 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); - } + from { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } } @keyframes form-spin { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } + from { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } } /******************************* - Element Types + Element Types *******************************/ /*-------------------- - Required Field + Required Field ---------------------*/ .ui.form .required.fields:not(.grouped) > .field > label:after, @@ -18083,31 +19895,31 @@ ol.ui.horizontal.list li:before, .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; + 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; + 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%; + position: absolute; + top: 0%; + left: 100%; } /******************************* - Variations + Variations *******************************/ /*-------------------- - Inverted Colors + Inverted Colors ---------------------*/ .ui.inverted.form label, @@ -18121,7 +19933,7 @@ ol.ui.horizontal.list li:before, .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); + color: rgba(255, 255, 255, 0.9); } /* Inverted Field */ @@ -18138,291 +19950,286 @@ ol.ui.horizontal.list li:before, .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); - box-shadow: none; + 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 + Field Groups ---------------------*/ /* Grouped Vertically */ .ui.form .grouped.fields { - display: block; - margin: 0em 0em 1em; + display: block; + margin: 0em 0em 1em; } .ui.form .grouped.fields:last-child { - margin-bottom: 0em; + 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; + 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; + display: block; + margin: 0.5em 0em; + padding: 0em; } /*-------------------- - Fields + Fields ---------------------*/ /* Split fields */ .ui.form .fields { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - margin: 0em -0.5em 1em; + 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; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - padding-left: 0.5em; - padding-right: 0.5em; + -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; - box-shadow: none; + border-left: none; + -webkit-box-shadow: none; + box-shadow: none; } /* Other Combinations */ .ui.form .two.fields > .fields, .ui.form .two.fields > .field { - width: 50%; + width: 50%; } .ui.form .three.fields > .fields, .ui.form .three.fields > .field { - width: 33.33333333%; + width: 33.33333333%; } .ui.form .four.fields > .fields, .ui.form .four.fields > .field { - width: 25%; + width: 25%; } .ui.form .five.fields > .fields, .ui.form .five.fields > .field { - width: 20%; + width: 20%; } .ui.form .six.fields > .fields, .ui.form .six.fields > .field { - width: 16.66666667%; + width: 16.66666667%; } .ui.form .seven.fields > .fields, .ui.form .seven.fields > .field { - width: 14.28571429%; + width: 14.28571429%; } .ui.form .eight.fields > .fields, .ui.form .eight.fields > .field { - width: 12.5%; + width: 12.5%; } .ui.form .nine.fields > .fields, .ui.form .nine.fields > .field { - width: 11.11111111%; + width: 11.11111111%; } .ui.form .ten.fields > .fields, .ui.form .ten.fields > .field { - width: 10%; + width: 10%; } /* Swap to full width on mobile */ @media only screen and (max-width: 767px) { - .ui.form .fields { - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - } + .ui.form .fields { + -ms-flex-wrap: wrap; + flex-wrap: wrap; + } - .ui[class*="equal width"].form .fields > .field, - .ui.form [class*="equal width"].fields > .field, - .ui.form .two.fields > .fields, - .ui.form .two.fields > .field, - .ui.form .three.fields > .fields, - .ui.form .three.fields > .field, - .ui.form .four.fields > .fields, - .ui.form .four.fields > .field, - .ui.form .five.fields > .fields, - .ui.form .five.fields > .field, - .ui.form .six.fields > .fields, - .ui.form .six.fields > .field, - .ui.form .seven.fields > .fields, - .ui.form .seven.fields > .field, - .ui.form .eight.fields > .fields, - .ui.form .eight.fields > .field, - .ui.form .nine.fields > .fields, - .ui.form .nine.fields > .field, - .ui.form .ten.fields > .fields, - .ui.form .ten.fields > .field { - width: 100% !important; - margin: 0em 0em 1em; - } + .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; + width: 6.25%; + padding-left: 0.5em; + padding-right: 0.5em; } .ui.form .one.wide.field { - width: 6.25% !important; + width: 6.25% !important; } .ui.form .two.wide.field { - width: 12.5% !important; + width: 12.5% !important; } .ui.form .three.wide.field { - width: 18.75% !important; + width: 18.75% !important; } .ui.form .four.wide.field { - width: 25% !important; + width: 25% !important; } .ui.form .five.wide.field { - width: 31.25% !important; + width: 31.25% !important; } .ui.form .six.wide.field { - width: 37.5% !important; + width: 37.5% !important; } .ui.form .seven.wide.field { - width: 43.75% !important; + width: 43.75% !important; } .ui.form .eight.wide.field { - width: 50% !important; + width: 50% !important; } .ui.form .nine.wide.field { - width: 56.25% !important; + width: 56.25% !important; } .ui.form .ten.wide.field { - width: 62.5% !important; + width: 62.5% !important; } .ui.form .eleven.wide.field { - width: 68.75% !important; + width: 68.75% !important; } .ui.form .twelve.wide.field { - width: 75% !important; + width: 75% !important; } .ui.form .thirteen.wide.field { - width: 81.25% !important; + width: 81.25% !important; } .ui.form .fourteen.wide.field { - width: 87.5% !important; + width: 87.5% !important; } .ui.form .fifteen.wide.field { - width: 93.75% !important; + width: 93.75% !important; } .ui.form .sixteen.wide.field { - width: 100% !important; + width: 100% !important; } /* Swap to full width on mobile */ @media only screen and (max-width: 767px) { - .ui.form .two.fields > .fields, - .ui.form .two.fields > .field, - .ui.form .three.fields > .fields, - .ui.form .three.fields > .field, - .ui.form .four.fields > .fields, - .ui.form .four.fields > .field, - .ui.form .five.fields > .fields, - .ui.form .five.fields > .field, - .ui.form .fields > .two.wide.field, - .ui.form .fields > .three.wide.field, - .ui.form .fields > .four.wide.field, - .ui.form .fields > .five.wide.field, - .ui.form .fields > .six.wide.field, - .ui.form .fields > .seven.wide.field, - .ui.form .fields > .eight.wide.field, - .ui.form .fields > .nine.wide.field, - .ui.form .fields > .ten.wide.field, - .ui.form .fields > .eleven.wide.field, - .ui.form .fields > .twelve.wide.field, - .ui.form .fields > .thirteen.wide.field, - .ui.form .fields > .fourteen.wide.field, - .ui.form .fields > .fifteen.wide.field, - .ui.form .fields > .sixteen.wide.field { - width: 100% !important; - } + .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; - } + .ui.form .fields { + margin-bottom: 0em; + } } /*-------------------- - Equal Width + Equal Width ---------------------*/ .ui[class*="equal width"].form .fields > .field, .ui.form [class*="equal width"].fields > .field { - width: 100%; - -webkit-box-flex: 1; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; + width: 100%; + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; } /*-------------------- - Inline Fields + Inline Fields ---------------------*/ .ui.form .inline.fields { - margin: 0em 0em 1em; - -webkit-box-align: center; - -webkit-align-items: center; - -ms-flex-align: center; - -ms-grid-row-align: center; - align-items: center; + 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; + margin: 0em; + padding: 0em 1em 0em 0em; } /* Inline Label */ @@ -18432,21 +20239,21 @@ ol.ui.horizontal.list li:before, .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; + 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; + margin: 0.035714em 1em 0em 0em; } /* Inline Input */ @@ -18455,493 +20262,483 @@ ol.ui.horizontal.list li:before, .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; + 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; + margin: 0em 0.85714286em 0em 0em; } .ui.form .inline.fields .field > :only-child, .ui.form .inline.field > :only-child { - margin: 0em; + margin: 0em; } /* Wide */ .ui.form .inline.fields .wide.field { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; + 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%; + width: 100%; } /*-------------------- - Sizes + Sizes ---------------------*/ .ui.mini.form { - font-size: 0.78571429rem; + font-size: 0.78571429rem; } .ui.tiny.form { - font-size: 0.85714286rem; + font-size: 0.85714286rem; } .ui.small.form { - font-size: 0.92857143rem; + font-size: 0.92857143rem; } .ui.form { - font-size: 1rem; + font-size: 1rem; } .ui.large.form { - font-size: 1.14285714rem; + font-size: 1.14285714rem; } .ui.big.form { - font-size: 1.28571429rem; + font-size: 1.28571429rem; } .ui.huge.form { - font-size: 1.42857143rem; + font-size: 1.42857143rem; } .ui.massive.form { - font-size: 1.71428571rem; + font-size: 1.71428571rem; } /******************************* - Theme Overrides + Theme Overrides *******************************/ /******************************* - Site Overrides + Site Overrides *******************************/ /*! - * # Semantic UI 2.2.10 - Grid - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # Semantic UI 2.3.0 - Grid +* http://github.com/semantic-org/semantic-ui/ +* +* +* Released under the MIT license +* http://opensource.org/licenses/MIT +* +*/ /******************************* - Standard + Standard *******************************/ .ui.grid { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-align: stretch; - -webkit-align-items: stretch; - -ms-flex-align: stretch; - align-items: stretch; - padding: 0em; + 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 + Remove Gutters -----------------------*/ .ui.grid { - margin-top: -1rem; - margin-bottom: -1rem; - margin-left: -1rem; - margin-right: -1rem; + margin-top: -1rem; + margin-bottom: -1rem; + margin-left: -1rem; + margin-right: -1rem; } .ui.relaxed.grid { - margin-left: -1.5rem; - margin-right: -1.5rem; + margin-left: -1.5rem; + margin-right: -1.5rem; } .ui[class*="very relaxed"].grid { - margin-left: -2.5rem; - margin-right: -2.5rem; + margin-left: -2.5rem; + margin-right: -2.5rem; } /* Preserve Rows Spacing on Consecutive Grids */ .ui.grid + .grid { - margin-top: 1rem; + margin-top: 1rem; } /*------------------- - Columns + 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; + 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; + padding-left: 1rem; + padding-right: 1rem; } /*------------------- - Rows + Rows --------------------*/ .ui.grid > .row { - position: relative; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-pack: inherit; - -webkit-justify-content: inherit; - -ms-flex-pack: inherit; - justify-content: inherit; - -webkit-box-align: stretch; - -webkit-align-items: stretch; - -ms-flex-align: stretch; - align-items: stretch; - width: 100% !important; - padding: 0rem; - padding-top: 1rem; - padding-bottom: 1rem; + 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 + Columns --------------------*/ /* Vertical padding when no rows */ .ui.grid > .column:not(.row) { - padding-top: 1rem; - padding-bottom: 1rem; + padding-top: 1rem; + padding-bottom: 1rem; } .ui.grid > .row > .column { - margin-top: 0em; - margin-bottom: 0em; + margin-top: 0em; + margin-bottom: 0em; } /*------------------- - Content + Content --------------------*/ .ui.grid > .row > img, .ui.grid > .row > .column > img { - max-width: 100%; + max-width: 100%; } /*------------------- - Loose Coupling + Loose Coupling --------------------*/ /* Collapse Margin on Consecutive Grid */ .ui.grid > .ui.grid:first-child { - margin-top: 0em; + margin-top: 0em; } .ui.grid > .ui.grid:last-child { - margin-bottom: 0em; + 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%; + width: 100%; } /* Align Dividers with Gutter */ .ui.grid .row + .ui.divider { - -webkit-box-flex: 1; - -webkit-flex-grow: 1; - -ms-flex-positive: 1; - flex-grow: 1; - margin: 1rem 1rem; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + margin: 1rem 1rem; } .ui.grid .column + .ui.vertical.divider { - height: calc(50% - 1rem ); + 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 { - box-shadow: none; + -webkit-box-shadow: none; + box-shadow: none; } /******************************* - Variations + Variations *******************************/ /*----------------------- - Page Grid + 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; - } + .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; - } + .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%; - } + .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%; - } + .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%; - } + .ui.page.grid { + width: auto; + margin-left: 0em; + margin-right: 0em; + padding-left: 23%; + padding-right: 23%; + } } /*------------------- - Column Count + Column Count --------------------*/ /* Assume full width with one column */ .ui.grid > .column:only-child, .ui.grid > .row > .column:only-child { - width: 100%; + width: 100%; } /* Grid Based */ .ui[class*="one column"].grid > .row > .column, .ui[class*="one column"].grid > .column:not(.row) { - width: 100%; + width: 100%; } .ui[class*="two column"].grid > .row > .column, .ui[class*="two column"].grid > .column:not(.row) { - width: 50%; + width: 50%; } .ui[class*="three column"].grid > .row > .column, .ui[class*="three column"].grid > .column:not(.row) { - width: 33.33333333%; + width: 33.33333333%; } .ui[class*="four column"].grid > .row > .column, .ui[class*="four column"].grid > .column:not(.row) { - width: 25%; + width: 25%; } .ui[class*="five column"].grid > .row > .column, .ui[class*="five column"].grid > .column:not(.row) { - width: 20%; + width: 20%; } .ui[class*="six column"].grid > .row > .column, .ui[class*="six column"].grid > .column:not(.row) { - width: 16.66666667%; + width: 16.66666667%; } .ui[class*="seven column"].grid > .row > .column, .ui[class*="seven column"].grid > .column:not(.row) { - width: 14.28571429%; + width: 14.28571429%; } .ui[class*="eight column"].grid > .row > .column, .ui[class*="eight column"].grid > .column:not(.row) { - width: 12.5%; + width: 12.5%; } .ui[class*="nine column"].grid > .row > .column, .ui[class*="nine column"].grid > .column:not(.row) { - width: 11.11111111%; + width: 11.11111111%; } .ui[class*="ten column"].grid > .row > .column, .ui[class*="ten column"].grid > .column:not(.row) { - width: 10%; + width: 10%; } .ui[class*="eleven column"].grid > .row > .column, .ui[class*="eleven column"].grid > .column:not(.row) { - width: 9.09090909%; + width: 9.09090909%; } .ui[class*="twelve column"].grid > .row > .column, .ui[class*="twelve column"].grid > .column:not(.row) { - width: 8.33333333%; + width: 8.33333333%; } .ui[class*="thirteen column"].grid > .row > .column, .ui[class*="thirteen column"].grid > .column:not(.row) { - width: 7.69230769%; + width: 7.69230769%; } .ui[class*="fourteen column"].grid > .row > .column, .ui[class*="fourteen column"].grid > .column:not(.row) { - width: 7.14285714%; + width: 7.14285714%; } .ui[class*="fifteen column"].grid > .row > .column, .ui[class*="fifteen column"].grid > .column:not(.row) { - width: 6.66666667%; + width: 6.66666667%; } .ui[class*="sixteen column"].grid > .row > .column, .ui[class*="sixteen column"].grid > .column:not(.row) { - width: 6.25%; + width: 6.25%; } /* Row Based Overrides */ .ui.grid > [class*="one column"].row > .column { - width: 100% !important; + width: 100% !important; } .ui.grid > [class*="two column"].row > .column { - width: 50% !important; + width: 50% !important; } .ui.grid > [class*="three column"].row > .column { - width: 33.33333333% !important; + width: 33.33333333% !important; } .ui.grid > [class*="four column"].row > .column { - width: 25% !important; + width: 25% !important; } .ui.grid > [class*="five column"].row > .column { - width: 20% !important; + width: 20% !important; } .ui.grid > [class*="six column"].row > .column { - width: 16.66666667% !important; + width: 16.66666667% !important; } .ui.grid > [class*="seven column"].row > .column { - width: 14.28571429% !important; + width: 14.28571429% !important; } .ui.grid > [class*="eight column"].row > .column { - width: 12.5% !important; + width: 12.5% !important; } .ui.grid > [class*="nine column"].row > .column { - width: 11.11111111% !important; + width: 11.11111111% !important; } .ui.grid > [class*="ten column"].row > .column { - width: 10% !important; + width: 10% !important; } .ui.grid > [class*="eleven column"].row > .column { - width: 9.09090909% !important; + width: 9.09090909% !important; } .ui.grid > [class*="twelve column"].row > .column { - width: 8.33333333% !important; + width: 8.33333333% !important; } .ui.grid > [class*="thirteen column"].row > .column { - width: 7.69230769% !important; + width: 7.69230769% !important; } .ui.grid > [class*="fourteen column"].row > .column { - width: 7.14285714% !important; + width: 7.14285714% !important; } .ui.grid > [class*="fifteen column"].row > .column { - width: 6.66666667% !important; + width: 6.66666667% !important; } .ui.grid > [class*="sixteen column"].row > .column { - width: 6.25% !important; + width: 6.25% !important; } /* Celled Page */ .ui.celled.page.grid { - box-shadow: none; + -webkit-box-shadow: none; + box-shadow: none; } /*------------------- - Column Width + Column Width --------------------*/ /* Sizing Combinations */ @@ -18950,953 +20747,968 @@ ol.ui.horizontal.list li:before, .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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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: 100% !important; } /*---------------------- - Width per Device + 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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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; - } + .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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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; - } + .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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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; - } + .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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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; - } + .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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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; - } + .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 + Centered -----------------------*/ .ui.centered.grid, .ui.centered.grid > .row, .ui.grid > .centered.row { - text-align: center; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; + 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; + text-align: left; } .ui.grid > .centered.column, .ui.grid > .row > .centered.column { - display: block; - margin-left: auto; - margin-right: auto; + display: block; + margin-left: auto; + margin-right: auto; } /*---------------------- - Relaxed + 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; + 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; + 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; + 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; + margin-left: 2.5rem; + margin-right: 2.5rem; } /*---------------------- - Padded + Padded -----------------------*/ .ui.padded.grid:not(.vertically):not(.horizontally) { - margin: 0em !important; + margin: 0em !important; } [class*="horizontally padded"].ui.grid { - margin-left: 0em !important; - margin-right: 0em !important; + margin-left: 0em !important; + margin-right: 0em !important; } [class*="vertically padded"].ui.grid { - margin-top: 0em !important; - margin-bottom: 0em !important; + margin-top: 0em !important; + margin-bottom: 0em !important; } /*---------------------- - "Floated" + "Floated" -----------------------*/ .ui.grid [class*="left floated"].column { - margin-right: auto; + margin-right: auto; } .ui.grid [class*="right floated"].column { - margin-left: auto; + margin-left: auto; } /*---------------------- - Divided + Divided -----------------------*/ .ui.divided.grid:not([class*="vertically divided"]) > .column:not(.row), .ui.divided.grid:not([class*="vertically divided"]) > .row > .column { - box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); + -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; + margin-top: 1rem; + margin-bottom: 1rem; + padding-top: 0rem; + padding-bottom: 0rem; } .ui[class*="vertically divided"].grid > .row { - margin-top: 0em; - margin-bottom: 0em; + 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 { - box-shadow: none; + -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; + margin-top: 0em; } /* Divided Row */ .ui.grid > .divided.row > .column { - box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); + -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 { - box-shadow: none; + -webkit-box-shadow: none; + box-shadow: none; } /* Vertically Divided */ .ui[class*="vertically divided"].grid > .row { - position: relative; + 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; - box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15); + 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%; + width: 100%; } /* First Row Vertically Divided */ .ui[class*="vertically divided"].grid > .row:first-child:before { - box-shadow: none; + -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 { - box-shadow: -1px 0px 0px 0px rgba(255, 255, 255, 0.1); + -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 { - box-shadow: none; + -webkit-box-shadow: none; + box-shadow: none; } .ui.inverted[class*="vertically divided"].grid > .row:before { - box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.1); + -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 ); + 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 ); + margin-left: 5rem; + margin-right: 5rem; + width: calc(100% - 5rem ); } /*---------------------- - Celled + Celled -----------------------*/ .ui.celled.grid { - width: 100%; - margin: 1em 0em; - box-shadow: 0px 0px 0px 1px #D4D4D5; + 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; - box-shadow: 0px -1px 0px 0px #D4D4D5; + 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 { - box-shadow: -1px 0px 0px 0px #D4D4D5; + -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 { - box-shadow: none; + -webkit-box-shadow: none; + box-shadow: none; } .ui.celled.grid > .column:not(.row), .ui.celled.grid > .row > .column { - padding: 1em; + padding: 1em; } .ui.relaxed.celled.grid > .column:not(.row), .ui.relaxed.celled.grid > .row > .column { - padding: 1.5em; + padding: 1.5em; } .ui[class*="very relaxed"].celled.grid > .column:not(.row), .ui[class*="very relaxed"].celled.grid > .row > .column { - padding: 2em; + padding: 2em; } /* Internally Celled */ .ui[class*="internally celled"].grid { - box-shadow: none; - margin: 0em; + -webkit-box-shadow: none; + box-shadow: none; + margin: 0em; } .ui[class*="internally celled"].grid > .row:first-child { - box-shadow: none; + -webkit-box-shadow: none; + box-shadow: none; } .ui[class*="internally celled"].grid > .row > .column:first-child { - box-shadow: none; + -webkit-box-shadow: none; + box-shadow: none; } /*---------------------- - Vertically Aligned + Vertically Aligned -----------------------*/ /* Top Aligned */ @@ -19906,15 +21718,13 @@ ol.ui.horizontal.list li:before, .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; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - vertical-align: top; - -webkit-align-self: flex-start !important; - -ms-flex-item-align: start !important; - align-self: flex-start !important; + -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 */ @@ -19924,15 +21734,13 @@ ol.ui.horizontal.list li:before, .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; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - vertical-align: middle; - -webkit-align-self: center !important; - -ms-flex-item-align: center !important; - align-self: center !important; + -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 */ @@ -19942,15 +21750,13 @@ ol.ui.horizontal.list li:before, .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; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - vertical-align: bottom; - -webkit-align-self: flex-end !important; - -ms-flex-item-align: end !important; - align-self: flex-end !important; + -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 */ @@ -19960,18 +21766,15 @@ ol.ui.horizontal.list li:before, .ui.grid > .stretched.row > .column, .ui.grid > .stretched.column:not(.row), .ui.grid > .row > .stretched.column { - display: -webkit-inline-box !important; - display: -webkit-inline-flex !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: 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 > *, @@ -19979,14 +21782,13 @@ ol.ui.horizontal.list li:before, .ui.grid > .stretched.row > .column > *, .ui.grid > .stretched.column:not(.row) > *, .ui.grid > .row > .stretched.column > * { - -webkit-box-flex: 1; - -webkit-flex-grow: 1; - -ms-flex-positive: 1; - flex-grow: 1; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; } /*---------------------- - Horizontally Centered + Horizontally Centered -----------------------*/ /* Left Aligned */ @@ -19996,10 +21798,9 @@ ol.ui.horizontal.list li:before, .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; - -webkit-align-self: inherit; - -ms-flex-item-align: inherit; - align-self: inherit; + text-align: left; + -ms-flex-item-align: inherit; + align-self: inherit; } /* Center Aligned */ @@ -20009,17 +21810,15 @@ ol.ui.horizontal.list li:before, .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; - -webkit-align-self: inherit; - -ms-flex-item-align: inherit; - align-self: inherit; + text-align: center; + -ms-flex-item-align: inherit; + align-self: inherit; } .ui[class*="center aligned"].grid { - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } /* Right Aligned */ @@ -20029,10 +21828,9 @@ ol.ui.horizontal.list li:before, .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; - -webkit-align-self: inherit; - -ms-flex-item-align: inherit; - align-self: inherit; + text-align: right; + -ms-flex-item-align: inherit; + align-self: inherit; } /* Justified */ @@ -20042,14 +21840,14 @@ ol.ui.horizontal.list li:before, .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; + text-align: justify; + -webkit-hyphens: auto; + -ms-hyphens: auto; + hyphens: auto; } /*---------------------- - Colored + Colored -----------------------*/ .ui.grid > .row > .red.column, @@ -20065,10 +21863,10 @@ ol.ui.horizontal.list li:before, .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; + margin-top: -1rem; + margin-bottom: -1rem; + padding-top: 1rem; + padding-bottom: 1rem; } /* Red */ @@ -20076,8 +21874,8 @@ ol.ui.horizontal.list li:before, .ui.grid > .red.row, .ui.grid > .red.column, .ui.grid > .row > .red.column { - background-color: #DB2828 !important; - color: #FFFFFF; + background-color: #DB2828 !important; + color: #FFFFFF; } /* Orange */ @@ -20085,8 +21883,8 @@ ol.ui.horizontal.list li:before, .ui.grid > .orange.row, .ui.grid > .orange.column, .ui.grid > .row > .orange.column { - background-color: #F2711C !important; - color: #FFFFFF; + background-color: #F2711C !important; + color: #FFFFFF; } /* Yellow */ @@ -20094,8 +21892,8 @@ ol.ui.horizontal.list li:before, .ui.grid > .yellow.row, .ui.grid > .yellow.column, .ui.grid > .row > .yellow.column { - background-color: #FBBD08 !important; - color: #FFFFFF; + background-color: #FBBD08 !important; + color: #FFFFFF; } /* Olive */ @@ -20103,8 +21901,8 @@ ol.ui.horizontal.list li:before, .ui.grid > .olive.row, .ui.grid > .olive.column, .ui.grid > .row > .olive.column { - background-color: #B5CC18 !important; - color: #FFFFFF; + background-color: #B5CC18 !important; + color: #FFFFFF; } /* Green */ @@ -20112,8 +21910,8 @@ ol.ui.horizontal.list li:before, .ui.grid > .green.row, .ui.grid > .green.column, .ui.grid > .row > .green.column { - background-color: #21BA45 !important; - color: #FFFFFF; + background-color: #21BA45 !important; + color: #FFFFFF; } /* Teal */ @@ -20121,8 +21919,8 @@ ol.ui.horizontal.list li:before, .ui.grid > .teal.row, .ui.grid > .teal.column, .ui.grid > .row > .teal.column { - background-color: #00B5AD !important; - color: #FFFFFF; + background-color: #00B5AD !important; + color: #FFFFFF; } /* Blue */ @@ -20130,8 +21928,8 @@ ol.ui.horizontal.list li:before, .ui.grid > .blue.row, .ui.grid > .blue.column, .ui.grid > .row > .blue.column { - background-color: #2185D0 !important; - color: #FFFFFF; + background-color: #2185D0 !important; + color: #FFFFFF; } /* Violet */ @@ -20139,8 +21937,8 @@ ol.ui.horizontal.list li:before, .ui.grid > .violet.row, .ui.grid > .violet.column, .ui.grid > .row > .violet.column { - background-color: #6435C9 !important; - color: #FFFFFF; + background-color: #6435C9 !important; + color: #FFFFFF; } /* Purple */ @@ -20148,8 +21946,8 @@ ol.ui.horizontal.list li:before, .ui.grid > .purple.row, .ui.grid > .purple.column, .ui.grid > .row > .purple.column { - background-color: #A333C8 !important; - color: #FFFFFF; + background-color: #A333C8 !important; + color: #FFFFFF; } /* Pink */ @@ -20157,8 +21955,8 @@ ol.ui.horizontal.list li:before, .ui.grid > .pink.row, .ui.grid > .pink.column, .ui.grid > .row > .pink.column { - background-color: #E03997 !important; - color: #FFFFFF; + background-color: #E03997 !important; + color: #FFFFFF; } /* Brown */ @@ -20166,8 +21964,8 @@ ol.ui.horizontal.list li:before, .ui.grid > .brown.row, .ui.grid > .brown.column, .ui.grid > .row > .brown.column { - background-color: #A5673F !important; - color: #FFFFFF; + background-color: #A5673F !important; + color: #FFFFFF; } /* Grey */ @@ -20175,8 +21973,8 @@ ol.ui.horizontal.list li:before, .ui.grid > .grey.row, .ui.grid > .grey.column, .ui.grid > .row > .grey.column { - background-color: #767676 !important; - color: #FFFFFF; + background-color: #767676 !important; + color: #FFFFFF; } /* Black */ @@ -20184,509 +21982,524 @@ ol.ui.horizontal.list li:before, .ui.grid > .black.row, .ui.grid > .black.column, .ui.grid > .row > .black.column { - background-color: #1B1C1D !important; - color: #FFFFFF; + background-color: #1B1C1D !important; + color: #FFFFFF; } /*---------------------- - Equal Width + 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; - -webkit-flex-grow: 1; - -ms-flex-positive: 1; - flex-grow: 1; + 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; - -webkit-flex-grow: 0; - -ms-flex-positive: 0; - flex-grow: 0; + -webkit-box-flex: 0; + -ms-flex-positive: 0; + flex-grow: 0; } /*---------------------- - Reverse + 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; - -webkit-flex-direction: row-reverse; - -ms-flex-direction: row-reverse; - flex-direction: row-reverse; - } + .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; - -webkit-flex-direction: column-reverse; - -ms-flex-direction: column-reverse; - flex-direction: column-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 */ + /* Divided Reversed */ - .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child, - .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child { - box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); - } + .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 { - box-shadow: none; - } + .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 */ + /* Vertically Divided Reversed */ - .ui.grid[class*="vertically divided"][class*="mobile vertically reversed"] > .row:first-child:before { - box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15); - } + .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 { - box-shadow: none; - } + .ui.grid[class*="vertically divided"][class*="mobile vertically reversed"] > .row:last-child:before { + -webkit-box-shadow: none; + box-shadow: none; + } - /* Celled Reversed */ + /* Celled Reversed */ - .ui[class*="mobile reversed"].celled.grid > .row > .column:first-child { - box-shadow: -1px 0px 0px 0px #D4D4D5; - } + .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 { - box-shadow: none; - } + .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; - -webkit-flex-direction: row-reverse; - -ms-flex-direction: row-reverse; - flex-direction: row-reverse; - } + .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; - -webkit-flex-direction: column-reverse; - -ms-flex-direction: column-reverse; - flex-direction: column-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 */ + /* Divided Reversed */ - .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child, - .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child { - box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); - } + .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 { - box-shadow: none; - } + .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 */ + /* Vertically Divided Reversed */ - .ui.grid[class*="vertically divided"][class*="tablet vertically reversed"] > .row:first-child:before { - box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15); - } + .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 { - box-shadow: none; - } + .ui.grid[class*="vertically divided"][class*="tablet vertically reversed"] > .row:last-child:before { + -webkit-box-shadow: none; + box-shadow: none; + } - /* Celled Reversed */ + /* Celled Reversed */ - .ui[class*="tablet reversed"].celled.grid > .row > .column:first-child { - box-shadow: -1px 0px 0px 0px #D4D4D5; - } + .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 { - box-shadow: none; - } + .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; - -webkit-flex-direction: row-reverse; - -ms-flex-direction: row-reverse; - flex-direction: row-reverse; - } + .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; - -webkit-flex-direction: column-reverse; - -ms-flex-direction: column-reverse; - flex-direction: column-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 */ + /* Divided Reversed */ - .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child, - .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child { - box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); - } + .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 { - box-shadow: none; - } + .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 */ + /* Vertically Divided Reversed */ - .ui.grid[class*="vertically divided"][class*="computer vertically reversed"] > .row:first-child:before { - box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15); - } + .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 { - box-shadow: none; - } + .ui.grid[class*="vertically divided"][class*="computer vertically reversed"] > .row:last-child:before { + -webkit-box-shadow: none; + box-shadow: none; + } - /* Celled Reversed */ + /* Celled Reversed */ - .ui[class*="computer reversed"].celled.grid > .row > .column:first-child { - box-shadow: -1px 0px 0px 0px #D4D4D5; - } + .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 { - box-shadow: none; - } + .ui[class*="computer reversed"].celled.grid > .row > .column:last-child { + -webkit-box-shadow: none; + box-shadow: none; + } } /*------------------- - Doubling + Doubling --------------------*/ /* Tablet Only */ @media only screen and (min-width: 768px) and (max-width: 991px) { - .ui.doubling.grid { - width: auto; - } + .ui.doubling.grid { + width: auto; + } - .ui.grid > .doubling.row, - .ui.doubling.grid > .row { - margin: 0em !important; - padding: 0em !important; - } + .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; - box-shadow: none !important; - margin: 0em; - } + .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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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; - } + .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, + .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; - box-shadow: none !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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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*="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; - } + .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 + Stackable --------------------*/ @media only screen and (max-width: 767px) { - .ui.stackable.grid { - width: auto; - margin-left: 0em !important; - margin-right: 0em !important; - } + .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; - box-shadow: none !important; - padding: 1rem 1rem !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; - } + .ui.stackable.grid:not(.vertically) > .row { + margin: 0em; + padding: 0em; + } - /* Coupling */ + /* Coupling */ - .ui.container > .ui.stackable.grid > .column, - .ui.container > .ui.stackable.grid > .row > .column { - padding-left: 0em !important; - padding-right: 0em !important; - } + .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 */ + /* 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; - } + .ui.grid .ui.stackable.grid, + .ui.segment:not(.vertical) .ui.stackable.page.grid { + margin-left: -1rem !important; + margin-right: -1rem !important; + } - /* Divided Stackable */ + /* 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.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.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); - box-shadow: none !important; - padding-top: 2rem !important; - padding-bottom: 2rem !important; - } + .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 { - box-shadow: none !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; - } + .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) + Only (Device) -----------------------*/ /* These include arbitrary class repetitions for forced specificity */ @@ -20694,10191 +22507,585 @@ ol.ui.horizontal.list li:before, /* 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*="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*="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*="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; - } + .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*="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*="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*="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; - } + .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*="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*="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*="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; - } + .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*="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*="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; - } + .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*="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*="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 + Theme Overrides *******************************/ /******************************* - Site 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 - * - */ +* # Semantic - Menu +* http://github.com/semantic-org/semantic-ui/ +* +* +* Copyright 2015 Contributor +* Released under the MIT license +* http://opensource.org/licenses/MIT +* +*/ /******************************* - Standard + Standard *******************************/ /*-------------- - Menu + Menu ---------------*/ .ui.menu { - display: -webkit-box; - display: -webkit-flex; - 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); - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); - border-radius: 0.28571429rem; - min-height: 2.85714286em; + 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; + content: ''; + display: block; + height: 0px; + clear: both; + visibility: hidden; } .ui.menu:first-child { - margin-top: 0rem; + margin-top: 0rem; } .ui.menu:last-child { - margin-bottom: 0rem; + margin-bottom: 0rem; } /*-------------- - Sub-Menu + Sub-Menu ---------------*/ .ui.menu .menu { - margin: 0em; + margin: 0em; } .ui.menu:not(.vertical) > .menu { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; + display: -webkit-box; + display: -ms-flexbox; + display: flex; } /*-------------- - Item + Item ---------------*/ .ui.menu:not(.vertical) .item { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; + 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; - -webkit-flex: 0 0 auto; - -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, box-shadow 0.1s ease, color 0.1s ease; - transition: background 0.1s ease, box-shadow 0.1s ease, color 0.1s ease; + 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-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); + position: absolute; + content: ''; + top: 0%; + right: 0px; + height: 100%; + width: 1px; + background: rgba(34, 36, 38, 0.1); } /*-------------- - Text Content + 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; + -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; + margin-top: 0; } .ui.menu .item > p:last-child { - margin-bottom: 0; + margin-bottom: 0; } /*-------------- - Icons + Icons ---------------*/ .ui.menu .item > i.icon { - opacity: 0.9; - float: none; - margin: 0em 0.35714286em 0em 0em; + opacity: 0.9; + float: none; + margin: 0em 0.35714286em 0em 0em; } /*-------------- - Button + 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; + position: relative; + top: 0em; + margin: -0.5em 0em; + padding-bottom: 0.78571429em; + padding-top: 0.78571429em; + font-size: 1em; } /*---------------- - Grid / Container +Grid / Container -----------------*/ .ui.menu > .grid, .ui.menu > .container { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-align: inherit; - -webkit-align-items: inherit; - -ms-flex-align: inherit; - align-items: inherit; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -webkit-flex-direction: inherit; - -ms-flex-direction: inherit; - flex-direction: inherit; + 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 + Inputs ---------------*/ .ui.menu .item > .input { - width: 100%; + width: 100%; } .ui.menu:not(.vertical) .item > .input { - position: relative; - top: 0em; - margin: -0.5em 0em; + position: relative; + top: 0em; + margin: -0.5em 0em; } .ui.menu .item > .input input { - font-size: 1em; - padding-top: 0.57142857em; - padding-bottom: 0.57142857em; + font-size: 1em; + padding-top: 0.57142857em; + padding-bottom: 0.57142857em; } /*-------------- - Header + Header ---------------*/ .ui.menu .header.item, .ui.vertical.menu .header.item { - margin: 0em; - background: ''; - text-transform: normal; - font-weight: bold; + 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; + margin: 0em 0em 0.5em; + font-size: 1em; + font-weight: bold; } /*-------------- - Dropdowns + Dropdowns ---------------*/ /* Dropdown Icon */ .ui.menu .item > i.dropdown.icon { - padding: 0em; - float: right; - margin: 0em 0em 0em 1em; + padding: 0em; + float: right; + margin: 0em 0em 0em 1em; } /* Menu */ .ui.menu .dropdown.item .menu { - left: 0px; - min-width: calc(100% - 1px); - border-radius: 0em 0em 0.28571429rem 0.28571429rem; - background: #FFFFFF; - margin: 0em 0px 0px; - box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.08); - -webkit-box-orient: vertical !important; - -webkit-box-direction: normal !important; - -webkit-flex-direction: column !important; - -ms-flex-direction: column !important; - flex-direction: column !important; + 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; - box-shadow: none !important; - -webkit-transition: none !important; - transition: none !important; + 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; + 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; + 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; + 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; + 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; + 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; + border-radius: 0.28571429rem; + margin-top: 0.35714286em; } /* Pointing */ .ui.menu .pointing.dropdown.item .menu { - margin-top: 0.75em; + 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); + color: rgba(255, 255, 255, 0.9); } /* Vertical */ .ui.vertical.menu .dropdown.item > .icon { - float: right; - content: "\f0da"; - margin-left: 1em; + float: right; + content: "\f0da"; + margin-left: 1em; } .ui.vertical.menu .dropdown.item .menu { - left: 100%; - min-width: 0; - margin: 0em 0em 0em 0em; - box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.08); - border-radius: 0em 0.28571429rem 0.28571429rem 0.28571429rem; + 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; + bottom: 0; } .ui.vertical.menu .dropdown.item:not(.upward) .menu { - top: 0; + top: 0; } .ui.vertical.menu .active.dropdown.item { - border-top-right-radius: 0em; - border-bottom-right-radius: 0em; + border-top-right-radius: 0em; + border-bottom-right-radius: 0em; } .ui.vertical.menu .dropdown.active.item { - box-shadow: none; + -webkit-box-shadow: none; + box-shadow: none; } /* Evenly Divided */ .ui.item.menu .dropdown .menu .item { - width: 100%; + width: 100%; } /*-------------- - Labels + Labels ---------------*/ .ui.menu .item > .label { - background: #999999; - color: #FFFFFF; - margin-left: 1em; - padding: 0.3em 0.78571429em; + 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; + 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; + padding: 0.3em 0.78571429em; } /*-------------- - Images + Images ---------------*/ .ui.menu .item > img:not(.ui) { - display: inline-block; - vertical-align: middle; - margin: -0.3em 0em; - width: 2.5em; + 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; + display: block; + max-width: 100%; + width: auto; } /******************************* - Coupling + Coupling *******************************/ /*-------------- - Sidebar + 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; + display: block !important; } .ui.vertical.sidebar.menu > .item::before { - top: auto; - bottom: 0px; + top: auto; + bottom: 0px; } /*-------------- - Container + Container ---------------*/ @media only screen and (max-width: 767px) { - .ui.menu > .ui.container { - width: 100% !important; - margin-left: 0em !important; - margin-right: 0em !important; - } + .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; - 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: -webkit-flex; - 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: -webkit-flex; - 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; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - background: #FFFFFF; - 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; - 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; - 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; - 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; - 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; - 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; - 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: -webkit-inline-flex; - 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); - box-shadow: none; -} - -/*-------------- - Secondary ----------------*/ - -.ui.secondary.menu { - background: none; - margin-left: -0.35714286em; - margin-right: -0.35714286em; - border-radius: 0em; - border: none; - box-shadow: none; -} - -/* Item */ - -.ui.secondary.menu .item { - -webkit-align-self: center; - -ms-flex-item-align: center; - align-self: center; - 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 { - 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 { - 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 { - 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; - -webkit-align-self: flex-end; - -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 { - 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; - 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; - box-shadow: none; - border: none; - margin: 1em -0.5em; -} - -.ui.text.menu .item { - border-radius: 0px; - box-shadow: none; - -webkit-align-self: center; - -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; - 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 { - box-shadow: none; -} - -.ui.text.attached.menu { - 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; - -webkit-flex-direction: column; - -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; - -webkit-flex-direction: column; - -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; - } -} - -/*-------------- - 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; - 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; - 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; - 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: -webkit-inline-flex; - 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; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; -} - -.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 ); - 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; - 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.14285714rem; -} - -.ui.huge.vertical.menu { - width: 20rem; -} - -/* Big */ - -.ui.big.menu { - font-size: 1.21428571rem; -} - -.ui.big.vertical.menu { - width: 22rem; -} - -/* Massive */ - -.ui.massive.menu { - font-size: 1.28571429rem; -} - -.ui.massive.vertical.menu { - width: 25rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI 2.2.10 - 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, box-shadow 0.1s ease; - transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, box-shadow 0.1s ease; - border-radius: 0.28571429rem; - 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: -webkit-flex; - display: -ms-flexbox; - display: flex; -} - -/*-------------- - Hidden ----------------*/ - -.ui.hidden.hidden.hidden.hidden.message { - display: none; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Compact ----------------*/ - -.ui.compact.message { - display: inline-block; -} - -/*-------------- - Attached ----------------*/ - -.ui.attached.message { - margin-bottom: -1px; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; - 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; - 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: -webkit-flex; - display: -ms-flexbox; - display: flex; - width: 100%; - -webkit-box-align: center; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; -} - -.ui.icon.message > .icon:not(.close) { - display: block; - -webkit-box-flex: 0; - -webkit-flex: 0 0 auto; - -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; - -webkit-flex: 1 1 auto; - -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 { - 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 { - 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 { - 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 { - 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 { - 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 { - 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 { - 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; - 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; - 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; - 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; - 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; - 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; - 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; - 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; - 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; - 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; - 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; - 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.2.10 - 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); - 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 { - 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 { - 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; -} - -/* 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; - 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; - 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 { - 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); - 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; - box-shadow: 1px 1px 0px 1px #FFFFFF; -} - -/* Remove Border */ - -.ui.celled.definition.table thead:not(.full-width) th:first-child { - box-shadow: 0px -1px 0px 1px #FFFFFF; -} - -.ui.celled.definition.table tfoot:not(.full-width) th:first-child { - 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: ''; - 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 { - 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 { - 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 { - 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 { - 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 { - 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; - 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; - box-shadow: none !important; - } - - /* Definition Table */ - - .ui.definition[class*="tablet stackable"].table thead th:first-child { - 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 ); - 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; - 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-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-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); -} - -.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); - box-shadow: none; -} - -.ui.basic.table thead, -.ui.basic.table tfoot { - 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.2.10 - 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.2.10 - 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: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - width: 290px; - min-height: 0px; - background: #FFFFFF; - padding: 0em; - border: none; - border-radius: 0.28571429rem; - box-shadow: 0px 1px 3px 0px #D4D4D5, 0px 0px 0px 1px #D4D4D5; - -webkit-transition: box-shadow 0.1s ease, -webkit-transform 0.1s ease; - transition: 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-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: -webkit-flex; - display: -ms-flexbox; - display: flex; - margin: -0.875em -0.5em; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; -} - -.ui.cards > .card { - display: -webkit-box; - display: -webkit-flex; - 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; - -webkit-flex: 0 0 auto; - -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; - -webkit-flex-grow: 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; - 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; - -webkit-flex-grow: 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); - 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 { - 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 { - 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 { - 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; - -webkit-justify-content: 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; - 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 { - 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 { - 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 { - 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 { - 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 { - 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 { - 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 { - 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 { - 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 { - 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 { - 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 { - 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 { - 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 { - 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 { - 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 { - 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 { - 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 { - 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 { - 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 { - 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 { - 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 { - 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 { - 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 { - 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 { - 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 { - 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 { - 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.2.10 - 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; - 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.2.10 - 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: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -webkit-flex-direction: row; - -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; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 2.5em; - height: auto; - -webkit-align-self: stretch; - -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; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -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; - 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.2.10 - 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: -webkit-flex; - display: -ms-flexbox; - display: flex; - margin: 1em 0em; - width: 100%; - min-height: 0px; - background: transparent; - padding: 0em; - border: none; - border-radius: 0rem; - box-shadow: none; - -webkit-transition: box-shadow 0.1s ease; - transition: 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; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - display: block; - float: none; - margin: 0em; - padding: 0em; - max-height: ''; - -webkit-align-self: top; - -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; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - background: none; - margin: 0em; - padding: 0em; - 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; - -webkit-align-self: top; - -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 { - -webkit-align-self: middle; - -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); - 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; - -webkit-flex-direction: column; - -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 { - -webkit-align-self: flex-start; - -ms-flex-item-align: start; - align-self: flex-start; -} - -.ui.items > .item > .image + [class*="middle aligned"].content { - -webkit-align-self: center; - -ms-flex-item-align: center; - align-self: center; -} - -.ui.items > .item > .image + [class*="bottom aligned"].content { - -webkit-align-self: flex-end; - -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.2.10 - 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: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -webkit-flex-direction: column; - -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: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-align: start; - -webkit-align-items: flex-start; - -ms-flex-align: start; - align-items: flex-start; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; -} - -.ui.statistics > .statistic { - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-flex: 0; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - margin: 0em 1.5em 2em; - max-width: auto; -} - -.ui.statistics { - display: -webkit-box; - display: -webkit-flex; - 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; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-align: center; - -webkit-align-items: center; - -ms-flex-align: center; - -ms-grid-row-align: center; - align-items: center; -} - -.ui.horizontal.statistics { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - margin: 0em; - max-width: none; -} - -.ui.horizontal.statistics .statistic { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-align: center; - -webkit-align-items: center; - -ms-flex-align: center; - -ms-grid-row-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.2.10 - 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; - 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.2.10 - 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, box-shadow 0.1s ease, -webkit-transform 0.1s ease; - transition: border 0.1s ease, opacity 0.1s ease, box-shadow 0.1s ease, -webkit-transform 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; - 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, box-shadow 0.1s ease, -webkit-transform 0.1s ease; - transition: border 0.1s ease, opacity 0.1s ease, box-shadow 0.1s ease, -webkit-transform 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; -} - -/*-------------- - 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-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; - 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); - 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-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; - 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; - box-shadow: none; -} - -/* 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; - box-shadow: none; -} - -/* 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.2.10 - 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; - 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-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 { - width: 100%; - height: 100%; - display: table; - -webkit-user-select: text; - -moz-user-select: text; - -ms-user-select: text; - user-select: text; -} - -.ui.dimmer > .content > * { - display: table-cell; - vertical-align: middle; - color: #FFFFFF; -} - -/* Loose Coupling */ - -.ui.segment > .ui.dimmer { - border-radius: inherit !important; -} - -/******************************* - States -*******************************/ - -.animating.dimmable:not(body), -.dimmed.dimmable:not(body) { - overflow: hidden; -} - -.dimmed.dimmable > .ui.animating.dimmer, -.dimmed.dimmable > .ui.visible.dimmer, -.ui.active.dimmer { - display: block; - opacity: 1; -} - -.ui.disabled.dimmer { - width: 0 !important; - height: 0 !important; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - 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 filter ease; - transition: 800ms 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.2.10 - 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: box-shadow 0.1s ease, width 0.1s ease; - transition: box-shadow 0.1s ease, width 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; - 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; - 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 .menu > .input { - width: auto; - display: -webkit-box; - display: -webkit-flex; - 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% !important; - right: auto !important; - 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: middle; - width: auto; - 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); - box-shadow: none; - border: 1px solid rgba(34, 36, 38, 0.15); - border-radius: 0.28571429rem; - -webkit-transition: box-shadow 0.1s ease, width 0.1s ease; - transition: box-shadow 0.1s ease, width 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.78571429em; - 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; - 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); - box-shadow: none; -} - -/* Active */ - -.ui.selection.active.dropdown { - border-color: #96C8DA; - box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); -} - -.ui.selection.active.dropdown .menu { - border-color: #96C8DA; - box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); -} - -/* Focus */ - -.ui.selection.dropdown:focus { - border-color: #96C8DA; - box-shadow: none; -} - -.ui.selection.dropdown:focus .menu { - border-color: #96C8DA; - 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; - box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); -} - -.ui.selection.active.dropdown:hover .menu { - border-color: #96C8DA; - 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; - box-shadow: none !important; -} - -.ui.active.empty.selection.dropdown .menu { - border: 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; - 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; - 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); - 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; - padding: 1.14285714em 1.07142857em !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%; - 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; -} - -/*-------------------- - 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; -} - -/* Left Flyout Menu */ - -.ui.dropdown > .left.menu .menu, -.ui.dropdown .menu .left.menu { - left: auto !important; - right: 100% !important; - border-radius: 0.28571429rem !important; -} - -.ui.dropdown .item .left.dropdown.icon, -.ui.dropdown .left.menu .item .dropdown.icon { - width: auto; - float: left; - margin: 0em 0.78571429rem 0em 0em; -} - -.ui.dropdown .item .left.dropdown.icon, -.ui.dropdown .left.menu .item .dropdown.icon { - width: auto; - float: left; - margin: 0em 0.78571429rem 0em 0em; -} - -.ui.dropdown .item .left.dropdown.icon + .text, -.ui.dropdown .left.menu .item .dropdown.icon + .text { - margin-left: 1em; -} - -/*-------------- - Upward ----------------*/ - -/* Upward Main Menu */ - -.ui.upward.dropdown > .menu { - top: auto; - bottom: 100%; - 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; - box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08); -} - -.ui.upward.selection.dropdown:hover { - 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 { - 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 { - box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.05); -} - -.ui.upward.active.selection.dropdown:hover .menu { - 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; - 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; - 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; - box-shadow: -1px -1px 0px 1px 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.right.pointing.dropdown > .menu:after { - top: -0.25em; - left: auto; - right: 1em; - 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); -} - -/* 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.upward.pointing.dropdown > .menu, -.ui.upward.top.pointing.dropdown > .menu { - top: auto; - bottom: 100%; - margin: 0em 0em 0.78571429rem; - border-radius: 0.28571429rem; -} - -.ui.upward.pointing.dropdown > .menu:after, -.ui.upward.top.pointing.dropdown > .menu:after { - top: 100%; - bottom: auto; - box-shadow: 1px 1px 0px 1px rgba(34, 36, 38, 0.15); - margin: -0.25em 0em 0em; -} - -/* Right Pointing Upward */ - -.ui.upward.right.pointing.dropdown:not(.top):not(.bottom) > .menu { - top: auto; - bottom: 0; - margin: 0em 1em 0em 0em; -} - -.ui.upward.right.pointing.dropdown:not(.top):not(.bottom) > .menu:after { - top: auto; - bottom: 0; - margin: 0em 0em 1em 0em; - box-shadow: -1px -1px 0px 1px rgba(34, 36, 38, 0.15); -} - -/* Left Pointing Upward */ - -.ui.upward.left.pointing.dropdown:not(.top):not(.bottom) > .menu { - top: auto; - bottom: 0; - margin: 0em 0em 0em 1em; -} - -.ui.upward.left.pointing.dropdown:not(.top):not(.bottom) > .menu:after { - top: auto; - bottom: 0; - margin: 0em 0em 1em 0em; - box-shadow: -1px -1px 0px 1px 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.2.10 - 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; + .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); + } } /******************************* @@ -30889,684 +23096,2034 @@ select.ui.dropdown { 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; +.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); } /*-------------- - Active + Pressed ---------------*/ -.ui.active.embed > .icon, -.ui.active.embed > .placeholder { - display: none; +.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); } -.ui.active.embed > .embed { - display: block; +/*-------------- + 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); } /******************************* - Video Overrides + Types *******************************/ -/******************************* - Site Overrides -*******************************/ +/*------------------ +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 *******************************/ -.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.2.10 - Modal - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Modal -*******************************/ - -.ui.modal { - display: none; - position: fixed; - z-index: 1001; - top: 50%; - left: 50%; - text-align: left; - background: #FFFFFF; - border: none; - 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%; - 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 + Stackable ---------------*/ -.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; -} +@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.modal > .close:hover { - opacity: 1; + .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; + } } /*-------------- - Header + Colors ---------------*/ -.ui.modal > .header { - display: block; - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - background: #FFFFFF; - margin: 0em; - padding: 1.25rem 1.5rem; - box-shadow: none; - color: rgba(0, 0, 0, 0.85); - border-bottom: 1px solid rgba(34, 36, 38, 0.15); +/*--- Standard Colors ---*/ + +.ui.menu .red.active.item, +.ui.red.menu .active.item { + border-color: #DB2828 !important; + color: #DB2828 !important; } -.ui.modal > .header:not(.ui) { - font-size: 1.42857143rem; - line-height: 1.28571429em; - font-weight: bold; +.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; } /*-------------- - Content + Inverted ---------------*/ -.ui.modal > .content { - display: block; - width: 100%; - font-size: 1em; - line-height: 1.4; - padding: 1.5rem; - background: #FFFFFF; +.ui.inverted.menu { + border: 0px solid transparent; + background: #1B1C1D; + -webkit-box-shadow: none; + box-shadow: none; } -.ui.modal > .image.content { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; +/* Menu Item */ + +.ui.inverted.menu .item, +.ui.inverted.menu .item > a:not(.ui) { + background: transparent; + color: rgba(255, 255, 255, 0.9); } -/* Image */ - -.ui.modal > .content > .image { - display: block; - -webkit-box-flex: 0; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - width: ''; - -webkit-align-self: top; - -ms-flex-item-align: top; - align-self: top; +.ui.inverted.menu .item.menu { + background: transparent; } -.ui.modal > [class*="top aligned"] { - -webkit-align-self: top; - -ms-flex-item-align: top; - align-self: top; +/*--- Border ---*/ + +.ui.inverted.menu .item:before { + background: rgba(255, 255, 255, 0.08); } -.ui.modal > [class*="middle aligned"] { - -webkit-align-self: middle; - -ms-flex-item-align: middle; - align-self: middle; +.ui.vertical.inverted.menu .item:before { + background: rgba(255, 255, 255, 0.08); } -.ui.modal > [class*="stretched"] { - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; +/* Sub Menu */ + +.ui.vertical.inverted.menu .menu .item, +.ui.vertical.inverted.menu .menu .item a:not(.ui) { + color: rgba(255, 255, 255, 0.5); } -/* Description */ +/* Header */ -.ui.modal > .content > .description { - display: block; - -webkit-box-flex: 1; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - min-width: 0px; - -webkit-align-self: top; - -ms-flex-item-align: top; - align-self: top; +.ui.inverted.menu .header.item { + margin: 0em; + background: transparent; + -webkit-box-shadow: none; + box-shadow: none; } -.ui.modal > .content > .icon + .description, -.ui.modal > .content > .image + .description { - -webkit-box-flex: 0; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - min-width: ''; - width: auto; - padding-left: 2em; +/* Disabled */ + +.ui.inverted.menu .item.disabled, +.ui.inverted.menu .item.disabled:hover { + color: rgba(225, 225, 225, 0.3); } -/*rtl:ignore*/ +/*--- Hover ---*/ -.ui.modal > .content > .image > i.icon { - margin: 0em; - opacity: 1; - width: auto; - line-height: 1; - font-size: 8rem; +.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; } /*-------------- - Actions + Floated ---------------*/ -.ui.modal > .actions { - background: #F9FAFB; - padding: 1rem 1rem; - border-top: 1px solid rgba(34, 36, 38, 0.15); - text-align: right; +.ui.floated.menu { + float: left; + margin: 0rem 0.5rem 0rem 0rem; } -.ui.modal .actions > .button { - margin-left: 0.75em; +.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; } /*------------------- - Responsive + Compact --------------------*/ -/* Modal Width */ - -@media only screen and (max-width: 767px) { - .ui.modal { - width: 95%; - margin: 0em 0em 0em -47.5%; - } +.ui.compact.menu { + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + margin: 0em; + vertical-align: middle; } -@media only screen and (min-width: 768px) { - .ui.modal { - width: 88%; - margin: 0em 0em 0em -44%; - } +.ui.compact.vertical.menu { + display: inline-block; } -@media only screen and (min-width: 992px) { - .ui.modal { - width: 850px; - margin: 0em 0em 0em -425px; - } +.ui.compact.menu .item:last-child { + border-radius: 0em 0.28571429rem 0.28571429rem 0em; } -@media only screen and (min-width: 1200px) { - .ui.modal { - width: 900px; - margin: 0em 0em 0em -450px; - } +.ui.compact.menu .item:last-child:before { + display: none; } -@media only screen and (min-width: 1920px) { - .ui.modal { - width: 950px; - margin: 0em 0em 0em -475px; - } +.ui.compact.vertical.menu { + width: auto !important; } -/* 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); - } +.ui.compact.vertical.menu .item:last-child::before { + display: block; } -/* Mobile */ +/*------------------- + Fluid +--------------------*/ -@media only screen and (max-width: 767px) { - .ui.modal > .header { - padding: 0.75rem 1rem !important; - padding-right: 2.25rem !important; - } +.ui.menu.fluid, +.ui.vertical.menu.fluid { + width: 100% !important; +} - .ui.modal > .content { - display: block; - padding: 1rem !important; - } +/*------------------- + Evenly Sized +--------------------*/ - .ui.modal > .close { - top: 0.5rem !important; - right: 0.5rem !important; - } +.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; +} - /*rtl:ignore*/ +.ui.attached.item.menu { + margin: 0em -1px !important; +} - .ui.modal .image.content { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - } +.ui.item.menu .item:last-child:before { + display: none; +} - .ui.modal .content > .image { - display: block; - max-width: 100%; - margin: 0em auto !important; - text-align: center; - padding: 0rem 0rem 1rem !important; - } +.ui.menu.two.item .item { + width: 50%; +} - .ui.modal > .content > .image > i.icon { - font-size: 5rem; - text-align: center; - } +.ui.menu.three.item .item { + width: 33.333%; +} - /*rtl:ignore*/ +.ui.menu.four.item .item { + width: 25%; +} - .ui.modal .content > .description { - display: block; - width: 100% !important; - margin: 0em !important; - padding: 1rem 0rem !important; - box-shadow: none; - } +.ui.menu.five.item .item { + width: 20%; +} - /* Let Buttons Stack */ +.ui.menu.six.item .item { + width: 16.666%; +} - .ui.modal > .actions { - padding: 1rem 1rem 0rem !important; - } +.ui.menu.seven.item .item { + width: 14.285%; +} - .ui.modal .actions > .buttons, - .ui.modal .actions > .button { - margin-bottom: 1rem; - } +.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%; } /*-------------- - Coupling + Fixed ---------------*/ -.ui.inverted.dimmer > .ui.modal { - box-shadow: 1px 3px 10px 2px rgba(0, 0, 0, 0.2); +.ui.menu.fixed { + position: fixed; + z-index: 101; + margin: 0em; + width: 100%; } -/******************************* - Types -*******************************/ - -.ui.basic.modal { - background-color: transparent; - border: none; - border-radius: 0em; - box-shadow: none !important; - color: #FFFFFF; +.ui.menu.fixed, +.ui.menu.fixed .item:first-child, +.ui.menu.fixed .item:last-child { + border-radius: 0px !important; } -.ui.basic.modal > .header, -.ui.basic.modal > .content, -.ui.basic.modal > .actions { - background-color: transparent; +.ui.fixed.menu, +.ui[class*="top fixed"].menu { + top: 0px; + left: 0px; + right: auto; + bottom: auto; } -.ui.basic.modal > .header { - color: #FFFFFF; +.ui[class*="top fixed"].menu { + border-top: none; + border-left: none; + border-right: none; } -.ui.basic.modal > .close { - top: 1rem; - right: 1.5rem; +.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.inverted.dimmer > .basic.modal { - color: rgba(0, 0, 0, 0.87); +.ui[class*="bottom fixed"].menu { + border-bottom: none; + border-left: none; + border-right: none; + bottom: 0px; + left: 0px; + top: auto; + right: auto; } -.ui.inverted.dimmer > .ui.basic.modal > .header { - color: rgba(0, 0, 0, 0.85); +.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%; } -/* Tablet and Mobile */ +/* Coupling with Grid */ -@media only screen and (max-width: 991px) { - .ui.basic.modal > .close { - color: #FFFFFF; - } +.ui.fixed.menu + .ui.grid { + padding-top: 2.75rem; } -/******************************* - States -*******************************/ +/*------------------- + Pointing +--------------------*/ -.ui.active.modal { - display: block; +.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; } -/******************************* - Variations -*******************************/ - -/*-------------- - Scrolling ----------------*/ - -/* A modal that cannot fit on the page */ - -.scrolling.dimmable.dimmed { - overflow: hidden; +.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; } -.scrolling.dimmable.dimmed > .dimmer { - overflow: auto; - -webkit-overflow-scrolling: touch; +/* Active */ + +.ui.pointing.menu .active.item:after { + visibility: visible; } -.scrolling.dimmable > .dimmer { - position: fixed; +.ui.pointing.menu .active.dropdown.item:after { + visibility: hidden; } -.modals.dimmer .ui.scrolling.modal { - position: static !important; - margin: 3.5rem auto !important; +/* Don't double up pointers */ + +.ui.pointing.menu .dropdown.active.item:after, +.ui.pointing.menu .active.item .menu .active.item:after { + display: none; } -/* undetached scrolling */ +/* Colors */ -.scrolling.undetached.dimmable.dimmed { - overflow: auto; - -webkit-overflow-scrolling: touch; +.ui.pointing.menu .active.item:hover:after { + background-color: #F2F2F2; } -.scrolling.undetached.dimmable.dimmed > .dimmer { - overflow: hidden; +.ui.pointing.menu .active.item:after { + background-color: #F2F2F2; } -.scrolling.undetached.dimmable .ui.scrolling.modal { - position: absolute; - left: 50%; - margin-top: 3.5rem !important; +.ui.pointing.menu .active.item:hover:after { + background-color: #F2F2F2; } -/* Coupling with Sidebar */ - -.undetached.dimmable.dimmed > .pusher { - z-index: auto; +.ui.vertical.pointing.menu .active.item:hover:after { + background-color: #F2F2F2; } -@media only screen and (max-width: 991px) { - .modals.dimmer .ui.scrolling.modal { - margin-top: 1rem !important; - margin-bottom: 1rem !important; - } +.ui.vertical.pointing.menu .active.item:after { + background-color: #F2F2F2; +} + +.ui.vertical.pointing.menu .menu .active.item:after { + background-color: #FFFFFF; } /*-------------- - Full Screen + Attached ---------------*/ -.ui.fullscreen.modal { - width: 95% !important; - left: 2.5% !important; - margin: 1em auto; +/* 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.fullscreen.scrolling.modal { - left: 0em !important; +.ui.attached + .ui.attached.menu:not(.top) { + border-top: none; } -.ui.fullscreen.modal > .header { - padding-right: 2.25rem; +/* 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.fullscreen.modal > .close { - top: 1.0535rem; - right: 1rem; - color: rgba(0, 0, 0, 0.87); +.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%; } /*-------------- - Size + Sizes ---------------*/ -.ui.modal { - font-size: 1rem; +/* 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.modal > .header:not(.ui) { - font-size: 1.3em; +.ui.small.menu { + font-size: 0.92857143rem; } -/* Small Modal Width */ - -@media only screen and (max-width: 767px) { - .ui.small.modal { - width: 95%; - margin: 0em 0em 0em -47.5%; - } +.ui.small.vertical.menu { + width: 13rem; } -@media only screen and (min-width: 768px) { - .ui.small.modal { - width: 70.4%; - margin: 0em 0em 0em -35.2%; - } +/* Medium */ + +.ui.menu { + font-size: 1rem; } -@media only screen and (min-width: 992px) { - .ui.small.modal { - width: 680px; - margin: 0em 0em 0em -340px; - } +.ui.vertical.menu { + width: 15rem; } -@media only screen and (min-width: 1200px) { - .ui.small.modal { - width: 720px; - margin: 0em 0em 0em -360px; - } +/* Large */ + +.ui.large.menu { + font-size: 1.07142857rem; } -@media only screen and (min-width: 1920px) { - .ui.small.modal { - width: 760px; - margin: 0em 0em 0em -380px; - } +.ui.large.vertical.menu { + width: 18rem; } -/* Large Modal Width */ +/* Huge */ -.ui.large.modal > .header { - font-size: 1.6em; +.ui.huge.menu { + font-size: 1.21428571rem; } -@media only screen and (max-width: 767px) { - .ui.large.modal { - width: 95%; - margin: 0em 0em 0em -47.5%; - } +.ui.huge.vertical.menu { + width: 22rem; } -@media only screen and (min-width: 768px) { - .ui.large.modal { - width: 88%; - margin: 0em 0em 0em -44%; - } +/* Big */ + +.ui.big.menu { + font-size: 1.14285714rem; } -@media only screen and (min-width: 992px) { - .ui.large.modal { - width: 1020px; - margin: 0em 0em 0em -510px; - } +.ui.big.vertical.menu { + width: 20rem; } -@media only screen and (min-width: 1200px) { - .ui.large.modal { - width: 1080px; - margin: 0em 0em 0em -540px; - } +/* Massive */ + +.ui.massive.menu { + font-size: 1.28571429rem; } -@media only screen and (min-width: 1920px) { - .ui.large.modal { - width: 1140px; - margin: 0em 0em 0em -570px; - } +.ui.massive.vertical.menu { + width: 25rem; } /******************************* - Theme Overrides + Theme Overrides *******************************/ /******************************* - Site Overrides + Site Overrides *******************************/ /*! - * # Semantic UI 2.2.10 - Nag - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # Semantic UI 2.3.0 - Message +* http://github.com/semantic-org/semantic-ui/ +* +* +* Released under the MIT license +* http://opensource.org/licenses/MIT +* +*/ /******************************* - Nag + Message *******************************/ -.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; - 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; +.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); } -a.ui.nag { - cursor: pointer; +.ui.message:first-child { + margin-top: 0em; } -.ui.nag > .title { - display: inline-block; - margin: 0em 0.5em; - color: #FFFFFF; +.ui.message:last-child { + margin-bottom: 0em; } -.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; +/*-------------- + 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; } /******************************* - States + Coupling *******************************/ -/* Hover */ - -.ui.nag:hover { - background: #555555; - opacity: 1; +.ui.dropdown .menu > .message { + margin: 0px -1px; } -.ui.nag .close:hover { - opacity: 1; +/******************************* + 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; } /******************************* @@ -31574,131 +25131,627 @@ a.ui.nag { *******************************/ /*-------------- - Static + Compact ---------------*/ -.ui.overlay.nag { - position: absolute; - display: block; +.ui.compact.message { + display: inline-block; +} + +.ui.compact.icon.message { + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; } /*-------------- - Fixed + Attached ---------------*/ -.ui.fixed.nag { - position: fixed; +.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; } /*-------------- - Bottom + Icon ---------------*/ -.ui.bottom.nags, -.ui.bottom.nag { - border-radius: 0.28571429rem 0.28571429rem 0em 0em; - top: auto; - bottom: 0em; +.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; } /*-------------- - White + Floating ---------------*/ -.ui.inverted.nags .nag, -.ui.inverted.nag { - background-color: #F3F4F5; - color: rgba(0, 0, 0, 0.85); +.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); } -.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); +/*-------------- + 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; } /******************************* - 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 + Theme Overrides *******************************/ /******************************* - User Overrides + Site Overrides *******************************/ /*! - * # Semantic UI 2.2.10 - Popup - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # Semantic UI 2.3.0 - Table +* http://github.com/semantic-org/semantic-ui/ +* +* +* Released under the MIT license +* http://opensource.org/licenses/MIT +* +*/ /******************************* - Popup + Table *******************************/ -.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; - box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); +/* 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.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.table:first-child { + margin-top: 0em; } -.ui.popup > .header + .content { - padding-top: 0.5em; +.ui.table:last-child { + margin-bottom: 0em; } -.ui.popup:before { - position: absolute; - content: ''; - width: 0.71428571em; - height: 0.71428571em; - background: #FFFFFF; - -webkit-transform: rotate(45deg); - transform: rotate(45deg); - z-index: 2; - box-shadow: 1px 1px 0px 0px #bababc; +/******************************* + 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; } /******************************* @@ -31706,110 +25759,8183 @@ a.ui.nag { *******************************/ /*-------------- - Tooltip + 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; + 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; - box-shadow: 1px 1px 0px 0px #bababc; + 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; - 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; + 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; + 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; + 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; + 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; + 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; + 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; + visibility: visible; + pointer-events: auto; } [data-tooltip]:hover:before { - -webkit-transform: rotate(45deg) scale(1) !important; - transform: rotate(45deg) scale(1) !important; - opacity: 1; + -webkit-transform: rotate(45deg) scale(1) !important; + transform: rotate(45deg) scale(1) !important; + opacity: 1; } /* Animation Position */ @@ -31817,444 +33943,455 @@ a.ui.nag { [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; + -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; + -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; + -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; + -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; + -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; + -webkit-transform: scale(1) !important; + transform: scale(1) !important; } /*-------------- - Inverted + Inverted ---------------*/ /* Arrow */ [data-tooltip][data-inverted]:before { - box-shadow: none !important; + -webkit-box-shadow: none !important; + box-shadow: none !important; } /* Arrow Position */ [data-tooltip][data-inverted]:before { - background: #1B1C1D; + background: #1B1C1D; } /* Popup */ [data-tooltip][data-inverted]:after { - background: #1B1C1D; - color: #FFFFFF; - border: none; - box-shadow: none; + background: #1B1C1D; + color: #FFFFFF; + border: none; + -webkit-box-shadow: none; + box-shadow: none; } [data-tooltip][data-inverted]:after .header { - background-color: none; - color: #FFFFFF; + background-color: none; + color: #FFFFFF; } /*-------------- - Position + 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; + 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: 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; + 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: 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; + 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; + 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; + 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: 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; + 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: 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; + 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; + 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%); + 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: 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%); + 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; + left: 100%; + top: 50%; + margin-top: -0.07142857rem; + margin-left: 0.14285714rem; } /* Arrow */ [data-position~="bottom"][data-tooltip]:before { - background: #FFFFFF; - box-shadow: -1px -1px 0px 0px #bababc; + 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; - box-shadow: 1px -1px 0px 0px #bababc; + 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; - box-shadow: -1px 1px 0px 0px #bababc; + 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; + background: #FFFFFF; } /* Inverted Arrow Color */ [data-inverted][data-position~="bottom"][data-tooltip]:before { - background: #1B1C1D; - box-shadow: -1px -1px 0px 0px #bababc; + 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; - box-shadow: 1px -1px 0px 0px #bababc; + 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; - box-shadow: -1px 1px 0px 0px #bababc; + 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; + background: #1B1C1D; } [data-position~="bottom"][data-tooltip]:before { - -webkit-transform-origin: center bottom; - transform-origin: center bottom; + -webkit-transform-origin: center bottom; + transform-origin: center bottom; } [data-position~="bottom"][data-tooltip]:after { - -webkit-transform-origin: center top; - transform-origin: center top; + -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; + -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; + -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; + -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; + -webkit-transform-origin: left center; + transform-origin: left center; } /*-------------- - Spacing + Spacing ---------------*/ .ui.popup { - margin: 0em; + margin: 0em; } /* Extending from Top */ .ui.top.popup { - margin: 0em 0em 0.71428571em; + margin: 0em 0em 0.71428571em; } .ui.top.left.popup { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; + -webkit-transform-origin: left bottom; + transform-origin: left bottom; } .ui.top.center.popup { - -webkit-transform-origin: center bottom; - transform-origin: center bottom; + -webkit-transform-origin: center bottom; + transform-origin: center bottom; } .ui.top.right.popup { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; + -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%; + 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%; + 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; + margin: 0.71428571em 0em 0em; } .ui.bottom.left.popup { - -webkit-transform-origin: left top; - transform-origin: left top; + -webkit-transform-origin: left top; + transform-origin: left top; } .ui.bottom.center.popup { - -webkit-transform-origin: center top; - transform-origin: center top; + -webkit-transform-origin: center top; + transform-origin: center top; } .ui.bottom.right.popup { - -webkit-transform-origin: right top; - transform-origin: right top; + -webkit-transform-origin: right top; + transform-origin: right top; } /*-------------- - Pointer + Pointer ---------------*/ /*--- Below ---*/ .ui.bottom.center.popup:before { - margin-left: -0.30714286em; - top: -0.30714286em; - left: 50%; - right: auto; - bottom: auto; - box-shadow: -1px -1px 0px 0px #bababc; + 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; + margin-left: 0em; } /*rtl:rename*/ .ui.bottom.left.popup:before { - top: -0.30714286em; - left: 1em; - right: auto; - bottom: auto; - margin-left: 0em; - box-shadow: -1px -1px 0px 0px #bababc; + 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; + margin-right: 0em; } /*rtl:rename*/ .ui.bottom.right.popup:before { - top: -0.30714286em; - right: 1em; - bottom: auto; - left: auto; - margin-left: 0em; - box-shadow: -1px -1px 0px 0px #bababc; + 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; + top: auto; + right: auto; + bottom: -0.30714286em; + left: 50%; + margin-left: -0.30714286em; } .ui.top.left.popup { - margin-left: 0em; + margin-left: 0em; } /*rtl:rename*/ .ui.top.left.popup:before { - bottom: -0.30714286em; - left: 1em; - top: auto; - right: auto; - margin-left: 0em; + bottom: -0.30714286em; + left: 1em; + top: auto; + right: auto; + margin-left: 0em; } .ui.top.right.popup { - margin-right: 0em; + margin-right: 0em; } /*rtl:rename*/ .ui.top.right.popup:before { - bottom: -0.30714286em; - right: 1em; - top: auto; - left: auto; - margin-left: 0em; + bottom: -0.30714286em; + right: 1em; + top: auto; + left: auto; + margin-left: 0em; } /*--- Left Center ---*/ @@ -32262,12 +34399,13 @@ a.ui.nag { /*rtl:rename*/ .ui.left.center.popup:before { - top: 50%; - right: -0.30714286em; - bottom: auto; - left: auto; - margin-top: -0.30714286em; - box-shadow: 1px -1px 0px 0px #bababc; + 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 ---*/ @@ -32275,334 +34413,338 @@ a.ui.nag { /*rtl:rename*/ .ui.right.center.popup:before { - top: 50%; - left: -0.30714286em; - bottom: auto; - right: auto; - margin-top: -0.30714286em; - box-shadow: -1px 1px 0px 0px #bababc; + 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; + background: #FFFFFF; } .ui.right.center.popup:before, .ui.left.center.popup:before { - background: #FFFFFF; + background: #FFFFFF; } .ui.top.popup:before { - background: #FFFFFF; + background: #FFFFFF; } /* Inverted Arrow Color */ .ui.inverted.bottom.popup:before { - background: #1B1C1D; + background: #1B1C1D; } .ui.inverted.right.center.popup:before, .ui.inverted.left.center.popup:before { - background: #1B1C1D; + background: #1B1C1D; } .ui.inverted.top.popup:before { - background: #1B1C1D; + background: #1B1C1D; } /******************************* - Coupling + Coupling *******************************/ /* Immediate Nested Grid */ .ui.popup > .ui.grid:not(.padded) { - width: calc(100% + 1.75rem); - margin: -0.7rem -0.875rem; + width: calc(100% + 1.75rem); + margin: -0.7rem -0.875rem; } /******************************* - States + States *******************************/ .ui.loading.popup { - display: block; - visibility: hidden; - z-index: -1; + display: block; + visibility: hidden; + z-index: -1; } .ui.animating.popup, .ui.visible.popup { - display: block; + display: block; } .ui.visible.popup { - -webkit-transform: translateZ(0px); - transform: translateZ(0px); - -webkit-backface-visibility: hidden; - backface-visibility: hidden; + -webkit-transform: translateZ(0px); + transform: translateZ(0px); + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } /******************************* - Variations + Variations *******************************/ /*-------------- - Basic + Basic ---------------*/ .ui.basic.popup:before { - display: none; + display: none; } /*-------------- - Wide + Wide ---------------*/ .ui.wide.popup { - max-width: 350px; + max-width: 350px; } .ui[class*="very wide"].popup { - max-width: 550px; + max-width: 550px; } @media only screen and (max-width: 767px) { - .ui.wide.popup, - .ui[class*="very wide"].popup { - max-width: 250px; - } + .ui.wide.popup, + .ui[class*="very wide"].popup { + max-width: 250px; + } } /*-------------- - Fluid + Fluid ---------------*/ .ui.fluid.popup { - width: 100%; - max-width: none; + width: 100%; + max-width: none; } /*-------------- - Colors + Colors ---------------*/ /* Inverted colors */ .ui.inverted.popup { - background: #1B1C1D; - color: #FFFFFF; - border: none; - box-shadow: none; + background: #1B1C1D; + color: #FFFFFF; + border: none; + -webkit-box-shadow: none; + box-shadow: none; } .ui.inverted.popup .header { - background-color: none; - color: #FFFFFF; + background-color: none; + color: #FFFFFF; } .ui.inverted.popup:before { - background-color: #1B1C1D; - box-shadow: none !important; + background-color: #1B1C1D; + -webkit-box-shadow: none !important; + box-shadow: none !important; } /*-------------- - Flowing + Flowing ---------------*/ .ui.flowing.popup { - max-width: none; + max-width: none; } /*-------------- - Sizes + Sizes ---------------*/ .ui.mini.popup { - font-size: 0.78571429rem; + font-size: 0.78571429rem; } .ui.tiny.popup { - font-size: 0.85714286rem; + font-size: 0.85714286rem; } .ui.small.popup { - font-size: 0.92857143rem; + font-size: 0.92857143rem; } .ui.popup { - font-size: 1rem; + font-size: 1rem; } .ui.large.popup { - font-size: 1.14285714rem; + font-size: 1.14285714rem; } .ui.huge.popup { - font-size: 1.42857143rem; + font-size: 1.42857143rem; } /******************************* - Theme Overrides + Theme Overrides *******************************/ /******************************* - User Overrides + User Overrides *******************************/ /*! - * # Semantic UI 2.2.10 - Progress Bar - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # 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 + Progress *******************************/ .ui.progress { - position: relative; - display: block; - max-width: 100%; - border: none; - margin: 1em 0em 2.5em; - box-shadow: none; - background: rgba(0, 0, 0, 0.1); - padding: 0em; - border-radius: 0.28571429rem; + 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; + margin: 0em 0em 2.5em; } .ui.progress:last-child { - margin: 0em 0em 1.5em; + margin: 0em 0em 1.5em; } /******************************* - Content + 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; + 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; + 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; + 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 + Types *******************************/ /* Indicating */ .ui.indicating.progress[data-percent^="1"] .bar, .ui.indicating.progress[data-percent^="2"] .bar { - background-color: #D95C5C; + background-color: #D95C5C; } .ui.indicating.progress[data-percent^="3"] .bar { - background-color: #EFBC72; + background-color: #EFBC72; } .ui.indicating.progress[data-percent^="4"] .bar, .ui.indicating.progress[data-percent^="5"] .bar { - background-color: #E6BB48; + background-color: #E6BB48; } .ui.indicating.progress[data-percent^="6"] .bar { - background-color: #DDC928; + background-color: #DDC928; } .ui.indicating.progress[data-percent^="7"] .bar, .ui.indicating.progress[data-percent^="8"] .bar { - background-color: #B4D95C; + background-color: #B4D95C; } .ui.indicating.progress[data-percent^="9"] .bar, .ui.indicating.progress[data-percent^="100"] .bar { - background-color: #66DA81; + 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); + color: rgba(0, 0, 0, 0.87); } .ui.indicating.progress[data-percent^="3"] .label { - color: rgba(0, 0, 0, 0.87); + 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); + color: rgba(0, 0, 0, 0.87); } .ui.indicating.progress[data-percent^="6"] .label { - color: rgba(0, 0, 0, 0.87); + 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); + 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); + color: rgba(0, 0, 0, 0.87); } /* Single Digits */ @@ -32616,7 +34758,7 @@ a.ui.nag { .ui.indicating.progress[data-percent="7"] .bar, .ui.indicating.progress[data-percent="8"] .bar, .ui.indicating.progress[data-percent="9"] .bar { - background-color: #D95C5C; + background-color: #D95C5C; } .ui.indicating.progress[data-percent="1"] .label, @@ -32628,1461 +34770,1239 @@ a.ui.nag { .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); + color: rgba(0, 0, 0, 0.87); } /* Indicating Success */ .ui.indicating.progress.success .label { - color: #1A531B; + color: #1A531B; } /******************************* - States + States *******************************/ /*-------------- - Success + Success ---------------*/ .ui.progress.success .bar { - background-color: #21BA45 !important; + background-color: #21BA45 !important; } .ui.progress.success .bar, .ui.progress.success .bar::after { - -webkit-animation: none !important; - animation: none !important; + -webkit-animation: none !important; + animation: none !important; } .ui.progress.success > .label { - color: #1A531B; + color: #1A531B; } /*-------------- - Warning + Warning ---------------*/ .ui.progress.warning .bar { - background-color: #F2C037 !important; + background-color: #F2C037 !important; } .ui.progress.warning .bar, .ui.progress.warning .bar::after { - -webkit-animation: none !important; - animation: none !important; + -webkit-animation: none !important; + animation: none !important; } .ui.progress.warning > .label { - color: #794B02; + color: #794B02; } /*-------------- - Error + Error ---------------*/ .ui.progress.error .bar { - background-color: #DB2828 !important; + background-color: #DB2828 !important; } .ui.progress.error .bar, .ui.progress.error .bar::after { - -webkit-animation: none !important; - animation: none !important; + -webkit-animation: none !important; + animation: none !important; } .ui.progress.error > .label { - color: #912D2B; + color: #912D2B; } /*-------------- - Active + Active ---------------*/ .ui.active.progress .bar { - position: relative; - min-width: 2em; + 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; + 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; - } + 0% { + opacity: 0.3; + width: 0; + } - 100% { - opacity: 0; - width: 100%; - } + 100% { + opacity: 0; + width: 100%; + } } @keyframes progress-active { - 0% { - opacity: 0.3; - width: 0; - } + 0% { + opacity: 0.3; + width: 0; + } - 100% { - opacity: 0; - width: 100%; - } + 100% { + opacity: 0; + width: 100%; + } } /*-------------- - Disabled + Disabled ---------------*/ .ui.disabled.progress { - opacity: 0.35; + opacity: 0.35; } .ui.disabled.progress .bar, .ui.disabled.progress .bar::after { - -webkit-animation: none !important; - animation: none !important; + -webkit-animation: none !important; + animation: none !important; } /******************************* - Variations + Variations *******************************/ /*-------------- - Inverted + Inverted ---------------*/ .ui.inverted.progress { - background: rgba(255, 255, 255, 0.08); - border: none; + background: rgba(255, 255, 255, 0.08); + border: none; } .ui.inverted.progress .bar { - background: #888888; + background: #888888; } .ui.inverted.progress .bar > .progress { - color: #F9FAFB; + color: #F9FAFB; } .ui.inverted.progress > .label { - color: #FFFFFF; + color: #FFFFFF; } .ui.inverted.progress.success > .label { - color: #21BA45; + color: #21BA45; } .ui.inverted.progress.warning > .label { - color: #F2C037; + color: #F2C037; } .ui.inverted.progress.error > .label { - color: #DB2828; + color: #DB2828; } /*-------------- - Attached + Attached ---------------*/ /* bottom attached */ .ui.progress.attached { - background: transparent; - position: relative; - border: none; - margin: 0em; + 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; + display: block; + height: 0.2rem; + padding: 0px; + overflow: hidden; + border-radius: 0em 0em 0.28571429rem 0.28571429rem; } .ui.progress.attached .bar { - border-radius: 0em; + border-radius: 0em; } /* top attached */ .ui.progress.top.attached, .ui.progress.top.attached .bar { - top: 0px; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; + top: 0px; + border-radius: 0.28571429rem 0.28571429rem 0em 0em; } .ui.progress.top.attached .bar { - border-radius: 0em; + border-radius: 0em; } /* Coupling */ .ui.segment > .ui.attached.progress, .ui.card > .ui.attached.progress { - position: absolute; - top: auto; - left: 0; - bottom: 100%; - width: 100%; + 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; + top: 100%; + bottom: auto; } /*-------------- - Colors + Colors ---------------*/ /* Red */ .ui.red.progress .bar { - background-color: #DB2828; + background-color: #DB2828; } .ui.red.inverted.progress .bar { - background-color: #FF695E; + background-color: #FF695E; } /* Orange */ .ui.orange.progress .bar { - background-color: #F2711C; + background-color: #F2711C; } .ui.orange.inverted.progress .bar { - background-color: #FF851B; + background-color: #FF851B; } /* Yellow */ .ui.yellow.progress .bar { - background-color: #FBBD08; + background-color: #FBBD08; } .ui.yellow.inverted.progress .bar { - background-color: #FFE21F; + background-color: #FFE21F; } /* Olive */ .ui.olive.progress .bar { - background-color: #B5CC18; + background-color: #B5CC18; } .ui.olive.inverted.progress .bar { - background-color: #D9E778; + background-color: #D9E778; } /* Green */ .ui.green.progress .bar { - background-color: #21BA45; + background-color: #21BA45; } .ui.green.inverted.progress .bar { - background-color: #2ECC40; + background-color: #2ECC40; } /* Teal */ .ui.teal.progress .bar { - background-color: #00B5AD; + background-color: #00B5AD; } .ui.teal.inverted.progress .bar { - background-color: #6DFFFF; + background-color: #6DFFFF; } /* Blue */ .ui.blue.progress .bar { - background-color: #2185D0; + background-color: #2185D0; } .ui.blue.inverted.progress .bar { - background-color: #54C8FF; + background-color: #54C8FF; } /* Violet */ .ui.violet.progress .bar { - background-color: #6435C9; + background-color: #6435C9; } .ui.violet.inverted.progress .bar { - background-color: #A291FB; + background-color: #A291FB; } /* Purple */ .ui.purple.progress .bar { - background-color: #A333C8; + background-color: #A333C8; } .ui.purple.inverted.progress .bar { - background-color: #DC73FF; + background-color: #DC73FF; } /* Pink */ .ui.pink.progress .bar { - background-color: #E03997; + background-color: #E03997; } .ui.pink.inverted.progress .bar { - background-color: #FF8EDF; + background-color: #FF8EDF; } /* Brown */ .ui.brown.progress .bar { - background-color: #A5673F; + background-color: #A5673F; } .ui.brown.inverted.progress .bar { - background-color: #D67C1C; + background-color: #D67C1C; } /* Grey */ .ui.grey.progress .bar { - background-color: #767676; + background-color: #767676; } .ui.grey.inverted.progress .bar { - background-color: #DCDDDE; + background-color: #DCDDDE; } /* Black */ .ui.black.progress .bar { - background-color: #1B1C1D; + background-color: #1B1C1D; } .ui.black.inverted.progress .bar { - background-color: #545454; + background-color: #545454; } /*-------------- - Sizes + Sizes ---------------*/ .ui.tiny.progress { - font-size: 0.85714286rem; + font-size: 0.85714286rem; } .ui.tiny.progress .bar { - height: 0.5em; + height: 0.5em; } .ui.small.progress { - font-size: 0.92857143rem; + font-size: 0.92857143rem; } .ui.small.progress .bar { - height: 1em; + height: 1em; } .ui.progress { - font-size: 1rem; + font-size: 1rem; } .ui.progress .bar { - height: 1.75em; + height: 1.75em; } .ui.large.progress { - font-size: 1.14285714rem; + font-size: 1.14285714rem; } .ui.large.progress .bar { - height: 2.5em; + height: 2.5em; } .ui.big.progress { - font-size: 1.28571429rem; + font-size: 1.28571429rem; } .ui.big.progress .bar { - height: 3.5em; + height: 3.5em; } /******************************* - Progress + Progress *******************************/ /******************************* - Site Overrides + Site Overrides *******************************/ /*! - * # Semantic UI 2.2.10 - Rating - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # Semantic UI 2.3.0 - Rating +* http://github.com/semantic-org/semantic-ui/ +* +* +* Released under the MIT license +* http://opensource.org/licenses/MIT +* +*/ /******************************* - Rating + Rating *******************************/ .ui.rating { - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - white-space: nowrap; - vertical-align: baseline; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + white-space: nowrap; + vertical-align: baseline; } .ui.rating:last-child { - margin-right: 0em; + margin-right: 0em; } /* Icon */ .ui.rating .icon { - padding: 0em; - margin: 0em; - text-align: center; - font-weight: normal; - font-style: normal; - -webkit-box-flex: 1; - -webkit-flex: 1 0 auto; - -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; + 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 + Types *******************************/ /*------------------- - Standard + Standard --------------------*/ /* Inactive Icon */ .ui.rating .icon { - background: transparent; - color: rgba(0, 0, 0, 0.15); + background: transparent; + color: rgba(0, 0, 0, 0.15); } /* Active Icon */ .ui.rating .active.icon { - background: transparent; - color: rgba(0, 0, 0, 0.85); + 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); + background: transparent; + color: rgba(0, 0, 0, 0.87); } /*------------------- - Star + Star --------------------*/ /* Inactive */ .ui.star.rating .icon { - width: 1.25em; - height: auto; - background: transparent; - color: rgba(0, 0, 0, 0.15); - text-shadow: none; + 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; + 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; + 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 + Heart --------------------*/ .ui.heart.rating .icon { - width: 1.4em; - height: auto; - background: transparent; - color: rgba(0, 0, 0, 0.15); - text-shadow: none !important; + 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; + 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/fFFYu1l6yjoqOjrZe2i5aLl4mYh5eHloWWhJaElIWShZOE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) 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.2.10 - 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); - box-shadow: 0em 0em 0em 0em transparent inset; - -webkit-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; -} - -.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; - 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; + 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 *******************************/ -/*-------------------- - Focus ----------------------*/ +/*------------------- + Disabled +--------------------*/ -.ui.search > .prompt:focus { - border-color: rgba(34, 36, 38, 0.35); - background: #FFFFFF; - color: rgba(0, 0, 0, 0.95); +/* disabled rating */ + +.ui.disabled.rating .icon { + cursor: default; } -/*-------------------- - Loading ----------------------*/ +/*------------------- + User Interactive +--------------------*/ -.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); +/* Selected Rating */ + +.ui.rating.selected .active.icon { + opacity: 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; - box-shadow: 0px 0px 0px 1px transparent; +.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/fFFYu1l6yjoqOjrZe2i5aLl4mYh5eHloWWhJaElIWShZOE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) 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; } /*-------------- - Hover + 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; + 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; - 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; -} - -/* Category */ - -.ui.category.search > .results .category { - background: #F3F4F5; - box-shadow: none; - 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; -} - -/* 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 */ - -.ui.category.search > .results .category .result { - background: #FFFFFF; - margin-left: 100px; - border-left: 1px solid rgba(34, 36, 38, 0.15); - 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; -} - -.ui.category.search > .results .category:last-child .result:last-child { - border-bottom: none; -} - -/* Category Result Name */ - -.ui.category.search > .results .category > .name { - width: 100px; - background: transparent; - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - font-size: 1em; - float: 1em; - float: left; - padding: 0.4em 1em; - font-weight: bold; - color: rgba(0, 0, 0, 0.4); -} - -/******************************* - 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; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI 2.2.10 - 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); - 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; + background: #E0E0E0; } /*-------------- Active ---------------*/ -.ui.shape .active.side { - display: block; +.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); } /******************************* - Theme Overrides + 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 *******************************/ /******************************* - User Overrides + Site Overrides *******************************/ /*! - * # Semantic UI 2.2.10 - Sidebar - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # Semantic UI 2.3.0 - Shape +* http://github.com/semantic-org/semantic-ui/ +* +* +* Released under the MIT license +* http://opensource.org/licenses/MIT +* +*/ /******************************* - Sidebar + Shape *******************************/ -/* 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; +.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; } -/* GPU Layers for Child Elements */ - -.ui.sidebar > * { - -webkit-backface-visibility: hidden; - backface-visibility: hidden; +.ui.shape .sides { + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; } -/*-------------- - Direction ----------------*/ - -.ui.left.sidebar { - right: auto; - left: 0px; - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); +.ui.shape .side { + opacity: 1; + width: 100%; + margin: 0em !important; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } -.ui.right.sidebar { - right: 0px !important; - left: auto !important; - -webkit-transform: translate3d(100%, 0%, 0); - transform: translate3d(100%, 0%, 0); +.ui.shape .side { + display: none; } -.ui.top.sidebar, -.ui.bottom.sidebar { - width: 100% !important; - height: auto !important; +.ui.shape .side * { + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; } -.ui.top.sidebar { - top: 0px !important; - bottom: auto !important; - -webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0); +/******************************* + 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.bottom.sidebar { - top: auto !important; - bottom: 0px !important; - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); +.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; } -/*-------------- - Pushable ----------------*/ - -.pushable { - height: 100%; - overflow-x: hidden; - padding: 0em !important; +.ui.cube.shape .side > .content > div { + display: table-cell; + vertical-align: middle; + font-size: 2em; } -/* Whole Page */ +/******************************* + Variations +*******************************/ -body.pushable { - background: #545454 !important; +.ui.text.shape.animating .sides { + position: static; } -/* Page Context */ - -.pushable:not(body) { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); +.ui.text.shape .side { + white-space: nowrap; } -.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; +.ui.text.shape .side > * { + white-space: normal; } /******************************* @@ -34090,69 +36010,316 @@ body.pushable > .pusher { *******************************/ /*-------------- - Dimmed + 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; + width: 100% !important; + height: 100% !important; + opacity: 1 !important; } /*-------------- - Animating + Animating ---------------*/ .ui.animating.sidebar { - visibility: visible; + visibility: visible; } /*-------------- - Visible + Visible ---------------*/ .ui.visible.sidebar { - visibility: visible; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); + visibility: visible; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } /* Shadow Direction */ .ui.left.visible.sidebar, .ui.right.visible.sidebar { - box-shadow: 0px 0px 20px rgba(34, 36, 38, 0.15); + -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 { - box-shadow: 0px 0px 20px rgba(34, 36, 38, 0.15); + -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); + -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); + -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); + -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); + -webkit-transform: translate3d(0, -36px, 0); + transform: translate3d(0, -36px, 0); } /* opposite sides visible forces content overlay */ @@ -34161,2838 +36328,2941 @@ body.pushable > .pusher { .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); + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } /*-------------- - iOS + iOS ---------------*/ -/* - iOS incorrectly sizes document when content - is presented outside of view with 2Dtranslate -*/ - -html.ios { - overflow-x: hidden; - -webkit-overflow-scrolling: touch; -} - /******************************* - Variations + Variations *******************************/ /*-------------- - Width + Width ---------------*/ /* Left / Right */ .ui.thin.left.sidebar, .ui.thin.right.sidebar { - width: 150px; + width: 150px; } .ui[class*="very thin"].left.sidebar, .ui[class*="very thin"].right.sidebar { - width: 60px; + width: 60px; } .ui.left.sidebar, .ui.right.sidebar { - width: 260px; + width: 260px; } .ui.wide.left.sidebar, .ui.wide.right.sidebar { - width: 350px; + width: 350px; } .ui[class*="very wide"].left.sidebar, .ui[class*="very wide"].right.sidebar { - width: 475px; + 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); + -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); + -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); + -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); + -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); + -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); + -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); + -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); + -webkit-transform: translate3d(-475px, 0, 0); + transform: translate3d(-475px, 0, 0); } /******************************* - Animations + Animations *******************************/ /*-------------- - Overlay + Overlay ---------------*/ /* Set-up */ .ui.overlay.sidebar { - z-index: 102; + z-index: 102; } /* Initial */ .ui.left.overlay.sidebar { - -webkit-transform: translate3d(-100%, 0%, 0); - transform: translate3d(-100%, 0%, 0); + -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); + -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); + -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); + -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; + -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); + -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); + -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); + -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); + -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; + -webkit-transform: none !important; + transform: none !important; } /*-------------- - Push + 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; + -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); + -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); + -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); + -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); + -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); + -webkit-transform: translate3d(0%, 0, 0); + transform: translate3d(0%, 0, 0); } /*-------------- - Uncover + Uncover ---------------*/ /* Initial */ .ui.uncover.sidebar { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - z-index: 1; + -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; + -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 + Slide Along ---------------*/ /* Initial */ .ui.slide.along.sidebar { - z-index: 1; + z-index: 1; } /* Sidebar - Initial */ .ui.left.slide.along.sidebar { - -webkit-transform: translate3d(-50%, 0, 0); - transform: translate3d(-50%, 0, 0); + -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); + -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); + -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); + -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; + -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); + -webkit-transform: translate3d(0%, 0, 0); + transform: translate3d(0%, 0, 0); } /*-------------- - Slide Out + Slide Out ---------------*/ /* Initial */ .ui.slide.out.sidebar { - z-index: 1; + z-index: 1; } /* Sidebar - Initial */ .ui.left.slide.out.sidebar { - -webkit-transform: translate3d(50%, 0, 0); - transform: translate3d(50%, 0, 0); + -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); + -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); + -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); + -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; + -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); + -webkit-transform: translate3d(0%, 0, 0); + transform: translate3d(0%, 0, 0); } /*-------------- - Scale Down + 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; + -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); + -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); + -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); + -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); + -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%; + -webkit-transform-origin: 75% 50%; + transform-origin: 75% 50%; } .ui.scale.down.right.sidebar ~ .pusher { - -webkit-transform-origin: 25% 50%; - transform-origin: 25% 50%; + -webkit-transform-origin: 25% 50%; + transform-origin: 25% 50%; } .ui.scale.down.top.sidebar ~ .pusher { - -webkit-transform-origin: 50% 75%; - transform-origin: 50% 75%; + -webkit-transform-origin: 50% 75%; + transform-origin: 50% 75%; } .ui.scale.down.bottom.sidebar ~ .pusher { - -webkit-transform-origin: 50% 25%; - transform-origin: 50% 25%; + -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; + -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; + 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); + -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); + -webkit-transform: scale(0.75); + transform: scale(0.75); } /******************************* - Theme Overrides + Theme Overrides *******************************/ /******************************* - Site Overrides + Site Overrides *******************************/ /*! - * # Semantic UI 2.2.10 - Sticky - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # Semantic UI 2.3.0 - Sticky +* http://github.com/semantic-org/semantic-ui/ +* +* +* Released under the MIT license +* http://opensource.org/licenses/MIT +* +*/ /******************************* - Sticky + Sticky *******************************/ .ui.sticky { - position: static; - -webkit-transition: none; - transition: none; - z-index: 800; + position: static; + -webkit-transition: none; + transition: none; + z-index: 800; } /******************************* - States + States *******************************/ /* Bound */ .ui.sticky.bound { - position: absolute; - left: auto; - right: auto; + position: absolute; + left: auto; + right: auto; } /* Fixed */ .ui.sticky.fixed { - position: fixed; - left: auto; - right: auto; + position: fixed; + left: auto; + right: auto; } /* Bound/Fixed Position */ .ui.sticky.bound.top, .ui.sticky.fixed.top { - top: 0px; - bottom: auto; + top: 0px; + bottom: auto; } .ui.sticky.bound.bottom, .ui.sticky.fixed.bottom { - top: auto; - bottom: 0px; + top: auto; + bottom: 0px; } /******************************* - Types + Types *******************************/ .ui.native.sticky { - position: -webkit-sticky; - position: -moz-sticky; - position: -ms-sticky; - position: -o-sticky; - position: sticky; + position: -webkit-sticky; + position: -moz-sticky; + position: -ms-sticky; + position: -o-sticky; + position: sticky; } /******************************* - Theme Overrides + Theme Overrides *******************************/ /******************************* - Site Overrides + Site Overrides *******************************/ /*! - * # Semantic UI 2.2.10 - Tab - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ +* # 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 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; - box-shadow: 0px 0px 0px 1px transparent; -} - -/******************************* - Tab Overrides -*******************************/ - -/******************************* - User Overrides -*******************************/ -/*! - * # Semantic UI 2.2.10 - 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; + 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; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + visibility: visible !important; } /* Loading */ .loading.transition { - position: absolute; - top: -99999px; - left: -99999px; + position: absolute; + top: -99999px; + left: -99999px; } /* Hidden */ .hidden.transition { - display: none; - visibility: hidden; + display: none; + visibility: hidden; } /* Visible */ .visible.transition { - display: block !important; - visibility: visible !important; - /* backface-visibility: @backfaceVisibility; - transform: @use3DAcceleration;*/ + display: block !important; + visibility: visible !important; + /* backface-visibility: @backfaceVisibility; + transform: @use3DAcceleration;*/ } /* Disabled */ .disabled.transition { - -webkit-animation-play-state: paused; - animation-play-state: paused; + -webkit-animation-play-state: paused; + animation-play-state: paused; } /******************************* - Variations + Variations *******************************/ .looping.transition { - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; + -webkit-animation-iteration-count: infinite; + animation-iteration-count: infinite; } /******************************* - Transitions + Transitions *******************************/ /* - Some transitions adapted from Animate CSS - https://github.com/daneden/animate.css + 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 + Additional transitions adapted from Glide + by Nick Pettit - https://github.com/nickpettit/glide */ /*-------------- - Browse + Browse ---------------*/ .transition.browse { - -webkit-animation-duration: 500ms; - animation-duration: 500ms; + -webkit-animation-duration: 500ms; + animation-duration: 500ms; } .transition.browse.in { - -webkit-animation-name: browseIn; - animation-name: browseIn; + -webkit-animation-name: browseIn; + animation-name: browseIn; } .transition.browse.out, .transition.browse.left.out { - -webkit-animation-name: browseOutLeft; - animation-name: browseOutLeft; + -webkit-animation-name: browseOutLeft; + animation-name: browseOutLeft; } .transition.browse.right.out { - -webkit-animation-name: browseOutRight; - animation-name: browseOutRight; + -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; - } + 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; - } + 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; - } + 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; - } + 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; - } + 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; - } + 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; - } + 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; - } + 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); - } + 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); - } + 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; - } + 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; - } + 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); - } + 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); - } + 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; - } + 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; - } + 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); - } + 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); - } + 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; - } + 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; - } + 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); - } + 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); - } + 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; - } + 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; - } + 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 ---------------*/ .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); + -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; + -webkit-animation-name: dropIn; + animation-name: dropIn; } .drop.transition.out { - -webkit-animation-name: dropOut; - animation-name: dropOut; + -webkit-animation-name: dropOut; + animation-name: dropOut; } /* Drop */ @-webkit-keyframes dropIn { - 0% { - opacity: 0; - -webkit-transform: scale(0); - transform: scale(0); - } + 0% { + opacity: 0; + -webkit-transform: scale(0); + transform: scale(0); + } - 100% { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } + 100% { + opacity: 1; + -webkit-transform: scale(1); + transform: scale(1); + } } @keyframes dropIn { - 0% { - opacity: 0; - -webkit-transform: scale(0); - transform: scale(0); - } + 0% { + opacity: 0; + -webkit-transform: scale(0); + transform: scale(0); + } - 100% { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } + 100% { + opacity: 1; + -webkit-transform: scale(1); + transform: scale(1); + } } @-webkit-keyframes dropOut { - 0% { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } + 0% { + opacity: 1; + -webkit-transform: scale(1); + transform: scale(1); + } - 100% { - opacity: 0; - -webkit-transform: scale(0); - transform: scale(0); - } + 100% { + opacity: 0; + -webkit-transform: scale(0); + transform: scale(0); + } } @keyframes dropOut { - 0% { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } + 0% { + opacity: 1; + -webkit-transform: scale(1); + transform: scale(1); + } - 100% { - opacity: 0; - -webkit-transform: scale(0); - transform: scale(0); - } + 100% { + opacity: 0; + -webkit-transform: scale(0); + transform: scale(0); + } } /*-------------- - Fade + Fade ---------------*/ .transition.fade.in { - -webkit-animation-name: fadeIn; - animation-name: fadeIn; + -webkit-animation-name: fadeIn; + animation-name: fadeIn; } .transition[class*="fade up"].in { - -webkit-animation-name: fadeInUp; - animation-name: fadeInUp; + -webkit-animation-name: fadeInUp; + animation-name: fadeInUp; } .transition[class*="fade down"].in { - -webkit-animation-name: fadeInDown; - animation-name: fadeInDown; + -webkit-animation-name: fadeInDown; + animation-name: fadeInDown; } .transition[class*="fade left"].in { - -webkit-animation-name: fadeInLeft; - animation-name: fadeInLeft; + -webkit-animation-name: fadeInLeft; + animation-name: fadeInLeft; } .transition[class*="fade right"].in { - -webkit-animation-name: fadeInRight; - animation-name: fadeInRight; + -webkit-animation-name: fadeInRight; + animation-name: fadeInRight; } .transition.fade.out { - -webkit-animation-name: fadeOut; - animation-name: fadeOut; + -webkit-animation-name: fadeOut; + animation-name: fadeOut; } .transition[class*="fade up"].out { - -webkit-animation-name: fadeOutUp; - animation-name: fadeOutUp; + -webkit-animation-name: fadeOutUp; + animation-name: fadeOutUp; } .transition[class*="fade down"].out { - -webkit-animation-name: fadeOutDown; - animation-name: fadeOutDown; + -webkit-animation-name: fadeOutDown; + animation-name: fadeOutDown; } .transition[class*="fade left"].out { - -webkit-animation-name: fadeOutLeft; - animation-name: fadeOutLeft; + -webkit-animation-name: fadeOutLeft; + animation-name: fadeOutLeft; } .transition[class*="fade right"].out { - -webkit-animation-name: fadeOutRight; - animation-name: fadeOutRight; + -webkit-animation-name: fadeOutRight; + animation-name: fadeOutRight; } /* In */ @-webkit-keyframes fadeIn { - 0% { - opacity: 0; - } + 0% { + opacity: 0; + } - 100% { - opacity: 1; - } + 100% { + opacity: 1; + } } @keyframes fadeIn { - 0% { - opacity: 0; - } + 0% { + opacity: 0; + } - 100% { - opacity: 1; - } + 100% { + opacity: 1; + } } @-webkit-keyframes fadeInUp { - 0% { - opacity: 0; - -webkit-transform: translateY(10%); - transform: translateY(10%); - } + 0% { + opacity: 0; + -webkit-transform: translateY(10%); + transform: translateY(10%); + } - 100% { - opacity: 1; - -webkit-transform: translateY(0%); - transform: translateY(0%); - } + 100% { + opacity: 1; + -webkit-transform: translateY(0%); + transform: translateY(0%); + } } @keyframes fadeInUp { - 0% { - opacity: 0; - -webkit-transform: translateY(10%); - transform: translateY(10%); - } + 0% { + opacity: 0; + -webkit-transform: translateY(10%); + transform: translateY(10%); + } - 100% { - opacity: 1; - -webkit-transform: translateY(0%); - transform: translateY(0%); - } + 100% { + opacity: 1; + -webkit-transform: translateY(0%); + transform: translateY(0%); + } } @-webkit-keyframes fadeInDown { - 0% { - opacity: 0; - -webkit-transform: translateY(-10%); - transform: translateY(-10%); - } + 0% { + opacity: 0; + -webkit-transform: translateY(-10%); + transform: translateY(-10%); + } - 100% { - opacity: 1; - -webkit-transform: translateY(0%); - transform: translateY(0%); - } + 100% { + opacity: 1; + -webkit-transform: translateY(0%); + transform: translateY(0%); + } } @keyframes fadeInDown { - 0% { - opacity: 0; - -webkit-transform: translateY(-10%); - transform: translateY(-10%); - } + 0% { + opacity: 0; + -webkit-transform: translateY(-10%); + transform: translateY(-10%); + } - 100% { - opacity: 1; - -webkit-transform: translateY(0%); - transform: translateY(0%); - } + 100% { + opacity: 1; + -webkit-transform: translateY(0%); + transform: translateY(0%); + } } @-webkit-keyframes fadeInLeft { - 0% { - opacity: 0; - -webkit-transform: translateX(10%); - transform: translateX(10%); - } + 0% { + opacity: 0; + -webkit-transform: translateX(10%); + transform: translateX(10%); + } - 100% { - opacity: 1; - -webkit-transform: translateX(0%); - transform: translateX(0%); - } + 100% { + opacity: 1; + -webkit-transform: translateX(0%); + transform: translateX(0%); + } } @keyframes fadeInLeft { - 0% { - opacity: 0; - -webkit-transform: translateX(10%); - transform: translateX(10%); - } + 0% { + opacity: 0; + -webkit-transform: translateX(10%); + transform: translateX(10%); + } - 100% { - opacity: 1; - -webkit-transform: translateX(0%); - transform: translateX(0%); - } + 100% { + opacity: 1; + -webkit-transform: translateX(0%); + transform: translateX(0%); + } } @-webkit-keyframes fadeInRight { - 0% { - opacity: 0; - -webkit-transform: translateX(-10%); - transform: translateX(-10%); - } + 0% { + opacity: 0; + -webkit-transform: translateX(-10%); + transform: translateX(-10%); + } - 100% { - opacity: 1; - -webkit-transform: translateX(0%); - transform: translateX(0%); - } + 100% { + opacity: 1; + -webkit-transform: translateX(0%); + transform: translateX(0%); + } } @keyframes fadeInRight { - 0% { - opacity: 0; - -webkit-transform: translateX(-10%); - transform: translateX(-10%); - } + 0% { + opacity: 0; + -webkit-transform: translateX(-10%); + transform: translateX(-10%); + } - 100% { - opacity: 1; - -webkit-transform: translateX(0%); - transform: translateX(0%); - } + 100% { + opacity: 1; + -webkit-transform: translateX(0%); + transform: translateX(0%); + } } /* Out */ @-webkit-keyframes fadeOut { - 0% { - opacity: 1; - } + 0% { + opacity: 1; + } - 100% { - opacity: 0; - } + 100% { + opacity: 0; + } } @keyframes fadeOut { - 0% { - opacity: 1; - } + 0% { + opacity: 1; + } - 100% { - opacity: 0; - } + 100% { + opacity: 0; + } } @-webkit-keyframes fadeOutUp { - 0% { - opacity: 1; - -webkit-transform: translateY(0%); - transform: translateY(0%); - } + 0% { + opacity: 1; + -webkit-transform: translateY(0%); + transform: translateY(0%); + } - 100% { - opacity: 0; - -webkit-transform: translateY(5%); - transform: translateY(5%); - } + 100% { + opacity: 0; + -webkit-transform: translateY(5%); + transform: translateY(5%); + } } @keyframes fadeOutUp { - 0% { - opacity: 1; - -webkit-transform: translateY(0%); - transform: translateY(0%); - } + 0% { + opacity: 1; + -webkit-transform: translateY(0%); + transform: translateY(0%); + } - 100% { - opacity: 0; - -webkit-transform: translateY(5%); - transform: translateY(5%); - } + 100% { + opacity: 0; + -webkit-transform: translateY(5%); + transform: translateY(5%); + } } @-webkit-keyframes fadeOutDown { - 0% { - opacity: 1; - -webkit-transform: translateY(0%); - transform: translateY(0%); - } + 0% { + opacity: 1; + -webkit-transform: translateY(0%); + transform: translateY(0%); + } - 100% { - opacity: 0; - -webkit-transform: translateY(-5%); - transform: translateY(-5%); - } + 100% { + opacity: 0; + -webkit-transform: translateY(-5%); + transform: translateY(-5%); + } } @keyframes fadeOutDown { - 0% { - opacity: 1; - -webkit-transform: translateY(0%); - transform: translateY(0%); - } + 0% { + opacity: 1; + -webkit-transform: translateY(0%); + transform: translateY(0%); + } - 100% { - opacity: 0; - -webkit-transform: translateY(-5%); - transform: translateY(-5%); - } + 100% { + opacity: 0; + -webkit-transform: translateY(-5%); + transform: translateY(-5%); + } } @-webkit-keyframes fadeOutLeft { - 0% { - opacity: 1; - -webkit-transform: translateX(0%); - transform: translateX(0%); - } + 0% { + opacity: 1; + -webkit-transform: translateX(0%); + transform: translateX(0%); + } - 100% { - opacity: 0; - -webkit-transform: translateX(5%); - transform: translateX(5%); - } + 100% { + opacity: 0; + -webkit-transform: translateX(5%); + transform: translateX(5%); + } } @keyframes fadeOutLeft { - 0% { - opacity: 1; - -webkit-transform: translateX(0%); - transform: translateX(0%); - } + 0% { + opacity: 1; + -webkit-transform: translateX(0%); + transform: translateX(0%); + } - 100% { - opacity: 0; - -webkit-transform: translateX(5%); - transform: translateX(5%); - } + 100% { + opacity: 0; + -webkit-transform: translateX(5%); + transform: translateX(5%); + } } @-webkit-keyframes fadeOutRight { - 0% { - opacity: 1; - -webkit-transform: translateX(0%); - transform: translateX(0%); - } + 0% { + opacity: 1; + -webkit-transform: translateX(0%); + transform: translateX(0%); + } - 100% { - opacity: 0; - -webkit-transform: translateX(-5%); - transform: translateX(-5%); - } + 100% { + opacity: 0; + -webkit-transform: translateX(-5%); + transform: translateX(-5%); + } } @keyframes fadeOutRight { - 0% { - opacity: 1; - -webkit-transform: translateX(0%); - transform: translateX(0%); - } + 0% { + opacity: 1; + -webkit-transform: translateX(0%); + transform: translateX(0%); + } - 100% { - opacity: 0; - -webkit-transform: translateX(-5%); - transform: translateX(-5%); - } + 100% { + opacity: 0; + -webkit-transform: translateX(-5%); + transform: translateX(-5%); + } } /*-------------- - Flips + Flips ---------------*/ .flip.transition.in, .flip.transition.out { - -webkit-animation-duration: 600ms; - animation-duration: 600ms; + -webkit-animation-duration: 600ms; + animation-duration: 600ms; } .horizontal.flip.transition.in { - -webkit-animation-name: horizontalFlipIn; - animation-name: horizontalFlipIn; + -webkit-animation-name: horizontalFlipIn; + animation-name: horizontalFlipIn; } .horizontal.flip.transition.out { - -webkit-animation-name: horizontalFlipOut; - animation-name: horizontalFlipOut; + -webkit-animation-name: horizontalFlipOut; + animation-name: horizontalFlipOut; } .vertical.flip.transition.in { - -webkit-animation-name: verticalFlipIn; - animation-name: verticalFlipIn; + -webkit-animation-name: verticalFlipIn; + animation-name: verticalFlipIn; } .vertical.flip.transition.out { - -webkit-animation-name: verticalFlipOut; - animation-name: verticalFlipOut; + -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; - } + 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; - } + 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; - } + 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; - } + 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; - } + 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; - } + 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; - } + 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; - } + 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; - } + 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; - } + 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; - } + 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; - } + 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; - } + 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; - } + 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; - } + 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; - } + 100% { + -webkit-transform: perspective(2000px) rotateX(-90deg); + transform: perspective(2000px) rotateX(-90deg); + opacity: 0; + } } /*-------------- - Scale + Scale ---------------*/ .scale.transition.in { - -webkit-animation-name: scaleIn; - animation-name: scaleIn; + -webkit-animation-name: scaleIn; + animation-name: scaleIn; } .scale.transition.out { - -webkit-animation-name: scaleOut; - animation-name: scaleOut; + -webkit-animation-name: scaleOut; + animation-name: scaleOut; } @-webkit-keyframes scaleIn { - 0% { - opacity: 0; - -webkit-transform: scale(0.8); - transform: scale(0.8); - } + 0% { + opacity: 0; + -webkit-transform: scale(0.8); + transform: scale(0.8); + } - 100% { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } + 100% { + opacity: 1; + -webkit-transform: scale(1); + transform: scale(1); + } } @keyframes scaleIn { - 0% { - opacity: 0; - -webkit-transform: scale(0.8); - transform: scale(0.8); - } + 0% { + opacity: 0; + -webkit-transform: scale(0.8); + transform: scale(0.8); + } - 100% { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } + 100% { + opacity: 1; + -webkit-transform: scale(1); + transform: scale(1); + } } /* Out */ @-webkit-keyframes scaleOut { - 0% { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } + 0% { + opacity: 1; + -webkit-transform: scale(1); + transform: scale(1); + } - 100% { - opacity: 0; - -webkit-transform: scale(0.9); - transform: scale(0.9); - } + 100% { + opacity: 0; + -webkit-transform: scale(0.9); + transform: scale(0.9); + } } @keyframes scaleOut { - 0% { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } + 0% { + opacity: 1; + -webkit-transform: scale(1); + transform: scale(1); + } - 100% { - opacity: 0; - -webkit-transform: scale(0.9); - transform: scale(0.9); - } + 100% { + opacity: 0; + -webkit-transform: scale(0.9); + transform: scale(0.9); + } } /*-------------- - Fly + 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); + -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; + -webkit-animation-name: flyIn; + animation-name: flyIn; } .transition[class*="fly up"].in { - -webkit-animation-name: flyInUp; - animation-name: flyInUp; + -webkit-animation-name: flyInUp; + animation-name: flyInUp; } .transition[class*="fly down"].in { - -webkit-animation-name: flyInDown; - animation-name: flyInDown; + -webkit-animation-name: flyInDown; + animation-name: flyInDown; } .transition[class*="fly left"].in { - -webkit-animation-name: flyInLeft; - animation-name: flyInLeft; + -webkit-animation-name: flyInLeft; + animation-name: flyInLeft; } .transition[class*="fly right"].in { - -webkit-animation-name: flyInRight; - animation-name: flyInRight; + -webkit-animation-name: flyInRight; + animation-name: flyInRight; } /* Outward */ .transition.fly.out { - -webkit-animation-name: flyOut; - animation-name: flyOut; + -webkit-animation-name: flyOut; + animation-name: flyOut; } .transition[class*="fly up"].out { - -webkit-animation-name: flyOutUp; - animation-name: flyOutUp; + -webkit-animation-name: flyOutUp; + animation-name: flyOutUp; } .transition[class*="fly down"].out { - -webkit-animation-name: flyOutDown; - animation-name: flyOutDown; + -webkit-animation-name: flyOutDown; + animation-name: flyOutDown; } .transition[class*="fly left"].out { - -webkit-animation-name: flyOutLeft; - animation-name: flyOutLeft; + -webkit-animation-name: flyOutLeft; + animation-name: flyOutLeft; } .transition[class*="fly right"].out { - -webkit-animation-name: flyOutRight; - animation-name: flyOutRight; + -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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 75% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0); + } - 90% { - -webkit-transform: translate3d(0, -5px, 0); - transform: translate3d(0, -5px, 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); - } + 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); - } + 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); - } + 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); - } + 75% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0); + } - 90% { - -webkit-transform: translate3d(0, -5px, 0); - transform: translate3d(0, -5px, 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); - } + 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); - } + 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); - } + 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); - } + 75% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0); + } - 90% { - -webkit-transform: translate3d(0, 5px, 0); - transform: translate3d(0, 5px, 0); - } + 90% { + -webkit-transform: translate3d(0, 5px, 0); + transform: translate3d(0, 5px, 0); + } - 100% { - -webkit-transform: none; - transform: none; - } + 100% { + -webkit-transform: none; + transform: none; + } } @keyframes flyInDown { - 0% { - opacity: 0; - -webkit-transform: translate3d(0, -1500px, 0); - transform: translate3d(0, -1500px, 0); - } + 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); - } + 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); - } + 75% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0); + } - 90% { - -webkit-transform: translate3d(0, 5px, 0); - transform: translate3d(0, 5px, 0); - } + 90% { + -webkit-transform: translate3d(0, 5px, 0); + transform: translate3d(0, 5px, 0); + } - 100% { - -webkit-transform: none; - transform: none; - } + 100% { + -webkit-transform: none; + transform: none; + } } @-webkit-keyframes flyInLeft { - 0% { - opacity: 0; - -webkit-transform: translate3d(1500px, 0, 0); - transform: translate3d(1500px, 0, 0); - } + 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); - } + 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); - } + 75% { + -webkit-transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0); + } - 90% { - -webkit-transform: translate3d(-5px, 0, 0); - transform: translate3d(-5px, 0, 0); - } + 90% { + -webkit-transform: translate3d(-5px, 0, 0); + transform: translate3d(-5px, 0, 0); + } - 100% { - -webkit-transform: none; - transform: none; - } + 100% { + -webkit-transform: none; + transform: none; + } } @keyframes flyInLeft { - 0% { - opacity: 0; - -webkit-transform: translate3d(1500px, 0, 0); - transform: translate3d(1500px, 0, 0); - } + 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); - } + 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); - } + 75% { + -webkit-transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0); + } - 90% { - -webkit-transform: translate3d(-5px, 0, 0); - transform: translate3d(-5px, 0, 0); - } + 90% { + -webkit-transform: translate3d(-5px, 0, 0); + transform: translate3d(-5px, 0, 0); + } - 100% { - -webkit-transform: none; - transform: none; - } + 100% { + -webkit-transform: none; + transform: none; + } } @-webkit-keyframes flyInRight { - 0% { - opacity: 0; - -webkit-transform: translate3d(-1500px, 0, 0); - transform: translate3d(-1500px, 0, 0); - } + 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); - } + 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); - } + 75% { + -webkit-transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0); + } - 90% { - -webkit-transform: translate3d(5px, 0, 0); - transform: translate3d(5px, 0, 0); - } + 90% { + -webkit-transform: translate3d(5px, 0, 0); + transform: translate3d(5px, 0, 0); + } - 100% { - -webkit-transform: none; - transform: none; - } + 100% { + -webkit-transform: none; + transform: none; + } } @keyframes flyInRight { - 0% { - opacity: 0; - -webkit-transform: translate3d(-1500px, 0, 0); - transform: translate3d(-1500px, 0, 0); - } + 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); - } + 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); - } + 75% { + -webkit-transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0); + } - 90% { - -webkit-transform: translate3d(5px, 0, 0); - transform: translate3d(5px, 0, 0); - } + 90% { + -webkit-transform: translate3d(5px, 0, 0); + transform: translate3d(5px, 0, 0); + } - 100% { - -webkit-transform: none; - transform: none; - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 100% { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } } /*-------------- - Slide + 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; + -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; + -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; + -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; + -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; + -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; + -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; + -webkit-animation-name: slideOutX; + animation-name: slideOutX; + -webkit-transform-origin: center right; + transform-origin: center right; } .transition[class*="slide right"].out { - -webkit-animation-name: slideOutX; - animation-name: slideOutX; - -webkit-transform-origin: center left; - transform-origin: center left; + -webkit-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); - } + 0% { + opacity: 0; + -webkit-transform: scaleY(0); + transform: scaleY(0); + } - 100% { - opacity: 1; - -webkit-transform: scaleY(1); - transform: scaleY(1); - } + 100% { + opacity: 1; + -webkit-transform: scaleY(1); + transform: scaleY(1); + } } @keyframes slideInY { - 0% { - opacity: 0; - -webkit-transform: scaleY(0); - transform: scaleY(0); - } + 0% { + opacity: 0; + -webkit-transform: scaleY(0); + transform: scaleY(0); + } - 100% { - opacity: 1; - -webkit-transform: scaleY(1); - transform: scaleY(1); - } + 100% { + opacity: 1; + -webkit-transform: scaleY(1); + transform: scaleY(1); + } } @-webkit-keyframes slideInX { - 0% { - opacity: 0; - -webkit-transform: scaleX(0); - transform: scaleX(0); - } + 0% { + opacity: 0; + -webkit-transform: scaleX(0); + transform: scaleX(0); + } - 100% { - opacity: 1; - -webkit-transform: scaleX(1); - transform: scaleX(1); - } + 100% { + opacity: 1; + -webkit-transform: scaleX(1); + transform: scaleX(1); + } } @keyframes slideInX { - 0% { - opacity: 0; - -webkit-transform: scaleX(0); - transform: scaleX(0); - } + 0% { + opacity: 0; + -webkit-transform: scaleX(0); + transform: scaleX(0); + } - 100% { - opacity: 1; - -webkit-transform: scaleX(1); - transform: scaleX(1); - } + 100% { + opacity: 1; + -webkit-transform: scaleX(1); + transform: scaleX(1); + } } /* Out */ @-webkit-keyframes slideOutY { - 0% { - opacity: 1; - -webkit-transform: scaleY(1); - transform: scaleY(1); - } + 0% { + opacity: 1; + -webkit-transform: scaleY(1); + transform: scaleY(1); + } - 100% { - opacity: 0; - -webkit-transform: scaleY(0); - transform: scaleY(0); - } + 100% { + opacity: 0; + -webkit-transform: scaleY(0); + transform: scaleY(0); + } } @keyframes slideOutY { - 0% { - opacity: 1; - -webkit-transform: scaleY(1); - transform: scaleY(1); - } + 0% { + opacity: 1; + -webkit-transform: scaleY(1); + transform: scaleY(1); + } - 100% { - opacity: 0; - -webkit-transform: scaleY(0); - transform: scaleY(0); - } + 100% { + opacity: 0; + -webkit-transform: scaleY(0); + transform: scaleY(0); + } } @-webkit-keyframes slideOutX { - 0% { - opacity: 1; - -webkit-transform: scaleX(1); - transform: scaleX(1); - } + 0% { + opacity: 1; + -webkit-transform: scaleX(1); + transform: scaleX(1); + } - 100% { - opacity: 0; - -webkit-transform: scaleX(0); - transform: scaleX(0); - } + 100% { + opacity: 0; + -webkit-transform: scaleX(0); + transform: scaleX(0); + } } @keyframes slideOutX { - 0% { - opacity: 1; - -webkit-transform: scaleX(1); - transform: scaleX(1); - } + 0% { + opacity: 1; + -webkit-transform: scaleX(1); + transform: scaleX(1); + } - 100% { - opacity: 0; - -webkit-transform: scaleX(0); - transform: scaleX(0); - } + 100% { + opacity: 0; + -webkit-transform: scaleX(0); + transform: scaleX(0); + } } /*-------------- - Swing + Swing ---------------*/ .transition.swing { - -webkit-animation-duration: 800ms; - animation-duration: 800ms; + -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; + -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; + -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; + -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; + -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; + -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; + -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; + -webkit-animation-name: swingOutY; + animation-name: swingOutY; + -webkit-transform-origin: center right; + transform-origin: center right; } .transition[class*="swing right"].out { - -webkit-animation-name: swingOutY; - animation-name: swingOutY; - -webkit-transform-origin: center left; - transform-origin: center left; + -webkit-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; - } + 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; - } + 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); - } + 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); - } + 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); - } + 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; - } + 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; - } + 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); - } + 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); - } + 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); - } + 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; - } + 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; - } + 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); - } + 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); - } + 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); - } + 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; - } + 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; - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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; - } + 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; - } + 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); - } + 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); - } + 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); - } + 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; - } + 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; - } + 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); - } + 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); - } + 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); - } + 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; - } + 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; - } + 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); - } + 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); - } + 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); - } + 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; - } + 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; - } + 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 + Static Animations *******************************/ /*-------------- - Emphasis + Emphasis ---------------*/ .flash.transition { - -webkit-animation-duration: 750ms; - animation-duration: 750ms; - -webkit-animation-name: flash; - animation-name: flash; + -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; + -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; + -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; + -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; + -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; + -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; - } + 0%, 50%, 100% { + opacity: 1; + } - 25%, 75% { - opacity: 0; - } + 25%, 75% { + opacity: 0; + } } @keyframes flash { - 0%, 50%, 100% { - opacity: 1; - } + 0%, 50%, 100% { + opacity: 1; + } - 25%, 75% { - opacity: 0; - } + 25%, 75% { + opacity: 0; + } } /* Shake */ @-webkit-keyframes shake { - 0%, 100% { - -webkit-transform: translateX(0); - transform: translateX(0); - } + 0%, 100% { + -webkit-transform: translateX(0); + transform: translateX(0); + } - 10%, 30%, 50%, 70%, 90% { - -webkit-transform: translateX(-10px); - transform: translateX(-10px); - } + 10%, 30%, 50%, 70%, 90% { + -webkit-transform: translateX(-10px); + transform: translateX(-10px); + } - 20%, 40%, 60%, 80% { - -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); - } + 0%, 100% { + -webkit-transform: translateX(0); + transform: translateX(0); + } - 10%, 30%, 50%, 70%, 90% { - -webkit-transform: translateX(-10px); - transform: translateX(-10px); - } + 10%, 30%, 50%, 70%, 90% { + -webkit-transform: translateX(-10px); + transform: translateX(-10px); + } - 20%, 40%, 60%, 80% { - -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); - } + 0%, 20%, 50%, 80%, 100% { + -webkit-transform: translateY(0); + transform: translateY(0); + } - 40% { - -webkit-transform: translateY(-30px); - transform: translateY(-30px); - } + 40% { + -webkit-transform: translateY(-30px); + transform: translateY(-30px); + } - 60% { - -webkit-transform: translateY(-15px); - transform: translateY(-15px); - } + 60% { + -webkit-transform: translateY(-15px); + transform: translateY(-15px); + } } @keyframes bounce { - 0%, 20%, 50%, 80%, 100% { - -webkit-transform: translateY(0); - transform: translateY(0); - } + 0%, 20%, 50%, 80%, 100% { + -webkit-transform: translateY(0); + transform: translateY(0); + } - 40% { - -webkit-transform: translateY(-30px); - transform: translateY(-30px); - } + 40% { + -webkit-transform: translateY(-30px); + transform: translateY(-30px); + } - 60% { - -webkit-transform: translateY(-15px); - transform: translateY(-15px); - } + 60% { + -webkit-transform: translateY(-15px); + transform: translateY(-15px); + } } /* Tada */ @-webkit-keyframes tada { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - } + 0% { + -webkit-transform: scale(1); + transform: scale(1); + } - 10%, 20% { - -webkit-transform: scale(0.9) rotate(-3deg); - transform: scale(0.9) rotate(-3deg); - } + 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); - } + 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); - } + 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); - } + 100% { + -webkit-transform: scale(1) rotate(0); + transform: scale(1) rotate(0); + } } @keyframes tada { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - } + 0% { + -webkit-transform: scale(1); + transform: scale(1); + } - 10%, 20% { - -webkit-transform: scale(0.9) rotate(-3deg); - transform: scale(0.9) rotate(-3deg); - } + 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); - } + 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); - } + 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); - } + 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; - } + 0% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 1; + } - 50% { - -webkit-transform: scale(0.9); - transform: scale(0.9); - opacity: 0.7; - } + 50% { + -webkit-transform: scale(0.9); + transform: scale(0.9); + opacity: 0.7; + } - 100% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; - } + 100% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 1; + } } @keyframes pulse { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; - } + 0% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 1; + } - 50% { - -webkit-transform: scale(0.9); - transform: scale(0.9); - opacity: 0.7; - } + 50% { + -webkit-transform: scale(0.9); + transform: scale(0.9); + opacity: 0.7; + } - 100% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; - } + 100% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 1; + } } -/* Rubberband */ +/* Jiggle */ @-webkit-keyframes jiggle { - 0% { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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); - } + 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 + Site Overrides *******************************/ diff --git a/front/src/semantic/themes/default/assets/fonts/icons.eot b/front/src/semantic/themes/default/assets/fonts/icons.eot index e9f60ca953f93e35eab4108bd414bc02ddcf3928..769e6fabef464631c52fffb35dcf41d2d1da6c18 100644 GIT binary patch literal 218340 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 literal 165742 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 G*yFsbY~cLNXLP73aA74Mq6M9f^&YV`isWW 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

5q!RY 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 - - - -Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 - By ,,, -Copyright Dave Gandy 2016. All rights reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/front/src/semantic/themes/default/assets/fonts/icons.ttf b/front/src/semantic/themes/default/assets/fonts/icons.ttf index 35acda2fa1196aad98c2adf4378a7611dd713aa3..dc18b3781fcd12a478fd2e8b9fc3c5c010621d31 100644 GIT binary patch literal 218140 zcmdqKd4OF-u?Jk;XTQt2`!Z|pYiVL(*WfPsfTRK!6Mqaw~mL=AVoU-h|n<|ZtkzW4q0g{gb`^io~D zRaaM4A4m{Uka|g@?nR51AM?q~uT0XGBa+G&FFbM)P1e3f+KB^ruRQL=8O?{^`o;@H zVkO>JoO9k;8&7|*^Bkh^GNQnywP#(tacm5jv=d)Oy1jP8Wos6k{+le()E<)i?_PKA zS*zXWzTJ(qR{-tn5TRdUJOO-hyw|QfZ`0=2j&W|l`%WVF?hO~5bCy1;_komty!V}V z*5-|RSRR4&PUO#=f7W^DZtlKHkXCg7aev!*!Nr?q&wpb%X*F*W&G<8M+W@jMTy+|LB*XQF^Y5vh3ZcUopggK9(qtF%GSFDAP)0pfoY&v^_=EZkUcF=gM0!|_9p~#Rf}(L|d@7Cdxbja$e?P~K9pH4( zQKIs4I=}a$k5LxwPUETC&QBFadOi%?WB)*&@HjqIHlNP<7-#}87mPwXxGnzmR3y+YH?5y$f|@3TbMLkT#Z6`8lnh!(;E}@v1V4Cd3!ht!VBC z9+W|RIFCDwcMfwufWG%>4|#FpxVSu^m|pZB_kSvnb7JlzAI9fh%gRU~<@-Y6<23IbIJ|Vs5sWkXL3XKfUcJ3V;X*zy zo!1aagvarE^p4Z7a1qw72NUZ9yBn8NectbtS94(kR}qeUI`T=RPtZ-FgXT&;ttg%Q zDXsd-OXGQrwyJrEG3N2)@#gX4IMl;oK)!#yc6Fg10Mfe{itrc4#hasa5N%9nfv*&v z3ZLpLkDmNEg2!;)Uax({yG8 z&65BaH;l=k7msoJhw8U;fVZDa0Q12NfF**Q_=1Y}`n*@w!TD+>0bL87v2w|W22&(*VnuGG)K|xl?xZ>Q~loUtqb5Sj3J3_z}ZU``Lc|g zX%6svo^DI*^TMj$UNs&P>%z<9(WAy1G`x*53o!kRN8u<=@6FF8q7=saZ}~bi>e;2r zOsp43!sy?B<@1p2!aV8q+F!tnrw>qQuT<^!@VKg6hH>V3Y#-wrpA(pGBzCs$)$Ph2!#*_IN>dns$ z@CJ-^6mwb@;$+wO7%)u*9Nx3bo0k(b7SYCdKLEIX#+9e}y)tl@*ADcVCkFwKs+;4P z2JgvX;;^c}_uqRK%BW|dJzNjtQM{vQtx=&3kVg<6hhDE<*`>};&(RAQLE@D5KUto)dL=kg96WaLw81k5&mY_}c-`Qq25%nx?BKnF z_YFQW_~_vCgFhd9b@2Cte;FJd%nkX6+@Z)&Y^Z#wa;SQ!acJhyyrG3di-wjC9XoW! z(78h&89IOH!l6w=pBTD%=(9uj4m~oobLfeo=Z9V%`qj{@LvIc3AIc5;huz`yaOLpy z;d#SH4Ievv#_;*WmkwV({E6YKhHo6cdHD0g_YOZY{Mhifhrc`gz2T>apC5j4_|@To z;Xe%jarn=}e;pnk-aq`0k-$jFNae`nky#^0jhsGm#mJ{dK0oq>kw-_K8hLi)xsg{! zemnBFk&%&qjs{2LqgA6dqccZaN83ja8=W&cfAsLtBSw!LT|9d1X!q!eqo<6XK6>VU zXMf55$@^#RUkE)4{teQgK4=Yw(Mu`SOI3r14=x$(MlbaYZXE1IFWoeF>)`gmzQHdI z?i}nN+&lO`g9C$q92^{cXNZP^Lt*q%8oiVmsvT+?Y8mQ6FC9H}%ux4G&(PYTj}C1d zx_Icaq28fehdwvdhhBPgsDEfLdg+y+fuX^ncZO*=I2;}>9j+RlIovh8bolt;p5cwd zmknG0(MzwPm);(EcQibjL@(8iwxE}09n?$5pqEYiF=AD{3F0mBU8OMqR?|*D2(0fga3s)aENM0?mH*)g#LRXd}t{22`?tZ zv-;oo=MGI|3LfR=+-mPV^pN`-_Z9cY?)UiJJr1--gTNg&!xIIHLM~e44iq9>6BM5t zT8-c3p%X&Khq^<@g^tA=fd7S#@Sf@yl!|JR6%7LI6o+w~I81C3my7EV`n-5dJdfwg z;#cB#;w>>KP3eso(E_<-LH|61S`3dR0by!NX0hL+RQ`V_rMKU!a-Z_+Q(FW1p( z{RaJBy-$B!e^yaU`ZM~=I_n7Y|Mb`OH;@Z}-+%J2VH?%PDr2K@i}4v_m+`#uvhgZn zN5RfqGi`R7T?j4boF;aI z6`vD#&^h9ZVud(K%oA(rGTJDPrCY?O=pQsjyXj@|WAUu`i8!35iCe^{X+F+t^QoI2 zr#bYdxJ}#+9g9g0xZMGfrG4T@^atTUAM_>qw78tUM3Y5_m@Ym^-=q7*$7vgVgw~5$ zA}#Ktv%~`WGhIuQC_`0LDOS-v)GKC-Qp(bu^b8HrWAsJ3k3KKj=qRy>t`H`Dl-7x3 z#M$&+`VO5T|0`Xf=cO!;zdYcvRdV4DpEk zs{D#PS+1ZH=oC7Umea>Evo?y0>9g_^Vi!F{bHzIG4KbDWi^s(laV>SwX8H|ez9>CN zZS*YWqe~$uK!X&e7{w_6_v>c@3RQYiKR4mTP1TQu%ILM7PpsL^tOC*8mm)1M*^eo6f^poFW&?CGsq+#hsca8t8w-6!8&p zsyKz_X?KgS(=5>`pO*eoGgL)5QVl%B1X)AD2InKa$VNpU`P^syI_TAts3{=~v>1A|m4A zA+bX|BZA@wA}m6}71i{8`H*IamEwEiNotjU7Y~YSxa-YxHxGpLDLXeKq&43VMV zK~ks_S4ckJTu4)BfPPD_(rfer{e)hmAJc!+UiztcKpZV2a*;ez{z-0^pOXtUOFk)W z*(&dn>%~qP5-*8YXc;Y~W9Vr5lkf?@2+$UJt~?+{+{Di<~b<<=5m*@@X+m z^oXDY2DiK+6mf;l*ZX^7Trr<&`#1;XeVncwNtcHwbR7U#V^3;e+f?i8!;e$ z4}Sl;_@me-{w&_qR%_>qK`|^w#M|QUV!!y8w6u?C>!pL;z^|RJT_D5Sg)%DRG9lBl zM7v0q%L-X3C&`SglGWPf*fZ+oH0&EQWxJe%-Qx&)8vDob@GBMDrtFbt z%hhtNJWp|`b)TL7bwv5*#e84}wPz%EFUwSe1+qBa0!VyH8YIuoEF zxeS0jDa5CNE4>e@B9t%f0^Cnj76)7d7{yU(HDE7M#b%gXI{_$@2?J196~fiPS+f!V ze6^1g)gfGmve~XEMjFqr^*h^Dl{_6ponfp>ZUfc%Z!u#M_~mx!7`*UVbL{Y1?u z-@KQo1^HU$0JZ~Au5~%!VZZ=U+p{p+B2NeMccP9?&@!t5fU>g=5FNG-@Ho+I#LeDD zGzay}*$jAvXznyXF97A|^#J$@{PQ;e`iZ(w=5QMTTnpv^@H_%EEbIb2PIM&lEZIqP z6mTAe_@nj_9gRAUK0ve-^en3dyiRlsaI+YE>;Tbm%ZR!IfIURVgWwaI0DVL!qRta{ z5G_aBP6`7y0iJB08m)=v2^kD$1Pt3ejn;0MxVUCZf}U^K|4r z194~00U*7n3xK$@fdA}r0O~tuA<^mp;7y`6I^boZwVR06Z6W$dE#PsY^=Qj_;N1XR z8&KzYD03e0TtI-WfCEGu*8%RwmWX;U1m24fz8K+)fp61pqK`EIRuf%P3)nz(DcXA} z%56sZ%X9$BTs{o|IzA5ETaf1p)OW?}M4z~y=#$9*$x)&!R}x*d1n?5k)u8K|3;=nr zwE_J^*KH)aehbl7;M|IGpF+7$?I5~g9np<(Slp5CCZyk74(KJiWjO%ppH2g|0^T9o zwwdTwJa6j+JVSIl;y>FB09|*W{2jLweXf;g`x3wbqC1}@x(m4OUPg2e!%YB`zZbag z?E}0{^o2P9l{kY zLZYvxi5^}@^tCR)9->FW0K7kfdcGb2Am2{Vy%RKi<7J{pQT|bc9|aBn)lakw{qs%W zc`OdN8!$@rEtK6&06f2q_-}6_`VR7Z=Ov==0{7!O0BPTQhUf|4djjDn_7Odq0RYF7 z2Z;KCxBnHQrwM@izK`OuhM{q4g<1Hknf;P=S)`ZYv<*h=&U+Ve-$ z^~c+Z_95+0_XCjs!mZxa1w7XbCV*#JP9H}??zHBR)F4p<35{g8s{xM4Q&u##o2ax{&>U+1BD7TDg4DVz8 z*j(R)*7$xB+7iG468bI@#s+M>wIr-C;B^=@)&T}dIEZ)f?pp?0A_Od`0E zgp2&{D><(g42hXYYhFg8-6qii9Gz(rv+z9Z0ExM)0DUCp zZ6h&%2Z_TGJ|Y7E{)NDGWD}s5#3DSGAkR|7Eq$28GQ=Iz2>?CEBL8tqNOUg;px)zw z^90m)B5*7xz-AIBA#Ozj;2ILAc9A#(ac90mqGvmavpY$ggR*OY>m$g&zK_I5?I^N{yEP_O5%!c0G^)=L-C8W zUeMF~42dh}khp3S0C=xX1Ayxqg2?C1oHl6Yt<-~frQAn#XqlXw{6N09I9FTn`0jl_SI1CZyxo+Yshc)yAI zAKOUcTgzY&TnM-ZFhBynTH@Ql_nlr6-$j}4ZUNx^3E+AXb^ieEd3Gh>84^DZllaN~ z5WDUs@f^~hL*38e{dtuA+3h6uqTCC>`QpPQ{u^;Gp^jg@MB){j#BYG-)m8w~2l`0- zZV6yFiQfbF@A3Qt@V(JQ;*S{;`;h<7t4RE12Z=Xp0WXty3+0EOB{71yk#|UpE+O$Y z@a#vq{o6_WeH)2?B8>Ge{<)LHzxI$gfVLh${DFNWatld}ZG{qi4@o@(xQV3kGD)kS zq`jM@(?`;`67V=l|1y%129nVplCk9^kzKnM>4yGWJ8AJRKT<}U^mI>{e*)t$);M8GnW7m*Me{h z=x7DB0e?I29)|q0ZNMIqbNWcm#dF>}BXj8yh##kQ6Aq)@&u%xm?pV=8p##?fKiesZz8$!0LfGC zCwb~Bz&j*Q+d%U4jeuuJLMD=D>?L^?@Iele=OAu1(pC?WJQsAWLEM_%B-aAx+MNKz ze`F!a^}9%Z6!8~qBe@ayHa<@B!aXD}!V@x%{Mcram!PeepvCdZzIVsc9MilgRKcLK=R9*Nj|WelKd+2Kb$7{HQ@dl za6Hlqc%0$!{(p`55qh3$#IAk>3GctbO_T-6X&F zI>{%ulk9H-pv==c0Po)i-e(AKJINocBKgAuB%iebNc%Bx{iGX!vOnEPa!)M)ZF~-G zeje~M;N82A@CDEHz@0Mh?^H_4Zl6O?HrA$Q1Myh8G2z%M%iy#VC>RS)19lCPk> zzrpiW)bZQRBnRdIkp9};B!7pxf7b`tOY-*%0b2mT|N1tPe*msGc98sI1K<^s`&N&n<@-5(c3w8Vr_y*SjPlgSBdbJtQw_+2WD_WMRPi&lky-=Jt+MC3Hr+0)cpWJU0+8FOQ21f_P`x*WKCK-8oPm?~9kmLa9uBtS*!a z#Y8615NP7exgP#)!fO{p7jk!Yzr%4eL#2k5^!qKNG(;xhpTu?t?QDt~p$}XH9WRL@ zn%g3+S^Yg!&J*)RC0e7%?1+PQkUm>9C)z$BEcSXN2~b>~`|5%jGZxI~cYQm3u3_sH zp{i(YWrgMI3#~2W-R!&&vkv3hGPrc=TF$uwUU8=9SC$5{i0d+*t5{^ z?IsI)XNty?&F!t(>R5yuW8eDxt+zhEcG-pvqMk#y=DNkk4cj4Mk`Afx6^!Nm=#xnp z&H3n$#KiERkx4_1r8l+}BA$#L@?KX{ZE`&FV$55!qQ|iYEJyw1c8Wd@=6d+IC@dBi zvN+=Q22SLkC%p%U$7mw_>_m`<@O@~Gw6(Tl&Lu&Ii8+`}9YW)wG0L*5yJW>aHw`Hn~s{cj+VlUmcUYH zz|ybrmVXAwf$QlGw75}N&B;{KtZ7bKuB@rI%#0PrBIEij!${QmlD@E$aFaeOVh6;Ikq=`R$}n57-gQmkh-d0(BZ?>0n7oFq8^9Rk~rG5^}1JK6MuC zO@?kKtw=0o0H^L)hAw1Kvn(Uw^I3-{FixR(JmgFZ+nir&0t$B&u%kYINXlTqAHlCL zp|Ts{KufSB5cZ|Yohrt>IBwYj1cX93nS+1xoLvCxN|y))sUzyvkdIMPq^J)PV|?^pm3~|`JWsc8+%6_F1Es=I1TNq&$iAN z?ah-!2me$G6RWa1g{i|+v^pd(t2in?NhF&;z16Z(R^008!B5J-I@xN)%eHdBi#7s5 zJ!M&l?FU#%i?douj^1j0d#fG{7%GlSB#~jOh5k;%OLhk=V{vc^@@PrMLzu|;F{?pE ztA*tN0j0fl2G8j{VP<@wxDJKweXDrkAgUF0?@#lgv~*Zr_4BdX@|^@`RL{M_{edMF zPja^~W$#Bzp$BwL)4kSy{ryNO^r`MRj^_2=LE{vMjgmUXyJMWF_U3w!kf$K!k-=m3 zjrXf$VvIo5`wY>c-G@Gf(Ms6C8!$eH&K7Tk4xSaNe|z3DGSGKnoM9(Di;_Ib z^AzDc%=szD_U$yUKtcM1sE2etcg7c3cR*xiaH^!ofxhFvT! z_T`#*;}U!E8+CoTjp}Wi&wW@)siMpEsSNnZ?G|B9%?;xBMV3YF0MDHw8MF-VO4e_0 zw!oZBOjw?;%(z;yiHdiWNP631+cYn>?TdBGSPbDkFP>hrDP*Wv$AT*BAiQ8EdVYVd zuK@$ZngHs;SwpN<;%%Y45!w{!Jh&p$w7H^#aDvuoLFRA4wg*CaLMtf&J#*(lIKkF7 z!3pDFtaiFlk68X;m^|EjA*nVpn zHZ$b2Y|GNF;fZz)PeQ+SFfH{H<6-gE<84kI%rg}SALkV9t@*(j$8TAFp4=X8ta`uY zja7kAD}fC7=MjnAR^s5gvlHXiks251EN|1`wLZ?Wy&){F8TA!aoFC8Pnl0-C>qVOj z<67T=`QjaX##v!;yS*`fKfL))_lEm@DJyh0c#bjlTlgCFQ6=o6#heQ>6^uC2+71$u zi3oNnaZi%R>S?s^X^)v+?D{f3_hKvlyA*dfVmUEo32U>Mq*n23n<0?nA9(KA>o^PE z1s^S{^EgqX+5y!T?ZV|{{D=iAg!B*=>Pu-l1fXK1nnw#yGA2gzVW$}<2latp{Xsk> z?godZ7>Gw(CfG7|-f{MYx&6c;l`;Lf*O-1W3G|CA4z3GLEUJm?(#HnGcj1dx&HIUJ z*7#=N%0@U+MZ9BgTLdkyIT#ycKHHMx2=6_ZmLwW3HLaK&#ov#C7ZMH-s664Zs{GE) z+zQhM8~8kka=cJnAub=S^smr#U0dO=9Cc&17dG91Ba)4c;Q$gHpM%suxUtdaTKQK) zGnnU%HD8{@e)AL^;mwz7wRK@Kw$ap1taiN53m63#U&h@1R|E-yUm=7_dNy*|qaC7h~sY$FPXQE#PQ4yVIV z?BLgpyJvl7Edq;HFUpi#MrAS(4hN>s4RzhX>Xk#i8a!i<;{)7e9Fk->7TAbN z^o8U_#~y3MoNC7~mw(aky8bUNHx0bTjDzBJ(`R@o5xx;NA%`5nXDMup>L}}xZeiqb zzQ=4!#9iHL1i`8)IPm6=y_FKf+EJ;g!Od!FKB(-bptZN&y7uU~j&AwPs6D+M8ntD| zu1EF3uoEz}v~&a0HB*mHshgh-meeNWQ-YeC3Wt^*eM@gRUYm+U>(o}$U?!Y^r5P1a z!mT*k7mJ1iwh-aqWr2uhYRT-PY3YWtP%;t-nPU0;)mw6V6S2(XWNgx8UhB|ra3i6| zbl_WBg^^i|nVYKVz)Vbb@JhnG?EpJt?GiK^o^}a54}t=Z)okYJEh!$Q_6{XJV0!Xf zNBftYQU{)SLhf+g8721>RI9AV%)LEJn0l?P&BB?x!q)9pTXQN*>sxJ&vjUbeYe~X< zp|Vn9Eo#2fvuCDD&YaNXmXGex410&^6Lw{#<6AMkC9uP=X2sA9>^Zn)3%_j_p1OSA zP&yb-jxi2;3-pKT>O%d7DTFDEqL&Bzg3-9>ibsQey3g4&_lK0`g8PG}l5)=Q{| z&Vla{h80a8*TT&fkt}3lB{QRwnp64oseJS{n$WBDjS~IHiW63l%;Ys+pQ^D`5)v`h z4oMO{JJcS#k$-n&?aTSOHQk-w%7M%EbW~(~6}B(tIMtZfrIo&=>zDQ}*|ytPQ5rYX zrD<~_PRVcTN7RQWt3U?I5s2ckN!GW7lbjWfXJe5-Ad+pJld=W4!c*JA9N*RuaNR&r zEY1qW`eF!Hl;>bssDMPf1~rZ_v2s0u`hgyQHaFI~tjV7hV)2PH^77Kso~^AyWOGk7 zZEeks%}m0VEId9pHE5#!IElodYcInNUju8wRA`u6;4eL!^~^IPE&r$gqK*@FYMruZ z86;ZADUFsz`JWRlmrkq3L+Y%gi#$F`|$ei?(O~mxV{hV&--)z(C)nd@D=)#WEb|h zDDH36V%{^Wu4$`E)Z~vl6#{~p61t4S5x7b=_}rdcZ;w({T&c`%qN%fChtCz6KJeYH zF0qa$<+J_DvUYq!r|Vm%>`4Py=Y9B&O$|8IY|IuG*o##qb6Ew*6Vi%9-hp_XOh7(F z1VlyNLW;s-V^dx=;$t<*@rlwI5mW1EvYdxp$8nvHs9(_oS_^8HDYd@(^p#aJUeFy; zvfHutPFT>!LzrXO!=99fLuPfM)dC0Y;JsXlrY&`@OtF*`$M)4`V0WsAn8p(KB+=e6 zF40;rv&JiBD#@zNV^bxWjdksHRk<+{4S$uFY9u8V_#r^Q`!7r4ydAeL%Ff0H6w|cB zmf6ujAZpCAn z{%E?{guQv}?~o;b3|X=cy-anDl6O?L46uX^EjI6|N@6aws=3|rS_A`)cr+Z2E<23L z5t=+~Su`BZH(+C?a!g){ zyB%G)p>hhHNta;MtF3w#Yh8&Ut(3Dx3e%twwYEF$fV z!bn0AU}+KdkHes!O({Xxl^r$N`i_7=fC2lg%)0Am=Sx%cYDZLm-9UxyKQGIn2xOhSD z=wP?6z%Jj0GZkdg7`m@rsU}(qOSHw4G{M_zV%)13ay|;Sw8aW~lo|~&v6j|G_9wte z5i70VThIe)S@-1dw%O!nH{cgyZ74L-L!+nAuMpQvWeFgLsPDgA7O!&KIN#D zbCKGY+ntZ<>&p$yU3t_L#JN5tSLgj2Y9OO5zzv&~n5EU2oz*xR@VNm$szq%rpfL}; z{;S%W!3UbvpkiWxJG2OOZfIk@B1~u~b!brZ2kK|kr|Z+H27eHt05&k}W?fy_z;a!P z=Qw}7B$lcV`s>rVzF;ilOGYm`=+T9p5&yd5<=fQ1^7!5!yobY?jOdC5-ST8zHgV{a z=f93I`yOuR^pg)7_Hvwm$*^GcfGY+LMmVKbN-(^7sk{ixc*oZ*6I5ZRw9TTY-#jT5>LrPPp9&l%(|q zlW-1|VvRcbhkbIs(4W_=y;2(AKXs+;mzq%$5L-~XwD$Yk9f`C4nY=o><2QXan05kz zZ*Hh(1oBGMss*DGd!r3q&t~xREbd+{z!=U`oJO5k^D8?tE+v8Hc|6siy+ot2B&RYX zf}R>HRL85B8A%6fGnLKXu^e7LRaIsv(u(z5%OJs1KzO+$u17<+m3BI4X%5ojUXAb(q zPY0r=DVhRl;I{Jmj()1bRf?H;oyRGthqnT3Y0QmW3v*mam&z(PAC_)bRD(aG*Wk+o zt8SKwsZX*l8;W;^WP82AWuV+gpJIA6w~O7aWvqIMprZoOR9U8~F1F(G%U4XF9KoJa z+Imbn5J(5+q|?cWjsKkJ94F#%@TB}RcWt&*`Gj<0zZC0$4a%QLd}=CIS2d|D9SvBQ zKYV#KVp(OafpmHfkOk6H6)rpKFiQN_l7Bu>ngx~KHL1;5=G$@PSt2|6+S+J{d+fC>BSPC>wqcd`puWj@xOO-zvq2WRA?(j zx6kct$n~?p5%$~uR=@R@X~s=+n)-bMn_5Q6`ThAdNs0WqJrSw*yrKHL#9o$ib4?r3 z4yE*i4Bdy3WpAcQ$``8xQUTkKPsV;m?JSi*J}Ky=WL{iK=AZx9_+H2kb?vUwP#GMo zJ5Pm`ZYk!)eC<6k#d*A(zgA`Y)r+`TA-zkz-29(Jov1RiT%5OoMIdEN#^^%Tnm^zp zgxTEIfwKm0OX`QYH`sMOWO302H;i0Qyu2SyS^YUGk9RAVGcecw-rl}#-1*z!k9JKr zVw(7^seDcbW5GI%C!p)?$NgA%n$$51NkGM3DOs9P20dt$mEEgCRKpDe!!lp6(i1Kd zEG~c+C>B_X02giPmBd3nJun&cKCKVL%DvYk#9%cYHoa$5mM9baXkRGZ=ee)q;U91f$_h#T@8# z@eksFZgzwsqk+I^rUN<%-<*m}IBDok$eG>fA#j|I4iBwnu)^3hw8q&n5nIsMh-+ue zThyA0VE3Pl-G46jlauHy>?x4e^KvwMD4^q&;~dz@dsbDEEt179j8x*^a<$tP$12?E zbL04sQLY~z2;+aPD%_=f0>>lA0~zrwivhV#b}|&Vt772TD6_%K)3-bjSXmV9CGvQq zy-&z4jCU722&oRDN1*4`nzFm82a$4psrd>_xNsgUS=0!}&M*|C7(%LHIuz*SDiZ#67ByspyJ%Ie%` z&jlA=c)@@#7St{-t6Pu)m%!8wmR5votjUnPHQOk0G8Ga9!91}O*-|DODoPEluIyr? zBMaG=6RMhq$Z1b2Y-bE2~qf>XdNQ19@|Mc_Ikp6b;=FEa82{ z5e?oi)OHXyASbhuy~%wPMGJq&ZR33W11?-x10iU;>Y?SDk2~5Y zm?LoGGx9uv*-~-1t|-2vD4Zw?V^hF*gJEIDh~7Z%6*1jfjlyCVNAy!Vbzdjz1C zQYE>(Xj;cUsGHPM*|Z}Nz@G}=?|{WAAI>kXqG;*{su z138KvdOoyW;*@gRS>LGn^m4~J0ZaVT&WE<4r`)mE&(JhHmTTHAEdCrqZ^wT~@5G?B zd^n|Z0)gF_kRR5={oXu#4^4~zLz*y)^2?&&1Lw^ySV2CV#wCF{AOVzmj}ImGripwA zy@%!{{~^sCo-YUwKO|_2rD!M<0PU^yA5L_z$#F0XnwlINlK_wLH(meG7WBQhM7})c zleedN^Eilk%$n|^RSSNUo#^H9-sYVSTr4oY@RT3x#FFF$Frx7_HSLh)#`BTwumji^ z*k`F6Ut(d|;TY5pktctR09+$mW3;f368Hsk8bdLh*$|h&MwrJ)CFdsNIG-zpAOtLR zB*ocV9Z8h1R$zMTO>>j!h;QVUndS|ZQhV2O9$CEz7TD!WT3eU2Ug6~&9RO)bMK(kqSZH`6#g7b9W-J=Yz5vr^V(ISPF%PcInD$@HberZ z9nxNN(q#P?)18;sB_vN4L(AhU17VtLE}SSKf2eajj(hO%m6&yqQ#5qo2iOT(*`o)OGHVpbt%8Ef zGlN%Eql;O)Ax1lFD;23~xV&M3YeP!JS0!xeRKO%)KqKFTT@_n09^tAA-9(a=yVJUD7pk{FrD~z2v+o5C#`kX7xuz9896I6mALM1#_ z0_Ufx)Gt=>#}Hx|C*}Rgdb&y|X+jp~)Pp!{AD+wE0aM|CNDYk58-<>s1H*W z^(dc)Y@ver#r1mYY(VLnSxz`;R$wV5Vew=pfYnxw<7M&m%iX=jwzp`OvEMeuM&9P~ z5Qi1REz+YUuwghH8vM2gjn)-Y{U$L%b}4f_iC z1N@C9W^{}>8vC(eG9{ZPB$IMQorKeH=-}1lHAi_Os~U>&gLdvo?vFwpb&6GDx;D3e z5S8IWYekd1`Ot&;;PCjs!UQiA<#%F=s$6bjLi7}dtI*ab;EUZ48SX?b1-o7)&SLB_ zAZx0jww@#AnH@FkBfHmwl}7QcETF|e`u$g zuQ1OP4nNQW@le6f$+P19@7ukp$+5zg1LKKfO$7f}&EM|XRu#UYAm+%}yJO#j_x@8j z&ruz8T=4g1MHgH8$A7cTFL9X107Da}ez0Y;Iv-97>IbE8&=Ws}{UbO(s>j`VVd+NA z>C?@qE5q}w0M6mj`HoMTaJ?GO0_kk}bf;Vk&vWB?bbiqG^-uSe6<#^_j2SRvIP;@Y zw}Vyz=R_9Q@&TXa=Bw1o6ko!6;sFN#SA3?9w@;iqu&yvLiAWs`9cWvk3T+glfj}U?HTC2$PmV@>mE1QtV+f~xV^Iu>~ja#P<(DF4&%Hw zF7_A4Pf(GU*z@vX50lXl$iH<>5H)Q{Ab`KE>hIY=0Dt@VPtEJ`wnLUVlro;C7{9#m z1%Ass7lVieoSmRTY~2W_yQ(FfwsWa%SJ=)89gcl|mA}$0qCsRT{Z&VG+V&;3QvsPA zq4TQXp|?>Pnb=;}FWbOJ{Lr!2V4^{r16?zAVQ_c0AX;#egE5Xx3)oFNSeOx+*Wm(W zT(!!ug@Y>=vux+SWsY;?s&j6>=1j!xLbATn6+jN)YoCSN(x=O-ijA`>JIkE58L*+=OUZuDvBE>2iFD9 z-Gbjbd+>r|9D1!J?`o5~L)}JD=var&^={33Mz6TO5VK|t`|=_a$T+A?)e}C^I9-l6 zML9+1ox)qQo;$Qyujuxgqi9zbX5dYkckfZn_S)mMoNK?H-B1s1Th)X=bSz(yGLGi! z13LvH^*o^!N_FET-vWga3M$VJI!_Xh;<@LlwknbkLU&?57&IF`yo+#BU>{y+Og#%X z_%1lIQn#|W_p_(HHt|)GyYAwS!qgVHUkAtMBc4Ws;L)Ch|1i?fpk&?!_Gz9TsG}4< z$#w97hEJ3yEAVcP%W|F|3CH0Y_Mi630|{61Gzfel?{0n9T`CoE0bVd3zAW%z4%ewm zG;Eg#+vO>sjAo{&n82tg%A@@HI7-z9IBpkk7Wx4+7VeJV>WI4D2hB2iV`#kS1T|vr zL^VZ(V=S3ZDZ7J(FBVeNlk2NH8YSDFYA}tk@9~`@oXGOqdVYg%i@?)=^OQMLrp)=d zrzl>rW(5?_x?$*N#)9EsEUbRdbi}EgY06?xiG1?Oj>B3>j6{v_+4I>`bN<<38MGq-S4&*CV(qqD*RHrW0XrJ%o8Xz_esKBam|qHc zy-6>4c|z&950czxD>o2U)fY~nsiIwO;!bxrRHCpQJQjE1`Mbp2W#UhCPl)2B*=%Wf zE7IKfY8*D>kh~A&=lK(^g$acH3ZqfMLI~z&p57-{N-fY7=zo?!#ho9pmyW~ii#9?%fVe> zZy^HHNS%SX0ZIm$44+F9(9@!-BqV#~-GB$J+A4cC(b|ogc2ztXlrHH+}}X)E#S9Oc0yOIBAcxZU>}L<#-y%_ zX%pkYWDgi-nXZ=`?K2u%wGx<-D>Wh0iR!vk8BQnpq*OK)5WxVanmQ8G6)azIKMp7x zTsic;Z1+(Px7f&AmHGiz9CihODX3DY%SwEzQ&KXwjn#cw*}JqYw{6by_96 zFxKnH#e2a7P0;RrC{27nfLAyK0=|+|Sli7XNY-E0OJ3P>y)JP7b)3ZaCvEzAs2^~$ zS#Jb<1u8KG#_7v|I$po5iLe@Rt}+wlBEc>|-u!^uU#SVRZ3ug}JEgs1!5LH9m(LL! z+m;^on@F^w6ZeDlbZz{M1+Z&{mNw2=zO=1zk@9O`UiK8tgKg$mSmX#|9dNUM5qs_8 z!m-uH2LDEu1HH?$s#1@cz!^Y?0S*_N=ZV_n zv!;~6vg z@54G=&K_0@FX?_wZ*DnBE=>2s%E}+(GUB1 zrfn&f4E%pO#X9DfneH4_1)L!6s4NNTMycJ^*#Mi9>)Y4RDKcQVa0AYyEs?5lScs4m z#@;fBul05-?;e)ELohhi)SDJI8Enw?ILSjox7gvQ9=pqYytTDL{OrJv4ac5TJB}?K z?J3CWNjOBX*9gP|r5!L~@69Xo#P_B+S|sZTT}&yfHuSQNa>uRpPr9hu zOZI|q%XYNRgA-i4YP-jg+tFffFK;=OI{f3g|E9tr-us$>$@i$tDO!D!O`ce6oXm$D zbS|E1)5^jC&i#ts%ra&+druNrawTS6QMw~!j8s#8qRImtQ|mB&S6EW&5uX)WKC1jfwPk@6ip=4 zGzJo)uB9`fs&>l=OT%QsC#aN;4l)ttGgV7KAsT}g7&e@f(9&>eo;>J>z;VFKH49%x zfGlPj(HPn$LV=KD1}t0+4QX1)(KVk5tRZQ@>aXFRia!)UehoPwPP<}`8>oo`9*Ov3 zr41opB;l`)>6Rs2yV{?K_(Jt%c0`Y4CLujCDH`&H&45p<)}hBjrl3>pkB9x?YEij7N7Xx;u%o(bTH5S~-uk`zJjm*z zUy*(I@^rdf7mkjujD|`=or_jn-lx6-!e13B{GoonzgeK^1E_ibTHn78buRd=T!c1O zu%A>%brwvr3Er$&v{namMP&d;;o^&|$8Fns+;PL=!dF9h{o!WOKzVDrX}&O_?36a{ zNSkn8Nv2_izd9#1+ZT{kp()dLY?^mQOJky~!j$q9pHpYy+Zcw#RJZ(oeD9;V{D_{O z>w7*bG#ekIm~`w>C7M{ZMQ@Ho;+n7|^Yr4oEJ?m2TR7G8<_6I?2}z5EEi*4X=TG&m zYj6p=%E$!Q7!r>b<*JlF(_eTtJ}GiTG!i&lw{D0=H+jxQz^t?UqV)G+$j;4t^AU0c zD}R+NuFO;g^L^eP+1!q=6S0OA8(aSBH(v)w5l%rKUEh`f zVxatjCyJNOrj&eSI{$QYuNKOx%$$Myq~MPbf#zu%?mA&?lz0lwI_^0^$co`oW|26K zR)CMfa|!l)zU;3q_xqMqrFOs}0`3uEpS#ZIUbX;N-#piK0WDYV)XMJuZnG=ZJuB{S5&3E z!Df48TYXU&`cxMDtD2KAQs7|pZhyb0pX_B#<&uD;cX4FmlrSHqc5cY~S}3LF!X`dg zp=xjJ(7vZ|s%VF&Ce`6fM651ieGaS&JeRz41dB@EU}AVDLzx=$%04s+(_H%-S2coQe9^}r?f28E|Aa}kT&VzZarNC|Da~Gj^7M<&_ z3@0%P5O!m#6cF>Djs{`*XQYin;_ba3@Y*#EGf6oG+1jWen%{7WaazIyO zN`j4W=PHfXB$2S{+hXu1{M%kPQo1*p*jpBH_nLmczrVkKpig|~SeS2Ls|>F5`_~04 zUxOX@Sd41d5_#;gGWYuJ3$8<7T3DyQ#u@ob*hOmb#g#_zly-cX4tH(&h@vEPjCBzK z%0dVtFu)!49VyTdL#WNF?=bRD@u#z3s9qfmu1=lh3&vN6!|T?C!>i+;Kk1}BYw&OR zNhje~tWb|1)^4zaewj6ltW&a~R*(75Px_i|yS3G}n|;aiOQvOxtj%V#V)EqNt5c7w zubVQZ{&V>!==b>H4@4hUNQ-x`uMQFyEU4XB{{17wU!wf9OYvcLjY( zfi<^R$D76Dj+0)L-c+J%{2{*v%dDz0Ex6fscS6W7*%Y2SHS9PKJXGXbx+sZ-TR?XUu1JfA4EkoTQ!~d_7#*&vSL~~+YYHBkO)ql?%0)37s-a%IKSb`SWSoF z<7iotvO_+6L(FGt(wOR)ldKsAL>5Cfo0(~)H8V@&>9FkvV5sm-h89|8eN8BC88hs| zr&Y};iNkZBM>M9SeAvq!l_ zC^u-#c_kZwt3WnTA2LC{ale%Ok@n?opSuz!^X>4V*zWj(D_zlyjUO9@>$`1cXi8}2 zZ9aEPARGvUm#JU&kKa*({K#Ii1N+I=jhq)hGee=7?t0Fd|I6=r{Qa{4Bsji-hZCGM z`D=B}tm;>SoSN?tG_^!kq($k^AkmDAFwB_IEOFbZmi6mZzM$~^TC=}A)9?oZe!bSR z5M7H;mOY;9f5Xrk@FAew?|6!_+d#-@(8YON&L@JtRlnBaP3oGtQKO30*ztJo&uc`N z-e80ZP8s*&(?ty|eyV$I1Gv|AAM~lX!(La^n=A{|LEFh227jH$Op5+kFxRWp-T2LI z6g`tl5<9JEJZkMslyr4*3jegsO7*jMc7F;20P`uEHbW~)TpySgP z)oN17TEa@ZnNt&v-|r+!>rycvjQG9<;8A5QUSvxdOpPugbWz$YBR<@m!x`1KY^|k) zeeTs56lDJp?iP5yp5wERITw3#d-7ieR2JYdN=Gq19k_kX@c(W<$SOK~bb}{dHykY@ zcE|{n>w7%uJ9!i$!XfSmS(7{*W%aHigJ^RazFLu@CiX;mk>}Y`|WuD|^#LEi#kPOZ#_G=a3GP(>+* z!Z)sPeG_UeJ}}lpIc<94EQD**6Hs|~;8O~2y5SoMxN4OOOgTJs5o_i!v9FWzHu!7^ zD06QJ&uf4}1pgZ>(N zfwKtnL+(5XtzbetvY2Y?D*fG-)on*Zx$SVy+n3w!MffY#xBFe}!)YE;l0s(@}ix=C22jpSue;jp|c;wr%Uk-=WQ)yO(Fn%Ccpr+Aveuycu>G zR>6|~3nY|f`?vc2Tj572AslOC?_dvG0>0vh)Kr79!}m~vF8TJ)vUxyKHzkoCj;v=g#}#dEOWlc~kjePH(9hP-96ZlJ3`pVYO`spm$m=tBW+5WRC%AE~2O`y_hJq;+O9=8pUTXng zW!7x)`|YguVEqPEAB8xP*LN&`-_-FE-dgCFT^O$t)={w}Q}~D?F55uugKH?NH=&-z z{i8^g`sx;JKZghovI`wF!rlh>jG3;D)?(uK`rL=Y7Cuy9`>Zg3Xv@yMT#y(l#g1Mc zgi-cYNNM=sh(1z_CFSPE!j^BF=t7B5z$pj|JHz-WH?P})yzeJwaCnPfZP&%hPwAV<*JN=~yUIh&E)6;WlT661e$&x&>e2k22%f`rqFDb@g z0d{Qe0UQv=F2)=&Bmt2)i6CTANCMa#9y?^0&1Q*{u!LRMM7zrpC*hxUHhlgu0owb0 z-m0EMk|D4wkE^SztE=C7>wTa1IeyRYd8h5|UZ_+Iby}A5IOSL6-eDCo zJYCu_C82>Y%X z!%K}5X?kQ#&Nbe@wBV*vPIhEC-R)=mba&iHX9j-t>d5%Qq;|uhXeru1lf9M(j8wbh zr(QI+!|)u+2%6N*{C8%|rw}IT%8^4+PK}v~?7|Z7dScn`G#Bemmv(md)Tizl-YxR% zc`9V@)gC~0m$CF^Em9Fsa;z2QuS!)8lzRZ}0qkKuaEnP2b4^w!ecRXvZXCbv@|`)` z9{a$jKQM+}Y<&CF($cA=%C75o`TVGxjN0AlXm@Pv8;5QvjP4lZ7KFt&;<$#H_+`#q zI(6IiyLOG03Y=}@X-#)q;0V@A$7^)Rb z6)tThfcw!qRy!_H-Zr4=L_CGSf0BA3sg%(n@c(A`_R5LL5As?JcDK#7>z_ z=sD8u)n|+3r!7l=b^cb?_Sga9zpCbai|x_pyVU;KQ~@3;Gi6_4c5BOVuh@Q6ef_N3 z9^0_bl7qZ4S<8N)*0TDVhCh?RoFZg5%&=45@y)USJ5)CAXPcVsnbD!4C|G3*cgB4Z zm*MkS@Z;L5O3`iq!76-#sT7-4KYdcP&y(q3`~;YYt&HtS&_mNxbevH94A*R4rgL@< zx@!I_OwSAPk68VjF+Yt2n$asO&EkEHT<+D$=4I8W(`>bxPPBSiGx=&KmTTNsY_2Sy zPbS~*`;RU~4!GUFq2^Xyol6@tU-cd@D46XsyA z@AnRp?J!{5o?9e!*Nl3u88L1e8S#2-ucs&K74BQRn+^9u>V{fCb+T$!)J;SThTB>n zw0{8ejkZ_U_fk3+%4SV#G}u&njolo_<+fWhKDrlR0iWrOhOTAF`{rEjpxjTy8-)UC zy-WT<({^F*0`JPPIAS~xveEU+9l{{mpX<6qpybbud*pK>!+Z)NfhsN9Eb8?w+*X;ku&nyfOp%MLwbt`;y*4sBexo?;9vA#^KK#u+MU5$uqG)}lq zBX}@4LpDB_WGo*elRIC^|Bq%P5^0=toCelNN2YmbtW!6)z01d4&~Pzl)29Vm5A$Y9yD-ijT-w>1<`~saQM_>-lrl-ZN{n zj2Sm;MPuni#!u*eziDHxAIT4-e<#(G+VvZ%J;e>vDE>={Led8vA}p9+;oK}*&4&3Q zasyY)2AOej^OV)XCTyOX7NT(F*Tlf4<}H__^U9B^HuD(n;RH`_Y}ebwT9~g(FJu43 zz50CA-_WiUthZNOa$RIJ;Wv=B;4X*NK-h3ZrU@7b&qzVAaWZk)1qgNN>AS6H*;-xq z>i9)+$djUG8$+Hx#Go=G-Q@0RdM|zv$q4M#^V%yfC9+@PT4!C;I9Bj)Gfej^E*0Io zr3bQjFo>^C^xo;dEtt5<#tCH+Hv7dZ{iU0D=2E{|3}rzWxWI2Fd~lb8l)43e;QPDY z+VviuWiXO(s)VXSxMYhnosPlITuXsh5sgmfDxYoEG&X1;=7#;*4f`*srEEBd0)l9a ziu}TnCoS)^78`ljeg!)h{Ao!^m+AbSy5LjZYAe~W_*O9I*WZag(GIfX7u02g?Q_1r ztnzW#vd=GW{FE*WV_&OM&jI%oR&EZ@R2lS^0+H9H{s80kF>lF?f_Hq3QMX!-KK51L zSpeo^yOw4>hJDS{!cQnXN&Ls`Kfu*&D_5JtRTmfHCdEoMzuVdl$99m8NUw|Q3yjL_ zbTcRBwR%gaUj-zy+NaNY+ns7}rtDg^(U<`!D`L7aJ8c!Mve6IG>O)>Un(0Y2wCGuC z(pc^P7BKkzMz5ainJ82@TK`9xcIGcg%Z{4O>E} zrn0j{M|}zzMvSU1vrN%V1);|}_aqK@V!)AaB=c4&XJz_InR-uYh`ImDkG!(Bb!(0E z>X_~g?HaB2mMW>9p?c4CkiTxb`kGh1@|wx3rpBk}D;FHbD)!uy#Fh78`z*0$97l(F zdDp%4oU-d!ITR|RRuu%KO#9iC0{5V_0GeZQDO)TPW)57&tW}^N!QK~!b905+E%*@F z;>KdpnYC=p_Z$LYmdB9Wtb$cwz8lY4?osA4X%)fSu^`9q`R_3g{+M~tBdqTr26#-2^g7Q_-1m7b zJHj0Jmga^K*<@qNl+%9yJ|!erc##zMLQJ#UHli#X-q($hJ#%^}J$a$Dud5ykGNHrjnr%WS`E!+~VgN_(&G^xZ!* z^4=WA2?Zf5mL8o)0RmE-*WPL*BCaZ*N1Pdet zS!L7{fj;lnL%0498d9U@zWQqNIur}ibNTH@BXgPl(b4|QT;%BX z{JxoL^s00=o4zVqE$yt|ys&Vy@~MZM#EDKkURFX75L5HhqKVJcMGIKdDH!By8pZTf zE+4K}bDeeTe0z1@@#Fh0o4k4QGIrX3>Cdq6&Om0PUjA5tLub@hTR#5a@n)0F@2#J} z-rWj5I-|B~O?pCikSE|K7>=OLApF-A3@NN6VHFVCWqmu-o$exsmUGtYtq3rR?h6u3 zB|Z-q+fV8Gz8^lXV5uU5x|&)=Tf%xnap|OwbP&Mz zs94dvA2@pSfuovKgqYlS54%Sn;A;V{3fb4eRf(R1?^is)OiEdDWT{ybT+B=n^J@wB z!>m0_=GyQS=b+{kgauD6?b|F2+u5xBwZDPIAo(|3NA#DVuBk;I=8^h?Rn-M1D$5`6q|ITbz=Iiz*< z@9S?Z-#RyU>uP=1h_my7R;#uA`r^)G$96`Swynws6*;9A^}9s4y)nL&I{?JDory#B#*CP5{NNt=%lO;uuib5+Da!J*6(S5H$wO#5|90R zNj)G%!7!SJkxV8D9MhpuEgOrI1fXSk)BZax4S4|nz_{Wk`e5w7-?%UK{p-ZSH+DPe z7@+!$`#PC*uXF1zUW!OI8@Ue5!*%T3kJZh;$)m#gd~|JH6}}$vk8E%=@LW|4ix8mF z0XD9-3_rAyVBOu!YjO%+)Rpz+GThx1*xK*fOG~ooo|nzqu98>h(M4pAbeX`Gha*8? zFI?rZV&lfTE`)mqephW}HSud!(QAL&iw_jOL(R#&hETC1uZL96dtcl?g@IbRx3{20 z+!$I=VIb*FlWJz@Lp{t7`*JE`;e=4*8yn4 zMqAnIM$%5Kc+<_j`dxKT*{%x`+(u3p5!;~wgZa9}J+Fru>oxeyiGrsXD z*?xCCW@ZNBpLG0O@|C&52d$VZO`~l;eEtdTN#-6tcyK{@D+R(8G)%pQ?LktD2}YxK zn?b9zk5>y0^mYy_Li~U;IFz&x_xq;ZBH`#+Ao&(4BU(j!rjV+n3T&PhA@KC4)5*kO z=1bjfU+k1amZU)@3<+fBQYygGD%*SvJNmM&t^#@lVwDssW~Mkg@Qm_D>L2*Z;ouKh zh1ALf@n!{B5z)o+sIX2q9%{R*N^$vYDH1eiu&MwGrQ z@vu?lr3XPLdOq`0Sx1aCvD|7nm%t?8zvfRd#Nc9rvudsFJn*>yS7l`~#}vf3|R&=_qHHt)5&c4Jy(aIhBKv<4nSsl^}f zbiW!uVkfU6J0+vDE5m^4L+iu@ox>HCS0l%=0dX=$7}xwUZsg(c62KkTZzCUq=>hI}g(>U$M z9bwfv7az!&F$xjO{QXKpwvD1}W%JTy`Nyz9hCEM>rUn*E^0t*^6Avc3pwc-mwI_ge zJ=92WvTQK5FmQ}n;C%SMV}$Wy*}hF%JC^dYEIX&53wsu>&L-+UOU|BbAD;03SUye= zbyB@FgLkLxrk9R6z1e-~QUA6?&X#E#$)xX9gtkmsn#{cYEA*#FB{M6Jha9J?LV~Ql z5(SkJuP_fH1!=E}hw?nWae;VqW26YK3pgk4D&Yo!=(?FX7-VWlsh zKo|Ohu2xqUf`QPs#J=Vw$z_^7vW;br#zS-se;sVd+M1@U7G|*se?*JEuUf}p}Ay*SC0m}gPp}0|%gi|SYDhmO$xZ;Yc52J#| zb#l#ctxRgO^ov?1lwm>7?9moGVkMN*`rriz-Z+}E?IV~L)=tAA_Z1FgI>GlZ%U8Ep z@p#PFqPlNM59rlmB;6fL7UMky_xLWi><_ugxYhC;%0nM0G_|F;_p}TzHs4l4>>C#z z_`BxsMsv<>CRG)nuE%O2U_~Nnd@z1hi5>Sp_%#n6c3q1NV8vQSoZK6C`E%2*4@~n4 zzg+fvfSfW;goooi>-L!dAHx7aO;#I8jk1LhUIO>z0EyLwJ|&2uL{O;$KM$QWN5yhX zbMe!o3=3KMtB-$eEPP+ZJO6G-D^#{($KHJmQb6nx!23F70YPITRyXl;1iEJgTUk6 zm5A~76|r%+>6RK(eIRNlluT483|VtTpTvGapo{U400GqD{tfg1&;sJ}sfY?9IaSSM z;-yw0+Wua&V7)Yv)V`<^L|(174=u}Cve{|9*NMfP_gc#;3q;CWOND9;+~0Zf!p}$? zUd$|}91~Fa&{Q==TD0NV#_|EdC$og&JKyN|mjJ2HY0tX$8PQwoe_WRrwLdhpwtL}W zO%!6K53g)ci`%OkROAiEwU!&mm-EV2L?b6dfM%B=D^rSH#~)~iE6Rp@5KUCksc3h7 z?SmNBMqJ-J0VoAn$>abo=7GuJ&BR_E3T5rg2k&YUc(-+XVo%&V=f$hKIGU+2DR1^n z*hb1}-X)Jz`tmRIrgj#4txK!gYRwRI7psDJ1#sPcbl1MpzS{n);+cFj@_9RLKYs8k z?d;y}#^K9IpXu`=zYjOc!CyFxy^(zW8|qs9%8w^8a&#|2l#63Z2Miprw23F8fK?Ub z9$Bb3{yXjaVCaYO zt&4{VymwG_N0q#nRa4+>G$zO=>K8BRR0ILP6Y32_TW3gt_QU6N;@EzsR@BPaQ!U}E zIW#*hL>uq5-K;%TJ+}44peHeS91TJ7x4jM&RR8hedFZbInwkv=aHghV+i>moMjd-< zV6gqT&vcdlB6@%ZIX!JfkTXAEZQsvW??tETpivpdw3D$Dww4FQ^O_IyWf)YD1ITJ5 z0hHh~w%Rjs?_L%6xz~#uUvQi+7)OuV=7MS8B$!D4McO20Iqu&%&fl?Pz5PApxt{X* zi+k^}j1SxPhs}ipaF^NUp(`ZHi%T`~r?%JcI#1g6laAZ(;XRSqH~-=1mZ*FXkGlt( zPx39ve-!rB>yUxL#KXkqUO2>kq0O${9sUr`!Ti|xd3fiXJqy|<_*VFx5WT9- zhG4!WTJ|v&Q9UM{^Y2!%wck@)NVHosYA-}`c_s36N)~_eGA=yxC%yQhOtD4cYL5Vd zRi{g+j=vTE=ux6*Y9Id0;QdwC?I1lz?4m#~ zmueybkMvJ!0!4B}Rz?(t5&v;5XweI`hE`qocx^AJA{;2jLhKom16i%Q4qQFAy9mgT6kea+PrF4I_Io{xDr-9x#!Wk43|Wz-b)f zOK1s7SCAmlBP5nCEqtj^8IE-qyh0+QlsYH5&>_;_$dUi3B$6&2vh!deZL^dZk@+%0 zTHVRuqs3L4%LCZZ+>NwhYZ5Dv zVS#LBAD)!8TiQ%m@fQlZnd~bp6#5LuP;qO+`Qwlx^K^$R^R)2X9|NWU=0&EMwxl-eT>N%C{pR4%PZ4V%0N?(A!>B;gJ2br*RtlxqYURR61r?w)g3Q z$t8`~-mF68KBs~!tDQ4XF$5Ivw&=8qiDGC?dkqFAqd*4c5Wz?^mzutCS4U&LD`Ey} zZ2Q(9UiZ4nsmkmA_@knze$<4qT7K}&iItUBOZouSk+qjS z?e2hBmvi5-Ud#0PuJwI%*Ul;TEK}=w6$kY)7N*F^^Gb&$=~Y8pWvqni(K;9w#qpc( z>h|9i0-Cg^y?D3Qdu)F^?i~BF4A=H4*=k7&a`10+e$p^ULibOH*lQhIgI9pZ!t4_L zAs1%Vw*RTx-CgazRjRmv|8d-tfU%i=@6)0EG?7QQwyrL?nQ3MYM5c>b@n z5$3|6M7VKw?a@#yBZ!K?K12s%N7(^9)%t&|?jDK3Ya*OLXV}qPr@Ff#J9zIt8q*<` zs%WiP1)UK^ELO3B6vZk4FJ-rLe>|fn`Mq(T5+Zn1P!9s`RKCJ>haucfN>R^ug3Wr@ zi9?3#I7ZQq;%9HDM`-`5d*aZc6X(=?(~^fy;Irs)8X@b%)t>#UJ-vrcoG{fa>*^wf zhEA5bwYkR1ZC&?ty{_x+UGMAq=*2RKQM6HX{#5%aeJNNTMeP2>?`}N5Ljohp*=R-8fXN3GXyuv0i8hrhQwnrOE)4XVV@o|wmVf@-9 zb7P$B6$GAest4Ut7kRk-6&eqBI22O-? zU+fOBsVWJR;GHVA$vmo)6Y-3i;KkQOTu#)t!NV1)xRGrNR#_*|hxM#7KPNmXBU@YvCN;HZRQxOT`#sA6mtdHZ< za6S(3Fyi*VJm=TzX3G4N4mr-Zm6JN@n-G4OUKA$>!5XOiTrL&0rCPn|%1?N;8f;yr z9q7#X&{o;YDD6EpkfQ%K!2M_Hc+_&C!*4hoabake3Sd;UeyF{y7Naw4m;T<;(|*eW z453+n&uXq$B-um=s@A|TvYxh)&j}i5nNsmaD%~hq^;gWLGk9J0^AzLgfm^cPMcw9Qk|J}rr-aluTm7=BK`4Jz)impNHWa?D5nS9{yEf7P#ZwYJ=Hl&V4RvX9TQ0yE#fbCwsM!44 zDm%=ap3iqY!o$qh;kgL2+OC^S>4FumvRAZHy?aWpQVRL`J-w+`HmiXMRu0Bq2K!b51;bBHdk!nW^_os?wiZ_5tF|_NK@vK-qAuRIgu2 z6o&KNg`py=)uCFmG(C_&Q{=RLTTq46vZZ1GvUZLN7ORt~Ev|3DQD+&7;^xRxF-o<-pnlZl$674{X=XT`sTytlRcT|Q3;vI2rxKVx^Dio+eb5@c(5~Q$U%8yg-HNjWnwrj^? zvAAQ@MS&2VPkS>mh}lcTK=@cFu*>8WVUPaD3=a1KNf=spdj!@fb`v|Yydsh6+PzKT zWV!X=+sPKuTCoUva@v_vAoq^y5n_*4J^gb7q9wg84+aYBTVMLGMPMv z+MD+M1Ah1h&MDoKqtPe*Q@10)`Nt;IQ^h6~Juj&A)@81(gTWHl(KW45%j>*u)CD%y zbKAJT*+}~B^@4L@<+UD7=?J zm~vm+_0FyjcYQ+8$avFs()&`-P(%@9G}Mggbk=qXpxChLpq}I3v?P02Xi&?{Y)bshtJ#w%5LcmM;V4%=Dmu&uqn_@l*CNH>`jxBqQ)UFlm zhj>gFCd$uq;Q+YseFQNsqJq(>Bm>N^KlVLl==x11*LOD_c3;zy+kT;qc4fzqbw7T| z8`UTY*7-6weTiM}U)JZ(Q|$APc#>V3NfH3TPS&Eic`5Y#h4ykvfDz}0#-mTfC$-N% z;q;da=em2mymqFH|5wS-RlUW!GR!-<`HmYeoKjM^O`;APfM zxb{1*e+a|%{NkP)Z`^~Qr}Gnw<eKvLnL`)?*E<@ft0MG8pw@iX00q(gNQkH1KeFZU-^bu^8S&0K9&AbI{QPz_pR`= zi1B#FjiMlT4|aE_>!YwA#1@vIATZ5EzU`S=XZzUEV)4$#r!%SF+K#+V#N75Tk=hpt zKQj_$>_m^>*Vh+IcXO3&4DOqy1&M50=uoR5LnN0!gZ;UmYRj(zQHCxwA5`_qN=cYZ zVSbX^R%9BYBcM0ULVjMaiHmDK{2(|!DdBZ>JOP)CkZ)XY+(fw&bolfiowEb`(NAHFK@kR>+^mI=I9KTNudCeGDGHM$=95hI%!m^7zz>4Omw6e@6sqn zPp%!;H+~S&eg!VzP3IeO`nKcz8b8S|X5}Zfm-3Tk$mk;J5=s_?--c1bxo#9AsRWcd zeo9cG=r<_>fDxf`RtM?s4M&atkz~R0g&dr;;Z09Qq`;+LZD9n{wwL>=+ zC>eYkYm$}$47NZ?fPle)sS6xSh&lLRcBi=VYL7nR=MpCqIgF(n)sAgGf+6&%X$!%< z|43B3=HA!cd$n!i$5=|_a)~8A4fiDfa>O=ghPL|t)Zh&3b<Yd;KSQQSMD7NR$L_Ex7&bh+Zi&zxCOZ=J1F5YS#hpqcue$F|ydaafuhS)Cj? z``HI%_ko9+P2O=b5s)Rpo~SX+bNd!p;YX?Q*e^&Ekju0J`#Pm;Fj5&*_6@C-luhN; z403Z+2B+SNt+-pmp^R(!q{fo!II zE@`#QcuZRYII*{7CEDkJW%H^n#aO9S3>7_Ym2C5>s)(%?JX_3B1@tCxi`-Ftq=!i# zVkW5?ban7iQxfZjH$gdUwi4Q-OC@KJZ>aztpw7B>^cvXKQ_b4wPDwO~Mz^LSp8ctS zrz(4m0XesxYW5985}H0RIg-u|OeQKx>&U{+qxr1}2+Tn2DqUMmn5nIK83Q|W!>MM9 zNZvJ&RjYA(1RYpUZB0i8%98_I3em{{QgF2SD~|3Qtu;x}5JM|+jlz+MfN5&qCMRNC z#cqb{qOx>??93%~>v;dx5##Iy1+$FMm!N$MCqxm4X0O{fD#LZO&+S!_#G*80!EXOZ zHEZ%K;vXqW?rNhvO4CQnjjTi|vz&+Zu;3tl=m;4f;=4bujlz>OBUlcy>O0wV;?9)B zI#v$`4C6S&`G|Wn$BgGmiFYZk(5E<>rt<&4S188#At5)*7NMOWJ`}VhJf>PRI^#QY zlluxuXwD1!Cco|_yhw?=knZk|2j58)IUr_DN!{t_%%LrJP8O0QBZ(rdR>B(lc|~Ot zb&2N3S|w37d6iM5oEmC8u&&Aa6^^EQXEeQrL7y_uR%oBp!0oheeRN+mxWm>g zby{&me*I6@fBZ-={zhv{;qY7gDe+B*wrq^ZpvWY&pu#{(bkx8o0REP%3Cquzrd(+< zX%uoKz&WqQE;xRX49hQTEiCLa+1|?X%8G__HAzUY-BNMEq*hV2DJ$z`DudmMw%io$ zw^^w)C0wX2_qM-)ozCt<7o9AZpwBLqyLTODRjM3T8=EfVcpI8T4onj=2D%!?X)>xvi>J z=_y7GWVJ0~2WTVIT%KDvSPCyu*-RTOa?3EU+|8^NJIl!An6~6GpqMxaZ7pE@Y*w9@sT0H{`dP6qL{#bFMl07&zzPUZ_acJ|UEuH*2 zTdd`d*V2?>g?dJ-YMp5KgBZGa+Cqo?d$3UXljjtyovYaHK~3v{%@Hj{vemiP#(JRb z&xKcHD6W$nwx8=W!Z*@z zZa=*DRju<|YK^}A1kU65&q{Zh+iYPqR7Bg~5$ zqT8oaHM+(`eG1&SYu;O>iqmg$!#WVZADt6jSx0~V(fOgCR;y=7YX)Y^c`TvJI1yU9)9 z6Cww&Mib8&xK?^}0tb*@CxuESEbhyGxc|Vs>4B~G7E%SrcXQE!g#k@FJl8ifXdjgx z?(2SFcmjhaUx$1vR|R(i`446hvFTBm zm!v#)rD0f};gQ&o#m2908<@MQd%P#%4el%C>N{r+Ygf)ycT}I|0c(f-V!os|tChmF zT-N3CM|6T$*=kPNo?p`TqXUz(J5&ooOPGxEjL?({WQ}QC?ph%IZmS)O%--P8e;SpM z?>|jZy}WMPZ@!UoEZV>EU8ns`r@-?L*26E0w-DcEB$w(af4j7yTxVZqr1tgp(=g^n z@};19Lo(bcXz)dBwB@A8t3dWtkUbgks4*)<>m@K9Y6!da z&}aZyh6T_!U1902O!wUrXq8FPVXHeD_9O5}+KnAsf;rH^^R>`jvshIqi!g@(%Zh?S0#Ce}B44_pmz{_*adG0w!CR^ukd2NrK5FDc9<9UU(8Yg@8a_$Ko zq_bk;C=FIl6(Z(Nm?w(pNWJnI&L4IIQ4*3Csre?jsq?IL5D~4gftpYDwP2q^XN58m zR-&{1q8C5Po;->0EJa-u?!WuA02PnIVgO2deSOgdt1u>r%K4BWLDZi0o~7NLX5~U{ zir!r>w8S&xxLRhpKUP=qLtNtaTGkAJZE)8!mR4EcUsXp=DrW;;qSG5sSW$0QH=L|? zTfx^sdh-RI)Z+RHh(Br|ZpQE-;{zt|ppgp0w=T$(3+o~b-vyr!dJr~V7jh)Bh{_IfyRBHjpzFzTO zbmsyx9etn#gPGp5Jy()tZ2@(&fS^#(7eFY4Xe7u(;n%hvdh@NKlec_bB$T{UC+ zQSDqJrLOxK;sH+zms>%K7s7s`=+^OB$U7WIbi0Bq&ER%dFpD52AAG_pG^UOJY4!NP zz`$qoEy5%D_xMs^{UM+t_Gc3bJDo|}e^#1a?Ea)W{>iy3r_vK|n)r)qwR+3I=L`6; z_vGIfjZ&@seSF1vJUN<>`UGF^IXqiBN7eMGe{SBFBGy`00$;{C=1YY)%9+&hrVwjb z(}TjnqdoGS%WgToPc11xpIBIsLUHX3Tp=fA+-k?#XMP>|FO)SJno$}XCZoKff2rHS(G{B^adQnAp;m$dzRa#v(hqhpzc*PMFI54;R6aog~FGR1nj zygOYl#tU&fQ!n(EpPi}|OVib2>Atm6UrO;lsKZa+U!9bc?+esy0hScB*lfiC@JAAi(Q#Ul-vxz7;4>CC*372z z8J{_AQG{XJX~UQY`EgenL#)6)TBD7}X1x!!EvL7^-ehs&0$QzKwmHw7hrFGt$&6|A z$S;YT6aTPyV@H@df^87+gAhl+m&|*9UfgJPT@F*91~TJevMT>K^=|KhyoRC^J8_r& zRr{aw#8Y026n5`%KAQDD?D79XlNE1Jn}VL^9xCLhh z4R4$ZxaszLBT=*J#v!sf74goilaH(L{g*fFYmb)vcGIw85OY3lNG|Y3n~&I>c9G48 z-Y8YD=_eV0{X`ihP9o9M=_yEd7_gfjWBYN_(G#X|5Ca;C-+#C^WI@;A2!XBtiOsc7 z+AFrXSHnvK2>_9+q1s^~>5LpC(h~6>_yo`Ld&Fqoru|!Nzj^Z4myy^|$qV>j=mHp6 zfB=UrVZrAJp(=@y*6JC>Maip_g2LdYsDx=oZz*T9WprBC85$BqY8`wCY_uTZL5s2! za~9`$J6gZ>TjU`(Op1VON21nEH(Ajm?0RN{&$TnjDg-YeSSapl6AIHTL%V+P*s($I zC5|(3?*xXMJMZNS#bO~(0<>j2rF|vLDJl@VtY<$|zN#-P1|;P(7IHZJZY*A5fF?gZ z)rI?1`~Oa6$jNti_Plt@cvvogHOUNuu)Fj>OKiZ=5=5Sle;aRbNpvtTA?SIp*G&Wz=3# zWoNr(oIEwQYu9s60qlBgJ3L@_-9?yZ`(wO)ij)z?<|Ta^Ja^^Um1iDG`UlVX#iD<% zadUp}YSe30i8tZV^48|*wY+S&FQuarw{EojTdzj@jwg{ZyU z+ryV}=mh?U6*X^bBHJV!CR$yAS%S)mCCL(4pwOmxa>8X;@+{?3tqTuBGe93D56!pc z4`JWA|HMJ9c}kd>P9;?;aAo_k=xw(}k8Q{KT(R9`@Y$w&$Mezg=hztjq1qg(%xes# zoot7b{>?aEZuY~MaJ75u`Vsav&wIJE3+DZg{hf`zpPBGyI={Bb1@yzsKPqeJSJe zPGWNFx=j>h-;29$V`ahRI98k!ob}58eb8>g%!fIw5W9jv?ATH@x2bE_ZY$3Z z7mInQfa2CKJ^t1M+lZnAB^Vq%acJ_|NjskHPRM&hUpV-ODxy77D0E*}7#}ZO_o?z& z_ei&C{br<^|!uc-`zb(-foZ!#j7V4PfQ+Z zrUxs%MK8-?(lYMe_mVyp6%Xdcd3;`HL>E@LO`bx>gbY*)r3WjAjyxb`W(DRJen2b~ zZDs6W z<;l=Cw8_DKj=8o~VZfEH18!QWK8ja^WfJ!U4}?*{*op8!WEB!zf@oyH*kQmt)LeM) ziQa{+W7Y0hX-mb;nMrVj$?lYQ>%jxJS$rB;jVL-+WsF0%Uw&sb@d zP?kVyZ(BTJ`c5=WakL2NQ!)oq%|c$LX7K!(AMzoK{T4{+(Eu<5WzcWYbURfkLb1VI zH21w_uvSW!Gs&c%EA{pDWc_`w%w`9BdTN8EEfX_7tDBxqc_1@0(NxLzdp?>-4$jP^ z)A_+&>1MXn=a>s0uF60f{CB7GTS(%_E*|Mm4$O>b=BU1iL`z%YW3h$kkR?VSZDa_KJGZ zmMhDZ)^e*-;qN@3a(Jc1hwQCXmRBn)l}crkeKI5UpgPe#O2&zj$pR&@FcdivGx3O; zJ~C}~Gpg%ra^t!83isr4&)7g5oe2U>N@~ZGZmKVlip8=n!rV=yQwevmqAFm80lRAx zy*Vnlmw+UBQP0f8qcJFi()onJtg}2Y?WykM=+5UVLHT+6uMm$DE9nulD%GY%G>eLlPQ80xx>;OmC$( zGrKhFrjtH1rIP8RtikG*2~Hp2YjCi}GP#WJMg5*?-cxRV%S*@exHv}_8|`;N)|^Ot znf}bkHq`cTjbd*78vb(_(C9dXvZOi#mDuP5f}kt(6GOZwev=Siek&%YYbH-Fiv6`h z+;)jgZ+7uyG80|CwKuu)bMG$c5zDixDYJf;I;A%_^DYvEs(w6DdiT%ql}=m!tMaww z=|NcFX@h7X^KNfquvL?XXGfPg`-MI1p~N5_dm*zuNO0)3zI zanbS)wDsB9N;%rT?da_6LGaM`;O+}*$r-RvSe)=JB>X+R+=yAW1hleY9NxaI0fzI$ zw(WsFjX&d*7n&NY%4@`0_G$X`0;5GM9Lq8j{^d zk^?MQ&ArtlB{LUcDYnc*`${?v9E~@&@d`O<-^4_pN7jX zBW^6=X=^t3BFk;Xh4~ng3LXLQ_3Qr3J*3^$>Zl~#jWTo;Drkmu{o5~Bb;-Q9(b1#H z!AAbT9h&yigL|5!H@n{Dx14zI!`kN#NWHVSNj139cs8otcKLx@M{PcLS_m0=7V5Vd zL#u+?k<}@ONyUpStDqvq?V|#(fjgowtj4p-08}$e`yQ2VjoPgXcRu{y6SrLMxmAO5 zx;>CqNybchVLW+4b1)_zk-Q|Ka7xqNf* z@(AVoB8VEY;7jA=q7~!uf9PA#;jC*a#^3gtYxHQN&^t`rgG_>FlvG-Lk!2Iw5{%%t z^p^JPV29y#%Akf&NeXd@@`rI*A7+nsruJw+h(>`M7`{c9a zaU+qmyHm%LiI~Shd4{x0IMF^PenDC#qbF>Zq;N=H5iOI3Ip^F|d}is&sdBRhSyd!f znA*QJ{9Pb=OPbp~vTvN9}=y8r%z` zm^O=3KUgJp@hHg`LNN(2INJBgBcEQpefVTKwv|e}w|I`}v>c!`e!;)BXXk$7Sm2EM zZPG0-+f};FFXWRRXP9I|-V%$OQ?c^N;oBEenaUfLCrY|m?6N>-lbHUf=pxz$wr5xP z`*h?i7Fn>mPO~s%EuwK74hfp*Lif{o)udO{qQ-SQg=6|f_nG!>ynFagdH2?vt|fPF zla1P5QElsu?z~P)wo+8;z89Hx^v;LFcemVlzhsP2?~fe)Cz*3L@kyjXM>HWm10k7L zO{8B5h%*BNML-=3#OKP;Y`s4FpX^8PrQ(%!^nOA+P1}9QxcAGimIDv{2eOH*2#0pa zc|-Ty`zT3vytVE>N`|8S>OZ&-5S_gL4-a9_=pN5k_2mlo+l0cOU^63o)XE>|AqwNj z3M=LZ?FzgU=p$pwT_IZOnD)OabM@Sj*01?9rtQzjs_E~5?d@Z}|FNrUjmF?rE4lhy zrFD(}C$>33>X{Ie1L_v!ROOqEYE2xhsvTlS5Oi_wDjAoOJ zH(YnBJ@sKyv4pcljK%A6{qDoQ|50-#(K{x0+D{)8Yb z36(eeo{DYGnvoA_dct~_eh_8EPbGL}Yhx{i202RGm;jpxTL(XxS&v1Emsr<6eKekJ ze^0?hmb1NqJ+5-||EF*&uz>D93Y}$$cJZ_AXO&H@`FHsKNf7wRq2TwQP_|(-oPisD zB@;-~UE;)4^9_ws{Fr5g1`%@QRM471wDsTjBHnJd7Z$I7?Q1{z+VP}k-;UY+s4D)b zb*Wsy_Fwdh6!engoblT07Z*4M)~-KQ#Uz<`(icHnr1}}UBSYc^T}l7Kwk`58rjz+}v$8 zA7o#}@xyn8_M_72MHUItPkQDWDy!T={|tnJXCP3{f+vCz6uNux0V=g0tDeP=XBHms zy#A!mwexLNBVJp@891%1`m5FU*iU&}s|1DSrP};4W%kE|nA%TuSY-3YSOC`Sg-9hE zM2=`-B!eq!P`qO#frrW?b6J&sg>XuozpHDLgX!~7K1rcAeSb1v5T2lL2Od!0+^@Td zT$IC`n8LrC7>PLO1tSTe4l0B@_yDLz8_gwL@eb2K#>uLRU!q43(K-^Y=R;F9aNVu7 zF2Dk*mMvFHck23`v2rSasAzYVssgf;!-B6MQVf$)7`Q9o)5ZaZ{LG0u?sYBm*sW0C{n5 z+&|I+jI!K*H%^bU{xz-7K?d?W)ke#2zne-=so#MNI@%pN{GTWLQla5*hmDS->CY!qSP@1NIO+OMMH1YB$(&n5jP&>E>m8oFQT zVyr=WX`0^Jt>fLo^Cq6QKovtR+pymW(@1`fPG>r$NKd-`{&Y{Ig!e7(UG_4k1dLcW zm%h7X>UKPpG+%ZZI{I^gggq6!oDW`}NqX_mrVEAiXH^Hjk34WQnX+I0ayykoH@4pw zfBckO^o2IurzZWZ?+fhmA!J2u0DDpd1``COG9zAE+KTv{7E>fh4+40}c>^eZdU6sE zQu}^a>iwROA3Jz3CekzYXDPN7OSgQx{f|`J#1&$^@9AiI0xMKCxBYRalt2O(ipgYA zUTcYNJML5@9ZwLuVLnD3zt+Y-%+ID)|BOZyDkUoGgIMd;o&K`zc-(L;rsCX z;M;Rko$qyCwYPmlYRIUR{%*aP$>#=htrzX+*_thF&!aHN2cD|xHlnsSsO>MR?Ubq$ zx4hxV#&ho9aDMQuL+VIj!&Y1Ph*+?`*r4TW`h9-9{Z(yh$BVKlCz`hT^_YK9{YqiO zc0}!~%c#BJ{l+uqFMYNfoEdDDEczaL&I)o5Kk7gSY^OXr3^Bw^D2Xkc1|7kqLKA`e zP&NbUDsQcCM7aFULg@1n*58-m$TP6^}I&@Zm z8Dc*@!CEc2tNnuSC23LN{sg;n!H%-0J9AhT2<1PJRbpPIwzxN0IjO4xg$gT{mV;Yb z2e~RqQ}Pi4b!{gYbmEW4J-RiUix2QtZNw~`S;LCMN@n~;=wvK{)iK^SzGGA!0+ic z9&+zvE_79t$Vf!na9&qER|EY_f;wLV6&WJ7YwTLU|K@Nmq^cA}&R$Z{HGqTVj z)_!}_ewZ^aEu7!5Kd20amB6sL`2buF~M|*!~uYEV&{Ql0T?eD6+ zulfGhg7e@AAWrg)H$ua}m5SfiCYtSa{!v)8lSEeAW4%p#)wSmTP}8hLqXO<|^$Ue}?jRa{n3_ zwpHyZ#_lH=yUxKvAdjJY~&QRf-UTh{K$?UzI#0 zf`YqGB&0Bt1SQ{s{Nv!glqp4d!jHX&3I(judEVhLQvO<*0`&D(v0~6+#Xq9)B7XLZ4asB1NwMi3K~S67M%O$h8iwq8a9E8{<7*WP$BHzRHu z%iwAc<5tzZsNP+xb?ebgO1JyXj7z=2{s}h?wC~2+!Iqtkk!ibIVM%t^VV|JzoY^{9 zyV0T^0->Ubej)wInEke%%3N@%v}yKF&>V{0!DOT^2Ni=$ELSrka?QB6yAF#`*4}hM z({xcd>`1@O+*WmE{!05T{EK-s-DcN~M9Fv#=u?V8PI;IWA9{XXInqKubm(+O3ub8~ z6o9~0T4RTg7;RWYT_;>3Gk)&#OO#iMs9=bFFUJpM!5ly|{>pI7%?VjY{2ynqbQ90fH*l_QK3V0&jV4C~P9 z$a)sI;D44|H{%PThB{d(n~leeqA*1>i$} zq~bZknNvr{J}CJqFYxp;1Hpn6pi8oO;4h)b5BdrEu}$w85S!j#;^9va6Qt>i8JJgf zA8ON*!)mi4du%R#;M$<-MYUP0c;SA(B43cr+t>Ec6}Zpy%HLMP8@ru69Ad#Q{Ip^G zQETtddaIXy*#G!1zuQYc-`;=m4GS02bJ}#*nJyF(bRwx^7tH99zeg{=Uu4YvQU6St zUD!15k3#Pu^`-u+22d94@&cOji&+ka8SyI0CdG}ojM9ji2x}xAmaU8|v;lD^F+D^w z6QYy_Apmd84`Yah{wGu$aWjj*qpr$WNm}pn$TxW#TY%B66CO0qqF~_&N-zkkW$46VX;gvD6 z;N+t~WG-o=wTNY!OvJkI#*Hkg1dQT5J@P z{7?4l%1XXQIX&I9BC%+++b``SAlYaTwG;nJ7dll3gFl9(rS%=HlJd?w5BklN09M2Nu z2LSNs##6r=TtXe1rc9b|^ku}|%T8}Y+sCJ->&Km}vTM#O3@rgJZF4ZIz6puHIn2q8 z^4-Mqk82hBfU$%EsVhraB|}uQ?%s#9e*CWPNG0`FZ8iO1E>e%5cyG4g?hn4FZ^d>8 z6oDqX_BF(e=zet})6yavF7Vb=CDMIY+|NF|m;Bd%^I%@*Vh?AE-v0e?u|9kvUf1&v zrh_)Mp8qd!i-_LSRZuQrG1kE&vhYu;AXT;HH~lZGD%xLWFN-tRKll5pR`yCZ9s9jc ziEmfy3a;}TlJknvfOyv096nN2PuqPCowdXkjrTAm)Z&Eem|DZQY@fz88xM_k9k_uycJmD16A%^Q;7;bFqccB3zL*L%RAdl#W=JgYoA39OF zT)BF*WUQF-hDzW%eB+g4yS9(`$F}_vDYu3e)1oe76%35^+Qznp#_KHf@g(`gd_rj1 zGJa{>jnVzL+;-rV=~?AdlKx+h`J~8~=|V)ZXsit@lnFAX1&os;G4=EsF~1Xk*R9Y{ zL!qLKI?3I~9W;Ndy<(}j^g3?8z;A>z%MLV@jz-eKt3R@yg>_M8mOR&Wyg=7aIo_q_ z)T;LTjQ5&E?1#jD1+eq4`pY2Qa zG_tOnZS;7Vcnm4YYvZ!g?eputAs&^e5STW)W^S^Bq3f8}JpTqq=CMnMyN%u$AbJf((skqQyd%stFt~ zch^(NaBxUgYW zW{dq!fPw__a90JI3ZYsTe#I_m@6ti>`mu~%O7&IK{afR1tZYyiG@g#dFkg#ML0e~~ z!O}POZr9wRFi+aJ>9*uZY1?dBUJtkixkV%%jOb2ezZ~hE-BB@dT~cG(?i z+{t0wMbZ>+E0ibu;K_&SmEH^b&_0AO5`AqkIQXKg)Mw6KzM*@2A- z1tY0@&iSHb$Y+B6O7fafMhUx5%#nw*6gAkl+C9R9jv!Lqy z69sDdUHOGwbYHNBF<;N%eSWpfS61T9^ObZS0l7=&jwo|$)79QET}8MGPVvXgSJjbx zxf}^5xy;x|I&r~-jlrSD;uujAR*!FXRYyj!}Ov#WLjRR5+a>%jDB z0|yA_Y<$y{rS=PdmzuJc!JLISi#i+Ow58uV>vWYl3qDXZoxsI{DkB|M;8j)BRlPDV zm9P^+JS!SJ{U8;lu{c%i0f_Rex9;2i;yAvuZJ--d@3^UZa(p;BC*q@{i1SmamZEM285h>q| z-=h8QwLSGb1`l^?4DYIq4hj@nS=?XYDoD8-1s*Lti{Vi+rod45&s{MFEv#wmxKd&+ zotSKp@zSGsS=N*`R#{s|1;t1W-j_4p5fnl*=#lw+AGT~D*=cp1!5K3X~A8g#Sa`o5#s@mUq7Op8eE0wJ)dE?pnI4dQo>*cXf4XX|-Ci zBulbvOR_9WUXX2U%Qj1FY<6q}7y<+mvkeIbBC-HsNMdH#$xQ?y87FawlQ79J6B31) zn@JcxGt4BJOOl!P{XXY(OKk(W$^GYku9jL(ojP^Sd*1h1e$VfDo;lrZq`cKbul$8y zcxAF)t(JW+b&>SZT;*SHdHj@8Zy{gTri4E4CDN!6Tt1t;e<|C(|{>RtJU$XcG z$NDa6>+g&-`X9(?{8A<9|Hi`Rnf>Y4(I=cKrTf30Og>FB_*C-h@O*xTbNi)g zC)-SXb>nQgd}>eseORad=fnCA^UR2AVz+}rf=Xb9hOUnoBG0c&|NQqoku_21DTmHr z)X=+8PdfaF2;~zEjQS3Ji)R#47lizhJpPc^ZyQe-s?L=jI+SwVdDl(3PC({F#&Hj& zDAuIOCc+R}v{6x_V6$>P7TXVad9oId10qb;)Xbr@>-HUv=oa_5Zrc4gM}#at59gjr z)|zY-%UA3l2Y&YVSTmbk54nr9BD-v*VW{ge?-?ds;tgF&By!_bIEJ zfM7l;CfuaurE>9`>}I|{o?8yLgxi;MrG z01FefuJ2?C$TEOzAe^C1&>4}othBEHvcW?9zy}1U4Wbx==;*J629tUnj`1^c5{j$% z<*(Sb5K5kSLdYIPMpr@v>`I|T%lZO!S)#ntXf1w2y9z(5FCHOtaMO7ZWVbEVO(Q#F z(`(4IB};SDKryLXgI<3IrePrzS zUCY*VJ@FLfOt)T3#6FaeHJ2hLE7@F3sqj)R$hpgyz=s;{Hx8gxO_TWF5-M> z9fc3)uUx|Vzua=kTQ7gB{l8iJGlp<_&VAVGtcc9Oq}-VMkt1^@9Wioh)Z|6E=kjpy z@~dw}8)WO2&(#I$X3Ngcd07A6<+oqC@{z>JH|>Bl%)ISX$~`OoDlCi0h>HdqEA7e& zMurW&$u`}sRfE0e^ykUHF~voZ>w85iCcl4|_YudvTTYgT_l1wqhDV}}uyrL#9ldr` zRb{vJ|C2rnUN-EXu(`z`Ax1B4zLU@Y@>rOHb&PL(LLTDbdvzTzD3vETmVS(Hnc6z6 zy~{hOk4GD$y-4*~|C=qJGC#q@H)2l(Vr)BLdEXv;5boMf#eR|5DrUguvI_0{;Ig>e zh@CR1TW>N}L$pVfji!tFNMg+_ljb2T_5$8`*OD(wx=fw#aP&+t_gQ zB9QDruw9%(@3M&l8G)*U69QLK1`y6WW$syTm4h>I0E{oyr7hy97)5nlNEC2Td% zat&8~Qy}?olI=+q13MnKW=kG{$A*JE;6 zRBgC&`gK*j#MzCjBb?|pjoVdYe(Q-shu3lL=Et!PrFdyW-7aVMJDvIA(QAhN&d>K7 zwkPMQ$2ZPXamtp5Wk|1EF#6k2 zsoW>0a$mOp&m8J4WBvclc~8lCPyPSzynjK?`xpLSoHuea@)yJ>gO`wbt{}8FdATOV zBc#x`uA>x)?x6zwrhkZj8yL`i31xe0w!LO_EHdDQTA;t zfb!$h&AOgxwsJ705lKdVm`-}6a2Lv{OB*%xxV(scu3nvMHRA0cNfc-S=9~0+u9`UfeP@ z?N7^zM|Fay{Vr6+x2lq&W^YNoHJC*>TaQi^I^qcx((KkDsO-kystD{p6m<-+OOs+bCsZav41}+SdA}B1s)n4rGfmBq=vo zyZ1=<(DoNBu|nfZXO|CmkL)*CRdlejKqc`oQ?A$Aa?d?}SsIwKmLd~sscUS+z6NbF zwpd3b@t(gZjdbK;{edt&?{63QLw<-lPwyT6{cV`eH+uJoPh~psKNij@Pa?iV@x^`% zxlZ;5cGGQZYtbP&?lBI<5r!%q9&IiB4Gtv7X@FVW0ZW2d29~izXfWrPd}2j!+S0=u zF0D4eRm68$400PWo?$zmw8b0d*XK2Ac2k2cI+bB=`HmaG0soFph59K#!DZ9_tG$jf zlcodiHr?IpDVl;Td(zw!|Bxl4vjQz+(bdPYY;tXLWZGrwO4}wS=x12j|DFG|R$5Z_ z>xYfP>m6_X-vKkdd09zQF`G__`i&n}N!G2&225E4`>-{P6^yZrXc+6#)J(`H25Q9>ekV(gd=O{CSsn0|N4FX9Ks%w}l zC+lCRs^Spx97?Jm);S_dOk~+$dS9*!uf863MLE_!*-qyjI-|I`e1<}M*ZXup$>qW@ zZJxd@&uJmCu%~#OFuJY%Zd6)Y8s;1?7Ss8#wMssh0niQ)%K@a>NTN|u=-^p)jwi2ED z$(0{|dbEb$JiQQCW|nY%MWj?8Yx_`C%XpVi8<_TCMiqC3DIyJ6M0Q80uNfJ<0*DP^ zokgPid9R7Pxw>z^EM>b7kd_DgB7~li;!*>9{ktJ0!Htq^HlNgsYs6_S>INm_HGkXs zuZV0{`|7V_AnBJ&Tr3O(|adwQgMe!w~YbY9hR|1(#k=#Z)I zfwTIYQ<`1>Vy;3-zk^g>K*s+Avi8l$T0xjZ*9x#1Ro~fc*Bk~Y!Uw4$61tQaOp=+P zUVTH0Ajyd)?%I_O&dn19JX$yK@Tzpyb-c$t0Kv?w(*EI_>fY&O*4b?7eA=tu#u9p$H=v{2LHSXsU4En2O#v$RO^&MF@#2NVqgC%;4vPJlH0sAC=7S&QR#h8&Y z2Hj2`W5K2+fi{U|7o&ja>uRuLEZK_3`_+yVd+SvDMsgy#+FwnsFJ!W7aE1f*_IAAB zd7Q}k2)m<({`T2SK`%|%_MtKAf%$%A?2s1kmh9H-b`^-rcj{VEn=g>L;#oPzcBj}&DOo*k0QP&1v z4JiatXr((`29!X}u>M$z_>upt*HJ3aKmEH~_wW3W-!k`q?sNNLJkDs?kNGrBq(kz&Gf4O9aBLGRX|{6SkccHR7tc7kD^&&FnTdjG=0ek|t$x~bY) z+*B*=_6i+(0i4>(Ies_OspfC!f+LnPuym4<&kM?%$^IXfvzU^gWU3q zbiNwJ_990}c9B3y9~53VGV+>D)UOm=GAJfhtAibl?St4wkAw=4*%1oish(JEWXATxw|`dEgn?p3vGBr;tz&Us<=vp zJi{f4OJTbA^FHE|H^6YwG2%{MnmagIN1p<1>2J574nr^@T9w8PkLU zY7+7YCAL&93HbzJ_*)=rA&5%Z1F6z=CEz_B>}s@D=c?+C?<>=FCB8jfC{K{)ZZ}=V6NeZhAt(;SC^lrR|$gQGS^$?UC5xqzmCRNeO;o-upHZWET4N^^{%>Q z5Ekol+{Jx|r6lOgk@B4qyS^mRYTv)EH>2KlZt>QAy*1ZuInK6ohx^CpdrjNyW4+26 zFfVfjHu2v-BM zO$z&Ak$!^WC7*na8ilpFJ|3FtzZb@EJ}|6PB`OM~7#eL$vIfnaa7Art)I!drW7mg- z+-Wjm9y)pm@R?$#wt8Hup?vaZ!kS=b@FE_#us@6mUF#d$c9(MoS0`~CJRD1GQ=mYa zjoX@$EAQTB_?l-K{APyMhYY7BJX6uBm#|$w0vb6PTVtX`byS$A8(DbE11e#K6{+>e zhuzSs9h5AIc_K^0`jf(xmjCLKQ}Wke<(C{?`%Cc!)L)vVb=+A;J>w+TUrI9F1wX$= zCCasiT1z{kE{WQir#Kb$A-=C3hazYUTx3M&wZmy47L zdqFXR|*uT z=I3V%D+PEA5>e!dZ8*!b+s-`7p03IgI9tCuli^8y!Ol-#`3PT{Z%)fW{zP6D%(z^f z@5jSqT=}*22Py8(x8)%8&Ar;bB4?yuHZ>(A!&9J^%S%-37%@XPtOAkIvI!1qBu@Zu z)Z^cquG1Jh49DI4$d(S*9}HRn|1O>zo5?lv3@(Gb=giG(_k^tj!-t>D1f*`tgUAYW ze3;wZ`=_7D5C8Rl>}QG3iamh_!Rw9c)r46AGWRx81EdO>V9S@m6|sCTgLViAOGYMI zr{S}jWU`%x+4++Yu71*uCr&57hJDwU%YJJ!I2JU)dS2(JNohVBKCV%Bw#?q_T>d!o z^a0tE2Ue`=4y4aTA199f%telxqbbqP|+$cL^B#Kb6b6ZoEn4jdz8MK z&ev=C8C~NIMpVLGsBbgr8nVxt2w-q{79}~V#kRR``{cbc~=dDs_V zx(unZNhd~$*@rgb<@{dshhTd{i9Kv8Rz`l2p~uujwG}5ekQwb>e+9E?#ou`PxbLpt z@A^BY%JVOtFDDX}Y(-mt?}>*`oOt-*D|_(@>Vi*qtf?KfnqJRVyx)*rPHfok+?%h& zc9Fk)6&A3dV7MBnt|9*gIt~qBDe2M0;t4ZSYfRjLTO}1zMEPzkW5_qXajmz9+*Svl zMA$r_SQ-=@Dby_iAu^y)DFFzrdUFArX_votFj=*W@tWq6(pifa?P~JinooIpEvU7k zyOXN^X}@3EUMlr*^+XT@%V?UB&gCo(d^MEo zPi5N+$O_swSCYA3n%gJwZw`DOTsg8yW{B%vedX8@R&TX7M`VMW{hWz!E{(P{7VjVd z2=#}C=~DMkcAeO@>%@N!;SqH_d^%94T8?y z6($OV_7uMG^LogxYMVFSgmr?{5Ov7aZkT5*=%kXHy~P!J)2Ykt=(aYPr7d05V0LBeR#J0> z(@+^N%{PmkLdi)blh%0H%x?4gFKTP(w0`V{km(wVLp!`5Hbr$dP8??d-!Qr;={7D* zRPGW=iKps^!EMZH-*8*jzgXR zQ;D4-mSc+5(M4WtDcTm1$7MliX&=(zorI)9PhU0iwL6n}A0Jc=r=!FyOUCp z^0^!y`|Vls-QGYy!fpHtFe>0q6m`G~!mGz&LWfbDfqO_zNW=hjkl9Z5Ue-ASs{>xf z8SydC&v_Miq|}Y^4CoBBhB0$Rb+5$3>@y+3?u>YuPcGMJaZ$02l#_8OYK7+uhLxNO zua|R)h3E2v&*b}l^ZO6aH5pvf?=Ws(3a{yK?2aFDU6h4Ftw+}-@@-5mml3vcUawp+ z))&{zOy)z;=Kq9|_^h2t!6x+=b`Iv^W~$=t+;>eOn5u>2Q=^GJh26>yO%1#?!F^uplyxUmwo9FZcc z(T+TbfffV$o^L)A$+7dBl1+r#e*ZuD{|iq3rF`v~=6s)@d+!yASnE?zm{S&8jT#qg z$n-;G)}BU2yhwb2jjB`|85b#fN<|DsdBs_Y<-g&*;0CZP==>`d3B9H^pQEx?qvpVd z5TT>!SyKaM-UyUzT(b)8{!q4zX!M~i`F=k~F2-D3OTIKuC4y~~Y{|bQqs6JWt+Jf! zs&kMUM^l=+Bd$%40Ji1%M&CbZufOlOv#&>xR{oe?_c{z)Ux>Z;*{E>8m$=G4u44F1 z$H~)hPo09_W}G^ONpPHP4gP=5bw4NnI}6R$MEh*{`cnH_#s9Z9wn1;hLzP-XZJ!}8&z?WM>s@#IYI5%PTxPBf3fes zm^xqblqVN^=P{ky+=l+(p-%fj1d(n23kI%J<>6N8X4UYCF*W>u5#n%0Z2Z|TtDjY$ zV=lcU_WIZbP*PexFQYxNV?(3JqICGus!pblOmU=;Uem7h-wbf?UDJ(haj22@a!av4!kje76|0q);Uw7 zv|A#nDzlZzo!2iicc4A$^@-B-_M8cBUEa05(CzkK+Eunkt|q;!jQIa>lrpqSs&n^^ zyE;1#?O!3_O{Z`||iNizeY2}{$kvA-u`7e+%gw&)j7X9Zm ziq>YbM%u{cLH>;_DYW;-T|OC0zo0Zz-Z8nbD`f)I;bppGm3o(SLO11Ci}Sg(nJ;u- z((BP9F+tT2;5_|H@f0=ZjWYjZ^mgG|b(r8dBw@a@ z)EUMk0CmUn>DgA8)fn^{Zj`1dL~dyWc;|~c&^SE_MJ>v`<%RlqLL0BE_>|*J_wr70 zVZ2xGwdan`3{nj{u|J)Ahedq|bLaiZ+&&s%@~<#9_TjPll9rxKX9h=Zp6DfN7e7Qm zBlj9D-OBBr?FB1~Emi3?oKxkwL}EO-JLw%a64VU53ii%YW0}pxy-s<|s8YV;$xYXS_IA9>9&mxHF)~;gS*2p(m5%aCQYG zR|{5<4;GC8b6}aCpE@(M+wOPih$UT|KsySSl&oDsB+$)iRV@sA>RZ~&UqM8S{)0Pr zN~b_w&8)1UQe>S6FGs+OZ1?zy2P2GHGfXeb}v(YgRfFm5_rH(sCjDtbbma z3Cno(D}dL%hm?KWwzTmX}096@bAu|STd zsP>$O*Afa$r9KM^W4!8N*hI?cK>0?GPfaUPkDXAee$ z;Cp-DsCI-X{_K0-JJ$MmOO@_?FlylOnLqopr6uxuB-cy)#0>RG?~c6_X7{I&Tul;n zHcKvJ0MH0tB!K`$)QHuAh{jAnrXp4;tt(_>uZy6-L!?UqGm^b1A5U5xpOiR;C zDwO6j`L?vRnA2Mp#+iJJFh((;eFArOCp@8|R8hks!idF=H>cGcgmKJxeiBEMA5`C3 z-&Hb{msP)!^-X{M*YhKnW+iExe03-88N1gUk8W6u9-#-5{0D}YRPY>sGAWWisoM_z;ekGME*#e4@sGdl~webq2 z&N5y(Iqs$^tt6?vFeD6xbmQFVvf?E&ZmJqchmUmX8#K2Rt`hTy1mEk|zsXvqv6p6e zT5hhnxabuqjCr*Ois0CP6{J(NK&@y&?$B&VkTQt!c?k~63?~DJ9(yh3j`r;LxbI5+ z81^W(RhB{LMo=h>JIpc(-QeNUZ(e)jwi5rzNqS;5ktm-Uc3-^v!Jk&niKFa(3w>FB20hv{x>HS6-lxYzgGy0J#+};`pq+(EbK1kzAD)eDeWwXLQBR zMB6aWG@JU_=#?l{xIHH-)V3%|!h{gBzDPtYiO<4vUkVUm%q^5w-dbOnDlK)gtsoib zyO8Kpd3AREvn9#>Ka#Gd-E{Gf4N_rdiF$F-|;Z9@B6yCeta!0L!!OuILdM?l>=Mmj|$Cw^WT zsZLzTX%6EqgDwT%5CI%I{ok6q_U~#PxewtTWAs^U+Fkh03$b&tAB%k>_CHidA@86q z5ZN2k!Ig?!yUk8!``T~wstZ=BetUDKgx+SPm;km7m@GZf{z(yWm@ry&ztm{H0Ida(i0iI_2UxR+l@S zz|kFVG}F!T`T0a8dE<3bPEi^5%#KcX$hs=9`byQQ-toQ0hm~$85@8`*qzUcWNz0)o z1|?(Y2idBpK$;CRG0vh=+E5is%p#@{w^=L}w@K*5QopOIRKj$144a%;Nc-3uDw87i z$n0ZQ}%8~`Vd zAhE+7<22~KD>Im)kchd*tV9A?xyISW-V=>e5*Zi za{j;rHK;3EE;U`ApIGYe8q=)_C|jftF_^YtO(*C9o^!g$Csn6}lAkR$vb}kyOq;f( zy!YuF&v&7kY20NkdS#`I|-3^ zrkShZ&hagR*ZBWcER-~TfIh`o?UKsEIpR(xh*s^~kKx-in?R4t{vi$kv}BU^U^EO~bfu1_+T%KK^68J{R;%1i;x zR#STpW8t}wTxqLA5Y5wG#B1G-CtV}deT`@TM16#s`#G%heb`es$L__y!Y?wo(aeR= z!{V|bg`y3?nI&0Mo9afzzd&w$iX;&DNz9)}d4`1v2|<%quYwKuB8t!7 zEXs#g_2ja9v}%o06FXm{g=H=8XTSHoziZcXLea=CFXu%m<#M(3C#aEyej5D>sw}OH_rE$ilfHtRT=uRN{90~WSnWo?X(rt%hg<9 z#5IT=npe)535p8gDl+kme05vE3%6LURUmU%h1VHzA5DX-VTk|g(Q#V9I+gj(05$Q^ zdQg9}+0Ht}xouh^LHfd{eW>TNJQZ^`pfx za{-(w*rTF7*&*C3rL$L$J1b_4Rm4ft1QuW=SoWyLtxsWK@Gbt?t4M{7!|)s7k$Ock z&EMrG{ z^eQ~A!iSvHd-%Aqqck3`(j))_A>kD~C*?UPXT4YP%tj&@pP{aAT5DB0^1G-gAoL{N z2#j*q`V*!J`dqUz4^Zu%49b?iM~!ofY|EqT9aaGFc**&Lnx56`T3)Ld4?d*5LOXWD zdF@r&TPM1z-qKW~TACE?g-RdS^h(93X<4nR=k>zNwI4a9)y$f9tDe%*t6E0IQ%)kM zR91D-w>5p|O4jwelhBOy_u6(l_lcw3XBtmF*|=_@^3rPmji0{t@gwWsx${m%*Rg&3)C5x$y)0a_ ziyR|`4>AxwCI0MIceX1&sFZvPpa_Q9FUZ}f>VyDUDN#r&pbVE7j-g~hOOJ{YSwIe{ z=TuTz{|^S;oQ+f|^{UT8GIIud^M;X3lYjYR#?f&<^7EJvbLRe3_F#w*=WBnk#(C=?wiAuPN#zj=WyLa5y_I=!ZB>1 zcaFqP&}AehYBjo&q8*7zl#aB3kp4u=MIg|mCL%M0e51=EbP{&%16$*!J)GSaNR)N0rG0rZmS7lWjDtB?g%0Q&WAcSz_%W9cBg5cBubj@( z-JN;p?+$T@#-lf%dAuRRIi!_NXo9g(wO%2cBxEkuXsPwsB`%+ z+)k-v89l}YWWouu`CiH_D`JKU?#L~-l)|*_9d~HW;Up!@#m(9Ye40vo zDU;ear8H$tW^Tpq{ z+#qe)S<81kH+7W66I08O@zV$2g4~WhcD6uach}Ar+@z0{5O@89FE03A7E%Pqx1D{3 z1QpM`&LniY@FU<@mpVCSBHi{Zv(%9GopUdZSCG;%xFEY3H zzcTcxSGe!{sa~)hJM0)8cU~KN9IF$PS{%co6?8+BK^$CCh>9cb3}Y>^Q^>U#1rl8~w$J=URe4y)o9AAooYh^SCz*4!H zG7wW-RZ`RKB)lZUsn{u7Q7h5rCW+^Y8;bEf@s)iOJ0>c5>LWR9S1%|BcNEIlEch50 z*+!Qo}#}LUr=&!7OevmozgBoCVlloLB7GzadB9edP5} z5rKMlLkYfedg5kDs7SYadIVC4xl*tKK-A*$$R6~TX%pUCwtIMG^u*Jw+L$_X{Pu6& zJauZ@%U<-dorevFkk$KtbWwC*luTG`;O&3bw6p2M||m75dId#(0)Kkk(ogbTCT$~p3bbH}urT~7Wh0$-;7mjzw(t8GKY|r7=?kUUj$)^&1 z{0!&(Bwj!qT#!NvN*8o`(Br|JS3xI5{nFKsTvvWo`P!$av?*1Le>}hb%*W#&R!^=s zjvs&f8{arTp5DGaJ?_eVBwy?jIKc%*U^&$7NMs$Ls3}G0Xmi4CWJ`d}I10G8^C&q9 zR*z|RpY7vH{l@xJ$r>p84wK;M_RW_!H6C&x5f!sjOX;0fCSEv@bI+MAGn>?aO%k?o zR$cINmE`)<^(lE)OZBPspHIHjMAfe)cK6fcb~awWt8PAMG)xmc$67P(S4s_)*lDhR zlIwS|Nu;XU?%1udKaKq-^pIFJqX4)*=+T0H5TFf4LUHF=%nvb!#RAcL*eRn`a}ZL^ zia|vFXn~R77l{zVV1c{I<*q7wIATuo01h~>$v8_efL&XKo+zgxPX+O>M91}pK>_~~ z;TO7Eylac#<9~a|K_$uU@_XubBjK*RAIVW<6?2sEwH&d_3TgN37v+|6nbpaMrIwuxJQt>i-2l;j#0o6rRNApw-^QPZ=NZX9J{<90B+43q`g(FO6g zH0|t}zgBARUX5x7s>H$fWOIQEG&U*q*Jt8(-0_YHBH_aats~Jas|$t(IL}|feJrgj zZj4or1KB4ipn_+n{ve;rD(&Z{ryqOlg)=LU-G2M|^XDIio$GfvNo2BEZD<~ngE?n8 zC(IHI6~E%;@Bs0hLy@iG#VmCOxhNya72XOa02&O!06$r)Ougw%Qx!X-G>2=((&c9< zuWFl~lClg`_>YTwj&M!db}|s?N!h+hWdc?hkYXU4ffuznV@6vLI%$PpkKa5qLydM~ zI5F@nbuYHxn_}<93;VVrR2bSRV*B;x4D?>mr=$wHj=zIGGf5D20opP8G$eEQMrMH29PDm^I0@+z+w}yWr3A42LA&BG@gCSeG$|7p7G)Bl1Pq$gF?|3y zbCynPc-P5ffmf#49WQAr;R}#k(9x=igy$n=nGNa5$8w#CR>sT%!%p5fyKVmV=5q~yv0IFwNo(}ICl zdd5n=Uw1qR;XV!m#YsSXlklwirj_rf_c}2Y*832 zgQnSoF8$Ojp*a(Xida0zKzpet%?f0%(0uO-MkSUa@k_d@53tR@I6gZ!X4fZY%5TPp z-J`!`EBENh>#mz=Q=dg&z4^B6SpNMJdnS90#dM42NUgh`C@+nQvoxVhj(uQD`Oimk zZg8OK^j~h16~D$6g;*J#e?ruZG-^y% zxETSOM9f!GeFnjXM|1i7LBIyf7znsFf7x&Jn;-k+@X&uaJhX8@ufO4j8>@9S`}pJA zuiClu@YO4~)>h4CHdRVHUr=Av8s&lchrysZm0bVO(%{f5Cqc~2_upBn&j0uJAMQGK z?XHz0r^vj{u=_-LY{Y4A`1X-s-sLXDp6`|GVF?J5NksV}WJEmCRtq^JG70OlyX2QOVL=P$&d*Y3A>RT;j^k>(9Gh`^>re zht-9&($?>Gu#7IGjP*Z$k6fqJf_#cvke_Gvt-(G91K#YG5iEm0fo7p2d6-vrpDSEk z0O>6bsL3VfWp_aWasxXUq2zfGF}I9qiiB(ncs5EJuo<)-udR(HY|v86S+D9rj;hi* ztV0k5e<-OECRChI%UJ#k`7HoSC|jc4PYPT&b79Ia@% z03^Phut6a=8npe}bUAI!S~Hry&1S|@rXPRYA1LaaYvwpweAeEk>9f|Xo376mD83@9 z4q$i%kQpB7aUt#?f5EDj5x^kC9`(<^^X$Kcd+=p!qB_XME~#pf6Ni9bN3LVsKqo4~ zB0`s7rVE}M_Hg3`x&d}%4+0$MaY*D_T&CDS7#yGwF{?Dpdtu2kZMxQVS3h+aBmtjl z&o8Y4L)@2g(SU3~1;Ti4b; zzs9s*Qy162bmq+GPlX(Ri5({xzlT7|@{FKJwzaS#rYsn!WW|xVt|At6TV9EQH`sWg zUH;4tKNGYgd?8-Zocd_1dv#%dz5M9@?7>bGk)8kJ{e^>v-O5My=MG+NdBtA}KR_T+ zFeUD{dDj~+|9d{HHsgva<=5ovXUgR>^*sKqW4`Ik0vQTt7Kn*D%V(-Z^b8XMq5gK> zq{_=@(x}!nmFpz`^3T+lS%;HIwd?S0Fdu+yv1CQn_mI=!tq&7qu?fO_B}{=;g*(R; zGj}$?lsN^)HLb~)2&u?N!XEiG=vmurUy*p$v9~YvvW-~)Ntw&ppguL-)hPG-bfa*QR~H4&0ceO9X#oS*-B5J~7w7KRB*Iu29C zREMo*%G6E~MNTAHJLqo67P+FH&NoWlj0YTLcMA3^sH=yEX*eF*{C{CIkkr6$%8=+u z^A;>7z$-q&DB>7zDvVNC=Q^MYw znVz$DUY#s9B;d=p;cPlN-@ZZgPnj50j~JAP7Ybhrl3byOpBRh+#PP5Y*k8Tv-KWN1 z{NnLb`g?aQE-wDcxetBqRO7`jZk+nf_kC^guCFbUR4($p0nhXT$IsRbwNFKpZ1Gwkn>k4{Jobk_58$wHhMK_lJFfifnN#dO&Zez&x9 zvSVI{^r%oE`wM>1Ul^Prm;{JhTdOiWL;fkJ{y zGpCfd)ok2*_Wapf9w@1)3;%hGVYvP=HNE~vw@|nriX<2aI)Q5BBjRxHi2YmC_+ACq zYSf4Avl2mCIB7Lq#6(E#>Ebo9+!u#^*#Xb6-4$t2Bh38#^Rgr74A%?;UBpZuBS?%Q zJg-4`6yf`Hd;ONUZF#G}ftEx_hr)a4}^h0H`UiK_P-bj1VDOVd`)0y7Y+3=Hn@X zR&WSwB(j<6iLft>NH2q0rx-VUIKyoWlLw^G-ZLaK=Q2W0!TZ65gwY~6HWYRb$?674 z^of?{GgU`Y74WMNcvO4RAEl2)5?G848Zlf&pKgB7(&A(adYW%qNnj~gJuM@w_^U@|HR-< z{&M)5W3IqiH%sY)18vQ$4PJPW_^K5~hBv!+Nsp;WXLQBIxHRX9lgUAX6QS0B8_Ij;IDxdq4n*us6$U zu%ayw7YF&m;%ISH*r~DZ1+T%og>FKYhwNPl2E!u7$iP^3yx9Mo{jXoyR?EIMs4>K+OJ5qonu3}N zaN6$iuMOrUjq8E|Sz?8OWF}MOXim};!r!+dpC4vO_$zD!>9kQ88()r&Mw|!t%!FJA zvyh|8xdYEG+A`P${*N#lB3M9MGprzGxkX~SwsyUQYOF*&@6d^5rv|lx+ke9eAONPw zLOf%WB%r;A)nkK>3R6TwwdMFD&tX A2EipbPkb3n^1W0P*v?8zTLtC#cwq6zv_*MF%T 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 bdh;&^apxX4eCQ+6{P(~g{=ofW#`*rgmyUoR literal 165548 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 z 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 d0mAU{x3rOg{ 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 z#HauO00001|Nj620096101N;C02TlM00IC3009H0009650000200000c${NkU|?hb Xf-4eYf*|_ZT$>aa4FECd1v>x$LP_5| literal 98024 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 SdSQM28?+M|D(2r_;{O0|uQ74} diff --git a/front/src/semantic/themes/default/assets/fonts/icons.woff2 b/front/src/semantic/themes/default/assets/fonts/icons.woff2 index 4d13fc60404b91e398a37200c4a77b645cfd9586..32b980833a0fc217628c69ad7a8db409155c0a1c 100644 GIT binary patch literal 105468 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 AZ~y=R literal 77160 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 diff --git a/front/src/semantic/themes/default/assets/images/flags.png b/front/src/semantic/themes/default/assets/images/flags.png old mode 100755 new mode 100644 From 40e125519971f22a1dfbfaa20135961e1216bbea Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Mon, 5 Mar 2018 21:51:40 +0100 Subject: [PATCH 3/3] Fix #100: Added some feedback on the play button --- changes/changelog.d/100.bugfix | 1 + front/src/components/audio/PlayButton.vue | 19 ++++++++++++++++++- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 changes/changelog.d/100.bugfix diff --git a/changes/changelog.d/100.bugfix b/changes/changelog.d/100.bugfix new file mode 100644 index 000000000..cad193d52 --- /dev/null +++ b/changes/changelog.d/100.bugfix @@ -0,0 +1 @@ +Added some feedback on the play button (#100) diff --git a/front/src/components/audio/PlayButton.vue b/front/src/components/audio/PlayButton.vue index 451cdcf01..679f8b795 100644 --- a/front/src/components/audio/PlayButton.vue +++ b/front/src/components/audio/PlayButton.vue @@ -1,6 +1,9 @@