amis 1.4.0 → 1.4.1-echarts-5.3.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.
- package/lib/components/Badge.d.ts +2 -1
- package/lib/components/Badge.js +33 -4
- package/lib/components/Badge.js.map +2 -2
- package/lib/components/Button.d.ts +24 -22
- package/lib/components/Button.js +13 -7
- package/lib/components/Button.js.map +2 -2
- package/lib/components/RichText.d.ts +6 -1
- package/lib/components/RichText.js +243 -8
- package/lib/components/RichText.js.map +2 -2
- package/lib/components/calendar/DaysView.js +2 -2
- package/lib/components/calendar/DaysView.js.map +2 -2
- package/lib/components/icons.js +2 -0
- package/lib/components/icons.js.map +2 -2
- package/lib/helper.css.map +1 -1
- package/lib/icons/loading-outline.js +7 -0
- package/lib/index.js +1 -1
- package/lib/renderers/Action.d.ts +9 -1
- package/lib/renderers/Action.js +5 -5
- package/lib/renderers/Action.js.map +2 -2
- package/lib/renderers/DropDownButton.d.ts +4 -0
- package/lib/renderers/DropDownButton.js +5 -3
- package/lib/renderers/DropDownButton.js.map +2 -2
- package/lib/renderers/Nav.d.ts +52 -22
- package/lib/renderers/Nav.js +100 -15
- package/lib/renderers/Nav.js.map +2 -2
- package/lib/renderers/Page.js +1 -1
- package/lib/renderers/Page.js.map +2 -2
- package/lib/themes/ang-ie11.css +350 -54
- package/lib/themes/ang.css +350 -54
- package/lib/themes/ang.css.map +1 -1
- package/lib/themes/antd-ie11.css +350 -54
- package/lib/themes/antd.css +350 -54
- package/lib/themes/antd.css.map +1 -1
- package/lib/themes/cxd-ie11.css +458 -174
- package/lib/themes/cxd.css +458 -174
- package/lib/themes/cxd.css.map +1 -1
- package/lib/themes/dark-ie11.css +350 -54
- package/lib/themes/dark.css +350 -54
- package/lib/themes/dark.css.map +1 -1
- package/lib/themes/default.css +458 -174
- package/lib/themes/default.css.map +1 -1
- package/lib/utils/helper.js.map +2 -2
- package/package.json +46 -39
- package/schema.json +200 -15
- package/scss/_mixins.scss +29 -0
- package/scss/_properties.scss +23 -11
- package/scss/components/_badge.scss +52 -1
- package/scss/components/_button.scss +35 -3
- package/scss/components/_image-gallery.scss +1 -1
- package/scss/components/_nav.scss +109 -35
- package/scss/themes/_cxd-variables.scss +20 -20
- package/sdk/ang-ie11.css +449 -56
- package/sdk/ang.css +459 -56
- package/sdk/antd-ie11.css +439 -48
- package/sdk/antd.css +459 -56
- package/sdk/charts.js +13 -13
- package/sdk/color-picker.js +69 -65
- package/sdk/cropperjs.js +2 -2
- package/sdk/cxd-ie11.css +908 -517
- package/sdk/cxd.css +567 -176
- package/sdk/dark-ie11.css +449 -56
- package/sdk/dark.css +459 -56
- package/sdk/exceljs.js +1 -1
- package/sdk/helper.css.map +1 -1
- package/sdk/markdown.js +69 -69
- package/sdk/papaparse.js +1 -1
- package/sdk/renderers/Form/CityDB.js +1 -1
- package/sdk/rest.js +22 -28
- package/sdk/rich-text.js +62 -64
- package/sdk/sdk-ie11.css +908 -517
- package/sdk/sdk.css +567 -176
- package/sdk/sdk.js +1145 -1141
- package/sdk/thirds/hls.js/hls.js +1 -1
- package/sdk/thirds/mpegts.js/mpegts.js +1 -1
- package/sdk/tinymce.js +57 -57
- package/sdk.zip +0 -0
- package/src/components/Badge.tsx +78 -22
- package/src/components/Button.tsx +23 -7
- package/src/components/RichText.tsx +284 -3
- package/src/components/calendar/DaysView.tsx +2 -2
- package/src/components/icons.tsx +2 -0
- package/src/icons/loading-outline.svg +4 -0
- package/src/renderers/Action.tsx +66 -13
- package/src/renderers/DropDownButton.tsx +13 -4
- package/src/renderers/Nav.tsx +165 -36
- package/src/renderers/Page.tsx +1 -1
- package/src/utils/helper.ts +1 -0
    
        package/sdk/ang-ie11.css
    CHANGED
    
    | @@ -21105,6 +21105,17 @@ readers do not read off random characters that represent icons */ | |
| 21105 21105 | 
             
              margin-left: 0.75rem;
         | 
| 21106 21106 | 
             
            }
         | 
| 21107 21107 |  | 
| 21108 | 
            +
            .amis-scope .a-Button .a-Button--loading:first-child:not(:last-child):not(.pull-right),
         | 
| 21109 | 
            +
            .amis-scope .a-Button > svg.icon:not(:last-child):not(.pull-right),
         | 
| 21110 | 
            +
            .amis-scope .a-Button > .pull-left {
         | 
| 21111 | 
            +
              margin-right: 0.75rem;
         | 
| 21112 | 
            +
            }
         | 
| 21113 | 
            +
             | 
| 21114 | 
            +
            .amis-scope .a-Button .a-Button--loading:last-child:not(:first-child):not(.pull-left),
         | 
| 21115 | 
            +
            .amis-scope .a-Button > .pull-right {
         | 
| 21116 | 
            +
              margin-left: 0.75rem;
         | 
| 21117 | 
            +
            }
         | 
| 21118 | 
            +
             | 
| 21108 21119 | 
             
            .amis-scope .a-Button img.a-Button-icon {
         | 
| 21109 21120 | 
             
              height: 0.875rem;
         | 
| 21110 21121 | 
             
              vertical-align: middle;
         | 
| @@ -21122,16 +21133,23 @@ readers do not read off random characters that represent icons */ | |
| 21122 21133 |  | 
| 21123 21134 | 
             
            .amis-scope .a-Button.is-disabled,
         | 
| 21124 21135 | 
             
            .amis-scope .a-Button:disabled {
         | 
| 21125 | 
            -
              opacity: 0.65;
         | 
| 21126 21136 | 
             
              filter: grayscale(100%);
         | 
| 21127 21137 | 
             
              box-shadow: none;
         | 
| 21128 21138 | 
             
              cursor: not-allowed;
         | 
| 21139 | 
            +
              color: #99a6ad;
         | 
| 21140 | 
            +
              pointer-events: auto;
         | 
| 21141 | 
            +
              border: none;
         | 
| 21142 | 
            +
              background: #F2F3F3;
         | 
| 21129 21143 | 
             
            }
         | 
| 21130 21144 |  | 
| 21131 21145 | 
             
            .amis-scope .a-Button:not(:disabled):not(.is-disabled) {
         | 
| 21132 21146 | 
             
              cursor: pointer;
         | 
| 21133 21147 | 
             
            }
         | 
| 21134 21148 |  | 
| 21149 | 
            +
            .amis-scope .a-Button.cxd-Button--link.is-disabled {
         | 
| 21150 | 
            +
              background: transparent;
         | 
| 21151 | 
            +
            }
         | 
| 21152 | 
            +
             | 
| 21135 21153 | 
             
            .amis-scope .a-Button > .pull-left,
         | 
| 21136 21154 | 
             
            .amis-scope .a-Button > .pull-right {
         | 
| 21137 21155 | 
             
              line-height: inherit;
         | 
| @@ -21159,8 +21177,14 @@ readers do not read off random characters that represent icons */ | |
| 21159 21177 |  | 
| 21160 21178 | 
             
            .amis-scope .a-Button--primary:not(:disabled):not(.is-disabled):hover {
         | 
| 21161 21179 | 
             
              color: #fff;
         | 
| 21162 | 
            -
              background: # | 
| 21163 | 
            -
              border-color: # | 
| 21180 | 
            +
              background: #4F86F4;
         | 
| 21181 | 
            +
              border-color: #4F86F4;
         | 
| 21182 | 
            +
            }
         | 
| 21183 | 
            +
             | 
| 21184 | 
            +
            .amis-scope .a-Button--primary:not(:disabled):not(.is-disabled):hover:active {
         | 
| 21185 | 
            +
              color: #fff;
         | 
| 21186 | 
            +
              background: #1C53C1;
         | 
| 21187 | 
            +
              border-color: #1C53C1;
         | 
| 21164 21188 | 
             
            }
         | 
| 21165 21189 |  | 
| 21166 21190 | 
             
            .amis-scope .a-Button--primary:hover:focus {
         | 
| @@ -21183,6 +21207,12 @@ readers do not read off random characters that represent icons */ | |
| 21183 21207 | 
             
              border-color: #545b62;
         | 
| 21184 21208 | 
             
            }
         | 
| 21185 21209 |  | 
| 21210 | 
            +
            .amis-scope .a-Button--secondary:not(:disabled):not(.is-disabled):hover:active {
         | 
| 21211 | 
            +
              color: #fff;
         | 
| 21212 | 
            +
              background: #545b62;
         | 
| 21213 | 
            +
              border-color: #4e555b;
         | 
| 21214 | 
            +
            }
         | 
| 21215 | 
            +
             | 
| 21186 21216 | 
             
            .amis-scope .a-Button--secondary:hover:focus {
         | 
| 21187 21217 | 
             
              box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
         | 
| 21188 21218 | 
             
                0 1px 1px rgba(0, 0, 0, 0.075);
         | 
| @@ -21203,11 +21233,43 @@ readers do not read off random characters that represent icons */ | |
| 21203 21233 | 
             
              border-color: #1e983b;
         | 
| 21204 21234 | 
             
            }
         | 
| 21205 21235 |  | 
| 21236 | 
            +
            .amis-scope .a-Button--success:not(:disabled):not(.is-disabled):hover:active {
         | 
| 21237 | 
            +
              color: #fff;
         | 
| 21238 | 
            +
              background: #1e983b;
         | 
| 21239 | 
            +
              border-color: #1c8d37;
         | 
| 21240 | 
            +
            }
         | 
| 21241 | 
            +
             | 
| 21206 21242 | 
             
            .amis-scope .a-Button--success:hover:focus {
         | 
| 21207 21243 | 
             
              box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
         | 
| 21208 21244 | 
             
                0 1px 1px rgba(0, 0, 0, 0.075);
         | 
| 21209 21245 | 
             
            }
         | 
| 21210 21246 |  | 
| 21247 | 
            +
            .amis-scope .a-Button--enhance {
         | 
| 21248 | 
            +
              color: #7266ba;
         | 
| 21249 | 
            +
              background: var(--Button--enhance-bg);
         | 
| 21250 | 
            +
              border-color: #7266ba;
         | 
| 21251 | 
            +
              box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
         | 
| 21252 | 
            +
                0 1px 1px rgba(0, 0, 0, 0.075);
         | 
| 21253 | 
            +
              text-shadow: none;
         | 
| 21254 | 
            +
            }
         | 
| 21255 | 
            +
             | 
| 21256 | 
            +
            .amis-scope .a-Button--enhance:not(:disabled):not(.is-disabled):hover {
         | 
| 21257 | 
            +
              color: #4F86F4;
         | 
| 21258 | 
            +
              background: #fff;
         | 
| 21259 | 
            +
              border-color: #4F86F4;
         | 
| 21260 | 
            +
            }
         | 
| 21261 | 
            +
             | 
| 21262 | 
            +
            .amis-scope .a-Button--enhance:not(:disabled):not(.is-disabled):hover:active {
         | 
| 21263 | 
            +
              color: #1C53C1;
         | 
| 21264 | 
            +
              background: #fff;
         | 
| 21265 | 
            +
              border-color: #1C53C1;
         | 
| 21266 | 
            +
            }
         | 
| 21267 | 
            +
             | 
| 21268 | 
            +
            .amis-scope .a-Button--enhance:hover:focus {
         | 
| 21269 | 
            +
              box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
         | 
| 21270 | 
            +
                0 1px 1px rgba(0, 0, 0, 0.075);
         | 
| 21271 | 
            +
            }
         | 
| 21272 | 
            +
             | 
| 21211 21273 | 
             
            .amis-scope .a-Button--info {
         | 
| 21212 21274 | 
             
              color: #fff;
         | 
| 21213 21275 | 
             
              background: #23b7e5;
         | 
| @@ -21223,6 +21285,12 @@ readers do not read off random characters that represent icons */ | |
| 21223 21285 | 
             
              border-color: #1797be;
         | 
| 21224 21286 | 
             
            }
         | 
| 21225 21287 |  | 
| 21288 | 
            +
            .amis-scope .a-Button--info:not(:disabled):not(.is-disabled):hover:active {
         | 
| 21289 | 
            +
              color: #fff;
         | 
| 21290 | 
            +
              background: #1797be;
         | 
| 21291 | 
            +
              border-color: #158eb3;
         | 
| 21292 | 
            +
            }
         | 
| 21293 | 
            +
             | 
| 21226 21294 | 
             
            .amis-scope .a-Button--info:hover:focus {
         | 
| 21227 21295 | 
             
              box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
         | 
| 21228 21296 | 
             
                0 1px 1px rgba(0, 0, 0, 0.075);
         | 
| @@ -21243,6 +21311,12 @@ readers do not read off random characters that represent icons */ | |
| 21243 21311 | 
             
              border-color: #f4ca06;
         | 
| 21244 21312 | 
             
            }
         | 
| 21245 21313 |  | 
| 21314 | 
            +
            .amis-scope .a-Button--warning:not(:disabled):not(.is-disabled):hover:active {
         | 
| 21315 | 
            +
              color: #fff;
         | 
| 21316 | 
            +
              background: #f4ca06;
         | 
| 21317 | 
            +
              border-color: #e8c006;
         | 
| 21318 | 
            +
            }
         | 
| 21319 | 
            +
             | 
| 21246 21320 | 
             
            .amis-scope .a-Button--warning:hover:focus {
         | 
| 21247 21321 | 
             
              box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
         | 
| 21248 21322 | 
             
                0 1px 1px rgba(0, 0, 0, 0.075);
         | 
| @@ -21263,6 +21337,12 @@ readers do not read off random characters that represent icons */ | |
| 21263 21337 | 
             
              border-color: #ec2121;
         | 
| 21264 21338 | 
             
            }
         | 
| 21265 21339 |  | 
| 21340 | 
            +
            .amis-scope .a-Button--danger:not(:disabled):not(.is-disabled):hover:active {
         | 
| 21341 | 
            +
              color: #fff;
         | 
| 21342 | 
            +
              background: #ec2121;
         | 
| 21343 | 
            +
              border-color: #eb1515;
         | 
| 21344 | 
            +
            }
         | 
| 21345 | 
            +
             | 
| 21266 21346 | 
             
            .amis-scope .a-Button--danger:hover:focus {
         | 
| 21267 21347 | 
             
              box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
         | 
| 21268 21348 | 
             
                0 1px 1px rgba(0, 0, 0, 0.075);
         | 
| @@ -21283,6 +21363,12 @@ readers do not read off random characters that represent icons */ | |
| 21283 21363 | 
             
              border-color: #cfdadd;
         | 
| 21284 21364 | 
             
            }
         | 
| 21285 21365 |  | 
| 21366 | 
            +
            .amis-scope .a-Button--light:not(:disabled):not(.is-disabled):hover:active {
         | 
| 21367 | 
            +
              color: #58666e;
         | 
| 21368 | 
            +
              background: #cfdadd;
         | 
| 21369 | 
            +
              border-color: #c8d4d7;
         | 
| 21370 | 
            +
            }
         | 
| 21371 | 
            +
             | 
| 21286 21372 | 
             
            .amis-scope .a-Button--light:hover:focus {
         | 
| 21287 21373 | 
             
              box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
         | 
| 21288 21374 | 
             
                0 1px 1px rgba(0, 0, 0, 0.075);
         | 
| @@ -21303,6 +21389,12 @@ readers do not read off random characters that represent icons */ | |
| 21303 21389 | 
             
              border-color: #252833;
         | 
| 21304 21390 | 
             
            }
         | 
| 21305 21391 |  | 
| 21392 | 
            +
            .amis-scope .a-Button--dark:not(:disabled):not(.is-disabled):hover:active {
         | 
| 21393 | 
            +
              color: #fff;
         | 
| 21394 | 
            +
              background: #252833;
         | 
| 21395 | 
            +
              border-color: #1f222c;
         | 
| 21396 | 
            +
            }
         | 
| 21397 | 
            +
             | 
| 21306 21398 | 
             
            .amis-scope .a-Button--dark:hover:focus {
         | 
| 21307 21399 | 
             
              box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
         | 
| 21308 21400 | 
             
                0 1px 1px rgba(0, 0, 0, 0.075);
         | 
| @@ -21318,9 +21410,15 @@ readers do not read off random characters that represent icons */ | |
| 21318 21410 | 
             
            }
         | 
| 21319 21411 |  | 
| 21320 21412 | 
             
            .amis-scope .a-Button--default:not(:disabled):not(.is-disabled):hover {
         | 
| 21321 | 
            -
              color: # | 
| 21322 | 
            -
              background: # | 
| 21323 | 
            -
              border-color: # | 
| 21413 | 
            +
              color: #7266ba;
         | 
| 21414 | 
            +
              background: #fff;
         | 
| 21415 | 
            +
              border-color: #7266ba;
         | 
| 21416 | 
            +
            }
         | 
| 21417 | 
            +
             | 
| 21418 | 
            +
            .amis-scope .a-Button--default:not(:disabled):not(.is-disabled):hover:active {
         | 
| 21419 | 
            +
              color: #1C53C1;
         | 
| 21420 | 
            +
              background: #fff;
         | 
| 21421 | 
            +
              border-color: #1C53C1;
         | 
| 21324 21422 | 
             
            }
         | 
| 21325 21423 |  | 
| 21326 21424 | 
             
            .amis-scope .a-Button--default:hover:focus {
         | 
| @@ -21352,6 +21450,17 @@ readers do not read off random characters that represent icons */ | |
| 21352 21450 | 
             
              margin-left: 0.25rem;
         | 
| 21353 21451 | 
             
            }
         | 
| 21354 21452 |  | 
| 21453 | 
            +
            .amis-scope .a-Button--xs .a-Button--loading:first-child:not(:last-child):not(.pull-right),
         | 
| 21454 | 
            +
            .amis-scope .a-Button--xs > svg.icon:not(:last-child):not(.pull-right),
         | 
| 21455 | 
            +
            .amis-scope .a-Button--xs > .pull-left {
         | 
| 21456 | 
            +
              margin-right: 0.25rem;
         | 
| 21457 | 
            +
            }
         | 
| 21458 | 
            +
             | 
| 21459 | 
            +
            .amis-scope .a-Button--xs .a-Button--loading:last-child:not(:first-child):not(.pull-left),
         | 
| 21460 | 
            +
            .amis-scope .a-Button--xs > .pull-right {
         | 
| 21461 | 
            +
              margin-left: 0.25rem;
         | 
| 21462 | 
            +
            }
         | 
| 21463 | 
            +
             | 
| 21355 21464 | 
             
            .amis-scope .a-Button--xs img.a-Button-icon {
         | 
| 21356 21465 | 
             
              height: 0.875rem;
         | 
| 21357 21466 | 
             
              vertical-align: middle;
         | 
| @@ -21385,6 +21494,17 @@ readers do not read off random characters that represent icons */ | |
| 21385 21494 | 
             
              margin-left: 0.5rem;
         | 
| 21386 21495 | 
             
            }
         | 
| 21387 21496 |  | 
| 21497 | 
            +
            .amis-scope .a-Button--sm .a-Button--loading:first-child:not(:last-child):not(.pull-right),
         | 
| 21498 | 
            +
            .amis-scope .a-Button--sm > svg.icon:not(:last-child):not(.pull-right),
         | 
| 21499 | 
            +
            .amis-scope .a-Button--sm > .pull-left {
         | 
| 21500 | 
            +
              margin-right: 0.5rem;
         | 
| 21501 | 
            +
            }
         | 
| 21502 | 
            +
             | 
| 21503 | 
            +
            .amis-scope .a-Button--sm .a-Button--loading:last-child:not(:first-child):not(.pull-left),
         | 
| 21504 | 
            +
            .amis-scope .a-Button--sm > .pull-right {
         | 
| 21505 | 
            +
              margin-left: 0.5rem;
         | 
| 21506 | 
            +
            }
         | 
| 21507 | 
            +
             | 
| 21388 21508 | 
             
            .amis-scope .a-Button--sm img.a-Button-icon {
         | 
| 21389 21509 | 
             
              height: 0.875rem;
         | 
| 21390 21510 | 
             
              vertical-align: middle;
         | 
| @@ -21418,6 +21538,17 @@ readers do not read off random characters that represent icons */ | |
| 21418 21538 | 
             
              margin-left: 0.75rem;
         | 
| 21419 21539 | 
             
            }
         | 
| 21420 21540 |  | 
| 21541 | 
            +
            .amis-scope .a-Button--md .a-Button--loading:first-child:not(:last-child):not(.pull-right),
         | 
| 21542 | 
            +
            .amis-scope .a-Button--md > svg.icon:not(:last-child):not(.pull-right),
         | 
| 21543 | 
            +
            .amis-scope .a-Button--md > .pull-left {
         | 
| 21544 | 
            +
              margin-right: 0.75rem;
         | 
| 21545 | 
            +
            }
         | 
| 21546 | 
            +
             | 
| 21547 | 
            +
            .amis-scope .a-Button--md .a-Button--loading:last-child:not(:first-child):not(.pull-left),
         | 
| 21548 | 
            +
            .amis-scope .a-Button--md > .pull-right {
         | 
| 21549 | 
            +
              margin-left: 0.75rem;
         | 
| 21550 | 
            +
            }
         | 
| 21551 | 
            +
             | 
| 21421 21552 | 
             
            .amis-scope .a-Button--md img.a-Button-icon {
         | 
| 21422 21553 | 
             
              height: 0.875rem;
         | 
| 21423 21554 | 
             
              vertical-align: middle;
         | 
| @@ -21451,6 +21582,17 @@ readers do not read off random characters that represent icons */ | |
| 21451 21582 | 
             
              margin-left: 1rem;
         | 
| 21452 21583 | 
             
            }
         | 
| 21453 21584 |  | 
| 21585 | 
            +
            .amis-scope .a-Button--lg .a-Button--loading:first-child:not(:last-child):not(.pull-right),
         | 
| 21586 | 
            +
            .amis-scope .a-Button--lg > svg.icon:not(:last-child):not(.pull-right),
         | 
| 21587 | 
            +
            .amis-scope .a-Button--lg > .pull-left {
         | 
| 21588 | 
            +
              margin-right: 1rem;
         | 
| 21589 | 
            +
            }
         | 
| 21590 | 
            +
             | 
| 21591 | 
            +
            .amis-scope .a-Button--lg .a-Button--loading:last-child:not(:first-child):not(.pull-left),
         | 
| 21592 | 
            +
            .amis-scope .a-Button--lg > .pull-right {
         | 
| 21593 | 
            +
              margin-left: 1rem;
         | 
| 21594 | 
            +
            }
         | 
| 21595 | 
            +
             | 
| 21454 21596 | 
             
            .amis-scope .a-Button--lg img.a-Button-icon {
         | 
| 21455 21597 | 
             
              height: 0.875rem;
         | 
| 21456 21598 | 
             
              vertical-align: middle;
         | 
| @@ -21479,6 +21621,14 @@ readers do not read off random characters that represent icons */ | |
| 21479 21621 | 
             
              line-height: 1;
         | 
| 21480 21622 | 
             
            }
         | 
| 21481 21623 |  | 
| 21624 | 
            +
            .amis-scope .a-Button--loading {
         | 
| 21625 | 
            +
              transition: --Button-transition;
         | 
| 21626 | 
            +
            }
         | 
| 21627 | 
            +
             | 
| 21628 | 
            +
            .amis-scope .a-Button--loading svg {
         | 
| 21629 | 
            +
              animation: spin 1s infinite linear;
         | 
| 21630 | 
            +
            }
         | 
| 21631 | 
            +
             | 
| 21482 21632 | 
             
            .amis-scope .a-Button--link {
         | 
| 21483 21633 | 
             
              width: auto;
         | 
| 21484 21634 | 
             
              min-width: auto;
         | 
| @@ -21490,8 +21640,12 @@ readers do not read off random characters that represent icons */ | |
| 21490 21640 | 
             
            }
         | 
| 21491 21641 |  | 
| 21492 21642 | 
             
            .amis-scope .a-Button--link:hover:focus {
         | 
| 21493 | 
            -
              color: # | 
| 21494 | 
            -
               | 
| 21643 | 
            +
              color: #4F86F4;
         | 
| 21644 | 
            +
              box-shadow: none;
         | 
| 21645 | 
            +
            }
         | 
| 21646 | 
            +
             | 
| 21647 | 
            +
            .amis-scope .a-Button--link:hover:active {
         | 
| 21648 | 
            +
              color: #1C53C1;
         | 
| 21495 21649 | 
             
              box-shadow: none;
         | 
| 21496 21650 | 
             
            }
         | 
| 21497 21651 |  | 
| @@ -21499,7 +21653,7 @@ readers do not read off random characters that represent icons */ | |
| 21499 21653 | 
             
            .amis-scope .a-Button--link.is-disabled {
         | 
| 21500 21654 | 
             
              color: #99a6ad;
         | 
| 21501 21655 | 
             
              pointer-events: none;
         | 
| 21502 | 
            -
              background:  | 
| 21656 | 
            +
              background: #F2F3F3;
         | 
| 21503 21657 | 
             
            }
         | 
| 21504 21658 |  | 
| 21505 21659 | 
             
            .amis-scope .a-Button--block {
         | 
| @@ -21578,7 +21732,8 @@ readers do not read off random characters that represent icons */ | |
| 21578 21732 | 
             
            }
         | 
| 21579 21733 |  | 
| 21580 21734 | 
             
            .amis-scope .a-Badge-text,
         | 
| 21581 | 
            -
            .amis-scope .a-Badge-dot | 
| 21735 | 
            +
            .amis-scope .a-Badge-dot,
         | 
| 21736 | 
            +
            .amis-scope .a-Badge-ribbon {
         | 
| 21582 21737 | 
             
              background: #f05050;
         | 
| 21583 21738 | 
             
              position: absolute;
         | 
| 21584 21739 | 
             
              top: 0;
         | 
| @@ -21644,6 +21799,56 @@ readers do not read off random characters that represent icons */ | |
| 21644 21799 | 
             
              border-radius: 50%;
         | 
| 21645 21800 | 
             
            }
         | 
| 21646 21801 |  | 
| 21802 | 
            +
            .amis-scope .a-Badge-ribbon-out {
         | 
| 21803 | 
            +
              overflow: hidden;
         | 
| 21804 | 
            +
              position: absolute;
         | 
| 21805 | 
            +
              top: 0;
         | 
| 21806 | 
            +
              bottom: 0;
         | 
| 21807 | 
            +
              right: 0;
         | 
| 21808 | 
            +
            }
         | 
| 21809 | 
            +
             | 
| 21810 | 
            +
            .amis-scope .a-Badge-ribbon {
         | 
| 21811 | 
            +
              color: #fff;
         | 
| 21812 | 
            +
              height: 1rem;
         | 
| 21813 | 
            +
              line-height: 1rem;
         | 
| 21814 | 
            +
              transform: translateX(calc(50% - 5px)) rotate(45deg) scale(0.7);
         | 
| 21815 | 
            +
              transform-origin: 50% 0;
         | 
| 21816 | 
            +
              border-radius: 0;
         | 
| 21817 | 
            +
              text-align: center;
         | 
| 21818 | 
            +
              width: 62.5rem;
         | 
| 21819 | 
            +
              top: 5px;
         | 
| 21820 | 
            +
            }
         | 
| 21821 | 
            +
             | 
| 21822 | 
            +
            .amis-scope .a-Badge-ribbon-out--top-left,
         | 
| 21823 | 
            +
            .amis-scope .a-Badge-ribbon-out--bottom-left {
         | 
| 21824 | 
            +
              left: 0;
         | 
| 21825 | 
            +
              right: auto;
         | 
| 21826 | 
            +
            }
         | 
| 21827 | 
            +
             | 
| 21828 | 
            +
            .amis-scope .a-Badge-ribbon--top-left {
         | 
| 21829 | 
            +
              transform: translateX(calc(-50% + 5px)) rotate(-45deg) scale(0.7);
         | 
| 21830 | 
            +
              left: 0;
         | 
| 21831 | 
            +
              right: auto;
         | 
| 21832 | 
            +
            }
         | 
| 21833 | 
            +
             | 
| 21834 | 
            +
            .amis-scope .a-Badge-ribbon--bottom-left {
         | 
| 21835 | 
            +
              transform: translateX(calc(-50% + 5px)) rotate(45deg) scale(0.7);
         | 
| 21836 | 
            +
              transform-origin: 50% 100%;
         | 
| 21837 | 
            +
              left: 0;
         | 
| 21838 | 
            +
              right: auto;
         | 
| 21839 | 
            +
              bottom: 5px;
         | 
| 21840 | 
            +
              top: auto;
         | 
| 21841 | 
            +
            }
         | 
| 21842 | 
            +
             | 
| 21843 | 
            +
            .amis-scope .a-Badge-ribbon--bottom-right {
         | 
| 21844 | 
            +
              transform: translateX(calc(50% - 5px)) rotate(-45deg) scale(0.7);
         | 
| 21845 | 
            +
              transform-origin: 50% 100%;
         | 
| 21846 | 
            +
              left: auto;
         | 
| 21847 | 
            +
              right: 0;
         | 
| 21848 | 
            +
              bottom: 5px;
         | 
| 21849 | 
            +
              top: auto;
         | 
| 21850 | 
            +
            }
         | 
| 21851 | 
            +
             | 
| 21647 21852 | 
             
            @keyframes badgeDotAnimation {
         | 
| 21648 21853 | 
             
              0% {
         | 
| 21649 21854 | 
             
                transform: scale(0.8);
         | 
| @@ -22882,6 +23087,17 @@ readers do not read off random characters that represent icons */ | |
| 22882 23087 | 
             
              margin-left: 0.5rem;
         | 
| 22883 23088 | 
             
            }
         | 
| 22884 23089 |  | 
| 23090 | 
            +
            .amis-scope .a-ArrayInput-addBtn .a-Button--loading:first-child:not(:last-child):not(.pull-right),
         | 
| 23091 | 
            +
            .amis-scope .a-ArrayInput-addBtn > svg.icon:not(:last-child):not(.pull-right),
         | 
| 23092 | 
            +
            .amis-scope .a-ArrayInput-addBtn > .pull-left {
         | 
| 23093 | 
            +
              margin-right: 0.5rem;
         | 
| 23094 | 
            +
            }
         | 
| 23095 | 
            +
             | 
| 23096 | 
            +
            .amis-scope .a-ArrayInput-addBtn .a-Button--loading:last-child:not(:first-child):not(.pull-left),
         | 
| 23097 | 
            +
            .amis-scope .a-ArrayInput-addBtn > .pull-right {
         | 
| 23098 | 
            +
              margin-left: 0.5rem;
         | 
| 23099 | 
            +
            }
         | 
| 23100 | 
            +
             | 
| 22885 23101 | 
             
            .amis-scope .a-ArrayInput-addBtn img.a-Button-icon {
         | 
| 22886 23102 | 
             
              height: 0.875rem;
         | 
| 22887 23103 | 
             
              vertical-align: middle;
         | 
| @@ -22893,6 +23109,12 @@ readers do not read off random characters that represent icons */ | |
| 22893 23109 | 
             
              border-color: #b4bbc5;
         | 
| 22894 23110 | 
             
            }
         | 
| 22895 23111 |  | 
| 23112 | 
            +
            .amis-scope .a-ArrayInput-addBtn:not(:disabled):not(.is-disabled):hover:active {
         | 
| 23113 | 
            +
              color: #fff;
         | 
| 23114 | 
            +
              background: #1797be;
         | 
| 23115 | 
            +
              border-color: #adb4bf;
         | 
| 23116 | 
            +
            }
         | 
| 23117 | 
            +
             | 
| 22896 23118 | 
             
            .amis-scope .a-ArrayInput-addBtn:hover:focus {
         | 
| 22897 23119 | 
             
              box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
         | 
| 22898 23120 | 
             
                0 1px 1px rgba(0, 0, 0, 0.075);
         | 
| @@ -23501,6 +23723,7 @@ readers do not read off random characters that represent icons */ | |
| 23501 23723 | 
             
            .amis-scope .a-Nav--tabs .a-Nav-item {
         | 
| 23502 23724 | 
             
              margin-bottom: calc(0.0625rem * -1);
         | 
| 23503 23725 | 
             
              display: inline-block;
         | 
| 23726 | 
            +
              position: relative;
         | 
| 23504 23727 | 
             
            }
         | 
| 23505 23728 |  | 
| 23506 23729 | 
             
            .amis-scope .a-Nav--tabs .a-Nav-item > a {
         | 
| @@ -23513,7 +23736,7 @@ readers do not read off random characters that represent icons */ | |
| 23513 23736 | 
             
              color: #58666e;
         | 
| 23514 23737 | 
             
              text-decoration: none;
         | 
| 23515 23738 | 
             
              margin-right: 0.125rem;
         | 
| 23516 | 
            -
              padding: 0.5rem  | 
| 23739 | 
            +
              padding: 0.5rem 1.5rem;
         | 
| 23517 23740 | 
             
              cursor: pointer;
         | 
| 23518 23741 | 
             
            }
         | 
| 23519 23742 |  | 
| @@ -23543,106 +23766,224 @@ readers do not read off random characters that represent icons */ | |
| 23543 23766 | 
             
              min-height: 3.125rem;
         | 
| 23544 23767 | 
             
            }
         | 
| 23545 23768 |  | 
| 23546 | 
            -
            .amis-scope .a-Nav--stacked .a-Nav-item | 
| 23769 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item,
         | 
| 23770 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge {
         | 
| 23547 23771 | 
             
              position: relative;
         | 
| 23772 | 
            +
              display: flex;
         | 
| 23773 | 
            +
              flex-wrap: wrap;
         | 
| 23774 | 
            +
              align-items: stretch;
         | 
| 23775 | 
            +
              width: 100%;
         | 
| 23548 23776 | 
             
            }
         | 
| 23549 23777 |  | 
| 23550 | 
            -
            .amis-scope .a-Nav--stacked .a-Nav-item  | 
| 23551 | 
            -
             | 
| 23778 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item .a-Nav-itemDrager,
         | 
| 23779 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge .a-Nav-itemDrager {
         | 
| 23780 | 
            +
              cursor: move;
         | 
| 23781 | 
            +
              position: absolute;
         | 
| 23782 | 
            +
              left: 0;
         | 
| 23783 | 
            +
              top: 0.6875rem;
         | 
| 23784 | 
            +
              display: none;
         | 
| 23785 | 
            +
            }
         | 
| 23786 | 
            +
             | 
| 23787 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item .a-Nav-itemDrager > a,
         | 
| 23788 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item .a-Nav-itemDrager > .a-Badge > a,
         | 
| 23789 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge .a-Nav-itemDrager > a,
         | 
| 23790 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge .a-Nav-itemDrager > .a-Badge > a {
         | 
| 23791 | 
            +
              color: #4b5563;
         | 
| 23792 | 
            +
            }
         | 
| 23793 | 
            +
             | 
| 23794 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item .a-Nav-itemDrager > a:hover,
         | 
| 23795 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item .a-Nav-itemDrager > .a-Badge > a:hover,
         | 
| 23796 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge .a-Nav-itemDrager > a:hover,
         | 
| 23797 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge .a-Nav-itemDrager > .a-Badge > a:hover {
         | 
| 23798 | 
            +
              color: #111827;
         | 
| 23799 | 
            +
            }
         | 
| 23800 | 
            +
             | 
| 23801 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item .a-Nav-itemDrager svg,
         | 
| 23802 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge .a-Nav-itemDrager svg {
         | 
| 23803 | 
            +
              width: 1rem;
         | 
| 23804 | 
            +
              height: 1rem;
         | 
| 23805 | 
            +
            }
         | 
| 23806 | 
            +
             | 
| 23807 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item > .a-Nav-item-badgeText,
         | 
| 23808 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge > .a-Nav-item-badgeText {
         | 
| 23809 | 
            +
              position: absolute;
         | 
| 23810 | 
            +
              top: 0;
         | 
| 23811 | 
            +
              bottom: 0;
         | 
| 23812 | 
            +
              width: 2.1875rem;
         | 
| 23813 | 
            +
              overflow: hidden;
         | 
| 23814 | 
            +
            }
         | 
| 23815 | 
            +
             | 
| 23816 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item > .a-Nav-item-badgeText > span,
         | 
| 23817 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge > .a-Nav-item-badgeText > span {
         | 
| 23818 | 
            +
              position: absolute;
         | 
| 23819 | 
            +
              top: 0.125rem;
         | 
| 23820 | 
            +
              left: -0.8125rem;
         | 
| 23821 | 
            +
              transform: rotate(-45deg);
         | 
| 23822 | 
            +
              width: 3.125rem;
         | 
| 23823 | 
            +
              font-size: 12px;
         | 
| 23824 | 
            +
              text-align: center;
         | 
| 23825 | 
            +
              color: #fff;
         | 
| 23826 | 
            +
              background: #27c24c;
         | 
| 23827 | 
            +
            }
         | 
| 23828 | 
            +
             | 
| 23829 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item > .a-Nav-item-atcions,
         | 
| 23830 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge > .a-Nav-item-atcions {
         | 
| 23831 | 
            +
              display: flex;
         | 
| 23832 | 
            +
              align-items: center;
         | 
| 23833 | 
            +
            }
         | 
| 23834 | 
            +
             | 
| 23835 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item > a,
         | 
| 23836 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item > .a-Badge > a,
         | 
| 23837 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge > a,
         | 
| 23838 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge > .a-Badge > a {
         | 
| 23839 | 
            +
              display: flex;
         | 
| 23840 | 
            +
              align-items: center;
         | 
| 23552 23841 | 
             
              outline: none;
         | 
| 23553 23842 | 
             
              color: #58666e;
         | 
| 23554 23843 | 
             
              text-decoration: none;
         | 
| 23555 | 
            -
              padding: 0.5rem 0. | 
| 23844 | 
            +
              padding: 0.5rem 0.5rem;
         | 
| 23556 23845 | 
             
              cursor: pointer;
         | 
| 23557 23846 | 
             
              background: transparent;
         | 
| 23558 23847 | 
             
              border-radius: 0;
         | 
| 23559 23848 | 
             
              text-overflow: ellipsis;
         | 
| 23560 | 
            -
             | 
| 23561 | 
            -
             | 
| 23562 | 
            -
            .amis-scope .a-Nav--stacked .a-Nav-item > a::after {
         | 
| 23563 | 
            -
              border-left: 3px solid transparent;
         | 
| 23564 | 
            -
              position: absolute;
         | 
| 23565 | 
            -
              left: 0;
         | 
| 23566 | 
            -
              top: 0;
         | 
| 23567 | 
            -
              content: "";
         | 
| 23568 | 
            -
              width: 1px;
         | 
| 23569 | 
            -
              height: 100%;
         | 
| 23570 | 
            -
              transform: scaleY(0.0001);
         | 
| 23571 | 
            -
              transition: transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
         | 
| 23572 | 
            -
            }
         | 
| 23573 | 
            -
             | 
| 23574 | 
            -
            .amis-scope .a-Nav--stacked .a-Nav-item.has-sub > a {
         | 
| 23575 | 
            -
              padding-right: calc(0.75rem + 0.5rem);
         | 
| 23849 | 
            +
              flex: 1;
         | 
| 23576 23850 | 
             
            }
         | 
| 23577 23851 |  | 
| 23578 23852 | 
             
            .amis-scope .a-Nav--stacked .a-Nav-item > a:hover,
         | 
| 23579 | 
            -
            .amis-scope .a-Nav--stacked .a-Nav-item > a:focus | 
| 23853 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item > a:focus,
         | 
| 23854 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item > a:hover + .a-Nav-item-atcions,
         | 
| 23855 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item > a:focus + .a-Nav-item-atcions,
         | 
| 23856 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item > .a-Badge > a:hover,
         | 
| 23857 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item > .a-Badge > a:focus,
         | 
| 23858 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item > .a-Badge > a:hover + .a-Nav-item-atcions,
         | 
| 23859 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item > .a-Badge > a:focus + .a-Nav-item-atcions,
         | 
| 23860 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge > a:hover,
         | 
| 23861 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge > a:focus,
         | 
| 23862 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge > a:hover + .a-Nav-item-atcions,
         | 
| 23863 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge > a:focus + .a-Nav-item-atcions,
         | 
| 23864 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge > .a-Badge > a:hover,
         | 
| 23865 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge > .a-Badge > a:focus,
         | 
| 23866 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge > .a-Badge > a:hover + .a-Nav-item-atcions,
         | 
| 23867 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge > .a-Badge > a:focus + .a-Nav-item-atcions {
         | 
| 23580 23868 | 
             
              border-color: #414c52;
         | 
| 23581 23869 | 
             
              text-decoration: none;
         | 
| 23582 23870 | 
             
              background: rgba(0, 0, 0, 0.05);
         | 
| 23871 | 
            +
              z-index: 9999;
         | 
| 23872 | 
            +
            }
         | 
| 23873 | 
            +
             | 
| 23874 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item > a:hover > .a-Nav-itemDrager,
         | 
| 23875 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item > a:focus > .a-Nav-itemDrager,
         | 
| 23876 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item > .a-Badge > a:hover > .a-Nav-itemDrager,
         | 
| 23877 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item > .a-Badge > a:focus > .a-Nav-itemDrager,
         | 
| 23878 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge > a:hover > .a-Nav-itemDrager,
         | 
| 23879 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge > a:focus > .a-Nav-itemDrager,
         | 
| 23880 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge > .a-Badge > a:hover > .a-Nav-itemDrager,
         | 
| 23881 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge > .a-Badge > a:focus > .a-Nav-itemDrager {
         | 
| 23882 | 
            +
              display: block;
         | 
| 23583 23883 | 
             
            }
         | 
| 23584 23884 |  | 
| 23585 23885 | 
             
            .amis-scope .a-Nav--stacked .a-Nav-item.disabled > a,
         | 
| 23586 | 
            -
            .amis-scope .a-Nav--stacked .a-Nav-item.is-disabled > a | 
| 23886 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item.is-disabled > a,
         | 
| 23887 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item.disabled > .a-Badge > a,
         | 
| 23888 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item.is-disabled > .a-Badge > a,
         | 
| 23889 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge.disabled > a,
         | 
| 23890 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge.is-disabled > a,
         | 
| 23891 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge.disabled > .a-Badge > a,
         | 
| 23892 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge.is-disabled > .a-Badge > a {
         | 
| 23587 23893 | 
             
              color: #99a6ad;
         | 
| 23588 23894 | 
             
              background: transparent;
         | 
| 23589 23895 | 
             
              pointer-events: none;
         | 
| 23590 23896 | 
             
            }
         | 
| 23591 23897 |  | 
| 23898 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item.active,
         | 
| 23899 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item.is-active,
         | 
| 23900 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge.active,
         | 
| 23901 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge.is-active {
         | 
| 23902 | 
            +
              background: #23b7e5 !important;
         | 
| 23903 | 
            +
            }
         | 
| 23904 | 
            +
             | 
| 23592 23905 | 
             
            .amis-scope .a-Nav--stacked .a-Nav-item.active > a,
         | 
| 23593 | 
            -
            .amis-scope .a-Nav--stacked .a-Nav-item.is-active > a | 
| 23906 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item.is-active > .a-Nav-item-atcions,
         | 
| 23907 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item.is-active > a,
         | 
| 23908 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item.active > .a-Badge > a,
         | 
| 23909 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item.is-active > .a-Badge > .a-Nav-item-atcions,
         | 
| 23910 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item.is-active > .a-Badge > a,
         | 
| 23911 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge.active > a,
         | 
| 23912 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge.is-active > .a-Nav-item-atcions,
         | 
| 23913 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge.is-active > a,
         | 
| 23914 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge.active > .a-Badge > a,
         | 
| 23915 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge.is-active > .a-Badge > .a-Nav-item-atcions,
         | 
| 23916 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge.is-active > .a-Badge > a {
         | 
| 23594 23917 | 
             
              color: #fff;
         | 
| 23595 | 
            -
              background: #23b7e5;
         | 
| 23596 | 
            -
              padding-left: 0.75rem;
         | 
| 23597 23918 | 
             
              position: relative;
         | 
| 23598 23919 | 
             
            }
         | 
| 23599 23920 |  | 
| 23600 23921 | 
             
            .amis-scope .a-Nav--stacked .a-Nav-item.active > a::after,
         | 
| 23601 | 
            -
            .amis-scope .a-Nav--stacked .a-Nav-item.is-active > a::after | 
| 23922 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item.is-active > .a-Nav-item-atcions::after,
         | 
| 23923 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item.is-active > a::after,
         | 
| 23924 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item.active > .a-Badge > a::after,
         | 
| 23925 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item.is-active > .a-Badge > .a-Nav-item-atcions::after,
         | 
| 23926 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item.is-active > .a-Badge > a::after,
         | 
| 23927 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge.active > a::after,
         | 
| 23928 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge.is-active > .a-Nav-item-atcions::after,
         | 
| 23929 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge.is-active > a::after,
         | 
| 23930 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge.active > .a-Badge > a::after,
         | 
| 23931 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge.is-active > .a-Badge > .a-Nav-item-atcions::after,
         | 
| 23932 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge.is-active > .a-Badge > a::after {
         | 
| 23602 23933 | 
             
              transform: scaleY(1);
         | 
| 23603 23934 | 
             
            }
         | 
| 23604 23935 |  | 
| 23605 | 
            -
            .amis-scope .a-Nav--stacked .a-Nav-item.is-unfolded > .a-Nav-itemToggler | 
| 23936 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item.is-unfolded > a .a-Nav-itemToggler,
         | 
| 23937 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item.is-unfolded > .a-Badge > a .a-Nav-itemToggler,
         | 
| 23938 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge.is-unfolded > a .a-Nav-itemToggler,
         | 
| 23939 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge.is-unfolded > .a-Badge > a .a-Nav-itemToggler {
         | 
| 23606 23940 | 
             
              transform: rotate(180deg) scale(0.8);
         | 
| 23607 23941 | 
             
            }
         | 
| 23608 23942 |  | 
| 23609 | 
            -
            .amis-scope .a-Nav--stacked .a-Nav-item.is-unfolded > .a-Nav-subItems | 
| 23943 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item.is-unfolded > .a-Nav-subItems,
         | 
| 23944 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item.is-unfolded > .a-Badge > .a-Nav-subItems,
         | 
| 23945 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge.is-unfolded > .a-Nav-subItems,
         | 
| 23946 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge.is-unfolded > .a-Badge > .a-Nav-subItems {
         | 
| 23610 23947 | 
             
              display: block;
         | 
| 23611 23948 | 
             
            }
         | 
| 23612 23949 |  | 
| 23613 | 
            -
            .amis-scope .a-Nav--stacked .a-Nav-item .a-Nav-spinner | 
| 23950 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item .a-Nav-spinner,
         | 
| 23951 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge .a-Nav-spinner {
         | 
| 23614 23952 | 
             
              position: absolute;
         | 
| 23615 23953 | 
             
              right: 0.625rem;
         | 
| 23616 23954 | 
             
              top: 0.5rem;
         | 
| 23617 23955 | 
             
            }
         | 
| 23618 23956 |  | 
| 23619 | 
            -
            .amis-scope .a-Nav--stacked .a-Nav-item .a-Nav-itemToggler | 
| 23620 | 
            -
             | 
| 23621 | 
            -
               | 
| 23622 | 
            -
               | 
| 23623 | 
            -
               | 
| 23624 | 
            -
              height: 1.875rem;
         | 
| 23957 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item .a-Nav-itemToggler,
         | 
| 23958 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge .a-Nav-itemToggler {
         | 
| 23959 | 
            +
              float: left;
         | 
| 23960 | 
            +
              width: 1.5rem;
         | 
| 23961 | 
            +
              height: 1.5rem;
         | 
| 23625 23962 | 
             
              text-align: center;
         | 
| 23626 | 
            -
              line-height: 1. | 
| 23963 | 
            +
              line-height: 1.5rem;
         | 
| 23627 23964 | 
             
              vertical-align: middle;
         | 
| 23628 23965 | 
             
              cursor: pointer;
         | 
| 23629 23966 | 
             
              transform: scale(0.8);
         | 
| 23630 23967 | 
             
              transition: transform 0.2s;
         | 
| 23631 23968 | 
             
            }
         | 
| 23632 23969 |  | 
| 23633 | 
            -
            .amis-scope .a-Nav--stacked .a-Nav-item .a-Nav-itemToggler > svg | 
| 23970 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item .a-Nav-itemToggler > svg,
         | 
| 23971 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge .a-Nav-itemToggler > svg {
         | 
| 23634 23972 | 
             
              width: 10px;
         | 
| 23635 23973 | 
             
              height: 10px;
         | 
| 23636 23974 | 
             
              top: 0;
         | 
| 23637 23975 | 
             
            }
         | 
| 23638 23976 |  | 
| 23639 | 
            -
            .amis-scope .a-Nav--stacked .a-Nav-item .a-Nav-subItems | 
| 23977 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item .a-Nav-subItems,
         | 
| 23978 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge .a-Nav-subItems {
         | 
| 23640 23979 | 
             
              display: none;
         | 
| 23641 23980 | 
             
              padding-left: 0;
         | 
| 23642 23981 | 
             
              list-style: none;
         | 
| 23982 | 
            +
              width: 100%;
         | 
| 23643 23983 | 
             
            }
         | 
| 23644 23984 |  | 
| 23645 | 
            -
            .amis-scope .a-Nav--stacked .a-Nav-item .a-Nav-item | 
| 23985 | 
            +
            .amis-scope .a-Nav--stacked .a-Nav-item .a-Nav-item,
         | 
| 23986 | 
            +
            .amis-scope .a-Nav--stacked .a-Badge .a-Nav-item {
         | 
| 23646 23987 | 
             
              font-size: 0.875rem;
         | 
| 23647 23988 | 
             
            }
         | 
| 23648 23989 |  | 
| @@ -28739,7 +29080,7 @@ readers do not read off random characters that represent icons */ | |
| 28739 29080 | 
             
            }
         | 
| 28740 29081 |  | 
| 28741 29082 | 
             
            .amis-scope .a-ImageGallery-item.is-active {
         | 
| 28742 | 
            -
              border: 1px solid # | 
| 29083 | 
            +
              border: 1px solid #7266ba;
         | 
| 28743 29084 | 
             
            }
         | 
| 28744 29085 |  | 
| 28745 29086 | 
             
            .amis-scope .a-ImageGallery-item.is-active:after {
         | 
| @@ -32546,7 +32887,7 @@ readers do not read off random characters that represent icons */ | |
| 32546 32887 | 
             
            }
         | 
| 32547 32888 |  | 
| 32548 32889 | 
             
            .amis-scope .a-CalendarCounter-btn:hover {
         | 
| 32549 | 
            -
              color: # | 
| 32890 | 
            +
              color: #1C53C1;
         | 
| 32550 32891 | 
             
            }
         | 
| 32551 32892 |  | 
| 32552 32893 | 
             
            .amis-scope .a-CalendarCounter-btn > svg {
         | 
| @@ -32624,6 +32965,12 @@ readers do not read off random characters that represent icons */ | |
| 32624 32965 | 
             
              border-color: #1797be;
         | 
| 32625 32966 | 
             
            }
         | 
| 32626 32967 |  | 
| 32968 | 
            +
            .amis-scope .rdtBtn:not(:disabled):not(.is-disabled):hover:active {
         | 
| 32969 | 
            +
              color: #fff;
         | 
| 32970 | 
            +
              background: #1797be;
         | 
| 32971 | 
            +
              border-color: #158eb3;
         | 
| 32972 | 
            +
            }
         | 
| 32973 | 
            +
             | 
| 32627 32974 | 
             
            .amis-scope .rdtBtn:hover:focus {
         | 
| 32628 32975 | 
             
              box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
         | 
| 32629 32976 | 
             
                0 1px 1px rgba(0, 0, 0, 0.075);
         | 
| @@ -32643,9 +32990,15 @@ readers do not read off random characters that represent icons */ | |
| 32643 32990 | 
             
            }
         | 
| 32644 32991 |  | 
| 32645 32992 | 
             
            .amis-scope .rdtBtnCancel:not(:disabled):not(.is-disabled):hover {
         | 
| 32646 | 
            -
              color: # | 
| 32647 | 
            -
              background: # | 
| 32648 | 
            -
              border-color: # | 
| 32993 | 
            +
              color: #7266ba;
         | 
| 32994 | 
            +
              background: #fff;
         | 
| 32995 | 
            +
              border-color: #7266ba;
         | 
| 32996 | 
            +
            }
         | 
| 32997 | 
            +
             | 
| 32998 | 
            +
            .amis-scope .rdtBtnCancel:not(:disabled):not(.is-disabled):hover:active {
         | 
| 32999 | 
            +
              color: #1C53C1;
         | 
| 33000 | 
            +
              background: #fff;
         | 
| 33001 | 
            +
              border-color: #1C53C1;
         | 
| 32649 33002 | 
             
            }
         | 
| 32650 33003 |  | 
| 32651 33004 | 
             
            .amis-scope .rdtBtnCancel:hover:focus {
         | 
| @@ -32978,6 +33331,12 @@ readers do not read off random characters that represent icons */ | |
| 32978 33331 | 
             
              border-color: #b4bbc5;
         | 
| 32979 33332 | 
             
            }
         | 
| 32980 33333 |  | 
| 33334 | 
            +
            .amis-scope .a-ImageControl-addBtn:not(:disabled):not(.is-disabled):hover:active {
         | 
| 33335 | 
            +
              color: #58666e;
         | 
| 33336 | 
            +
              background: #e6e6e6;
         | 
| 33337 | 
            +
              border-color: #adb4bf;
         | 
| 33338 | 
            +
            }
         | 
| 33339 | 
            +
             | 
| 32981 33340 | 
             
            .amis-scope .a-ImageControl-addBtn:hover:focus {
         | 
| 32982 33341 | 
             
              box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
         | 
| 32983 33342 | 
             
                0 1px 1px rgba(0, 0, 0, 0.075);
         | 
| @@ -34281,6 +34640,17 @@ readers do not read off random characters that represent icons */ | |
| 34281 34640 | 
             
              margin-left: 0.5rem;
         | 
| 34282 34641 | 
             
            }
         | 
| 34283 34642 |  | 
| 34643 | 
            +
            .amis-scope .a-Combo-addBtn .a-Button--loading:first-child:not(:last-child):not(.pull-right),
         | 
| 34644 | 
            +
            .amis-scope .a-Combo-addBtn > svg.icon:not(:last-child):not(.pull-right),
         | 
| 34645 | 
            +
            .amis-scope .a-Combo-addBtn > .pull-left {
         | 
| 34646 | 
            +
              margin-right: 0.5rem;
         | 
| 34647 | 
            +
            }
         | 
| 34648 | 
            +
             | 
| 34649 | 
            +
            .amis-scope .a-Combo-addBtn .a-Button--loading:last-child:not(:first-child):not(.pull-left),
         | 
| 34650 | 
            +
            .amis-scope .a-Combo-addBtn > .pull-right {
         | 
| 34651 | 
            +
              margin-left: 0.5rem;
         | 
| 34652 | 
            +
            }
         | 
| 34653 | 
            +
             | 
| 34284 34654 | 
             
            .amis-scope .a-Combo-addBtn img.a-Button-icon {
         | 
| 34285 34655 | 
             
              height: 0.875rem;
         | 
| 34286 34656 | 
             
              vertical-align: middle;
         | 
| @@ -34292,6 +34662,12 @@ readers do not read off random characters that represent icons */ | |
| 34292 34662 | 
             
              border-color: #b4bbc5;
         | 
| 34293 34663 | 
             
            }
         | 
| 34294 34664 |  | 
| 34665 | 
            +
            .amis-scope .a-Combo-addBtn:not(:disabled):not(.is-disabled):hover:active {
         | 
| 34666 | 
            +
              color: #fff;
         | 
| 34667 | 
            +
              background: #1797be;
         | 
| 34668 | 
            +
              border-color: #adb4bf;
         | 
| 34669 | 
            +
            }
         | 
| 34670 | 
            +
             | 
| 34295 34671 | 
             
            .amis-scope .a-Combo-addBtn:hover:focus {
         | 
| 34296 34672 | 
             
              box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
         | 
| 34297 34673 | 
             
                0 1px 1px rgba(0, 0, 0, 0.075);
         | 
| @@ -34651,7 +35027,7 @@ readers do not read off random characters that represent icons */ | |
| 34651 35027 | 
             
            }
         | 
| 34652 35028 |  | 
| 34653 35029 | 
             
            .amis-scope .a-SubForm-addBtn:hover:focus {
         | 
| 34654 | 
            -
              color: # | 
| 35030 | 
            +
              color: #4F86F4;
         | 
| 34655 35031 | 
             
              text-decoration: underline;
         | 
| 34656 35032 | 
             
              box-shadow: none;
         | 
| 34657 35033 | 
             
            }
         | 
| @@ -34990,6 +35366,17 @@ readers do not read off random characters that represent icons */ | |
| 34990 35366 | 
             
              margin-left: 0.5rem;
         | 
| 34991 35367 | 
             
            }
         | 
| 34992 35368 |  | 
| 35369 | 
            +
            .amis-scope .a-TagControl-sugItem .a-Button--loading:first-child:not(:last-child):not(.pull-right),
         | 
| 35370 | 
            +
            .amis-scope .a-TagControl-sugItem > svg.icon:not(:last-child):not(.pull-right),
         | 
| 35371 | 
            +
            .amis-scope .a-TagControl-sugItem > .pull-left {
         | 
| 35372 | 
            +
              margin-right: 0.5rem;
         | 
| 35373 | 
            +
            }
         | 
| 35374 | 
            +
             | 
| 35375 | 
            +
            .amis-scope .a-TagControl-sugItem .a-Button--loading:last-child:not(:first-child):not(.pull-left),
         | 
| 35376 | 
            +
            .amis-scope .a-TagControl-sugItem > .pull-right {
         | 
| 35377 | 
            +
              margin-left: 0.5rem;
         | 
| 35378 | 
            +
            }
         | 
| 35379 | 
            +
             | 
| 34993 35380 | 
             
            .amis-scope .a-TagControl-sugItem img.a-Button-icon {
         | 
| 34994 35381 | 
             
              height: 0.875rem;
         | 
| 34995 35382 | 
             
              vertical-align: middle;
         | 
| @@ -35001,6 +35388,12 @@ readers do not read off random characters that represent icons */ | |
| 35001 35388 | 
             
              border-color: #b4bbc5;
         | 
| 35002 35389 | 
             
            }
         | 
| 35003 35390 |  | 
| 35391 | 
            +
            .amis-scope .a-TagControl-sugItem:not(:disabled):not(.is-disabled):hover:active {
         | 
| 35392 | 
            +
              color: #58666e;
         | 
| 35393 | 
            +
              background: #e6e6e6;
         | 
| 35394 | 
            +
              border-color: #adb4bf;
         | 
| 35395 | 
            +
            }
         | 
| 35396 | 
            +
             | 
| 35004 35397 | 
             
            .amis-scope .a-TagControl-sugItem:hover:focus {
         | 
| 35005 35398 | 
             
              box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
         | 
| 35006 35399 | 
             
                0 1px 1px rgba(0, 0, 0, 0.075);
         |