passbolt-styleguide 3.4.0-alpha2 → 3.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. package/README.md +1 -1
  2. package/build/css/help.min.css +3 -3
  3. package/build/css/public.min.css +3 -3
  4. package/build/css/themes/default/api_authentication.min.css +3 -3
  5. package/build/css/themes/default/api_cloud.min.css +3 -3
  6. package/build/css/themes/default/api_main.min.css +3 -3
  7. package/build/css/themes/default/api_reports.min.css +3 -3
  8. package/build/css/themes/default/api_webinstaller.min.css +3 -3
  9. package/build/css/themes/default/ext_app.min.css +3 -3
  10. package/build/css/themes/default/ext_authentication.min.css +3 -3
  11. package/build/css/themes/default/ext_external.min.css +3 -3
  12. package/build/css/themes/default/ext_in_form_cta.min.css +3 -3
  13. package/build/css/themes/default/ext_in_form_menu.min.css +3 -3
  14. package/build/css/themes/default/ext_quickaccess.min.css +4 -4
  15. package/build/css/themes/midgar/api_authentication.min.css +3 -3
  16. package/build/css/themes/midgar/api_main.min.css +3 -3
  17. package/build/css/themes/midgar/api_reports.min.css +3 -3
  18. package/build/css/themes/midgar/ext_app.min.css +3 -3
  19. package/build/css/themes/midgar/ext_authentication.min.css +3 -3
  20. package/build/css/themes/midgar/ext_in_form_cta.min.css +3 -3
  21. package/build/css/themes/midgar/ext_in_form_menu.min.css +3 -3
  22. package/build/css/themes/midgar/ext_quickaccess.min.css +4 -4
  23. package/build/js/dist/api-app.js +1 -1
  24. package/build/js/dist/api-recover.js +1 -1
  25. package/build/js/dist/api-setup.js +1 -1
  26. package/build/js/dist/api-triage.js +1 -1
  27. package/build/js/dist/api-vendors.js +1 -1
  28. package/build/js/dist/api-vendors.js.LICENSE.txt +10 -4
  29. package/package.json +5 -5
  30. package/src/locales/ja-JP/common.json +820 -0
  31. package/src/locales/nl-NL/common.json +820 -0
  32. package/src/locales/pl-PL/common.json +820 -0
  33. package/src/react-extension/components/Administration/DisplaySubscriptionKey/DisplaySubscriptionKey.test.js +2 -2
  34. package/src/react-extension/components/Authentication/HandleSessionExpired/HandleSessionExpired.test.data.js +1 -1
  35. package/src/react-extension/components/Authentication/HandleSessionExpired/HandleSessionExpired.test.js +1 -1
  36. package/src/react-extension/components/Common/ActionFeedback/DisplayActionFeedbacks.test.page.js +6 -1
  37. package/src/react-extension/components/Common/Internationalisation/TranslationProvider.js +3 -0
  38. package/src/react-extension/components/Common/Progress/DisplayProgress/DisplayProgress.test.stories.js +4 -4
  39. package/src/react-extension/components/Resource/CreateResource/CreateResource.js +2 -2
  40. package/src/react-extension/components/Resource/EditResource/EditResource.js +2 -2
  41. package/src/react-extension/components/Resource/FilterResourcesByFolders/FilterResourcesByFolders.test.js +2 -1
  42. package/src/react-extension/components/Resource/FilterResourcesByFolders/FilterResourcesByFoldersItem.test.js +1 -1
  43. package/src/react-extension/components/Resource/FilterResourcesByShortcuts/FilterResourcesByShortcuts.test.page.js +4 -1
  44. package/src/react-extension/components/Resource/FilterResourcesByTags/FilterResourcesByTags.test.js +1 -1
  45. package/src/react-extension/components/Resource/FilterResourcesByTags/FilterResourcesByTagsList.js +1 -1
  46. package/src/react-extension/components/Resource/ImportResources/ImportResourcesResult.js +7 -1
  47. package/src/react-extension/components/ResourceComment/AddResourceComment/AddResourceComment.js +1 -0
  48. package/src/react-extension/components/ResourceDetails/DisplayResourceDetails/DisplayResourceDetailsInformation.test.js +5 -2
  49. package/src/react-extension/components/ResourceFolder/CreateResourceFolder/CreateResourceFolder.test.page.js +4 -1
  50. package/src/react-extension/components/ResourceTag/EditResourceTag/EditResourceTag.test.page.js +9 -6
  51. package/src/react-extension/components/User/DeleteUser/DeleteUserWithConflicts.js +1 -1
  52. package/src/react-extension/components/UserSetting/ChangeUserPassphrase/ConfirmPassphrase.test.page.js +4 -1
  53. package/src/react-extension/components/UserSetting/ChangeUserPassphrase/DisplayChangePassphraseIntroduction.test.page.js +4 -1
  54. package/src/react-extension/components/UserSetting/ChangeUserPassphrase/DownloadRecoveryKit.test.page.js +4 -1
  55. package/src/react-extension/components/UserSetting/ChangeUserPassphrase/EnterNewPassphrase.test.page.js +4 -1
  56. package/src/react-extension/components/UserSetting/ChangeUserSecurityToken/ChangeUserSecurityToken.test.page.js +4 -1
  57. package/src/react-extension/components/UserSetting/TransferToMobile/TransferToMobile.js +2 -1
  58. package/src/react-extension/contexts/UserWorkspaceContext.test.page.js +33 -0
  59. package/src/react-extension/test/fixture/ResourceTypes/resourceTypes.js +4 -4
  60. package/src/react-extension/test/fixture/Settings/siteSettings.js +17 -2
  61. package/src/react-extension/test/mock/MockPort.js +17 -6
  62. package/src/react-extension/test/mock/components/Internationalisation/MockTranslationProvider.js +23 -3
  63. package/src/react-quickaccess/components/ResourceAutoSave/SaveResource.js +2 -2
  64. package/src/react-quickaccess/components/ResourceCreatePage/ResourceCreatePage.js +3 -3
  65. package/src/react-web-integration/lib/InForm/InFormCallToActionField.js +28 -15
  66. package/src/react-web-integration/lib/InForm/InFormCredentialsFormField.js +2 -3
  67. package/src/react-web-integration/lib/InForm/InFormFieldSelector.js +25 -56
  68. package/src/react-web-integration/lib/InForm/InFormManager.js +39 -8
  69. package/src/react-web-integration/lib/InForm/InformManager.test.data.js +238 -4
  70. package/src/react-web-integration/lib/InForm/InformManager.test.js +456 -5
  71. package/src/react-web-integration/lib/InForm/InformManager.test.page.js +41 -4
  72. package/src/react-web-integration/lib/InForm/InformMenuField.js +29 -16
  73. package/src/locales/fr/common.json +0 -750
package/README.md CHANGED
@@ -13,7 +13,7 @@ License
13
13
 
14
14
  Passbolt - Open source password manager for teams
15
15
 
16
- (c) 2021 Passbolt SA
16
+ (c) 2022 Passbolt SA
17
17
 
18
18
  This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General
19
19
  Public License (AGPL) as published by the Free Software Foundation version 3.
@@ -1,8 +1,8 @@
1
1
  /**!
2
2
  * @name passbolt-styleguide
3
- * @version v3.4.0-alpha2
4
- * @date 2021-11-30
5
- * @copyright Copyright 2021 Passbolt SA
3
+ * @version v3.5.1
4
+ * @date 2022-01-12
5
+ * @copyright Copyright 2022 Passbolt SA
6
6
  * @source https://github.com/passbolt/passbolt_styleguide
7
7
  * @license AGPL-3.0
8
8
  */
@@ -1,8 +1,8 @@
1
1
  /**!
2
2
  * @name passbolt-styleguide
3
- * @version v3.4.0-alpha2
4
- * @date 2021-11-30
5
- * @copyright Copyright 2021 Passbolt SA
3
+ * @version v3.5.1
4
+ * @date 2022-01-12
5
+ * @copyright Copyright 2022 Passbolt SA
6
6
  * @source https://github.com/passbolt/passbolt_styleguide
7
7
  * @license AGPL-3.0
8
8
  */
@@ -1,8 +1,8 @@
1
1
  /**!
2
2
  * @name passbolt-styleguide
3
- * @version v3.4.0-alpha2
4
- * @date 2021-11-30
5
- * @copyright Copyright 2021 Passbolt SA
3
+ * @version v3.5.1
4
+ * @date 2022-01-12
5
+ * @copyright Copyright 2022 Passbolt SA
6
6
  * @source https://github.com/passbolt/passbolt_styleguide
7
7
  * @license AGPL-3.0
8
8
  */
@@ -1,8 +1,8 @@
1
1
  /**!
2
2
  * @name passbolt-styleguide
3
- * @version v3.4.0-alpha2
4
- * @date 2021-11-30
5
- * @copyright Copyright 2021 Passbolt SA
3
+ * @version v3.5.1
4
+ * @date 2022-01-12
5
+ * @copyright Copyright 2022 Passbolt SA
6
6
  * @source https://github.com/passbolt/passbolt_styleguide
7
7
  * @license AGPL-3.0
8
8
  */
@@ -1,8 +1,8 @@
1
1
  /**!
2
2
  * @name passbolt-styleguide
3
- * @version v3.4.0-alpha2
4
- * @date 2021-11-30
5
- * @copyright Copyright 2021 Passbolt SA
3
+ * @version v3.5.1
4
+ * @date 2022-01-12
5
+ * @copyright Copyright 2022 Passbolt SA
6
6
  * @source https://github.com/passbolt/passbolt_styleguide
7
7
  * @license AGPL-3.0
8
8
  */
@@ -1,8 +1,8 @@
1
1
  /**!
2
2
  * @name passbolt-styleguide
3
- * @version v3.4.0-alpha2
4
- * @date 2021-11-30
5
- * @copyright Copyright 2021 Passbolt SA
3
+ * @version v3.5.1
4
+ * @date 2022-01-12
5
+ * @copyright Copyright 2022 Passbolt SA
6
6
  * @source https://github.com/passbolt/passbolt_styleguide
7
7
  * @license AGPL-3.0
8
8
  */
@@ -1,8 +1,8 @@
1
1
  /**!
2
2
  * @name passbolt-styleguide
3
- * @version v3.4.0-alpha2
4
- * @date 2021-11-30
5
- * @copyright Copyright 2021 Passbolt SA
3
+ * @version v3.5.1
4
+ * @date 2022-01-12
5
+ * @copyright Copyright 2022 Passbolt SA
6
6
  * @source https://github.com/passbolt/passbolt_styleguide
7
7
  * @license AGPL-3.0
8
8
  */
@@ -1,8 +1,8 @@
1
1
  /**!
2
2
  * @name passbolt-styleguide
3
- * @version v3.4.0-alpha2
4
- * @date 2021-11-30
5
- * @copyright Copyright 2021 Passbolt SA
3
+ * @version v3.5.1
4
+ * @date 2022-01-12
5
+ * @copyright Copyright 2022 Passbolt SA
6
6
  * @source https://github.com/passbolt/passbolt_styleguide
7
7
  * @license AGPL-3.0
8
8
  */
@@ -1,8 +1,8 @@
1
1
  /**!
2
2
  * @name passbolt-styleguide
3
- * @version v3.4.0-alpha2
4
- * @date 2021-11-30
5
- * @copyright Copyright 2021 Passbolt SA
3
+ * @version v3.5.1
4
+ * @date 2022-01-12
5
+ * @copyright Copyright 2022 Passbolt SA
6
6
  * @source https://github.com/passbolt/passbolt_styleguide
7
7
  * @license AGPL-3.0
8
8
  */
@@ -1,8 +1,8 @@
1
1
  /**!
2
2
  * @name passbolt-styleguide
3
- * @version v3.4.0-alpha2
4
- * @date 2021-11-30
5
- * @copyright Copyright 2021 Passbolt SA
3
+ * @version v3.5.1
4
+ * @date 2022-01-12
5
+ * @copyright Copyright 2022 Passbolt SA
6
6
  * @source https://github.com/passbolt/passbolt_styleguide
7
7
  * @license AGPL-3.0
8
8
  */
@@ -1,8 +1,8 @@
1
1
  /**!
2
2
  * @name passbolt-styleguide
3
- * @version v3.4.0-alpha2
4
- * @date 2021-11-30
5
- * @copyright Copyright 2021 Passbolt SA
3
+ * @version v3.5.1
4
+ * @date 2022-01-12
5
+ * @copyright Copyright 2022 Passbolt SA
6
6
  * @source https://github.com/passbolt/passbolt_styleguide
7
7
  * @license AGPL-3.0
8
8
  */
@@ -1,8 +1,8 @@
1
1
  /**!
2
2
  * @name passbolt-styleguide
3
- * @version v3.4.0-alpha2
4
- * @date 2021-11-30
5
- * @copyright Copyright 2021 Passbolt SA
3
+ * @version v3.5.1
4
+ * @date 2022-01-12
5
+ * @copyright Copyright 2022 Passbolt SA
6
6
  * @source https://github.com/passbolt/passbolt_styleguide
7
7
  * @license AGPL-3.0
8
8
  */
@@ -1,9 +1,9 @@
1
1
  /**!
2
2
  * @name passbolt-styleguide
3
- * @version v3.4.0-alpha2
4
- * @date 2021-11-30
5
- * @copyright Copyright 2021 Passbolt SA
3
+ * @version v3.5.1
4
+ * @date 2022-01-12
5
+ * @copyright Copyright 2022 Passbolt SA
6
6
  * @source https://github.com/passbolt/passbolt_styleguide
7
7
  * @license AGPL-3.0
8
8
  */
9
- /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}div{outline:0}html body .hidden{display:none}.visually-hidden,.visuallyhidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.visually-hidden .focusable:active,.visually-hidden .focusable:focus,.visuallyhidden .focusable:active,.visuallyhidden .focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.clearfix:after,.clearfix:before{content:"";display:table}.clearfix:after{clear:both}.rounded{-webkit-border-radius:0.3rem;-moz-border-radius:.3rem;border-radius:.3rem}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-ms-text-overflow:ellipsis}.rotate-right{transform:rotate(-90deg)}html{line-height:normal}body{color:#333;background:#fff}body.iframe{background:0 0}@font-face{font-family:'Open Sans';font-style:normal;font-weight:400;src:local('Open Sans'),local('OpenSans'),url('../../../fonts/opensans-regular.woff') format('woff')}@font-face{font-family:'Open Sans';font-style:normal;font-weight:700;src:local('Open Sans Bold'),local('OpenSans-Bold'),url('../../../fonts/opensans-bold.woff') format('woff')}body{font-family:'Open Sans',Verdana,sans-serif}.code{font-family:'Courier New',Courier,monospace}html{font-size:62.5%}body{font-size:1.6rem}h1{font-size:2.2rem;line-height:3.2rem}h2{font-size:1.8rem;line-height:2.4rem}h3{font-size:1.6rem;line-height:2.4rem;border-bottom:1px dotted #ddd}p{font-size:1.5rem;line-height:2.2rem;margin-top:0}code{font-size:1.1rem}.font-dim{color:#666}a{outline:0;text-decoration:none;cursor:pointer;border-bottom:1px solid #ddd}a:link,a:visited{color:#333}a:hover{text-decoration:none;cursor:pointer;color:#2894df;border-bottom:1px solid #2894df}a:active,a:focus{outline:0;color:#2894df;border:0}a.no-border,a:hover.no-border{border-bottom:0}a.disabled{outline:0;text-decoration:none;cursor:default;color:#888;pointer-events:none}ul{padding:0;margin:0}ul li{list-style:none;padding:0;margin:0}.button,button{font-size:1.4rem;padding:.8rem 1.6rem;line-height:1.6rem;margin-right:.8rem;position:relative;display:inline-block;vertical-align:baseline;outline:0;cursor:pointer;text-align:center;text-decoration:none;border-top:1px solid #ccc;border-right:1px solid #ccc;border-bottom:1px solid #ccc;border-left:1px solid #ccc;color:#333;font-weight:400;text-shadow:1px 1px 0 rgba(255,255,255,.5);background:#f3f3f3;-webkit-border-radius:0.3rem;-moz-border-radius:.3rem;border-radius:.3rem;box-sizing:border-box}.button.medium{font-size:1.6rem;line-height:2.4rem;padding:.8rem 2.4rem}.button.big{font-size:1.8rem;line-height:3.2rem;padding:.8rem 3.2rem}.button.full-width{width:100%}.button.primary{background:#2894df;border:1px solid #2894df;color:#fff;text-shadow:1px 1px 0 rgba(0,0,0,.2)}.button.primary:hover{background:#2a9ceb;border:1px solid #2a9ceb;color:#fff}.button.primary:active,.button.primary:focus{color:#fff;border:1px solid #4271b7;background:#2a9ceb}.button.warning,.button.warning:active,.button.warning:focus,.button.warning:hover{color:#fff;background:#d40101;border:1px solid #d40101;text-shadow:none}.button.warning:active,.button.warning:focus{border:1px solid #92000c}.button.cancel,.button.cancel:active,.button.cancel:focus,.button.cancel:hover,.button.dim,.button.dim:active,.button.dim:focus,.button.dim:hover{background:#fff;font-weight:400}.button:hover{color:#333;text-decoration:none;background:#eee;border:1px solid #bbb}.button:focus{color:#2894df;border:1px solid #2894df}.button:active{color:#2894df;border:1px solid #2894df;background:#eee;position:relative;box-shadow:inset 0 1px 2px rgba(0,0,0,.2)}.button.disabled{cursor:default;color:#888;background:#fff;border:1px solid #ddd;text-shadow:none;font-weight:400}.button.disabled:active,.button.disabled:focus,.button.disabled:hover{box-shadow:0 0 0;top:0;color:#888;background:#fff;border:1px solid #ddd}.button.processing{background:#fff;border:1px solid #fff}.button.processing:after{width:100%;height:100%;position:absolute;content:" ";top:-1px;left:-1px;background:#fff url('../../../img/controls/loading_light.svg') center center no-repeat;background-size:auto 50%;border:1px solid #ddd;-webkit-border-radius:0.3rem;-moz-border-radius:.3rem;border-radius:.3rem}input[type=submit].button.processing{font-size:0;background:#fff url('../../../img/controls/loading_light.svg') center center no-repeat;background-size:auto 50%;border:1px solid #ddd;border-radius:5px}.button-toggle.selected{background:#eee;box-shadow:inset 0 1px 2px rgba(0,0,0,.2);border:1px solid #bbb}.button-group{display:flex;flex-wrap:wrap;justify-content:flex-start}.button-group--nowrap>.button{white-space:nowrap}.button-group>*{flex-grow:1;margin-bottom:.5em}label{font-weight:700;font-size:1.6rem;line-height:2.4rem;padding:.8rem 0;display:block}.required label:after{content:" \002A";color:#d40101;font-weight:700}.input.error label{color:#d40101}input[type=email],input[type=number],input[type=password],input[type=search],input[type=text],textarea{box-sizing:border-box;font-size:1.6rem;line-height:2.4rem;color:#333;background:#fff;width:100%;max-width:64rem;padding:.6rem 1.2rem;display:inline-block;margin-bottom:.8rem;border:1px solid #ccc;border-top:1px solid #bbb;vertical-align:middle}::-ms-reveal{display:none}input[type=number]{box-sizing:border-box}input[type=file]{box-sizing:border-box;font-size:1.6rem;line-height:2.4rem;color:#333;background:#fff;width:100%;max-width:64rem;display:inline-block;margin-bottom:.8rem;vertical-align:middle}input[type=email]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,textarea:hover{border:1px solid #bbb}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,textarea:focus{outline:0;box-shadow:inset 1px 1px 2px rgba(0,0,0,.2);border:1px solid #2894df}input[type=email]:disabled,input[type=number]:disabled,input[type=password]:disabled,input[type=search]:disabled,input[type=text]:disabled,textarea:disabled{color:#333;border:1px solid #ddd;box-shadow:0 0;cursor:default;background:#f3f3f3}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{opacity:1}textarea{height:9rem}.textarea.large textarea{width:30rem;height:9rem}.checkbox input[type=checkbox]{position:absolute;opacity:0;cursor:pointer}.checkbox input[type=checkbox].error{color:#d40101}.checkbox input[type=checkbox]+label{font-weight:400;position:relative;cursor:pointer;padding:0;margin-bottom:.8rem}.checkbox input[type=checkbox]+label:before{content:'';margin-top:.4rem;margin-right:1rem;display:inline-block;vertical-align:text-top;width:1.4rem;height:1.4rem;background:#fff;border:1px solid #ddd;border-radius:.3rem;box-sizing:border-box}.checkbox input[type=checkbox]:hover+label:before{box-shadow:0 .1rem 0 #ddd,inset 0 .1rem 0 rgba(255,255,255,.25)}.checkbox input[type=checkbox]:focus+label:before{box-shadow:0 0 .4rem #2a9ceb;border:1px solid #2a9ceb}.checkbox input[type=checkbox]:active+label:before{box-shadow:inset 0 -.1rem 0 rgba(255,255,255,.25),inset 0 .1rem 0 #ddd}.checkbox input[type=checkbox]:disabled+label{color:#ddd;cursor:auto}.checkbox input[type=checkbox]:disabled+label:before{box-shadow:none;background:#ccc;border:none}.checkbox input[type=checkbox]:checked+label:after{content:'';position:absolute;left:.2rem;top:.75rem;width:1rem;height:1rem;background-size:1rem 1rem;background-image:url('../../../img/controls/check_black.svg');-webkit-mask-image:url('../../../img/controls/check_black.svg');mask-image:url('../../../img/controls/check_black.svg')}.checkbox input[type=checkbox]:disabled+label:after{background:#969696}.checkbox.medium input[type=checkbox]{cursor:pointer}.checkbox.medium input[type=checkbox]+label{font-size:1.5rem}.checkbox.medium input[type=checkbox]+label:before{margin-top:.3rem;margin-right:1rem;width:1.4rem;height:1.4rem}.checkbox.medium input[type=checkbox]:checked+label:after{left:.2rem;top:.7rem;width:1rem;height:1rem;background-size:1rem 1rem}.checkbox.small input[type=checkbox]{cursor:pointer}.checkbox.small input[type=checkbox]+label{font-size:1.4rem}.checkbox.small input[type=checkbox]+label:before{margin-top:.3rem;margin-right:1rem;width:1.4rem;height:1.4rem}.checkbox.small input[type=checkbox]:checked+label:after{left:.2rem;top:.7rem;width:1rem;height:1rem;background-size:1rem 1rem}.radiolist{margin-bottom:.8rem}.radiolist:after,.radiolist:before{content:"";display:table}.radiolist:after{clear:both}.radiolist:after,.radiolist:before{content:"";display:table}.radiolist:after{clear:both}.radiolist .input.radio{float:left}.radiolist .input.radio input{float:left;margin-top:.8rem}.radiolist .input.radio input+label{float:left;font-weight:400;display:inline-block;margin-left:1rem;font-size:1.6rem;margin-right:3.2rem;line-height:1.4rem}.radiolist .input.radio input+label:after{content:initial}.input.toggle-switch{display:flex;padding-top:1.6rem;padding-bottom:.8rem}.input.toggle-switch label{padding-top:0;padding-left:1.6rem;order:2;flex:1;font-weight:400;font-size:1.6rem}.input.toggle-switch.disabled label{color:#969696}.input.toggle-switch .toggle-switch-checkbox{order:-1;flex:0 0 3em;display:none}.input.toggle-switch .toggle-switch-checkbox,.input.toggle-switch .toggle-switch-checkbox *,.input.toggle-switch .toggle-switch-checkbox :after,.input.toggle-switch .toggle-switch-checkbox :before,.input.toggle-switch .toggle-switch-checkbox+.toggle-switch-button,.input.toggle-switch .toggle-switch-checkbox:after,.input.toggle-switch .toggle-switch-checkbox:before{box-sizing:border-box}.input.toggle-switch .toggle-switch-checkbox ::selection,.input.toggle-switch .toggle-switch-checkbox :after::selection,.input.toggle-switch .toggle-switch-checkbox :before::selection,.input.toggle-switch .toggle-switch-checkbox+.toggle-switch-button::selection,.input.toggle-switch .toggle-switch-checkbox::selection,.input.toggle-switch .toggle-switch-checkbox:after::selection,.input.toggle-switch .toggle-switch-checkbox:before::selection{background:0 0}.input.toggle-switch .toggle-switch-button{order:-1;flex:none;outline:0;display:block;width:3em;height:1.5em;position:relative;cursor:pointer;user-select:none;background:#f3f3f3;border-radius:2em;padding:2px;transition:all .4s ease;border:1px solid #ddd}.input.toggle-switch .toggle-switch-button span{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.input.toggle-switch .toggle-switch-button span .focusable:active,.input.toggle-switch .toggle-switch-button span .focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.input.toggle-switch .toggle-switch-button span .focusable:active,.input.toggle-switch .toggle-switch-button span .focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.input.toggle-switch .toggle-switch-button:hover:after{will-change:padding}.input.toggle-switch .toggle-switch-button:active{box-shadow:inset 0 0 0 2em #e8eae9}.input.toggle-switch .toggle-switch-button:active:after{padding-right:.8em}.input.toggle-switch .toggle-switch-button:after,.input.toggle-switch .toggle-switch-button:before{position:relative;display:block;content:"";width:50%;height:100%}.input.toggle-switch .toggle-switch-button:after{left:0;border-radius:2em;background:#fff;transition:left .3s cubic-bezier(.175, .885, .32, 1.275),padding .3s ease,margin .3s ease;box-shadow:0 0 0 1px rgba(0,0,0,.1),0 4px 0 rgba(0,0,0,.08)}.input.toggle-switch .toggle-switch-button:before{display:none}.input.toggle-switch .toggle-switch-checkbox:checked+.toggle-switch-button:after{left:50%}.input.toggle-switch .toggle-switch-checkbox:disabled+.toggle-switch-button{background:#fff;cursor:not-allowed}.input.toggle-switch .toggle-switch-checkbox:checked+.toggle-switch-button{background:#6c0}.input.toggle-switch .toggle-switch-checkbox:checked+.toggle-switch-button:active{box-shadow:none}.input.toggle-switch .toggle-switch-checkbox:checked+.toggle-switch-button:active:after{margin-left:-.8em}.input.toggle-switch .toggle-switch-checkbox:disabled:checked+.toggle-switch-button{background:#e6ffcc}h1 .input.toggle-switch,h2 .input.toggle-switch,h3 .input.toggle-switch,h4 .input.toggle-switch,h5 .input.toggle-switch,h6 .input.toggle-switch{float:left;padding:.4em 1em 0 0}.input.select select{display:inline-block;font-size:1.6rem;line-height:2.4rem;color:#333;padding:.6rem 1.2rem;width:100%;max-width:64rem;box-sizing:border-box;margin:0 0 .8rem 0;border:1px solid #ccc;-moz-appearance:none;-webkit-appearance:none;appearance:none;background-color:#fff;background-image:url('../../../img/controls/chevron-down_black.svg'),linear-gradient(to bottom,#fff 0,#fff 100%);background-repeat:no-repeat,repeat;background-position:right .6rem top 50%,0 0;background-size:1rem auto,100%}.input.select select.medium{width:50%}.input.select select:focus{outline:0;border:1px solid #2894df;border-radius:0;background-image:url('../../../img/controls/chevron-down_blue.svg'),linear-gradient(to bottom,#fff 0,#fff 100%)}.input.select select:disabled{background-image:url('../../../img/controls/chevron-down_black.svg'),linear-gradient(to bottom,#f3f3f3 0,#f3f3f3 100%);color:#888}.input .error-message{padding:0;font-size:1.4rem;margin-top:.2rem;margin-bottom:1.6rem;background-color:transparent;border:0;font-weight:400;color:#d40101;background:#fff;clear:both}.input .help-message{padding:0;font-size:1.4rem;margin-top:.2rem;margin-bottom:1.6rem;background-color:transparent;border:0;color:#888;font-weight:400;background:#fff;clear:both}.singleline{display:flex;max-width:64rem}.singleline:after,.singleline:before{content:"";display:table}.singleline:after{clear:both}.singleline:after,.singleline:before{content:"";display:table}.singleline:after{clear:both}.singleline .input{flex:1}.singleline .input.first-field,.singleline .input:first-child{margin-right:2%}.slider{display:flex;align-items:center}.slider input[type=range]{-webkit-appearance:none;width:100%;height:1px;border-radius:5px;background:#ddd;outline:0;opacity:.7;-webkit-transition:.2s;transition:opacity .2s;flex-grow:1}.slider input[type=range]:hover{opacity:1}.slider input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:15px;height:15px;border-radius:50%;border-width:1px;border-style:solid;border-color:#969696;background:#ddd;cursor:pointer}.slider input[type=range]::-moz-range-thumb{width:15px;height:15px;border-radius:50%;background:#ddd;cursor:pointer}.slider input[type=number]{width:6.5rem;margin-left:1.6rem;padding:.8rem}.svg-icon{display:inline-flex;align-self:center}.svg-icon svg{fill:#333;height:1em;width:1em}.svg-icon.baseline svg{top:.125em;position:relative}.svg-icon.dim svg,.svg-icon.light svg{fill:#888888}.svg-icon.icon-only svg{padding:.1rem;height:1.6rem;width:1.6rem}a:hover .svg-icon svg{fill:#2894DF}a.disabled .svg-icon svg{fill:#888888;pointer-events:none;cursor:default}a.disabled:hover .svg-icon svg{fill:#888888}a.fav .svg-icon svg{fill:#D40101}a.unfav .svg-icon svg{fill:#DDD}.button .svg-icon svg{top:.2rem;position:relative}.button .svg-icon+span:not(.visuallyhidden){margin-left:.8rem;display:inline-block}.button .svg-icon svg:hover,.button:hover .svg-icon svg{fill:#333}.button.primary:active .svg-icon svg,.button.primary:focus .svg-icon svg,.button.warning .svg-icon svg,.button.warning:active .svg-icon svg,.button.warning:focus .svg-icon svg,.button.warning:hover .svg-icon svg{fill:#FFF}.button:active .svg-icon svg,.button:focus .svg-icon svg{fill:#2894DF}.button.disabled .svg-icon svg{fill:#888888}.button.disabled .svg-icon svg:hover{fill:#888888}@keyframes drawCircle{0%{stroke-dashoffset:180px}100%{stroke-dashoffset:0}}@keyframes drawCheck{0%{stroke-dashoffset:50px}100%{stroke-dashoffset:0}}@keyframes drawCross{0%{stroke-dashoffset:50px}100%{stroke-dashoffset:0}}@keyframes drawWarning{0%{stroke-dashoffset:230px}100%{stroke-dashoffset:0}}.icon-feedback .success-animation-circle{stroke-dasharray:180px 180px;stroke:#009900}.icon-feedback .success-animation-line{stroke-dasharray:50px 50px;stroke:#009900}.icon-feedback .success-animation-line2{stroke-dasharray:50px 50px;stroke:#009900}.icon-feedback .error-animation-circle{stroke-dasharray:180px 180px;stroke:#D40101}.icon-feedback .error-animation-line{stroke-dasharray:50px 50px;stroke:#D40101}.icon-feedback .warning-animation-line{stroke-dasharray:230px 230px;stroke:#9F6000;stroke-linecap:round;stroke-linejoin:round}.icon-feedback .warning-animation-circle{fill:#9F6000}.icon-feedback .animated{animation:.75s ease-out 0s 1 both pop}.icon-feedback .animated .error-animation-circle,.icon-feedback .animated .success-animation-circle,.icon-feedback .animated .warning-animation-circle{animation:.75s cubic-bezier(.77,0,.175,1) 0s 1 both drawCircle}.icon-feedback .animated .success-animation-line{animation:.75s cubic-bezier(.77,0,.175,1) 0s 1 both drawCheck}.icon-feedback .animated .error-animation-line{animation:.75s cubic-bezier(.77,0,.175,1) 0s 1 both drawCross}.icon-feedback .animated .warning-animation-line{animation:.75s cubic-bezier(.77,0,.175,1) 0s 1 both drawWarning}table{border-collapse:collapse;border-spacing:0}table td,table th{text-align:left;font-weight:400}.logo{background:transparent url('../../../img/logo/logo.svg') 0 0 no-repeat;background-size:20rem auto;width:20rem;height:4.5rem}.scroll{overflow-y:scroll;background:linear-gradient(#fff 30%,rgba(255,255,255,0)),linear-gradient(rgba(255,255,255,0),#fff 70%) 0 100%,radial-gradient(farthest-side at 75% 0,rgba(0,0,0,.2),rgba(0,0,0,0)),radial-gradient(farthest-side at 75% 100%,rgba(0,0,0,.2),rgba(0,0,0,0)) 0 100%;background-repeat:no-repeat;background-color:#fff;background-size:100% 10px,100% 10px,100% 5px,100% 5px}::-webkit-scrollbar{width:1em}::-webkit-scrollbar-track{background:#f9f9f9;border-top:0;border-bottom:0}::-webkit-scrollbar-thumb{background:#c1c1c1;border-radius:1em;border:4px solid #f9f9f9}.scroll-shadow{overflow:auto;background:linear-gradient(#fff 30%,rgba(255,255,255,0)),linear-gradient(rgba(255,255,255,0),#fff 70%) 0 100%,radial-gradient(farthest-side at 50% 0,rgba(0,0,0,.08),rgba(0,0,0,0)),radial-gradient(farthest-side at 50% 100%,rgba(0,0,0,.08),rgba(0,0,0,0)) 0 100%;background-repeat:no-repeat;background-color:#fff;background-size:100% 40px,100% 40px,100% 14px,100% 14px;background-attachment:local,local,scroll,scroll}.simplebar-content{overflow:auto;background:linear-gradient(#fff 30%,rgba(255,255,255,0)),linear-gradient(rgba(255,255,255,0),#fff 70%) 0 100%,radial-gradient(farthest-side at 50% 0,rgba(0,0,0,.08),rgba(0,0,0,0)),radial-gradient(farthest-side at 50% 100%,rgba(0,0,0,.08),rgba(0,0,0,0)) 0 100%;background-repeat:no-repeat;background-color:#fff;background-size:100% 40px,100% 40px,100% 14px,100% 14px;background-attachment:local,local,scroll,scroll}[data-simplebar]{position:relative;flex-direction:column;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start;width:inherit;height:inherit;max-width:inherit;max-height:inherit}.simplebar-wrapper{overflow:hidden;width:inherit;height:inherit;max-width:inherit;max-height:inherit}.simplebar-mask{direction:inherit;position:absolute;overflow:hidden;padding:0;margin:0;left:0;top:0;bottom:0;right:0;width:auto!important;height:auto!important;z-index:0}.simplebar-offset{direction:inherit!important;box-sizing:inherit!important;resize:none!important;position:absolute;top:0;left:0;bottom:0;right:0;padding:0;margin:0;-webkit-overflow-scrolling:touch}.simplebar-content-wrapper{direction:inherit;box-sizing:border-box!important;position:relative;display:block;height:100%;width:auto;max-width:100%;max-height:100%;scrollbar-width:none;-ms-overflow-style:none}.simplebar-content-wrapper::-webkit-scrollbar,.simplebar-hide-scrollbar::-webkit-scrollbar{width:0;height:0}.simplebar-content:after,.simplebar-content:before{content:' ';display:table}.simplebar-placeholder{max-height:100%;max-width:100%;width:100%;pointer-events:none}.simplebar-height-auto-observer-wrapper{box-sizing:inherit!important;height:100%;width:inherit;max-width:1px;position:relative;float:left;max-height:1px;overflow:hidden;z-index:-1;padding:0;margin:0;pointer-events:none;flex-grow:inherit;flex-shrink:0;flex-basis:0}.simplebar-height-auto-observer{box-sizing:inherit;display:block;opacity:0;position:absolute;top:0;left:0;height:1000%;width:1000%;min-height:1px;min-width:1px;overflow:hidden;pointer-events:none;z-index:-1}.simplebar-track{z-index:1;position:absolute;right:0;bottom:0;pointer-events:none;overflow:hidden}[data-simplebar].simplebar-dragging .simplebar-content{pointer-events:none;user-select:none;-webkit-user-select:none}[data-simplebar].simplebar-dragging .simplebar-track{pointer-events:all}.simplebar-scrollbar{position:absolute;right:2px;width:7px;min-height:10px}.simplebar-scrollbar:before{position:absolute;content:'';background:#000;border-radius:7px;left:0;right:0;opacity:0;transition:opacity .2s linear}.simplebar-scrollbar.simplebar-visible:before{opacity:.5;transition:opacity 0s linear}.simplebar-track.simplebar-vertical{top:0;width:11px}.simplebar-track.simplebar-vertical .simplebar-scrollbar:before{top:2px;bottom:2px}.simplebar-track.simplebar-horizontal{left:0;height:11px}.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before{height:100%;left:2px;right:2px}.simplebar-track.simplebar-horizontal .simplebar-scrollbar{right:auto;left:0;top:2px;height:7px;min-height:0;min-width:10px;width:auto}[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical{right:auto;left:0}.hs-dummy-scrollbar-size{direction:rtl;position:fixed;opacity:0;visibility:hidden;height:500px;width:500px;overflow-y:hidden;overflow-x:scroll}.simplebar-hide-scrollbar{position:fixed;left:0;visibility:hidden;overflow-y:scroll;scrollbar-width:none;-ms-overflow-style:none}.shimmer{display:block;position:relative;width:100%;height:100%;content:'';animation:shimmer 2s infinite;background:linear-gradient(45deg,rgba(255,255,255,0) 0,rgba(255,255,255,.1) 30%,rgba(255,255,255,.5) 50%,rgba(255,255,255,0))}@keyframes shimmer{0%{background-position:0 0}100%{background-position:1000px 0}}html{scroll-behavior:smooth}.animated{-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}@keyframes fadeOutUp{from{opacity:1}to{opacity:0;transform:translate3d(0,-100%,0)}}@keyframes fadeInDown{from{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:none}}@keyframes pop{0%{opacity:0;transform:scale(1)}55%{opacity:1;transform:scale(1)}65%{opacity:1;transform:scale(1.25)}75%{opacity:1;transform:scale(1)}100%{opacity:1;transform:scale(1)}}.fadeInDown{animation-name:fadeInDown}.fadeOutUp{animation-name:fadeOutUp}.fadeInUp{animation-name:fadeInUp}.pop{animation-name:pop}.page{width:100%;min-width:32rem;top:0;left:0;right:0;bottom:0;position:absolute;overflow:auto}.page .panel{height:100%;width:100%;position:absolute;overflow:auto}.page .panel.main{bottom:3.8rem;height:auto;padding:0}.page .panel.main .grid{padding-bottom:1.6rem}.page .panel.main .row{padding-left:0}.page .panel.main .panel.left{background:#fff}.page .header.second+.panel.main{top:6.875em}.page .header.third+.panel.main{top:10em;border-top:1px solid #ddd}.page .header{width:100%;overflow:hidden}.page .header.first{min-height:3.2rem}.page .header.second{height:7rem}.page .header.third{height:4.8rem}.page .col1,.page .col2,.page .col2_3,.page .col3{position:absolute}.page .col1,.page .panel.left{width:17.25%;box-sizing:border-box}.page .panel.middle{width:82%;left:18%;overflow:hidden}.page .panel.middle.scroll{overflow-y:scroll}.page .col2{width:70%;left:18%}.page .col3,.page .panel.right{width:24%;left:75%}.page .col2_3{width:81.5%;left:18%}.page .panel.main .grid-responsive-12{float:left;width:100%;max-width:none;padding-left:.25em;box-sizing:border-box}@media all and (max-width:1024px){.page .panel.left{display:none}.page .header.second .col2{display:none}.page .header.second .col2_3{display:none}.page .header.third{height:4.5em}.page .header.third .col1,.page .header.third .col2,.page .header.third .col2_3{position:relative;float:left;left:auto;width:auto}.page .header.third .col3{display:none}.page .panel.main .panel.left{display:none}.page .panel.main .panel.middle{width:100%;left:0}.page .panel.main .row{padding-left:.5em}.page .panel.main .panel.aside{min-width:auto}}.grid,.grid-responsive-12{margin:0 auto;padding:0;max-width:1220px}.grid .row,.grid-responsive-12 .row{padding:0 .5em 0 .5em}.grid .row:after,.grid .row:before,.grid-responsive-12 .row:after,.grid-responsive-12 .row:before{content:"";display:table}.grid .row:after,.grid-responsive-12 .row:after{clear:both}.grid .row:after,.grid .row:before,.grid-responsive-12 .row:after,.grid-responsive-12 .row:before{content:"";display:table}.grid .row:after,.grid-responsive-12 .row:after{clear:both}.grid .row .col1,.grid .row .col10,.grid .row .col11,.grid .row .col12,.grid .row .col2,.grid .row .col3,.grid .row .col4,.grid .row .col5,.grid .row .col6,.grid .row .col7,.grid .row .col8,.grid .row .col9,.grid-responsive-12 .row .col1,.grid-responsive-12 .row .col10,.grid-responsive-12 .row .col11,.grid-responsive-12 .row .col12,.grid-responsive-12 .row .col2,.grid-responsive-12 .row .col3,.grid-responsive-12 .row .col4,.grid-responsive-12 .row .col5,.grid-responsive-12 .row .col6,.grid-responsive-12 .row .col7,.grid-responsive-12 .row .col8,.grid-responsive-12 .row .col9{position:relative;left:auto;float:none;width:99%;box-sizing:border-box}.grid .row .col10:after,.grid .row .col10:before,.grid .row .col11:after,.grid .row .col11:before,.grid .row .col12:after,.grid .row .col12:before,.grid .row .col1:after,.grid .row .col1:before,.grid .row .col2:after,.grid .row .col2:before,.grid .row .col3:after,.grid .row .col3:before,.grid .row .col4:after,.grid .row .col4:before,.grid .row .col5:after,.grid .row .col5:before,.grid .row .col6:after,.grid .row .col6:before,.grid .row .col7:after,.grid .row .col7:before,.grid .row .col8:after,.grid .row .col8:before,.grid .row .col9:after,.grid .row .col9:before,.grid-responsive-12 .row .col10:after,.grid-responsive-12 .row .col10:before,.grid-responsive-12 .row .col11:after,.grid-responsive-12 .row .col11:before,.grid-responsive-12 .row .col12:after,.grid-responsive-12 .row .col12:before,.grid-responsive-12 .row .col1:after,.grid-responsive-12 .row .col1:before,.grid-responsive-12 .row .col2:after,.grid-responsive-12 .row .col2:before,.grid-responsive-12 .row .col3:after,.grid-responsive-12 .row .col3:before,.grid-responsive-12 .row .col4:after,.grid-responsive-12 .row .col4:before,.grid-responsive-12 .row .col5:after,.grid-responsive-12 .row .col5:before,.grid-responsive-12 .row .col6:after,.grid-responsive-12 .row .col6:before,.grid-responsive-12 .row .col7:after,.grid-responsive-12 .row .col7:before,.grid-responsive-12 .row .col8:after,.grid-responsive-12 .row .col8:before,.grid-responsive-12 .row .col9:after,.grid-responsive-12 .row .col9:before{content:"";display:table}.grid .row .col10:after,.grid .row .col11:after,.grid .row .col12:after,.grid .row .col1:after,.grid .row .col2:after,.grid .row .col3:after,.grid .row .col4:after,.grid .row .col5:after,.grid .row .col6:after,.grid .row .col7:after,.grid .row .col8:after,.grid .row .col9:after,.grid-responsive-12 .row .col10:after,.grid-responsive-12 .row .col11:after,.grid-responsive-12 .row .col12:after,.grid-responsive-12 .row .col1:after,.grid-responsive-12 .row .col2:after,.grid-responsive-12 .row .col3:after,.grid-responsive-12 .row .col4:after,.grid-responsive-12 .row .col5:after,.grid-responsive-12 .row .col6:after,.grid-responsive-12 .row .col7:after,.grid-responsive-12 .row .col8:after,.grid-responsive-12 .row .col9:after{clear:both}.grid .row .col10:after,.grid .row .col10:before,.grid .row .col11:after,.grid .row .col11:before,.grid .row .col12:after,.grid .row .col12:before,.grid .row .col1:after,.grid .row .col1:before,.grid .row .col2:after,.grid .row .col2:before,.grid .row .col3:after,.grid .row .col3:before,.grid .row .col4:after,.grid .row .col4:before,.grid .row .col5:after,.grid .row .col5:before,.grid .row .col6:after,.grid .row .col6:before,.grid .row .col7:after,.grid .row .col7:before,.grid .row .col8:after,.grid .row .col8:before,.grid .row .col9:after,.grid .row .col9:before,.grid-responsive-12 .row .col10:after,.grid-responsive-12 .row .col10:before,.grid-responsive-12 .row .col11:after,.grid-responsive-12 .row .col11:before,.grid-responsive-12 .row .col12:after,.grid-responsive-12 .row .col12:before,.grid-responsive-12 .row .col1:after,.grid-responsive-12 .row .col1:before,.grid-responsive-12 .row .col2:after,.grid-responsive-12 .row .col2:before,.grid-responsive-12 .row .col3:after,.grid-responsive-12 .row .col3:before,.grid-responsive-12 .row .col4:after,.grid-responsive-12 .row .col4:before,.grid-responsive-12 .row .col5:after,.grid-responsive-12 .row .col5:before,.grid-responsive-12 .row .col6:after,.grid-responsive-12 .row .col6:before,.grid-responsive-12 .row .col7:after,.grid-responsive-12 .row .col7:before,.grid-responsive-12 .row .col8:after,.grid-responsive-12 .row .col8:before,.grid-responsive-12 .row .col9:after,.grid-responsive-12 .row .col9:before{content:"";display:table}.grid .row .col10:after,.grid .row .col11:after,.grid .row .col12:after,.grid .row .col1:after,.grid .row .col2:after,.grid .row .col3:after,.grid .row .col4:after,.grid .row .col5:after,.grid .row .col6:after,.grid .row .col7:after,.grid .row .col8:after,.grid .row .col9:after,.grid-responsive-12 .row .col10:after,.grid-responsive-12 .row .col11:after,.grid-responsive-12 .row .col12:after,.grid-responsive-12 .row .col1:after,.grid-responsive-12 .row .col2:after,.grid-responsive-12 .row .col3:after,.grid-responsive-12 .row .col4:after,.grid-responsive-12 .row .col5:after,.grid-responsive-12 .row .col6:after,.grid-responsive-12 .row .col7:after,.grid-responsive-12 .row .col8:after,.grid-responsive-12 .row .col9:after{clear:both}.grid .row .col1 img,.grid .row .col10 img,.grid .row .col11 img,.grid .row .col12 img,.grid .row .col2 img,.grid .row .col3 img,.grid .row .col4 img,.grid .row .col5 img,.grid .row .col6 img,.grid .row .col7 img,.grid .row .col8 img,.grid .row .col9 img,.grid-responsive-12 .row .col1 img,.grid-responsive-12 .row .col10 img,.grid-responsive-12 .row .col11 img,.grid-responsive-12 .row .col12 img,.grid-responsive-12 .row .col2 img,.grid-responsive-12 .row .col3 img,.grid-responsive-12 .row .col4 img,.grid-responsive-12 .row .col5 img,.grid-responsive-12 .row .col6 img,.grid-responsive-12 .row .col7 img,.grid-responsive-12 .row .col8 img,.grid-responsive-12 .row .col9 img{width:100%;height:auto;display:block}@media all and (min-width:780px){.grid .row{padding:0 .5em 0 .5em}.grid .row .col1,.grid .row .col10,.grid .row .col11,.grid .row .col12,.grid .row .col2,.grid .row .col3,.grid .row .col4,.grid .row .col5,.grid .row .col6,.grid .row .col7,.grid .row .col8,.grid .row .col9{float:left;position:relative;margin:0 3% 0 0}.grid .row .last{margin-right:0}.grid .row .col1{width:5.5%}.grid .row .col2{width:14%}.grid .row .col3{width:22.5%}.grid .row .col4{width:31%}.grid .row .col5{width:39.5%}.grid .row .col6{width:48%}.grid .row .col7{width:56.5%}.grid .row .col8{width:65%}.grid .row .col9{width:73.5%}.grid .row .col10{width:82%}.grid .row .col11{width:90.5%}.grid .row .col12{width:99%;margin:0}.grid .row .push1{margin-left:5.5%}.grid .row .push2{margin-left:14%}.grid .row .push3{margin-left:22.5%}.grid .row .push4{margin-left:31%}}@media all and (max-width:768px){.hidden-xs{display:none}}.quickaccess{background:#fff;box-sizing:border-box;width:38rem}.quickaccess:after,.quickaccess:before{content:"";display:table}.quickaccess:after{clear:both}.quickaccess:after,.quickaccess:before{content:"";display:table}.quickaccess:after{clear:both}.quickaccess h2{margin:0;font-size:1.5rem;font-weight:400;padding:.4rem 1.6rem;line-height:2rem}.quickaccess label{font-size:1.5rem;padding-top:.8rem;padding-bottom:.2rem;line-height:2rem}.quickaccess input[type=email],.quickaccess input[type=password],.quickaccess input[type=search],.quickaccess input[type=text],.quickaccess textarea{font-size:1.5rem;padding:.8rem .8rem;margin:.9rem 0 .4rem 0;height:3.6rem}.quickaccess .error-message{font-size:1.3rem;margin-bottom:.4rem;color:#d40101}.quickaccess .passphrase input[type=password]{box-sizing:border-box;width:calc(100% - 4.5rem)}.quickaccess .security-token{width:4.5rem;font-size:1.5rem;margin-top:-.2rem;padding:.4rem .8rem}.quickaccess .button.button-icon{position:relative;box-sizing:content-box;display:block;margin:0;padding:.8rem;width:1.6rem;height:1.6rem;line-height:2rem;float:right;background:0 0;border:0}.quickaccess .button.button-icon.button-toggle.selected{background:#eee}.quickaccess a:active svg path,.quickaccess a:focus svg path,.quickaccess a:hover svg path{fill:#2894DF}.quickaccess .back-link{background:#eee;line-height:2rem}.quickaccess .back-link:after,.quickaccess .back-link:before{content:"";display:table}.quickaccess .back-link:after{clear:both}.quickaccess .back-link:after,.quickaccess .back-link:before{content:"";display:table}.quickaccess .back-link:after{clear:both}.quickaccess .back-link .primary-action{display:block;border:0;float:left;width:28rem;padding:1.6rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-ms-text-overflow:ellipsis}.quickaccess .back-link .primary-action .primary-action-title{font-size:1.5rem}.quickaccess .back-link .primary-action .icon{float:left;margin-right:1rem}.quickaccess .back-link .primary-action svg{vertical-align:middle}.quickaccess .back-link .primary-action svg path{fill:#969696}.quickaccess .back-link .secondary-action{padding:1.6rem}.quickaccess .back-link .secondary-action .icon{float:right}.quickaccess .submit-wrapper{padding:1.6rem}.quickaccess .submit-wrapper:after,.quickaccess .submit-wrapper:before{content:"";display:table}.quickaccess .submit-wrapper:after{clear:both}.quickaccess .submit-wrapper:after,.quickaccess .submit-wrapper:before{content:"";display:table}.quickaccess .submit-wrapper:after{clear:both}.quickaccess .submit-wrapper .button.primary.big{line-height:2.3rem}.quickaccess .submit-wrapper .cancel{padding-right:3rem;border:none;color:#333}.quickaccess .submit-wrapper .cancel:hover{color:#2894df}.quickaccess .submit-wrapper.flex-row-end{display:flex;flex-direction:row;align-items:center;justify-content:flex-end}.quickaccess .processing-wrapper{background-color:#fff;text-align:center;margin:.8rem 3rem .8rem 1.6rem}.quickaccess .processing-wrapper .processing-text{position:relative;padding-left:1rem}.quickaccess .processing-wrapper .processing-text:before{width:100%;height:100%;position:absolute;content:" ";top:0;left:0;background:transparent url('../../../img/controls/loading_light.svg') left center no-repeat;background-size:auto 75%}.quickaccess .quickaccess-header{display:flex;align-items:center;flex-direction:row;margin:0}.quickaccess .quickaccess-header:after,.quickaccess .quickaccess-header:before{content:"";display:table}.quickaccess .quickaccess-header:after{clear:both}.quickaccess .quickaccess-header:after,.quickaccess .quickaccess-header:before{content:"";display:table}.quickaccess .quickaccess-header:after{clear:both}.quickaccess .quickaccess-header .logo{margin:1.6rem;background:transparent url('../../../img/logo/logo.svg') 0 0 no-repeat;background-size:10rem auto;width:10rem;height:1.75rem;flex:1 1 auto}.quickaccess .quickaccess-header .logo a{display:block;width:10rem;height:2.2rem;border:0}.quickaccess .quickaccess-header .option-link{padding:1.6rem}.quickaccess .fa.icon svg{width:1.6rem;height:1.6rem}.quickaccess .fa.icon svg path{fill:#888888}.quickaccess .index-list .list-container{max-height:30rem}.quickaccess .index-list .list-container:after,.quickaccess .index-list .list-container:before{content:"";display:table}.quickaccess .index-list .list-container:after{clear:both}.quickaccess .index-list .list-container:after,.quickaccess .index-list .list-container:before{content:"";display:table}.quickaccess .index-list .list-container:after{clear:both}.quickaccess .index-list .list-title{background:#ddd}.quickaccess .index-list .processing-text{position:relative;padding-left:2em}.quickaccess .index-list .processing-text:before{width:100%;height:100%;position:absolute;content:" ";top:0;left:0;background:transparent url('../../../img/controls/loading_light.svg') left center no-repeat;background-size:auto 75%}.quickaccess .index-list .empty-entry p{position:relative;margin:1.6rem;line-height:2rem}.quickaccess .index-list .suggested-resource-entry{display:flex;flex-direction:row}.quickaccess .index-list .suggested-resource-entry .resource-details{color:#333;padding:1.6rem;box-sizing:border-box;border-bottom:1px solid #eee;width:80%;flex:1 1 auto;font-size:1.5rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-ms-text-overflow:ellipsis}.quickaccess .index-list .suggested-resource-entry .resource-details:focus{color:#2894df}.quickaccess .index-list .suggested-resource-entry .resource-details:hover{color:#2894df;background-color:#eee}.quickaccess .index-list .suggested-resource-entry .resource-details .url{display:block;font-size:1.3rem;padding-top:.4rem;color:#666;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-ms-text-overflow:ellipsis}.quickaccess .index-list .suggested-resource-entry .chevron-right{background:0 0;box-sizing:border-box;border-bottom:1px solid #eee;width:4rem;flex:0 1 auto}.quickaccess .index-list .suggested-resource-entry .chevron-right::after{content:"";display:block;background:url('../../../img/controls/chevron-right_black.svg') center center no-repeat transparent;background-size:1.6rem 1.6rem;opacity:.1;height:100%;width:100%}.quickaccess .index-list .suggested-resource-entry .chevron-right:focus,.quickaccess .index-list .suggested-resource-entry .chevron-right:hover{background-color:#eee}.quickaccess .index-list .suggested-resource-entry .chevron-right:focus::after,.quickaccess .index-list .suggested-resource-entry .chevron-right:hover::after{opacity:.4}.quickaccess .index-list .browse-resource-entry a .inline-resource-entry{flex:1 1 auto;width:80%;font-size:1.5rem}.quickaccess .index-list .browse-resource-entry a .inline-resource-entry .inline-resource-name{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-ms-text-overflow:ellipsis}.quickaccess .index-list .browse-resource-entry a .inline-resource-entry .url{display:block;font-size:1.3rem;padding-top:.4rem;color:#666;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-ms-text-overflow:ellipsis}.quickaccess .index-list .browse-resource-entry a,.quickaccess .index-list .filter-entry a{color:#333;display:flex;align-items:center;border-bottom:1px solid #ddd;padding:1.6rem;position:relative;font-size:1.5rem}.quickaccess .index-list .browse-resource-entry a:after,.quickaccess .index-list .filter-entry a:after{background:transparent url('../../../img/controls/chevron-right_black.svg') center right no-repeat;background-size:1.6rem 1.6rem;width:4rem;height:2rem;content:"";opacity:.1}.quickaccess .index-list .browse-resource-entry a:hover,.quickaccess .index-list .filter-entry a:hover{color:#2894df;background-color:#eee}.quickaccess .index-list .browse-resource-entry a:hover:after,.quickaccess .index-list .filter-entry a:hover:after{opacity:.4}.quickaccess .index-list .browse-resource-entry .icon svg,.quickaccess .index-list .filter-entry .icon svg{float:left;margin-right:1.6rem}.quickaccess .index-list .browse-resource-entry .filter,.quickaccess .index-list .filter-entry .filter{flex:1 1 auto}.quickaccess .index-list .option-entry a{color:#333;display:block;border-bottom:1px solid #ddd;padding:1.4rem 2.8rem 1.4rem 1.8rem;position:relative}.quickaccess .index-list .option-entry a:hover{color:#2894df;background-color:#eee}.quickaccess .index-list .option-entry a:hover:after{opacity:.4}.quickaccess .index-list .option-entry .icon svg{float:left;margin-right:.8rem}.login-form .form-container{padding:0 1.6rem 1.6rem 1.6rem}.login-form .checkbox.small{padding-top:1.2rem}.login-form .checkbox.small label{padding-top:.2rem;margin:0}.login-form .password.with-token{display:flex;align-items:center}.login-form .password.with-token input[type=password],.login-form .password.with-token input[type=text]{width:100%}.login-form .password.with-token .password-view{width:3rem;margin:.5rem .8rem 0 -.1rem;height:2.2rem;border-radius:0;padding:.7rem .8rem .5rem 1rem;background:#fff;border:1px solid #ccc;border-left:0;border-top:1px solid #bbb}.login-form .password.with-token input:focus+.password-view{box-shadow:inset -1px 1px 1px rgba(0,0,0,.2);border:1px solid #2894df;border-left:0}.quickaccess .passphrase input[type=password]{box-sizing:border-box;width:calc(100% - 4.5rem)}.quickaccess .passphrase .form-container{padding:1.6rem 1.6rem .8rem 1.6rem}.quickaccess .passphrase .too-many-attempts-error{margin:.8rem 3rem .8rem 1.6rem}.quickaccess .passphrase .checkbox.small{padding-top:1.2rem}.quickaccess .security-token{width:4.5rem;font-size:1.5rem;margin-top:.5rem;padding:.5rem .4rem;text-align:center;display:inline-block;margin-left:-.1rem;border:1px solid #bbb;line-height:2.4rem;vertical-align:middle;box-sizing:border-box}.quickaccess .item-browse .properties .property:after,.quickaccess .item-browse .properties .property:before{content:"";display:table}.quickaccess .item-browse .properties .property:after{clear:both}.quickaccess .item-browse .properties .property:after,.quickaccess .item-browse .properties .property:before{content:"";display:table}.quickaccess .item-browse .properties .property:after{clear:both}.quickaccess .item-browse .properties .property a{display:block;border:0}.quickaccess .item-browse .properties .property .password-view{display:block;position:relative;box-sizing:content-box;margin:0 0 0 .5rem;padding:.1rem .3rem .1rem .3rem;background:0 0;border:0;float:left}.quickaccess .item-browse .properties .property .password-view.selected{background:#eee}.quickaccess .item-browse .properties .property-value{width:28rem;float:left;padding:0 1rem 1.6rem 1.6rem;font-size:1.5rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-ms-text-overflow:ellipsis}.quickaccess .item-browse .properties .property-value.empty{font-style:italic;color:#ddd}.quickaccess .item-browse .properties .property-name{font-size:1.3rem;color:#888;width:28rem;float:left;padding:1.6rem 1rem .4rem 1.6rem}.quickaccess .item-browse .properties .property-action{margin-top:1.6rem;padding:1.6rem}.quickaccess .item-browse .properties .property-action.disabled path{fill:#DDD}.quickaccess .item-browse .properties .secret{display:inline-block;height:.8rem;float:left;border:0;margin-left:1.6rem;margin-bottom:.9rem}.quickaccess .item-browse .properties .secret.secret-copy{width:10.5rem;background:transparent url('../../../img/controls/dot_black.svg') repeat-x left 3px}.quickaccess .item-browse .properties .secret.secret-copy:hover{background:transparent url('../../../img/controls/dot_red.svg') repeat-x left 3px}.quickaccess .item-browse .properties .secret.decrypted{max-width:28rem;width:inherit;margin-left:0;padding-right:0}.quickaccess .resource-create .form-container{padding:1.6rem}.quickaccess .resource-create .password:after,.quickaccess .resource-create .password:before{content:"";display:table}.quickaccess .resource-create .password:after{clear:both}.quickaccess .resource-create .password:after,.quickaccess .resource-create .password:before{content:"";display:table}.quickaccess .resource-create .password:after{clear:both}.quickaccess .resource-create .password .flex-row{display:flex;flex-direction:row}.quickaccess .resource-create .password .password-management{display:flex;flex-direction:column;flex:1 1 auto}.quickaccess .resource-create .password input{box-sizing:border-box}.quickaccess .resource-create .password .password-view{margin-top:.9rem;margin-left:-.1rem;height:2.2rem;border-radius:0;padding:.7rem .8rem .5rem 1rem;background:#fff;border:1px solid #ccc;border-left:0;border-top:1px solid #bbb}.quickaccess .resource-create .password .password-view svg{margin-top:.2rem}.quickaccess .resource-create .password input:focus+.password-view{box-shadow:inset -1px 1px 1px rgba(0,0,0,.2);border:1px solid #2894df;border-left:0}.quickaccess .resource-create .password .password-generate{margin-top:.9rem;margin-left:.8rem}.quickaccess .resource-create .password .password-strength .password-strength-label,.quickaccess .resource-create .password .password-strength .password-strength-value{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.quickaccess .resource-create .password .password-strength .password-strength-label .focusable:active,.quickaccess .resource-create .password .password-strength .password-strength-label .focusable:focus,.quickaccess .resource-create .password .password-strength .password-strength-value .focusable:active,.quickaccess .resource-create .password .password-strength .password-strength-value .focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.quickaccess .resource-create .password .password-strength .password-strength-bar{display:block;box-sizing:border-box;width:100%;height:.6rem;border:1px solid #ddd;margin-top:1rem}.quickaccess .resource-create .password .password-strength .password-strength-bar-value{height:.2rem;display:block;margin:.1rem}.quickaccess .resource-create .password .password-strength .password-strength-bar-value.very-weak{background:#000;width:5%}.quickaccess .resource-create .password .password-strength .password-strength-bar-value.weak{background:#d40101;width:10%}.quickaccess .resource-create .password .password-strength .password-strength-bar-value.fair{background:#ffbd2e;width:60%}.quickaccess .resource-create .password .password-strength .password-strength-bar-value.strong{background:#6c0;width:80%}.quickaccess .resource-create .password .password-strength .password-strength-bar-value.very-strong{background:#090;width:99.5%}.quickaccess .resource-auto-save .title{padding:0 1.8rem .8rem 1.8rem;margin:0}.quickaccess .resource-auto-save .form-container{padding:0 1.8rem .8rem 1.8rem}.quickaccess .resource-auto-save .password:after,.quickaccess .resource-auto-save .password:before{content:"";display:table}.quickaccess .resource-auto-save .password:after{clear:both}.quickaccess .resource-auto-save .password:after,.quickaccess .resource-auto-save .password:before{content:"";display:table}.quickaccess .resource-auto-save .password:after{clear:both}.quickaccess .resource-auto-save .password .flex-row{display:flex;flex-direction:row}.quickaccess .resource-auto-save .password .password-management{display:flex;flex-direction:column;flex:1 1 auto}.quickaccess .resource-auto-save .password input{box-sizing:border-box}.quickaccess .resource-auto-save .password .password-view{margin-top:.9rem;margin-left:-.1rem;height:2.2rem;border-radius:0;padding:.7rem .8rem .5rem 1rem;background:#fff;border:1px solid #ccc;border-left:0;border-top:1px solid #bbb}.quickaccess .resource-auto-save .password .password-view svg{margin-top:.2rem}.quickaccess .resource-auto-save .password input:focus+.password-view{box-shadow:inset -1px 1px 1px rgba(0,0,0,.2);border:1px solid #2894df;border-left:0}.quickaccess .resource-auto-save .password .password-strength .password-strength-label,.quickaccess .resource-auto-save .password .password-strength .password-strength-value{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.quickaccess .resource-auto-save .password .password-strength .password-strength-label .focusable:active,.quickaccess .resource-auto-save .password .password-strength .password-strength-label .focusable:focus,.quickaccess .resource-auto-save .password .password-strength .password-strength-value .focusable:active,.quickaccess .resource-auto-save .password .password-strength .password-strength-value .focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.quickaccess .resource-auto-save .password .password-strength .password-strength-bar{display:block;box-sizing:border-box;width:100%;height:.6rem;border:1px solid #ddd;margin-top:1rem}.quickaccess .resource-auto-save .password .password-strength .password-strength-bar-value{height:.2rem;display:block;margin:.1rem}.quickaccess .resource-auto-save .password .password-strength .password-strength-bar-value.very-weak{background:#000;width:5%}.quickaccess .resource-auto-save .password .password-strength .password-strength-bar-value.weak{background:#d40101;width:10%}.quickaccess .resource-auto-save .password .password-strength .password-strength-bar-value.fair{background:#ffbd2e;width:60%}.quickaccess .resource-auto-save .password .password-strength .password-strength-bar-value.strong{background:#6c0;width:80%}.quickaccess .resource-auto-save .password .password-strength .password-strength-bar-value.very-strong{background:#090;width:99.5%}.quickaccess .search{background:#f3f3f3;padding:1.6rem}.quickaccess .search:after,.quickaccess .search:before{content:"";display:table}.quickaccess .search:after{clear:both}.quickaccess .search:after,.quickaccess .search:before{content:"";display:table}.quickaccess .search:after{clear:both}.quickaccess .search .input.text input[type=text]{box-sizing:border-box;width:calc(100% - 4rem);float:left;border-right:0;padding-left:1.6rem;margin:0}.quickaccess .search .search-submit{height:2.2rem;border-radius:0;padding:.6rem .8rem .6rem 1.5rem;background:#fff;border:1px solid #ccc;border-left:0;border-top:1px solid #bbb}.quickaccess .search .search-submit svg{margin-top:.2rem}.quickaccess .search .input.text input[type=text]:focus+.search-submit{box-shadow:inset -1px 1px 1px rgba(0,0,0,.2);border:1px solid #2894df;border-left:0}.setup-extension span.icon.fa svg{width:80%;height:80%;margin:auto;display:block;opacity:.1}.setup-extension h3{padding:.8rem 2.5rem;text-align:center;margin-bottom:0}.setup-extension p{padding:.8rem 2.5rem;text-align:center;font-size:1.6rem}.slideNoTransition-exit{display:none;transform:translateX(0)}.slideLeft-enter{transform:translateX(100%)}.slideLeft-enter-active{transform:translateX(0);transition:transform 210ms}.slideLeft-exit{display:none;transform:translateX(0)}.slideLeft-exit-active{transform:translateX(100%);transition:transform 210ms}.slideRight-enter{transform:translateX(-100%)}.slideRight-enter-active{transform:translateX(0);transition:transform 210ms}.slideRight-exit{display:none;transform:translateX(0)}.slideRight-exit-active{transform:translateX(100%);transition:transform 210ms}.shake{animation:shake .42s cubic-bezier(.36,.07,.19,.97) both;transform:translate3d(0,0,0);backface-visibility:hidden;perspective:1000px}@keyframes shake{10%,90%{transform:translate3d(-1px,0,0)}20%,80%{transform:translate3d(2px,0,0)}30%,50%,70%{transform:translate3d(-4px,0,0)}40%,60%{transform:translate3d(4px,0,0)}}.fade-entering{opacity:1;animation-name:fadeInOpacity;animation-iteration-count:1;animation-timing-function:ease-in;animation-duration:.5s}@keyframes fadeInOpacity{0%{opacity:0}100%{opacity:1}}.quickaccess .generate-password .password{padding:.8rem 1.6rem 0 1.6rem}.quickaccess .generate-password .password:after,.quickaccess .generate-password .password:before{content:"";display:table}.quickaccess .generate-password .password:after{clear:both}.quickaccess .generate-password .password:after,.quickaccess .generate-password .password:before{content:"";display:table}.quickaccess .generate-password .password:after{clear:both}.quickaccess .generate-password .password input{float:left;box-sizing:border-box;width:calc(100% - 15rem)}.quickaccess .generate-password .password .password-view{float:left;margin-top:.9rem;margin-left:-.1rem;height:2.2rem;border-radius:0;padding:.7rem .8rem .5rem 1rem;background:#fff;border:1px solid #ccc;border-left:0;border-top:1px solid #bbb}.quickaccess .generate-password .password .password-view svg{margin-top:.2rem}.quickaccess .generate-password .password input:focus+.password-view{box-shadow:inset -1px 1px 1px rgba(0,0,0,.2);border:1px solid #2894df;border-left:0}.quickaccess .generate-password .password .actions.inline{display:flex;justify-content:flex-end;padding-left:0;margin:0}.quickaccess .generate-password .password .actions.inline .copy-to-clipboard,.quickaccess .generate-password .password .actions.inline .password-generate{margin-right:0;margin-left:.4rem;margin-top:.9rem;line-height:1.1rem}.quickaccess .generate-password .password .password-complexity .progress{width:calc(100% - 11.5rem)}.quickaccess .generate-password .password .password-complexity .complexity-text{font-size:1rem;padding-bottom:.5rem}.quickaccess .generate-password .password .password-complexity .complexity-text .text--nowrap{white-space:nowrap}.quickaccess .generate-password .tabs-nav{padding:0 1.6rem}.quickaccess .generate-password .tabs-active-content{padding:1.6rem;margin:0}.quickaccess .generate-password .slider input[type=number]{font-size:1.5rem;line-height:2rem}.quickaccess .generate-password #configure-password-generator-form-exclude-look-alike{position:fixed}.quickaccess .generate-password #configure-password-generator-form-exclude-look-alike+label{padding:.13rem 0 0 0}.quickaccess .generate-password #configure-passphrase-generator-form-words-case{margin-top:.9rem}.quickaccess .generate-password .button-group{padding-top:.8rem}.quickaccess .generate-password .button-group .button{margin:0 .525rem 1.2rem 0;padding:.8rem .8rem;font-size:1.5rem}.tabs{width:100%}.tabs-nav{border-bottom:1px solid #ddd}.tabs-nav li{display:inline}.tabs-nav li div{display:inline-block}.tabs-nav li a{display:inline-block;padding:.4em 1.75em;margin-left:1.25em;font-size:1.5rem;border:0}.tabs-nav li a.selected{margin-bottom:-1px;border:1px solid #ddd;border-bottom:1px solid #fff;background:#fff;-webkit-border-radius:0.3rem;-moz-border-radius:.3rem;border-radius:.3rem;border-bottom-left-radius:0;border-bottom-right-radius:0}.tabs-nav--bordered li{background-color:#eee;margin-right:.5rem;display:inline-block;border-radius:.3em .3rem 0 0}.tabs-nav--bordered li a{margin-left:0}.tabs-nav--bordered li.active{border:1px solid #ddd;border-bottom:1px solid #fff;margin-bottom:-10px;background-color:#fff}.tab-content{display:none}.tab-content.selected{display:block}.tabs-active-content{margin-top:.5em}.password-complexity .complexity-text{float:right;clear:right;width:30%;font-size:1rem;text-align:left;padding-left:0}.password-complexity.not_available .complexity-text{color:#ddd}.password-complexity .progress{width:100%;box-sizing:border-box;border:1px solid #ddd;height:10px;display:block;clear:both;margin:.25em 0 .5em 0;float:left}.password-complexity .progress-bar{background:#000;width:0;height:6px;display:block;float:left;margin:1px}.password-complexity .progress-bar.very-weak{background:#000;width:5%}.password-complexity .progress-bar.weak{background:#d40101;width:10%}.password-complexity .progress-bar.fair{background:#ffbd2e;width:60%}.password-complexity .progress-bar.strong{background:#6c0;width:80%}.password-complexity .progress-bar.very-strong{background:#090;width:99.5%}
9
+ /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}div{outline:0}html body .hidden{display:none}.visually-hidden,.visuallyhidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.visually-hidden .focusable:active,.visually-hidden .focusable:focus,.visuallyhidden .focusable:active,.visuallyhidden .focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.clearfix:after,.clearfix:before{content:"";display:table}.clearfix:after{clear:both}.rounded{-webkit-border-radius:0.3rem;-moz-border-radius:.3rem;border-radius:.3rem}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-ms-text-overflow:ellipsis}.rotate-right{transform:rotate(-90deg)}html{line-height:normal}body{color:#333;background:#fff}body.iframe{background:0 0}@font-face{font-family:'Open Sans';font-style:normal;font-weight:400;src:local('Open Sans'),local('OpenSans'),url('../../../fonts/opensans-regular.woff') format('woff')}@font-face{font-family:'Open Sans';font-style:normal;font-weight:700;src:local('Open Sans Bold'),local('OpenSans-Bold'),url('../../../fonts/opensans-bold.woff') format('woff')}body{font-family:'Open Sans',Verdana,sans-serif}.code{font-family:'Courier New',Courier,monospace}html{font-size:62.5%}body{font-size:1.6rem}h1{font-size:2.2rem;line-height:3.2rem}h2{font-size:1.8rem;line-height:2.4rem}h3{font-size:1.6rem;line-height:2.4rem;border-bottom:1px dotted #ddd}p{font-size:1.5rem;line-height:2.2rem;margin-top:0}code{font-size:1.1rem}.font-dim{color:#666}a{outline:0;text-decoration:none;cursor:pointer;border-bottom:1px solid #ddd}a:link,a:visited{color:#333}a:hover{text-decoration:none;cursor:pointer;color:#2894df;border-bottom:1px solid #2894df}a:active,a:focus{outline:0;color:#2894df;border:0}a.no-border,a:hover.no-border{border-bottom:0}a.disabled{outline:0;text-decoration:none;cursor:default;color:#888;pointer-events:none}ul{padding:0;margin:0}ul li{list-style:none;padding:0;margin:0}.button,button{font-size:1.4rem;padding:.8rem 1.6rem;line-height:1.6rem;margin-right:.8rem;position:relative;display:inline-block;vertical-align:baseline;outline:0;cursor:pointer;text-align:center;text-decoration:none;border-top:1px solid #ccc;border-right:1px solid #ccc;border-bottom:1px solid #ccc;border-left:1px solid #ccc;color:#333;font-weight:400;text-shadow:1px 1px 0 rgba(255,255,255,.5);background:#f3f3f3;-webkit-border-radius:0.3rem;-moz-border-radius:.3rem;border-radius:.3rem;box-sizing:border-box}.button.medium{font-size:1.6rem;line-height:2.4rem;padding:.8rem 2.4rem}.button.big{font-size:1.8rem;line-height:3.2rem;padding:.8rem 3.2rem}.button.full-width{width:100%}.button.primary{background:#2894df;border:1px solid #2894df;color:#fff;text-shadow:1px 1px 0 rgba(0,0,0,.2)}.button.primary:hover{background:#2a9ceb;border:1px solid #2a9ceb;color:#fff}.button.primary:active,.button.primary:focus{color:#fff;border:1px solid #4271b7;background:#2a9ceb}.button.warning,.button.warning:active,.button.warning:focus,.button.warning:hover{color:#fff;background:#d40101;border:1px solid #d40101;text-shadow:none}.button.warning:active,.button.warning:focus{border:1px solid #92000c}.button.cancel,.button.cancel:active,.button.cancel:focus,.button.cancel:hover,.button.dim,.button.dim:active,.button.dim:focus,.button.dim:hover{background:#fff;font-weight:400}.button:hover{color:#333;text-decoration:none;background:#eee;border:1px solid #bbb}.button:focus{color:#2894df;border:1px solid #2894df}.button:active{color:#2894df;border:1px solid #2894df;background:#eee;position:relative;box-shadow:inset 0 1px 2px rgba(0,0,0,.2)}.button.disabled{cursor:default;color:#888;background:#fff;border:1px solid #ddd;text-shadow:none;font-weight:400}.button.disabled:active,.button.disabled:focus,.button.disabled:hover{box-shadow:0 0 0;top:0;color:#888;background:#fff;border:1px solid #ddd}.button.processing{background:#fff;border:1px solid #fff}.button.processing:after{width:100%;height:100%;position:absolute;content:" ";top:-1px;left:-1px;background:#fff url('../../../img/controls/loading_light.svg') center center no-repeat;background-size:auto 50%;border:1px solid #ddd;-webkit-border-radius:0.3rem;-moz-border-radius:.3rem;border-radius:.3rem}input[type=submit].button.processing{font-size:0;background:#fff url('../../../img/controls/loading_light.svg') center center no-repeat;background-size:auto 50%;border:1px solid #ddd;border-radius:5px}.button-toggle.selected{background:#eee;box-shadow:inset 0 1px 2px rgba(0,0,0,.2);border:1px solid #bbb}.button-group{display:flex;flex-wrap:wrap;justify-content:flex-start}.button-group--nowrap>.button{white-space:nowrap}.button-group>*{flex-grow:1;margin-bottom:.5em}label{font-weight:700;font-size:1.6rem;line-height:2.4rem;padding:.8rem 0;display:block}.required label:after{content:" \002A";color:#d40101;font-weight:700}.input.error label{color:#d40101}input[type=email],input[type=number],input[type=password],input[type=search],input[type=text],textarea{box-sizing:border-box;font-size:1.6rem;line-height:2.4rem;color:#333;background:#fff;width:100%;max-width:64rem;padding:.6rem 1.2rem;display:inline-block;margin-bottom:.8rem;border:1px solid #ccc;border-top:1px solid #bbb;vertical-align:middle}::-ms-reveal{display:none}input[type=number]{box-sizing:border-box}input[type=file]{box-sizing:border-box;font-size:1.6rem;line-height:2.4rem;color:#333;background:#fff;width:100%;max-width:64rem;display:inline-block;margin-bottom:.8rem;vertical-align:middle}input[type=email]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover,textarea:hover{border:1px solid #bbb}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus,textarea:focus{outline:0;box-shadow:inset 1px 1px 2px rgba(0,0,0,.2);border:1px solid #2894df}input[type=email]:disabled,input[type=number]:disabled,input[type=password]:disabled,input[type=search]:disabled,input[type=text]:disabled,textarea:disabled{color:#333;border:1px solid #ddd;box-shadow:0 0;cursor:default;background:#f3f3f3}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{opacity:1}textarea{height:9rem}.textarea.large textarea{width:30rem;height:9rem}.checkbox input[type=checkbox]{position:absolute;opacity:0;cursor:pointer}.checkbox input[type=checkbox].error{color:#d40101}.checkbox input[type=checkbox]+label{font-weight:400;position:relative;cursor:pointer;padding:0;margin-bottom:.8rem}.checkbox input[type=checkbox]+label:before{content:'';margin-top:.4rem;margin-right:1rem;display:inline-block;vertical-align:text-top;width:1.4rem;height:1.4rem;background:#fff;border:1px solid #ddd;border-radius:.3rem;box-sizing:border-box}.checkbox input[type=checkbox]:hover+label:before{box-shadow:0 .1rem 0 #ddd,inset 0 .1rem 0 rgba(255,255,255,.25)}.checkbox input[type=checkbox]:focus+label:before{box-shadow:0 0 .4rem #2a9ceb;border:1px solid #2a9ceb}.checkbox input[type=checkbox]:active+label:before{box-shadow:inset 0 -.1rem 0 rgba(255,255,255,.25),inset 0 .1rem 0 #ddd}.checkbox input[type=checkbox]:disabled+label{color:#ddd;cursor:auto}.checkbox input[type=checkbox]:disabled+label:before{box-shadow:none;background:#ccc;border:none}.checkbox input[type=checkbox]:checked+label:after{content:'';position:absolute;left:.2rem;top:.75rem;width:1rem;height:1rem;background-size:1rem 1rem;background-image:url('../../../img/controls/check_black.svg');-webkit-mask-image:url('../../../img/controls/check_black.svg');mask-image:url('../../../img/controls/check_black.svg')}.checkbox input[type=checkbox]:disabled+label:after{background:#969696}.checkbox.medium input[type=checkbox]{cursor:pointer}.checkbox.medium input[type=checkbox]+label{font-size:1.5rem}.checkbox.medium input[type=checkbox]+label:before{margin-top:.3rem;margin-right:1rem;width:1.4rem;height:1.4rem}.checkbox.medium input[type=checkbox]:checked+label:after{left:.2rem;top:.7rem;width:1rem;height:1rem;background-size:1rem 1rem}.checkbox.small input[type=checkbox]{cursor:pointer}.checkbox.small input[type=checkbox]+label{font-size:1.4rem}.checkbox.small input[type=checkbox]+label:before{margin-top:.3rem;margin-right:1rem;width:1.4rem;height:1.4rem}.checkbox.small input[type=checkbox]:checked+label:after{left:.2rem;top:.7rem;width:1rem;height:1rem;background-size:1rem 1rem}.radiolist{margin-bottom:.8rem}.radiolist:after,.radiolist:before{content:"";display:table}.radiolist:after{clear:both}.radiolist:after,.radiolist:before{content:"";display:table}.radiolist:after{clear:both}.radiolist .input.radio{float:left}.radiolist .input.radio input{float:left;margin-top:.8rem}.radiolist .input.radio input+label{float:left;font-weight:400;display:inline-block;margin-left:1rem;font-size:1.6rem;margin-right:3.2rem;line-height:1.4rem}.radiolist .input.radio input+label:after{content:initial}.input.toggle-switch{display:flex;padding-top:1.6rem;padding-bottom:.8rem}.input.toggle-switch label{padding-top:0;padding-left:1.6rem;order:2;flex:1;font-weight:400;font-size:1.6rem}.input.toggle-switch.disabled label{color:#969696}.input.toggle-switch .toggle-switch-checkbox{order:-1;flex:0 0 3em;display:none}.input.toggle-switch .toggle-switch-checkbox,.input.toggle-switch .toggle-switch-checkbox *,.input.toggle-switch .toggle-switch-checkbox :after,.input.toggle-switch .toggle-switch-checkbox :before,.input.toggle-switch .toggle-switch-checkbox+.toggle-switch-button,.input.toggle-switch .toggle-switch-checkbox:after,.input.toggle-switch .toggle-switch-checkbox:before{box-sizing:border-box}.input.toggle-switch .toggle-switch-checkbox ::selection,.input.toggle-switch .toggle-switch-checkbox :after::selection,.input.toggle-switch .toggle-switch-checkbox :before::selection,.input.toggle-switch .toggle-switch-checkbox+.toggle-switch-button::selection,.input.toggle-switch .toggle-switch-checkbox::selection,.input.toggle-switch .toggle-switch-checkbox:after::selection,.input.toggle-switch .toggle-switch-checkbox:before::selection{background:0 0}.input.toggle-switch .toggle-switch-button{order:-1;flex:none;outline:0;display:block;width:3em;height:1.5em;position:relative;cursor:pointer;user-select:none;background:#f3f3f3;border-radius:2em;padding:2px;transition:all .4s ease;border:1px solid #ddd}.input.toggle-switch .toggle-switch-button span{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.input.toggle-switch .toggle-switch-button span .focusable:active,.input.toggle-switch .toggle-switch-button span .focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.input.toggle-switch .toggle-switch-button span .focusable:active,.input.toggle-switch .toggle-switch-button span .focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.input.toggle-switch .toggle-switch-button:hover:after{will-change:padding}.input.toggle-switch .toggle-switch-button:active{box-shadow:inset 0 0 0 2em #e8eae9}.input.toggle-switch .toggle-switch-button:active:after{padding-right:.8em}.input.toggle-switch .toggle-switch-button:after,.input.toggle-switch .toggle-switch-button:before{position:relative;display:block;content:"";width:50%;height:100%}.input.toggle-switch .toggle-switch-button:after{left:0;border-radius:2em;background:#fff;transition:left .3s cubic-bezier(.175, .885, .32, 1.275),padding .3s ease,margin .3s ease;box-shadow:0 0 0 1px rgba(0,0,0,.1),0 4px 0 rgba(0,0,0,.08)}.input.toggle-switch .toggle-switch-button:before{display:none}.input.toggle-switch .toggle-switch-checkbox:checked+.toggle-switch-button:after{left:50%}.input.toggle-switch .toggle-switch-checkbox:disabled+.toggle-switch-button{background:#fff;cursor:not-allowed}.input.toggle-switch .toggle-switch-checkbox:checked+.toggle-switch-button{background:#6c0}.input.toggle-switch .toggle-switch-checkbox:checked+.toggle-switch-button:active{box-shadow:none}.input.toggle-switch .toggle-switch-checkbox:checked+.toggle-switch-button:active:after{margin-left:-.8em}.input.toggle-switch .toggle-switch-checkbox:disabled:checked+.toggle-switch-button{background:#e6ffcc}h1 .input.toggle-switch,h2 .input.toggle-switch,h3 .input.toggle-switch,h4 .input.toggle-switch,h5 .input.toggle-switch,h6 .input.toggle-switch{float:left;padding:.4em 1em 0 0}.input.select select{display:inline-block;font-size:1.6rem;line-height:2.4rem;color:#333;padding:.6rem 1.2rem;width:100%;max-width:64rem;box-sizing:border-box;margin:0 0 .8rem 0;border:1px solid #ccc;-moz-appearance:none;-webkit-appearance:none;appearance:none;background-color:#fff;background-image:url('../../../img/controls/chevron-down_black.svg'),linear-gradient(to bottom,#fff 0,#fff 100%);background-repeat:no-repeat,repeat;background-position:right .6rem top 50%,0 0;background-size:1rem auto,100%}.input.select select.medium{width:50%}.input.select select:focus{outline:0;border:1px solid #2894df;border-radius:0;background-image:url('../../../img/controls/chevron-down_blue.svg'),linear-gradient(to bottom,#fff 0,#fff 100%)}.input.select select:disabled{background-image:url('../../../img/controls/chevron-down_black.svg'),linear-gradient(to bottom,#f3f3f3 0,#f3f3f3 100%);color:#888}.input .error-message{padding:0;font-size:1.4rem;margin-top:.2rem;margin-bottom:1.6rem;background-color:transparent;border:0;font-weight:400;color:#d40101;background:#fff;clear:both}.input .help-message{padding:0;font-size:1.4rem;margin-top:.2rem;margin-bottom:1.6rem;background-color:transparent;border:0;color:#888;font-weight:400;background:#fff;clear:both}.singleline{display:flex;max-width:64rem}.singleline:after,.singleline:before{content:"";display:table}.singleline:after{clear:both}.singleline:after,.singleline:before{content:"";display:table}.singleline:after{clear:both}.singleline .input{flex:1}.singleline .input.first-field,.singleline .input:first-child{margin-right:2%}.slider{display:flex;align-items:center}.slider input[type=range]{-webkit-appearance:none;width:100%;height:1px;border-radius:5px;background:#ddd;outline:0;opacity:.7;-webkit-transition:.2s;transition:opacity .2s;flex-grow:1}.slider input[type=range]:hover{opacity:1}.slider input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:15px;height:15px;border-radius:50%;border-width:1px;border-style:solid;border-color:#969696;background:#ddd;cursor:pointer}.slider input[type=range]::-moz-range-thumb{width:15px;height:15px;border-radius:50%;background:#ddd;cursor:pointer}.slider input[type=number]{width:6.5rem;margin-left:1.6rem;padding:.8rem}.svg-icon{display:inline-flex;align-self:center}.svg-icon svg{fill:#333;height:1em;width:1em}.svg-icon.baseline svg{top:.125em;position:relative}.svg-icon.dim svg,.svg-icon.light svg{fill:#888888}.svg-icon.icon-only svg{padding:.1rem;height:1.6rem;width:1.6rem}a:hover .svg-icon svg{fill:#2894DF}a.disabled .svg-icon svg{fill:#888888;pointer-events:none;cursor:default}a.disabled:hover .svg-icon svg{fill:#888888}a.fav .svg-icon svg{fill:#D40101}a.unfav .svg-icon svg{fill:#DDD}.button .svg-icon svg{top:.2rem;position:relative}.button .svg-icon+span:not(.visuallyhidden){margin-left:.8rem;display:inline-block}.button .svg-icon svg:hover,.button:hover .svg-icon svg{fill:#333}.button.primary:active .svg-icon svg,.button.primary:focus .svg-icon svg,.button.warning .svg-icon svg,.button.warning:active .svg-icon svg,.button.warning:focus .svg-icon svg,.button.warning:hover .svg-icon svg{fill:#FFF}.button:active .svg-icon svg,.button:focus .svg-icon svg{fill:#2894DF}.button.disabled .svg-icon svg{fill:#888888}.button.disabled .svg-icon svg:hover{fill:#888888}@keyframes drawCircle{0%{stroke-dashoffset:180px}100%{stroke-dashoffset:0}}@keyframes drawCheck{0%{stroke-dashoffset:50px}100%{stroke-dashoffset:0}}@keyframes drawCross{0%{stroke-dashoffset:50px}100%{stroke-dashoffset:0}}@keyframes drawWarning{0%{stroke-dashoffset:230px}100%{stroke-dashoffset:0}}.icon-feedback .success-animation-circle{stroke-dasharray:180px 180px;stroke:#009900}.icon-feedback .success-animation-line{stroke-dasharray:50px 50px;stroke:#009900}.icon-feedback .success-animation-line2{stroke-dasharray:50px 50px;stroke:#009900}.icon-feedback .error-animation-circle{stroke-dasharray:180px 180px;stroke:#D40101}.icon-feedback .error-animation-line{stroke-dasharray:50px 50px;stroke:#D40101}.icon-feedback .warning-animation-line{stroke-dasharray:230px 230px;stroke:#9F6000;stroke-linecap:round;stroke-linejoin:round}.icon-feedback .warning-animation-circle{fill:#9F6000}.icon-feedback .animated{animation:.75s ease-out 0s 1 both pop}.icon-feedback .animated .error-animation-circle,.icon-feedback .animated .success-animation-circle,.icon-feedback .animated .warning-animation-circle{animation:.75s cubic-bezier(.77,0,.175,1) 0s 1 both drawCircle}.icon-feedback .animated .success-animation-line{animation:.75s cubic-bezier(.77,0,.175,1) 0s 1 both drawCheck}.icon-feedback .animated .error-animation-line{animation:.75s cubic-bezier(.77,0,.175,1) 0s 1 both drawCross}.icon-feedback .animated .warning-animation-line{animation:.75s cubic-bezier(.77,0,.175,1) 0s 1 both drawWarning}table{border-collapse:collapse;border-spacing:0}table td,table th{text-align:left;font-weight:400}.logo{background:transparent url('../../../img/logo/logo.svg') 0 0 no-repeat;background-size:20rem auto;width:20rem;height:4.5rem}.scroll{overflow-y:scroll;background:linear-gradient(#fff 30%,rgba(255,255,255,0)),linear-gradient(rgba(255,255,255,0),#fff 70%) 0 100%,radial-gradient(farthest-side at 75% 0,rgba(0,0,0,.2),rgba(0,0,0,0)),radial-gradient(farthest-side at 75% 100%,rgba(0,0,0,.2),rgba(0,0,0,0)) 0 100%;background-repeat:no-repeat;background-color:#fff;background-size:100% 10px,100% 10px,100% 5px,100% 5px}::-webkit-scrollbar{width:1em}::-webkit-scrollbar-track{background:#f9f9f9;border-top:0;border-bottom:0}::-webkit-scrollbar-thumb{background:#c1c1c1;border-radius:1em;border:4px solid #f9f9f9}.scroll-shadow{overflow:auto;background:linear-gradient(#fff 30%,rgba(255,255,255,0)),linear-gradient(rgba(255,255,255,0),#fff 70%) 0 100%,radial-gradient(farthest-side at 50% 0,rgba(0,0,0,.08),rgba(0,0,0,0)),radial-gradient(farthest-side at 50% 100%,rgba(0,0,0,.08),rgba(0,0,0,0)) 0 100%;background-repeat:no-repeat;background-color:#fff;background-size:100% 40px,100% 40px,100% 14px,100% 14px;background-attachment:local,local,scroll,scroll}.simplebar-content{overflow:auto;background:linear-gradient(#fff 30%,rgba(255,255,255,0)),linear-gradient(rgba(255,255,255,0),#fff 70%) 0 100%,radial-gradient(farthest-side at 50% 0,rgba(0,0,0,.08),rgba(0,0,0,0)),radial-gradient(farthest-side at 50% 100%,rgba(0,0,0,.08),rgba(0,0,0,0)) 0 100%;background-repeat:no-repeat;background-color:#fff;background-size:100% 40px,100% 40px,100% 14px,100% 14px;background-attachment:local,local,scroll,scroll}[data-simplebar]{position:relative;flex-direction:column;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start;width:inherit;height:inherit;max-width:inherit;max-height:inherit}.simplebar-wrapper{overflow:hidden;width:inherit;height:inherit;max-width:inherit;max-height:inherit}.simplebar-mask{direction:inherit;position:absolute;overflow:hidden;padding:0;margin:0;left:0;top:0;bottom:0;right:0;width:auto!important;height:auto!important;z-index:0}.simplebar-offset{direction:inherit!important;box-sizing:inherit!important;resize:none!important;position:absolute;top:0;left:0;bottom:0;right:0;padding:0;margin:0;-webkit-overflow-scrolling:touch}.simplebar-content-wrapper{direction:inherit;box-sizing:border-box!important;position:relative;display:block;height:100%;width:auto;max-width:100%;max-height:100%;scrollbar-width:none;-ms-overflow-style:none}.simplebar-content-wrapper::-webkit-scrollbar,.simplebar-hide-scrollbar::-webkit-scrollbar{width:0;height:0}.simplebar-content:after,.simplebar-content:before{content:' ';display:table}.simplebar-placeholder{max-height:100%;max-width:100%;width:100%;pointer-events:none}.simplebar-height-auto-observer-wrapper{box-sizing:inherit!important;height:100%;width:inherit;max-width:1px;position:relative;float:left;max-height:1px;overflow:hidden;z-index:-1;padding:0;margin:0;pointer-events:none;flex-grow:inherit;flex-shrink:0;flex-basis:0}.simplebar-height-auto-observer{box-sizing:inherit;display:block;opacity:0;position:absolute;top:0;left:0;height:1000%;width:1000%;min-height:1px;min-width:1px;overflow:hidden;pointer-events:none;z-index:-1}.simplebar-track{z-index:1;position:absolute;right:0;bottom:0;pointer-events:none;overflow:hidden}[data-simplebar].simplebar-dragging .simplebar-content{pointer-events:none;user-select:none;-webkit-user-select:none}[data-simplebar].simplebar-dragging .simplebar-track{pointer-events:all}.simplebar-scrollbar{position:absolute;right:2px;width:7px;min-height:10px}.simplebar-scrollbar:before{position:absolute;content:'';background:#000;border-radius:7px;left:0;right:0;opacity:0;transition:opacity .2s linear}.simplebar-scrollbar.simplebar-visible:before{opacity:.5;transition:opacity 0s linear}.simplebar-track.simplebar-vertical{top:0;width:11px}.simplebar-track.simplebar-vertical .simplebar-scrollbar:before{top:2px;bottom:2px}.simplebar-track.simplebar-horizontal{left:0;height:11px}.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before{height:100%;left:2px;right:2px}.simplebar-track.simplebar-horizontal .simplebar-scrollbar{right:auto;left:0;top:2px;height:7px;min-height:0;min-width:10px;width:auto}[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical{right:auto;left:0}.hs-dummy-scrollbar-size{direction:rtl;position:fixed;opacity:0;visibility:hidden;height:500px;width:500px;overflow-y:hidden;overflow-x:scroll}.simplebar-hide-scrollbar{position:fixed;left:0;visibility:hidden;overflow-y:scroll;scrollbar-width:none;-ms-overflow-style:none}.shimmer{display:block;position:relative;width:100%;height:100%;content:'';animation:shimmer 2s infinite;background:linear-gradient(45deg,rgba(255,255,255,0) 0,rgba(255,255,255,.1) 30%,rgba(255,255,255,.5) 50%,rgba(255,255,255,0))}@keyframes shimmer{0%{background-position:0 0}100%{background-position:1000px 0}}html{scroll-behavior:smooth}.animated{-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}@keyframes fadeOutUp{from{opacity:1}to{opacity:0;transform:translate3d(0,-100%,0)}}@keyframes fadeInDown{from{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:none}}@keyframes pop{0%{opacity:0;transform:scale(1)}55%{opacity:1;transform:scale(1)}65%{opacity:1;transform:scale(1.25)}75%{opacity:1;transform:scale(1)}100%{opacity:1;transform:scale(1)}}.fadeInDown{animation-name:fadeInDown}.fadeOutUp{animation-name:fadeOutUp}.fadeInUp{animation-name:fadeInUp}.pop{animation-name:pop}.page{width:100%;min-width:32rem;top:0;left:0;right:0;bottom:0;position:absolute;overflow:auto}.page .panel{height:100%;width:100%;position:absolute;overflow:auto}.page .panel.main{bottom:3.8rem;height:auto;padding:0}.page .panel.main .grid{padding-bottom:1.6rem}.page .panel.main .row{padding-left:0}.page .panel.main .panel.left{background:#fff}.page .header.second+.panel.main{top:6.875em}.page .header.third+.panel.main{top:10em;border-top:1px solid #ddd}.page .header{width:100%;overflow:hidden}.page .header.first{min-height:3.2rem}.page .header.second{height:7rem}.page .header.third{height:4.8rem}.page .col1,.page .col2,.page .col2_3,.page .col3{position:absolute}.page .col1,.page .panel.left{width:17.25%;box-sizing:border-box}.page .panel.middle{width:82%;left:18%;overflow:hidden}.page .panel.middle.scroll{overflow-y:scroll}.page .col2{width:70%;left:18%}.page .col3,.page .panel.right{width:24%;left:75%}.page .col2_3{width:81.5%;left:18%}.page .panel.main .grid-responsive-12{float:left;width:100%;max-width:none;padding-left:.25em;box-sizing:border-box}@media all and (max-width:1024px){.page .panel.left{display:none}.page .header.second .col2{display:none}.page .header.second .col2_3{display:none}.page .header.third{height:4.5em}.page .header.third .col1,.page .header.third .col2,.page .header.third .col2_3{position:relative;float:left;left:auto;width:auto}.page .header.third .col3{display:none}.page .panel.main .panel.left{display:none}.page .panel.main .panel.middle{width:100%;left:0}.page .panel.main .row{padding-left:.5em}.page .panel.main .panel.aside{min-width:auto}}.grid,.grid-responsive-12{margin:0 auto;padding:0;max-width:1220px}.grid .row,.grid-responsive-12 .row{padding:0 .5em 0 .5em}.grid .row:after,.grid .row:before,.grid-responsive-12 .row:after,.grid-responsive-12 .row:before{content:"";display:table}.grid .row:after,.grid-responsive-12 .row:after{clear:both}.grid .row:after,.grid .row:before,.grid-responsive-12 .row:after,.grid-responsive-12 .row:before{content:"";display:table}.grid .row:after,.grid-responsive-12 .row:after{clear:both}.grid .row .col1,.grid .row .col10,.grid .row .col11,.grid .row .col12,.grid .row .col2,.grid .row .col3,.grid .row .col4,.grid .row .col5,.grid .row .col6,.grid .row .col7,.grid .row .col8,.grid .row .col9,.grid-responsive-12 .row .col1,.grid-responsive-12 .row .col10,.grid-responsive-12 .row .col11,.grid-responsive-12 .row .col12,.grid-responsive-12 .row .col2,.grid-responsive-12 .row .col3,.grid-responsive-12 .row .col4,.grid-responsive-12 .row .col5,.grid-responsive-12 .row .col6,.grid-responsive-12 .row .col7,.grid-responsive-12 .row .col8,.grid-responsive-12 .row .col9{position:relative;left:auto;float:none;width:99%;box-sizing:border-box}.grid .row .col10:after,.grid .row .col10:before,.grid .row .col11:after,.grid .row .col11:before,.grid .row .col12:after,.grid .row .col12:before,.grid .row .col1:after,.grid .row .col1:before,.grid .row .col2:after,.grid .row .col2:before,.grid .row .col3:after,.grid .row .col3:before,.grid .row .col4:after,.grid .row .col4:before,.grid .row .col5:after,.grid .row .col5:before,.grid .row .col6:after,.grid .row .col6:before,.grid .row .col7:after,.grid .row .col7:before,.grid .row .col8:after,.grid .row .col8:before,.grid .row .col9:after,.grid .row .col9:before,.grid-responsive-12 .row .col10:after,.grid-responsive-12 .row .col10:before,.grid-responsive-12 .row .col11:after,.grid-responsive-12 .row .col11:before,.grid-responsive-12 .row .col12:after,.grid-responsive-12 .row .col12:before,.grid-responsive-12 .row .col1:after,.grid-responsive-12 .row .col1:before,.grid-responsive-12 .row .col2:after,.grid-responsive-12 .row .col2:before,.grid-responsive-12 .row .col3:after,.grid-responsive-12 .row .col3:before,.grid-responsive-12 .row .col4:after,.grid-responsive-12 .row .col4:before,.grid-responsive-12 .row .col5:after,.grid-responsive-12 .row .col5:before,.grid-responsive-12 .row .col6:after,.grid-responsive-12 .row .col6:before,.grid-responsive-12 .row .col7:after,.grid-responsive-12 .row .col7:before,.grid-responsive-12 .row .col8:after,.grid-responsive-12 .row .col8:before,.grid-responsive-12 .row .col9:after,.grid-responsive-12 .row .col9:before{content:"";display:table}.grid .row .col10:after,.grid .row .col11:after,.grid .row .col12:after,.grid .row .col1:after,.grid .row .col2:after,.grid .row .col3:after,.grid .row .col4:after,.grid .row .col5:after,.grid .row .col6:after,.grid .row .col7:after,.grid .row .col8:after,.grid .row .col9:after,.grid-responsive-12 .row .col10:after,.grid-responsive-12 .row .col11:after,.grid-responsive-12 .row .col12:after,.grid-responsive-12 .row .col1:after,.grid-responsive-12 .row .col2:after,.grid-responsive-12 .row .col3:after,.grid-responsive-12 .row .col4:after,.grid-responsive-12 .row .col5:after,.grid-responsive-12 .row .col6:after,.grid-responsive-12 .row .col7:after,.grid-responsive-12 .row .col8:after,.grid-responsive-12 .row .col9:after{clear:both}.grid .row .col10:after,.grid .row .col10:before,.grid .row .col11:after,.grid .row .col11:before,.grid .row .col12:after,.grid .row .col12:before,.grid .row .col1:after,.grid .row .col1:before,.grid .row .col2:after,.grid .row .col2:before,.grid .row .col3:after,.grid .row .col3:before,.grid .row .col4:after,.grid .row .col4:before,.grid .row .col5:after,.grid .row .col5:before,.grid .row .col6:after,.grid .row .col6:before,.grid .row .col7:after,.grid .row .col7:before,.grid .row .col8:after,.grid .row .col8:before,.grid .row .col9:after,.grid .row .col9:before,.grid-responsive-12 .row .col10:after,.grid-responsive-12 .row .col10:before,.grid-responsive-12 .row .col11:after,.grid-responsive-12 .row .col11:before,.grid-responsive-12 .row .col12:after,.grid-responsive-12 .row .col12:before,.grid-responsive-12 .row .col1:after,.grid-responsive-12 .row .col1:before,.grid-responsive-12 .row .col2:after,.grid-responsive-12 .row .col2:before,.grid-responsive-12 .row .col3:after,.grid-responsive-12 .row .col3:before,.grid-responsive-12 .row .col4:after,.grid-responsive-12 .row .col4:before,.grid-responsive-12 .row .col5:after,.grid-responsive-12 .row .col5:before,.grid-responsive-12 .row .col6:after,.grid-responsive-12 .row .col6:before,.grid-responsive-12 .row .col7:after,.grid-responsive-12 .row .col7:before,.grid-responsive-12 .row .col8:after,.grid-responsive-12 .row .col8:before,.grid-responsive-12 .row .col9:after,.grid-responsive-12 .row .col9:before{content:"";display:table}.grid .row .col10:after,.grid .row .col11:after,.grid .row .col12:after,.grid .row .col1:after,.grid .row .col2:after,.grid .row .col3:after,.grid .row .col4:after,.grid .row .col5:after,.grid .row .col6:after,.grid .row .col7:after,.grid .row .col8:after,.grid .row .col9:after,.grid-responsive-12 .row .col10:after,.grid-responsive-12 .row .col11:after,.grid-responsive-12 .row .col12:after,.grid-responsive-12 .row .col1:after,.grid-responsive-12 .row .col2:after,.grid-responsive-12 .row .col3:after,.grid-responsive-12 .row .col4:after,.grid-responsive-12 .row .col5:after,.grid-responsive-12 .row .col6:after,.grid-responsive-12 .row .col7:after,.grid-responsive-12 .row .col8:after,.grid-responsive-12 .row .col9:after{clear:both}.grid .row .col1 img,.grid .row .col10 img,.grid .row .col11 img,.grid .row .col12 img,.grid .row .col2 img,.grid .row .col3 img,.grid .row .col4 img,.grid .row .col5 img,.grid .row .col6 img,.grid .row .col7 img,.grid .row .col8 img,.grid .row .col9 img,.grid-responsive-12 .row .col1 img,.grid-responsive-12 .row .col10 img,.grid-responsive-12 .row .col11 img,.grid-responsive-12 .row .col12 img,.grid-responsive-12 .row .col2 img,.grid-responsive-12 .row .col3 img,.grid-responsive-12 .row .col4 img,.grid-responsive-12 .row .col5 img,.grid-responsive-12 .row .col6 img,.grid-responsive-12 .row .col7 img,.grid-responsive-12 .row .col8 img,.grid-responsive-12 .row .col9 img{width:100%;height:auto;display:block}@media all and (min-width:780px){.grid .row{padding:0 .5em 0 .5em}.grid .row .col1,.grid .row .col10,.grid .row .col11,.grid .row .col12,.grid .row .col2,.grid .row .col3,.grid .row .col4,.grid .row .col5,.grid .row .col6,.grid .row .col7,.grid .row .col8,.grid .row .col9{float:left;position:relative;margin:0 3% 0 0}.grid .row .last{margin-right:0}.grid .row .col1{width:5.5%}.grid .row .col2{width:14%}.grid .row .col3{width:22.5%}.grid .row .col4{width:31%}.grid .row .col5{width:39.5%}.grid .row .col6{width:48%}.grid .row .col7{width:56.5%}.grid .row .col8{width:65%}.grid .row .col9{width:73.5%}.grid .row .col10{width:82%}.grid .row .col11{width:90.5%}.grid .row .col12{width:99%;margin:0}.grid .row .push1{margin-left:5.5%}.grid .row .push2{margin-left:14%}.grid .row .push3{margin-left:22.5%}.grid .row .push4{margin-left:31%}}@media all and (max-width:768px){.hidden-xs{display:none}}body{overflow:hidden}.quickaccess{background:#fff;box-sizing:border-box;width:38rem}.quickaccess:after,.quickaccess:before{content:"";display:table}.quickaccess:after{clear:both}.quickaccess:after,.quickaccess:before{content:"";display:table}.quickaccess:after{clear:both}.quickaccess h2{margin:0;font-size:1.5rem;font-weight:400;padding:.4rem 1.6rem;line-height:2rem}.quickaccess label{font-size:1.5rem;padding-top:.8rem;padding-bottom:.2rem;line-height:2rem}.quickaccess input[type=email],.quickaccess input[type=password],.quickaccess input[type=search],.quickaccess input[type=text],.quickaccess textarea{font-size:1.5rem;padding:.8rem .8rem;margin:.9rem 0 .4rem 0;height:3.6rem}.quickaccess .error-message{font-size:1.3rem;margin-bottom:.4rem;color:#d40101}.quickaccess .passphrase input[type=password]{box-sizing:border-box;width:calc(100% - 4.5rem)}.quickaccess .security-token{width:4.5rem;font-size:1.5rem;margin-top:-.2rem;padding:.4rem .8rem}.quickaccess .button.button-icon{position:relative;box-sizing:content-box;display:block;margin:0;padding:.8rem;width:1.6rem;height:1.6rem;line-height:2rem;float:right;background:0 0;border:0}.quickaccess .button.button-icon.button-toggle.selected{background:#eee}.quickaccess a:active svg path,.quickaccess a:focus svg path,.quickaccess a:hover svg path{fill:#2894DF}.quickaccess .back-link{background:#eee;line-height:2rem}.quickaccess .back-link:after,.quickaccess .back-link:before{content:"";display:table}.quickaccess .back-link:after{clear:both}.quickaccess .back-link:after,.quickaccess .back-link:before{content:"";display:table}.quickaccess .back-link:after{clear:both}.quickaccess .back-link .primary-action{display:block;border:0;float:left;width:28rem;padding:1.6rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-ms-text-overflow:ellipsis}.quickaccess .back-link .primary-action .primary-action-title{font-size:1.5rem}.quickaccess .back-link .primary-action .icon{float:left;margin-right:1rem}.quickaccess .back-link .primary-action svg{vertical-align:middle}.quickaccess .back-link .primary-action svg path{fill:#969696}.quickaccess .back-link .secondary-action{padding:1.6rem}.quickaccess .back-link .secondary-action .icon{float:right}.quickaccess .submit-wrapper{padding:1.6rem}.quickaccess .submit-wrapper:after,.quickaccess .submit-wrapper:before{content:"";display:table}.quickaccess .submit-wrapper:after{clear:both}.quickaccess .submit-wrapper:after,.quickaccess .submit-wrapper:before{content:"";display:table}.quickaccess .submit-wrapper:after{clear:both}.quickaccess .submit-wrapper .button.primary.big{line-height:2.3rem}.quickaccess .submit-wrapper .cancel{padding-right:3rem;border:none;color:#333}.quickaccess .submit-wrapper .cancel:hover{color:#2894df}.quickaccess .submit-wrapper.flex-row-end{display:flex;flex-direction:row;align-items:center;justify-content:flex-end}.quickaccess .processing-wrapper{background-color:#fff;text-align:center;margin:.8rem 3rem .8rem 1.6rem}.quickaccess .processing-wrapper .processing-text{position:relative;padding-left:1rem}.quickaccess .processing-wrapper .processing-text:before{width:100%;height:100%;position:absolute;content:" ";top:0;left:0;background:transparent url('../../../img/controls/loading_light.svg') left center no-repeat;background-size:auto 75%}.quickaccess .quickaccess-header{display:flex;align-items:center;flex-direction:row;margin:0}.quickaccess .quickaccess-header:after,.quickaccess .quickaccess-header:before{content:"";display:table}.quickaccess .quickaccess-header:after{clear:both}.quickaccess .quickaccess-header:after,.quickaccess .quickaccess-header:before{content:"";display:table}.quickaccess .quickaccess-header:after{clear:both}.quickaccess .quickaccess-header .logo{margin:1.6rem;background:transparent url('../../../img/logo/logo.svg') 0 0 no-repeat;background-size:10rem auto;width:10rem;height:1.75rem;flex:1 1 auto}.quickaccess .quickaccess-header .logo a{display:block;width:10rem;height:2.2rem;border:0}.quickaccess .quickaccess-header .option-link{padding:1.6rem}.quickaccess .fa.icon svg{width:1.6rem;height:1.6rem}.quickaccess .fa.icon svg path{fill:#888888}.quickaccess .index-list .list-container{max-height:30rem}.quickaccess .index-list .list-container:after,.quickaccess .index-list .list-container:before{content:"";display:table}.quickaccess .index-list .list-container:after{clear:both}.quickaccess .index-list .list-container:after,.quickaccess .index-list .list-container:before{content:"";display:table}.quickaccess .index-list .list-container:after{clear:both}.quickaccess .index-list .list-title{background:#ddd}.quickaccess .index-list .processing-text{position:relative;padding-left:2em}.quickaccess .index-list .processing-text:before{width:100%;height:100%;position:absolute;content:" ";top:0;left:0;background:transparent url('../../../img/controls/loading_light.svg') left center no-repeat;background-size:auto 75%}.quickaccess .index-list .empty-entry p{position:relative;margin:1.6rem;line-height:2rem}.quickaccess .index-list .suggested-resource-entry{display:flex;flex-direction:row}.quickaccess .index-list .suggested-resource-entry .resource-details{color:#333;padding:1.6rem;box-sizing:border-box;border-bottom:1px solid #eee;width:80%;flex:1 1 auto;font-size:1.5rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-ms-text-overflow:ellipsis}.quickaccess .index-list .suggested-resource-entry .resource-details:focus{color:#2894df}.quickaccess .index-list .suggested-resource-entry .resource-details:hover{color:#2894df;background-color:#eee}.quickaccess .index-list .suggested-resource-entry .resource-details .url{display:block;font-size:1.3rem;padding-top:.4rem;color:#666;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-ms-text-overflow:ellipsis}.quickaccess .index-list .suggested-resource-entry .chevron-right{background:0 0;box-sizing:border-box;border-bottom:1px solid #eee;width:4rem;flex:0 1 auto}.quickaccess .index-list .suggested-resource-entry .chevron-right::after{content:"";display:block;background:url('../../../img/controls/chevron-right_black.svg') center center no-repeat transparent;background-size:1.6rem 1.6rem;opacity:.1;height:100%;width:100%}.quickaccess .index-list .suggested-resource-entry .chevron-right:focus,.quickaccess .index-list .suggested-resource-entry .chevron-right:hover{background-color:#eee}.quickaccess .index-list .suggested-resource-entry .chevron-right:focus::after,.quickaccess .index-list .suggested-resource-entry .chevron-right:hover::after{opacity:.4}.quickaccess .index-list .browse-resource-entry a .inline-resource-entry{flex:1 1 auto;width:80%;font-size:1.5rem}.quickaccess .index-list .browse-resource-entry a .inline-resource-entry .inline-resource-name{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-ms-text-overflow:ellipsis}.quickaccess .index-list .browse-resource-entry a .inline-resource-entry .url{display:block;font-size:1.3rem;padding-top:.4rem;color:#666;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-ms-text-overflow:ellipsis}.quickaccess .index-list .browse-resource-entry a,.quickaccess .index-list .filter-entry a{color:#333;display:flex;align-items:center;border-bottom:1px solid #ddd;padding:1.6rem;position:relative;font-size:1.5rem}.quickaccess .index-list .browse-resource-entry a:after,.quickaccess .index-list .filter-entry a:after{background:transparent url('../../../img/controls/chevron-right_black.svg') center right no-repeat;background-size:1.6rem 1.6rem;width:4rem;height:2rem;content:"";opacity:.1}.quickaccess .index-list .browse-resource-entry a:hover,.quickaccess .index-list .filter-entry a:hover{color:#2894df;background-color:#eee}.quickaccess .index-list .browse-resource-entry a:hover:after,.quickaccess .index-list .filter-entry a:hover:after{opacity:.4}.quickaccess .index-list .browse-resource-entry .icon svg,.quickaccess .index-list .filter-entry .icon svg{float:left;margin-right:1.6rem}.quickaccess .index-list .browse-resource-entry .filter,.quickaccess .index-list .filter-entry .filter{flex:1 1 auto}.quickaccess .index-list .option-entry a{color:#333;display:block;border-bottom:1px solid #ddd;padding:1.4rem 2.8rem 1.4rem 1.8rem;position:relative}.quickaccess .index-list .option-entry a:hover{color:#2894df;background-color:#eee}.quickaccess .index-list .option-entry a:hover:after{opacity:.4}.quickaccess .index-list .option-entry .icon svg{float:left;margin-right:.8rem}.login-form .form-container{padding:0 1.6rem 1.6rem 1.6rem}.login-form .checkbox.small{padding-top:1.2rem}.login-form .checkbox.small label{padding-top:.2rem;margin:0}.login-form .password.with-token{display:flex;align-items:center}.login-form .password.with-token input[type=password],.login-form .password.with-token input[type=text]{width:100%}.login-form .password.with-token .password-view{width:3rem;margin:.5rem .8rem 0 -.1rem;height:2.2rem;border-radius:0;padding:.7rem .8rem .5rem 1rem;background:#fff;border:1px solid #ccc;border-left:0;border-top:1px solid #bbb}.login-form .password.with-token input:focus+.password-view{box-shadow:inset -1px 1px 1px rgba(0,0,0,.2);border:1px solid #2894df;border-left:0}.quickaccess .passphrase input[type=password]{box-sizing:border-box;width:calc(100% - 4.5rem)}.quickaccess .passphrase .form-container{padding:1.6rem 1.6rem .8rem 1.6rem}.quickaccess .passphrase .too-many-attempts-error{margin:.8rem 3rem .8rem 1.6rem}.quickaccess .passphrase .checkbox.small{padding-top:1.2rem}.quickaccess .security-token{width:4.5rem;font-size:1.5rem;margin-top:.5rem;padding:.5rem .4rem;text-align:center;display:inline-block;margin-left:-.1rem;border:1px solid #bbb;line-height:2.4rem;vertical-align:middle;box-sizing:border-box}.quickaccess .item-browse .properties .property:after,.quickaccess .item-browse .properties .property:before{content:"";display:table}.quickaccess .item-browse .properties .property:after{clear:both}.quickaccess .item-browse .properties .property:after,.quickaccess .item-browse .properties .property:before{content:"";display:table}.quickaccess .item-browse .properties .property:after{clear:both}.quickaccess .item-browse .properties .property a{display:block;border:0}.quickaccess .item-browse .properties .property .password-view{display:block;position:relative;box-sizing:content-box;margin:0 0 0 .5rem;padding:.1rem .3rem .1rem .3rem;background:0 0;border:0;float:left}.quickaccess .item-browse .properties .property .password-view.selected{background:#eee}.quickaccess .item-browse .properties .property-value{width:28rem;float:left;padding:0 1rem 1.6rem 1.6rem;font-size:1.5rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-ms-text-overflow:ellipsis}.quickaccess .item-browse .properties .property-value.empty{font-style:italic;color:#ddd}.quickaccess .item-browse .properties .property-name{font-size:1.3rem;color:#888;width:28rem;float:left;padding:1.6rem 1rem .4rem 1.6rem}.quickaccess .item-browse .properties .property-action{margin-top:1.6rem;padding:1.6rem}.quickaccess .item-browse .properties .property-action.disabled path{fill:#DDD}.quickaccess .item-browse .properties .secret{display:inline-block;height:.8rem;float:left;border:0;margin-left:1.6rem;margin-bottom:.9rem}.quickaccess .item-browse .properties .secret.secret-copy{width:10.5rem;background:transparent url('../../../img/controls/dot_black.svg') repeat-x left 3px}.quickaccess .item-browse .properties .secret.secret-copy:hover{background:transparent url('../../../img/controls/dot_red.svg') repeat-x left 3px}.quickaccess .item-browse .properties .secret.decrypted{max-width:28rem;width:inherit;margin-left:0;padding-right:0}.quickaccess .resource-create .form-container{padding:1.6rem}.quickaccess .resource-create .password:after,.quickaccess .resource-create .password:before{content:"";display:table}.quickaccess .resource-create .password:after{clear:both}.quickaccess .resource-create .password:after,.quickaccess .resource-create .password:before{content:"";display:table}.quickaccess .resource-create .password:after{clear:both}.quickaccess .resource-create .password .flex-row{display:flex;flex-direction:row}.quickaccess .resource-create .password .password-management{display:flex;flex-direction:column;flex:1 1 auto}.quickaccess .resource-create .password input{box-sizing:border-box}.quickaccess .resource-create .password .password-view{margin-top:.9rem;margin-left:-.1rem;height:2.2rem;border-radius:0;padding:.7rem .8rem .5rem 1rem;background:#fff;border:1px solid #ccc;border-left:0;border-top:1px solid #bbb}.quickaccess .resource-create .password .password-view svg{margin-top:.2rem}.quickaccess .resource-create .password input:focus+.password-view{box-shadow:inset -1px 1px 1px rgba(0,0,0,.2);border:1px solid #2894df;border-left:0}.quickaccess .resource-create .password .password-generate{margin-top:.9rem;margin-left:.8rem}.quickaccess .resource-create .password .password-strength .password-strength-label,.quickaccess .resource-create .password .password-strength .password-strength-value{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.quickaccess .resource-create .password .password-strength .password-strength-label .focusable:active,.quickaccess .resource-create .password .password-strength .password-strength-label .focusable:focus,.quickaccess .resource-create .password .password-strength .password-strength-value .focusable:active,.quickaccess .resource-create .password .password-strength .password-strength-value .focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.quickaccess .resource-create .password .password-strength .password-strength-bar{display:block;box-sizing:border-box;width:100%;height:.6rem;border:1px solid #ddd;margin-top:1rem}.quickaccess .resource-create .password .password-strength .password-strength-bar-value{height:.2rem;display:block;margin:.1rem}.quickaccess .resource-create .password .password-strength .password-strength-bar-value.very-weak{background:#000;width:5%}.quickaccess .resource-create .password .password-strength .password-strength-bar-value.weak{background:#d40101;width:10%}.quickaccess .resource-create .password .password-strength .password-strength-bar-value.fair{background:#ffbd2e;width:60%}.quickaccess .resource-create .password .password-strength .password-strength-bar-value.strong{background:#6c0;width:80%}.quickaccess .resource-create .password .password-strength .password-strength-bar-value.very-strong{background:#090;width:99.5%}.quickaccess .resource-auto-save .title{padding:0 1.8rem .8rem 1.8rem;margin:0}.quickaccess .resource-auto-save .form-container{padding:0 1.8rem .8rem 1.8rem}.quickaccess .resource-auto-save .password:after,.quickaccess .resource-auto-save .password:before{content:"";display:table}.quickaccess .resource-auto-save .password:after{clear:both}.quickaccess .resource-auto-save .password:after,.quickaccess .resource-auto-save .password:before{content:"";display:table}.quickaccess .resource-auto-save .password:after{clear:both}.quickaccess .resource-auto-save .password .flex-row{display:flex;flex-direction:row}.quickaccess .resource-auto-save .password .password-management{display:flex;flex-direction:column;flex:1 1 auto}.quickaccess .resource-auto-save .password input{box-sizing:border-box}.quickaccess .resource-auto-save .password .password-view{margin-top:.9rem;margin-left:-.1rem;height:2.2rem;border-radius:0;padding:.7rem .8rem .5rem 1rem;background:#fff;border:1px solid #ccc;border-left:0;border-top:1px solid #bbb}.quickaccess .resource-auto-save .password .password-view svg{margin-top:.2rem}.quickaccess .resource-auto-save .password input:focus+.password-view{box-shadow:inset -1px 1px 1px rgba(0,0,0,.2);border:1px solid #2894df;border-left:0}.quickaccess .resource-auto-save .password .password-strength .password-strength-label,.quickaccess .resource-auto-save .password .password-strength .password-strength-value{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.quickaccess .resource-auto-save .password .password-strength .password-strength-label .focusable:active,.quickaccess .resource-auto-save .password .password-strength .password-strength-label .focusable:focus,.quickaccess .resource-auto-save .password .password-strength .password-strength-value .focusable:active,.quickaccess .resource-auto-save .password .password-strength .password-strength-value .focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.quickaccess .resource-auto-save .password .password-strength .password-strength-bar{display:block;box-sizing:border-box;width:100%;height:.6rem;border:1px solid #ddd;margin-top:1rem}.quickaccess .resource-auto-save .password .password-strength .password-strength-bar-value{height:.2rem;display:block;margin:.1rem}.quickaccess .resource-auto-save .password .password-strength .password-strength-bar-value.very-weak{background:#000;width:5%}.quickaccess .resource-auto-save .password .password-strength .password-strength-bar-value.weak{background:#d40101;width:10%}.quickaccess .resource-auto-save .password .password-strength .password-strength-bar-value.fair{background:#ffbd2e;width:60%}.quickaccess .resource-auto-save .password .password-strength .password-strength-bar-value.strong{background:#6c0;width:80%}.quickaccess .resource-auto-save .password .password-strength .password-strength-bar-value.very-strong{background:#090;width:99.5%}.quickaccess .search{background:#f3f3f3;padding:1.6rem}.quickaccess .search:after,.quickaccess .search:before{content:"";display:table}.quickaccess .search:after{clear:both}.quickaccess .search:after,.quickaccess .search:before{content:"";display:table}.quickaccess .search:after{clear:both}.quickaccess .search .input.text input[type=text]{box-sizing:border-box;width:calc(100% - 4rem);float:left;border-right:0;padding-left:1.6rem;margin:0}.quickaccess .search .search-submit{height:2.2rem;border-radius:0;padding:.6rem .8rem .6rem 1.5rem;background:#fff;border:1px solid #ccc;border-left:0;border-top:1px solid #bbb}.quickaccess .search .search-submit svg{margin-top:.2rem}.quickaccess .search .input.text input[type=text]:focus+.search-submit{box-shadow:inset -1px 1px 1px rgba(0,0,0,.2);border:1px solid #2894df;border-left:0}.setup-extension span.icon.fa svg{width:80%;height:80%;margin:auto;display:block;opacity:.1}.setup-extension h3{padding:.8rem 2.5rem;text-align:center;margin-bottom:0}.setup-extension p{padding:.8rem 2.5rem;text-align:center;font-size:1.6rem}.slideNoTransition-exit{display:none;transform:translateX(0)}.slideLeft-enter{transform:translateX(100%)}.slideLeft-enter-active{transform:translateX(0);transition:transform 210ms}.slideLeft-exit{display:none;transform:translateX(0)}.slideLeft-exit-active{transform:translateX(100%);transition:transform 210ms}.slideRight-enter{transform:translateX(-100%)}.slideRight-enter-active{transform:translateX(0);transition:transform 210ms}.slideRight-exit{display:none;transform:translateX(0)}.slideRight-exit-active{transform:translateX(100%);transition:transform 210ms}.shake{animation:shake .42s cubic-bezier(.36,.07,.19,.97) both;transform:translate3d(0,0,0);backface-visibility:hidden;perspective:1000px}@keyframes shake{10%,90%{transform:translate3d(-1px,0,0)}20%,80%{transform:translate3d(2px,0,0)}30%,50%,70%{transform:translate3d(-4px,0,0)}40%,60%{transform:translate3d(4px,0,0)}}.fade-entering{opacity:1;animation-name:fadeInOpacity;animation-iteration-count:1;animation-timing-function:ease-in;animation-duration:.5s}@keyframes fadeInOpacity{0%{opacity:0}100%{opacity:1}}.quickaccess .generate-password .password{padding:.8rem 1.6rem 0 1.6rem}.quickaccess .generate-password .password:after,.quickaccess .generate-password .password:before{content:"";display:table}.quickaccess .generate-password .password:after{clear:both}.quickaccess .generate-password .password:after,.quickaccess .generate-password .password:before{content:"";display:table}.quickaccess .generate-password .password:after{clear:both}.quickaccess .generate-password .password input{float:left;box-sizing:border-box;width:calc(100% - 15rem)}.quickaccess .generate-password .password .password-view{float:left;margin-top:.9rem;margin-left:-.1rem;height:2.2rem;border-radius:0;padding:.7rem .8rem .5rem 1rem;background:#fff;border:1px solid #ccc;border-left:0;border-top:1px solid #bbb}.quickaccess .generate-password .password .password-view svg{margin-top:.2rem}.quickaccess .generate-password .password input:focus+.password-view{box-shadow:inset -1px 1px 1px rgba(0,0,0,.2);border:1px solid #2894df;border-left:0}.quickaccess .generate-password .password .actions.inline{display:flex;justify-content:flex-end;padding-left:0;margin:0}.quickaccess .generate-password .password .actions.inline .copy-to-clipboard,.quickaccess .generate-password .password .actions.inline .password-generate{margin-right:0;margin-left:.4rem;margin-top:.9rem;line-height:1.1rem}.quickaccess .generate-password .password .password-complexity .progress{width:calc(100% - 11.5rem)}.quickaccess .generate-password .password .password-complexity .complexity-text{font-size:1rem;padding-bottom:.5rem}.quickaccess .generate-password .password .password-complexity .complexity-text .text--nowrap{white-space:nowrap}.quickaccess .generate-password .tabs-nav{padding:0 1.6rem}.quickaccess .generate-password .tabs-active-content{padding:1.6rem;margin:0}.quickaccess .generate-password .slider input[type=number]{font-size:1.5rem;line-height:2rem}.quickaccess .generate-password #configure-password-generator-form-exclude-look-alike{position:fixed}.quickaccess .generate-password #configure-password-generator-form-exclude-look-alike+label{padding:.13rem 0 0 0}.quickaccess .generate-password #configure-passphrase-generator-form-words-case{margin-top:.9rem}.quickaccess .generate-password .button-group{padding-top:.8rem}.quickaccess .generate-password .button-group .button{margin:0 .525rem 1.2rem 0;padding:.8rem .8rem;font-size:1.5rem}.tabs{width:100%}.tabs-nav{border-bottom:1px solid #ddd}.tabs-nav li{display:inline}.tabs-nav li div{display:inline-block}.tabs-nav li a{display:inline-block;padding:.4em 1.75em;margin-left:1.25em;font-size:1.5rem;border:0}.tabs-nav li a.selected{margin-bottom:-1px;border:1px solid #ddd;border-bottom:1px solid #fff;background:#fff;-webkit-border-radius:0.3rem;-moz-border-radius:.3rem;border-radius:.3rem;border-bottom-left-radius:0;border-bottom-right-radius:0}.tabs-nav--bordered li{background-color:#eee;margin-right:.5rem;display:inline-block;border-radius:.3em .3rem 0 0}.tabs-nav--bordered li a{margin-left:0}.tabs-nav--bordered li.active{border:1px solid #ddd;border-bottom:1px solid #fff;margin-bottom:-10px;background-color:#fff}.tab-content{display:none}.tab-content.selected{display:block}.tabs-active-content{margin-top:.5em}.password-complexity .complexity-text{float:right;clear:right;width:30%;font-size:1rem;text-align:left;padding-left:0}.password-complexity.not_available .complexity-text{color:#ddd}.password-complexity .progress{width:100%;box-sizing:border-box;border:1px solid #ddd;height:10px;display:block;clear:both;margin:.25em 0 .5em 0;float:left}.password-complexity .progress-bar{background:#000;width:0;height:6px;display:block;float:left;margin:1px}.password-complexity .progress-bar.very-weak{background:#000;width:5%}.password-complexity .progress-bar.weak{background:#d40101;width:10%}.password-complexity .progress-bar.fair{background:#ffbd2e;width:60%}.password-complexity .progress-bar.strong{background:#6c0;width:80%}.password-complexity .progress-bar.very-strong{background:#090;width:99.5%}
@@ -1,8 +1,8 @@
1
1
  /**!
2
2
  * @name passbolt-styleguide
3
- * @version v3.4.0-alpha2
4
- * @date 2021-11-30
5
- * @copyright Copyright 2021 Passbolt SA
3
+ * @version v3.5.1
4
+ * @date 2022-01-12
5
+ * @copyright Copyright 2022 Passbolt SA
6
6
  * @source https://github.com/passbolt/passbolt_styleguide
7
7
  * @license AGPL-3.0
8
8
  */
@@ -1,8 +1,8 @@
1
1
  /**!
2
2
  * @name passbolt-styleguide
3
- * @version v3.4.0-alpha2
4
- * @date 2021-11-30
5
- * @copyright Copyright 2021 Passbolt SA
3
+ * @version v3.5.1
4
+ * @date 2022-01-12
5
+ * @copyright Copyright 2022 Passbolt SA
6
6
  * @source https://github.com/passbolt/passbolt_styleguide
7
7
  * @license AGPL-3.0
8
8
  */
@@ -1,8 +1,8 @@
1
1
  /**!
2
2
  * @name passbolt-styleguide
3
- * @version v3.4.0-alpha2
4
- * @date 2021-11-30
5
- * @copyright Copyright 2021 Passbolt SA
3
+ * @version v3.5.1
4
+ * @date 2022-01-12
5
+ * @copyright Copyright 2022 Passbolt SA
6
6
  * @source https://github.com/passbolt/passbolt_styleguide
7
7
  * @license AGPL-3.0
8
8
  */
@@ -1,8 +1,8 @@
1
1
  /**!
2
2
  * @name passbolt-styleguide
3
- * @version v3.4.0-alpha2
4
- * @date 2021-11-30
5
- * @copyright Copyright 2021 Passbolt SA
3
+ * @version v3.5.1
4
+ * @date 2022-01-12
5
+ * @copyright Copyright 2022 Passbolt SA
6
6
  * @source https://github.com/passbolt/passbolt_styleguide
7
7
  * @license AGPL-3.0
8
8
  */
@@ -1,8 +1,8 @@
1
1
  /**!
2
2
  * @name passbolt-styleguide
3
- * @version v3.4.0-alpha2
4
- * @date 2021-11-30
5
- * @copyright Copyright 2021 Passbolt SA
3
+ * @version v3.5.1
4
+ * @date 2022-01-12
5
+ * @copyright Copyright 2022 Passbolt SA
6
6
  * @source https://github.com/passbolt/passbolt_styleguide
7
7
  * @license AGPL-3.0
8
8
  */
@@ -1,8 +1,8 @@
1
1
  /**!
2
2
  * @name passbolt-styleguide
3
- * @version v3.4.0-alpha2
4
- * @date 2021-11-30
5
- * @copyright Copyright 2021 Passbolt SA
3
+ * @version v3.5.1
4
+ * @date 2022-01-12
5
+ * @copyright Copyright 2022 Passbolt SA
6
6
  * @source https://github.com/passbolt/passbolt_styleguide
7
7
  * @license AGPL-3.0
8
8
  */
@@ -1,8 +1,8 @@
1
1
  /**!
2
2
  * @name passbolt-styleguide
3
- * @version v3.4.0-alpha2
4
- * @date 2021-11-30
5
- * @copyright Copyright 2021 Passbolt SA
3
+ * @version v3.5.1
4
+ * @date 2022-01-12
5
+ * @copyright Copyright 2022 Passbolt SA
6
6
  * @source https://github.com/passbolt/passbolt_styleguide
7
7
  * @license AGPL-3.0
8
8
  */