mirror of
https://github.com/getgrav/grav-plugin-admin.git
synced 2025-11-18 03:00:56 +01:00
1 line
158 KiB
Plaintext
1 line
158 KiB
Plaintext
{"version":3,"file":"preset.css","sources":["preset.scss","vendor/bourbon/_bourbon.scss","vendor/bourbon/settings/_prefixer.scss","vendor/bourbon/settings/_px-to-em.scss","vendor/bourbon/helpers/_convert-units.scss","vendor/bourbon/helpers/_gradient-positions-parser.scss","vendor/bourbon/helpers/_is-num.scss","vendor/bourbon/helpers/_linear-angle-parser.scss","vendor/bourbon/helpers/_linear-gradient-parser.scss","vendor/bourbon/helpers/_linear-positions-parser.scss","vendor/bourbon/helpers/_linear-side-corner-parser.scss","vendor/bourbon/helpers/_radial-arg-parser.scss","vendor/bourbon/helpers/_radial-positions-parser.scss","vendor/bourbon/helpers/_radial-gradient-parser.scss","vendor/bourbon/helpers/_render-gradients.scss","vendor/bourbon/helpers/_shape-size-stripper.scss","vendor/bourbon/helpers/_str-to-num.scss","vendor/bourbon/functions/_assign.scss","vendor/bourbon/functions/_color-lightness.scss","vendor/bourbon/functions/_flex-grid.scss","vendor/bourbon/functions/_golden-ratio.scss","vendor/bourbon/functions/_grid-width.scss","vendor/bourbon/functions/_modular-scale.scss","vendor/bourbon/functions/_px-to-em.scss","vendor/bourbon/functions/_px-to-rem.scss","vendor/bourbon/functions/_strip-units.scss","vendor/bourbon/functions/_tint-shade.scss","vendor/bourbon/functions/_transition-property-name.scss","vendor/bourbon/functions/_unpack.scss","vendor/bourbon/css3/_animation.scss","vendor/bourbon/css3/_appearance.scss","vendor/bourbon/css3/_backface-visibility.scss","vendor/bourbon/css3/_background.scss","vendor/bourbon/css3/_background-image.scss","vendor/bourbon/css3/_border-image.scss","vendor/bourbon/css3/_border-radius.scss","vendor/bourbon/css3/_box-sizing.scss","vendor/bourbon/css3/_calc.scss","vendor/bourbon/css3/_columns.scss","vendor/bourbon/css3/_filter.scss","vendor/bourbon/css3/_flex-box.scss","vendor/bourbon/css3/_font-face.scss","vendor/bourbon/css3/_hyphens.scss","vendor/bourbon/css3/_hidpi-media-query.scss","vendor/bourbon/css3/_image-rendering.scss","vendor/bourbon/css3/_keyframes.scss","vendor/bourbon/css3/_linear-gradient.scss","vendor/bourbon/css3/_perspective.scss","vendor/bourbon/css3/_radial-gradient.scss","vendor/bourbon/css3/_transform.scss","vendor/bourbon/css3/_transition.scss","vendor/bourbon/css3/_user-select.scss","vendor/bourbon/css3/_placeholder.scss","vendor/bourbon/addons/_button.scss","vendor/bourbon/addons/_clearfix.scss","vendor/bourbon/addons/_directional-values.scss","vendor/bourbon/addons/_ellipsis.scss","vendor/bourbon/addons/_font-family.scss","vendor/bourbon/addons/_hide-text.scss","vendor/bourbon/addons/_html5-input-types.scss","vendor/bourbon/addons/_position.scss","vendor/bourbon/addons/_prefixer.scss","vendor/bourbon/addons/_retina-image.scss","vendor/bourbon/addons/_size.scss","vendor/bourbon/addons/_timing-functions.scss","vendor/bourbon/addons/_triangle.scss","vendor/bourbon/addons/_word-wrap.scss","vendor/bourbon/_bourbon-deprecated-upcoming.scss","configuration/template/_base.scss","configuration/template/_colors.scss","configuration/template/_variables.scss","template/modules/_base.scss","template/modules/_buttons.scss","template/modules/_toggle-switch.scss","template/modules/_datetimepicker.scss"],"sourcesContent":["// Load Third Party Libraries\n@import \"vendor/bourbon/bourbon\";\n// Load Template Configuration\n@import \"configuration/template/base\";\n// Load Template Library\n@import \"template/modules/base\";\n\n// Logo\n$logo-bg: #1e333d !default;\n$logo-link: #ffffff !default;\n\n// Nav\n$nav-bg: #253a47 !default;\n$nav-text: #afc7d5 !default;\n$nav-link: #d1dee7 !default;\n$nav-selected-bg: #2d4d5b !default;\n$nav-selected-link: #ffffff !default;\n$nav-hover-bg: #1e333e !default;\n$nav-hover-link: #ffffff !default;\n\n// Toolbar\n$toolbar-bg: #349886 !default;\n$toolbar-text: #ffffff !default;\n\n// Page\n$page-bg: #314d5b !default;\n$page-text: #81a5b5 !default;\n$page-link: #aad9ed !default;\n\n// Content\n$content-bg: #eeeeee !default;\n$content-text: #737c81 !default;\n$content-link: #0082ba !default;\n$content-link2: #da4b46 !default;\n$content-header: #314d5b !default;\n$content-tabs-bg: #223a47 !default;\n$content-tabs-text: #d1dee7 !default;\n\n// Buttons\n$button-bg: #41bea8 !default;\n$button-text: #ffffff !default;\n\n// Notice\n$notice-bg: #00a6cf !default;\n$notice-text: #ffffff !default;\n\n// Updates\n$update-bg: #8f5aad !default;\n$update-text: #ffffff !default;\n\n// Critical\n$critical-bg: #da4b46 !default;\n$critical-text: #ffffff !default;\n\n// Calculated values\n$primary-accent: button !default;\n$secondary-accent: notice !default;\n$tertiary-accent: critical !default;\n\n// Initial values\n$primary-accent-bg: $notice-bg;\n$primary-accent-fg: $notice-text;\n$secondary-accent-bg: $notice-bg;\n$secondary-accent-fg: $notice-text;\n$tertiary-accent-bg: $notice-bg;\n$tertiary-accent-fg: $notice-text;\n\n$element-map: (\n button: $button-bg $button-text,\n notice: $notice-bg $notice-text,\n content: $content-bg $content-text,\n update: $update-bg $update-text,\n critical: $critical-bg $critical-text,\n page: $page-bg $page-text,\n nav: $nav-bg $nav-text,\n toolbar: $toolbar-bg $toolbar-text,\n logo: $logo-bg $logo-link\n);\n\n// Set based on configuration\n@each $element, $element-parts in $element-map {\n @if $primary-accent == $element {\n $primary-accent-bg: nth($element-parts, 1);\n $primary-accent-fg: nth($element-parts, 2);\n }\n}\n\n@each $element, $element-parts in $element-map {\n @if $secondary-accent == $element {\n $secondary-accent-bg: nth($element-parts, 1);\n $secondary-accent-fg: nth($element-parts, 2);\n }\n}\n\n@each $element, $element-parts in $element-map {\n @if $tertiary-accent == $element {\n $tertiary-accent-bg: nth($element-parts, 1);\n $tertiary-accent-fg: nth($element-parts, 2);\n }\n}\n\n$form-border: darken($content-bg,10%);\n$form-border-width: 1px;\n\n// Core\nbody {\n background: $page-bg;\n color: $page-text;\n}\n\na {\n color: $page-link;\n &:hover {\n color: darken($page-link, 5%);\n }\n}\n\n// Typography\nblockquote {\n border-left: 10px solid darken($content-bg,5%);\n p {\n color: #999;\n }\n cite {\n color: #666;\n }\n}\n\ncode {\n background: $code-bg;\n color: darken($code-text,10%);\n}\n\npre {\n background: $pre-bg;\n border: 1px solid $core-border-color;\n code {\n color: $pre-text;\n }\n}\n\nhr {\n border-bottom: 4px solid darken($content-bg, 5%);\n}\n\n.label {\n background: $page-link;\n color: $white;\n}\n\n// Tables\ntd {\n border-bottom: 1px solid darken($content-bg, 5%);\n}\n\ntr {\n td {\n &.gpm-details {\n background-color: #f7f7f7;\n }\n }\n &:hover {\n background: lighten($content-bg,2%);\n }\n}\n\n// Tabs\n.tab-bar {\n background: $content-tabs-bg;\n color: $content-tabs-text;\n\n li {\n &.active {\n span, a {\n background: $content-bg;\n color: $content-text;\n }\n }\n }\n\n span, a {\n color: $content-tabs-text;\n &:hover {\n color: lighten($content-tabs-text, 10%);\n background: lighten($content-tabs-bg,10%);\n }\n }\n}\n\n\n// Buttons\n.button {\n @include button-color($button-bg);\n\n &.dropdown-toggle {\n border-left: 1px solid darken($button-bg, 5%);\n }\n\n &.secondary {\n @include button-color(shade($button-bg, 20%));\n\n &.dropdown-toggle {\n border-left: 1px solid darken(shade($button-bg, 20%), 5%);\n }\n }\n}\n\n.button-group {\n .dropdown-menu {\n background-color: $button-bg;\n box-shadow: 0 6px 12px rgba(0, 0, 0, .175);\n\n .divider {\n background-color: $button-bg;\n }\n\n li > a {\n color: $button-text;\n\n &:focus, &:hover {\n color: $button-text;\n background-color: $button-bg;\n }\n }\n\n &.language-switcher {\n a.active {\n background-color: lighten($button-bg, 10%);\n }\n }\n }\n}\n\n#admin-login-wrapper {\n background: radial-gradient(circle at center, lighten($page-bg, 10%) 0%, darken($page-bg, 10%) 100%);\n}\n\n#admin-login {\n background: $nav-bg;\n\n &.wide form input {\n @include placeholder {\n color: tint($page-bg,40%);\n }\n }\n\n .wrapper-spacer {\n h3 {\n color: rgba(white, 0.4);\n border-bottom: 3px solid rgba($nav-link, 0.1);\n }\n }\n\n .instructions {\n color: rgba($nav-text,0.8);\n }\n\n h1 {\n background: $logo-bg url(../images/logo.png) 50% 50% no-repeat;\n }\n\n form {\n input {\n background: lighten($nav-bg, 3%);\n color: $nav-link;\n border: 1px solid shade($nav-bg, 20%);\n @include placeholder {\n color: tint($nav-bg,40%);\n }\n }\n }\n}\n\n#admin-sidebar {\n background: $nav-bg;\n a {\n color: rgba($nav-link, 0.9);\n &:hover {\n color: $nav-link;\n }\n }\n}\n\n#admin-logo, #open-handle {\n background: $logo-bg;\n\n .grav-logo {\n path {\n fill: rgba($logo-link, 0.9) !important;\n }\n\n &:hover {\n path {\n fill: $logo-link !important;\n }\n }\n }\n a {\n color: shade($logo-link, 20%);\n &:hover {\n color: $logo-link;\n }\n }\n}\n\n#admin-user-details, .admin-user-details {\n border-bottom: 1px solid lighten($nav-bg, 5%);\n\n &:hover img {\n box-shadow: 0px 0px 0 50px lighten($nav-bg, 3%);\n }\n\n .admin-user-names {\n h4, h5 {\n color: $nav-link;\n }\n }\n}\n\n#admin-menu {\n li {\n .badges {\n .count {\n color: $nav-link;\n background-color: lighten($nav-bg, 10%);\n }\n\n .updates {\n color: $notice-text;\n background-color: $notice-bg;\n }\n }\n\n a {\n &:hover {\n background: $nav-hover-bg;\n color: $nav-hover-link;\n\n .fa {\n color: $nav-hover-link;\n }\n }\n }\n\n &.selected {\n a {\n background: $nav-selected-bg;\n color: $nav-selected-link;\n border-left: 9px solid shade($button-bg, 15%);\n\n .fa {\n color: $nav-selected-link;\n }\n }\n }\n }\n}\n\n#admin-main {\n\n .grav-update {\n background: $update-bg;\n color: $update-text;\n\n a.button, span.button {\n @include button-color(shade($update-bg, 20%), $update-text, true);\n }\n }\n\n .titlebar {\n background: $toolbar-bg;\n color: $toolbar-text;\n }\n\n .lines-button {\n background: rgba($black, 0.1); // move this\n .lines, .lines:before, .lines:after {\n background: $toolbar-text;\n }\n }\n\n .admin-block {\n background: $content-bg;\n color: $content-text;\n\n a {\n color: $content-link;\n &:hover {\n color: darken($content-link, 5%);\n }\n }\n\n h1 {\n color: $content-header;\n border-bottom: 3px solid darken($content-bg, 5%);\n }\n\n .button {\n @include button-color($button-bg);\n }\n }\n\n .danger, .success {\n &.button-bar {\n background: darken($content-bg, 2%);\n }\n }\n\n .danger {\n &.button-bar {\n .button {\n @include button-color($critical-bg);\n }\n }\n }\n}\n\n#admin-dashboard {\n\n .primary-accent {\n @include linear-gradient(shade($primary-accent-bg, 20%), tint($primary-accent-bg, 30%));\n\n p {\n color: rgba($primary-accent-fg, 0.95);\n }\n .stat {\n i {\n color: rgba($primary-accent-fg, 0.75);\n }\n }\n .numeric {\n em {\n color: rgba($primary-accent-fg, .85);\n }\n }\n\n .chart-loader {\n color: shade($primary-accent-bg, 20%);\n }\n }\n\n .secondary-accent {\n @include linear-gradient(shade($secondary-accent-bg, 20%), tint($secondary-accent-bg, 30%));\n\n p {\n color: rgba($secondary-accent-fg, 0.95);\n }\n .stat {\n i {\n color: rgba($secondary-accent-fg, 0.75);\n }\n }\n .numeric {\n em {\n color: rgba($secondary-accent-fg, .85);\n }\n }\n\n .chart-loader {\n color: shade($secondary-accent-bg, 20%);\n }\n }\n\n\n}\n\n// Forms\nform {\n h1, h3 {\n color: $page-bg;\n border-bottom: 3px solid darken($content-bg, 5%);\n }\n\n .note {\n color: $critical-bg;\n }\n\n .required {\n color: $content-link2;\n }\n\n .form-select-wrapper, .selectize-control.single .selectize-input {\n &:after {\n color: lighten($content-text, 15%);\n }\n }\n\n .selectize-input {\n color: $content-text;\n border-color: $form-border;\n }\n\n .selectize-control.multi .selectize-input {\n > div {\n color: $content-bg;\n background: $content-text;\n &.active {\n background: $notice-bg;\n color: $notice-text;\n }\n }\n }\n\n select {\n border: $form-border-width solid $form-border;\n background: $white;\n }\n\n input[type=text], input[type=password], input[type=email], input[type=date] {\n border: $form-border-width solid $form-border;\n background: $white;\n }\n\n input[readonly=readonly] {\n background: darken($white, 5%);\n }\n\n textarea {\n border: $form-border-width solid $form-border;\n background: $white;\n }\n\n .form-frontmatter-wrapper {\n border: $form-border-width solid $form-border;\n }\n\n .button-bar {\n background: lighten($form-border,7%);\n }\n\n .checkboxes {\n label:before {\n background: $white;\n border: $form-border-width solid $form-border;\n }\n }\n}\n\n.grav-editor-resizer {\n background-color: rgba(213,213,213,1);\n @include linear-gradient(top, rgba(213,213,213,1) 0%, rgba(213,213,213,1) 20%, rgba(237,237,237,1) 20%, rgba(237,237,237,1) 40%, rgba(213,213,213,1) 40%, rgba(213,213,213,1) 60%, rgba(237,237,237,1) 60%, rgba(237,237,237,1) 80%, rgba(213,213,213,1) 80%, rgba(213,213,213,1) 100%);\n}\n\n.form-order-wrapper {\n ul#ordering {\n li {\n border: 1px solid $form-border;\n background: lighten($content-bg, 4%);\n color: lighten($content-text,10%);\n\n &.drag-handle {\n background: lighten($content-bg, 7%);\n color: darken($content-text,10%);\n }\n }\n }\n}\n\n.form-list-wrapper {\n ul[data-collection-holder] {\n > li {\n border: 1px solid $form-border;\n background: lighten($content-bg, 4%);\n color: lighten($content-text, 10%);\n\n .item-actions {\n color: darken($content-text, 10%);\n }\n }\n }\n}\n\n.form-fieldset {\n background-color: #f7f7f7;\n border: 2px solid #e1e1e1;\n}\n\n.form-fieldset--label {\n background-color: #f3f3f3;\n\n &:hover,\n .form-fieldset input:checked + & {\n background-color: #eee;\n }\n}\n\n.form-tabs {\n background: $content-tabs-bg;\n\n > input[type=radio] {\n &:checked{\n + label {\n background: $content-bg;\n color: $content-text;\n }\n }\n }\n > label {\n color: $content-tabs-text;\n &:hover {\n color: lighten($content-tabs-text, 10%);\n background: lighten($content-tabs-bg,10%);\n }\n }\n\n &.subtle {\n background: shade($content-bg, 5%);\n\n > label {\n color: shade($content-text, 10%);\n &:hover {\n color: shade($content-text, 20%);\n background: shade($content-bg, 10%);\n }\n }\n }\n}\n\n.tab-body-wrapper {\n background: $content-bg;\n}\n\n.switch-grav {\n background-color: $white;\n border: $form-border-width solid $form-border;\n\n label {\n color: $content-text;\n }\n\n a {\n background: #777;\n }\n\n &.switch-toggle input.highlight:checked {\n ~ a {\n background: $button-bg;\n }\n }\n\n /* Selected ON switch-light\n */\n &.switch-light input:checked {\n ~ a {\n background-color: #777;\n }\n }\n\n input:checked + label {\n color: #fff;\n }\n}\n\n// Toaster\n.toast {\n background-color: #030303;\n}\n.toast-success {\n background-color: $update-bg;\n\n .button {\n background: lighten($update-bg, 5%);\n @include button-color(lighten($update-bg, 10%));\n }\n\n}\n.toast-error {\n background-color: $critical-bg;\n\n .button {\n background-color: darken($critical-bg, 10);\n @include button-color(darken($critical-bg, 20));\n }\n}\n.toast-info {\n background-color: $notice-bg;\n\n .button {\n background-color: darken($notice-bg, 10);\n @include button-color(darken($notice-bg, 20));\n }\n}\n\n// Info\n.info {\n background: $update-bg;\n color: $update-text;\n a {\n color: darken($update-text, 10%);\n &:hover {\n color: $update-text;\n }\n }\n}\n\n.info-reverse {\n color: $update-bg;\n}\n\n.notice {\n background: $notice-bg;\n color: $notice-text;\n a {\n color: darken($notice-text, 10%);\n &:hover {\n color: $notice-text;\n }\n }\n}\n\n.error {\n background: $critical-bg;\n color: $critical-text;\n a {\n color: darken($critical-text, 10%);\n &:hover {\n color: $critical-text;\n }\n }\n}\n\n.primary-accent {\n background: shade($primary-accent-bg, 20%);\n color: $primary-accent-fg;\n\n .button-bar {\n background: shade($primary-accent-bg, 20%);\n }\n\n .button {\n @include button-color($primary-accent-bg, $primary-accent-fg);\n }\n}\n\n.secondary-accent {\n background: shade($secondary-accent-bg, 15%);\n color: $secondary-accent-fg;\n\n .button-bar {\n background: shade($secondary-accent-bg, 15%);\n }\n\n .button {\n @include button-color($secondary-accent-bg, $secondary-accent-fg);\n }\n}\n\n.card-item {\n border: 1px solid darken($content-bg, 5%);\n background: $white;\n\n .gpm-actions {\n background: darken($content-bg, 2%);\n }\n\n\n &.active-theme {\n border: 1px solid $notice-bg;\n\n .gpm-actions {\n background: $notice-bg;\n color: $notice-text;\n }\n }\n}\n\n.user-details {\n h2 {\n color: $content-header;\n\n span {\n color: $content-text;\n }\n }\n\n .gravatar {\n color: lighten($content-text,20%);\n a {\n color: $content-text !important;\n }\n }\n}\n\n#admin-main .grav-editor-toolbar {\n border: 1px solid $form-border;\n border-top-right-radius: $border-radius;\n border-top-left-radius: $border-radius;\n background: lighten($content-bg, 5%);\n\n ul {\n a {\n color: $content-text;\n\n &:hover, &:focus {\n background: lighten($content-bg, 2%);\n color: darken($content-text, 10%);\n border-top: 1px solid $form-border;\n border-bottom: 1px solid $form-border;\n }\n }\n\n .editor-active {\n a {\n cursor: auto;\n background: white;\n border-top: 1px solid $form-border;\n border-left: 1px solid $form-border;\n border-right: 1px solid $form-border;\n\n &:hover {\n background: $white;\n border-top: 0;\n border-bottom: 1px solid $white;\n }\n }\n\n &:last-child a, &:last-child a:hover {\n border-right: 1px solid transparent;\n }\n }\n\n .button-disabled a {\n color: #ccc;\n text-shadow: 0 1px white;\n\n &:hover, &:focus {\n background: lighten($content-bg, 5%);\n color: #ccc;\n border-left: 1px solid transparent;\n border-right: 1px solid transparent;\n }\n }\n }\n}\n\n#admin-main .grav-editor-hide-toolbar + div {\n border: 1px solid $form-border;\n border-top-right-radius: $border-radius;\n border-top-left-radius: $border-radius;\n}\n\n.grav-editor-content, .grav-editor-preview {\n border: 1px solid $form-border;\n border-top: 0;\n border-bottom-right-radius: $border-radius;\n border-bottom-left-radius: $border-radius;\n}\n\n.grav-editor-content .CodeMirror {\n border-bottom-left-radius: $border-radius;\n}\n\n.grav-editor-preview {\n border-bottom-right-radius: $border-radius;\n}\n\n.grav-mdeditor-content {\n border: 1px solid $form-border;\n}\n\n[data-mode=split] {\n .grav-mdeditor-code {\n border-right: 1px solid $form-border;\n }\n}\n\n#admin-main {\n .grav-editor-preview {\n h1, h2, h3, h4, h5, h6 {\n color: darken($content-text, 10%);\n }\n }\n}\n\n.primary-accent {\n .ct-chart {\n .ct-series {\n &.ct-series-a {\n .ct-bar {\n stroke: rgba($primary-accent-fg, 0.85) !important;\n }\n .ct-slice-donut {\n stroke: $primary-accent-fg !important;\n }\n }\n &.ct-series-b {\n .ct-slice-donut {\n stroke: rgba($primary-accent-fg, 0.2) !important;\n }\n }\n }\n }\n}\n\n.secondary-accent {\n .ct-chart {\n .ct-series {\n &.ct-series-a {\n .ct-bar {\n stroke: rgba($secondary-accent-fg, 0.85) !important;\n }\n .ct-slice-donut {\n stroke: $secondary-accent-fg !important;\n }\n }\n &.ct-series-b {\n .ct-slice-donut {\n stroke: rgba($secondary-accent-fg, 0.2) !important;\n }\n }\n }\n }\n}\n\n\n.dropzone {\n background: $white;\n border: 1px $form-border solid;\n\n &.dz-drag-hover {\n border-color: rgba(0,0,0,0.15);\n background: rgba(0,0,0,0.04);\n }\n\n .dz-preview {\n .dz-success-mark, .dz-error-mark {\n color: $white;\n }\n\n .dz-success-mark {\n background-color: lighten($button-bg,10%);\n }\n\n .dz-error-mark {\n background-color: $critical-bg;\n }\n\n .dz-progress {\n background: #d7d7d7;\n\n .dz-upload {\n background-color: lighten($button-bg,10%);\n }\n }\n\n .dz-error-message {\n background: lighten($content-bg,3%);\n color: $critical-bg;\n }\n\n &:hover .dz-remove, &:hover .dz-insert {\n border:1px solid darken($content-bg,5%);\n &:hover {\n background: $content-bg;\n }\n }\n\n .dz-details {\n background: lighten($content-bg,3%);\n border:1px solid darken($content-bg,5%);\n }\n }\n\n &.dz-clickable {\n .dz-message, .dz-message span {\n color: lighten($content-text,30%);\n }\n }\n}\n\n.gpm {\n\n > table > tbody {\n > tr {\n border-bottom: 1px solid #e1e1e1;\n }\n }\n\n .gpm-name {\n color: lighten($content-text, 25%);\n }\n\n .gpm-version {\n color: lighten($content-text, 10%);\n }\n\n .gpm-ribbon, .badge.update {\n background: $update-bg;\n a, & {\n color: $update-text !important;\n &:hover {\n background: shade($update-bg, 15%);\n }\n }\n }\n\n .gpm-update {\n .gpm-name {\n color: $button-bg;\n }\n }\n\n .gpm-item-info {\n border-bottom: 3px solid darken($content-bg, 5%);\n .gpm-item-icon {\n color: darken($content-bg, 2%);\n }\n }\n\n .gpm-actions {\n .disabled {\n color: lighten($content-text, 10%);\n }\n }\n}\n\n.pages-list {\n border-top: 1px solid darken($content-bg, 5%);\n\n .row {\n border-bottom: 1px solid darken($content-bg, 5%);\n\n &:hover {\n background: lighten($content-bg, 2%);\n }\n\n p.page-route {\n color: darken($content-bg, 40%);\n text-shadow: 1px 1px 0 $white;\n\n .spacer {\n color: darken($content-bg, 10%);\n }\n }\n\n .badge.lang {\n background-color: #aaa;\n color: white;\n }\n\n .badge.lang.info {\n background-color: $update-bg;\n }\n }\n\n .page-home {\n color: darken($content-bg, 20%);\n }\n\n .page-info {\n color: darken($content-bg, 20%);\n }\n}\n\n#admin-topbar {\n #admin-lang-toggle {\n z-index: 10;\n button {\n @include button-color($update-bg);\n }\n .dropdown-menu {\n background: $update-bg;\n button {\n background: transparent;\n color: $white;\n }\n }\n }\n\n .switch-grav {\n background-color: lighten($content-tabs-bg,10%);\n }\n\n .switch-toggle {\n input:checked + label {\n color: $white;\n }\n\n input + label {\n color: $content-tabs-text;\n }\n\n input.highlight:checked {\n ~ a {\n background: $notice-bg;\n }\n }\n }\n}\n\nbody .selectize-dropdown .optgroup-header {\n color: $black;\n border-bottom: 1px solid #eee;\n background-color: #fafafa;\n}\n\n#phpinfo {\n th {\n background: #d9d9d9;\n }\n\n td {\n word-wrap: break-word;\n &:first-child {\n color: $button-bg;\n }\n }\n}\n\n.remodal {\n background: $content-bg;\n color: $content-text;\n // box-shadow: 0 10px 20px rgba(0,0,0,0.5);\n}\n\n.remodal-close {\n color: $content-text;\n}\n\n.remodal-close:hover,\n.remodal-close:focus {\n color: darken($content-text, 20%);\n}\n","// Settings\n@import \"settings/prefixer\";\n@import \"settings/px-to-em\";\n\n// Custom Helpers\n@import \"helpers/convert-units\";\n@import \"helpers/gradient-positions-parser\";\n@import \"helpers/is-num\";\n@import \"helpers/linear-angle-parser\";\n@import \"helpers/linear-gradient-parser\";\n@import \"helpers/linear-positions-parser\";\n@import \"helpers/linear-side-corner-parser\";\n@import \"helpers/radial-arg-parser\";\n@import \"helpers/radial-positions-parser\";\n@import \"helpers/radial-gradient-parser\";\n@import \"helpers/render-gradients\";\n@import \"helpers/shape-size-stripper\";\n@import \"helpers/str-to-num\";\n\n// Custom Functions\n@import \"functions/assign\";\n@import \"functions/color-lightness\";\n@import \"functions/flex-grid\";\n@import \"functions/golden-ratio\";\n@import \"functions/grid-width\";\n@import \"functions/modular-scale\";\n@import \"functions/px-to-em\";\n@import \"functions/px-to-rem\";\n@import \"functions/strip-units\";\n@import \"functions/tint-shade\";\n@import \"functions/transition-property-name\";\n@import \"functions/unpack\";\n\n// CSS3 Mixins\n@import \"css3/animation\";\n@import \"css3/appearance\";\n@import \"css3/backface-visibility\";\n@import \"css3/background\";\n@import \"css3/background-image\";\n@import \"css3/border-image\";\n@import \"css3/border-radius\";\n@import \"css3/box-sizing\";\n@import \"css3/calc\";\n@import \"css3/columns\";\n@import \"css3/filter\";\n@import \"css3/flex-box\";\n@import \"css3/font-face\";\n@import \"css3/hyphens\";\n@import \"css3/hidpi-media-query\";\n@import \"css3/image-rendering\";\n@import \"css3/keyframes\";\n@import \"css3/linear-gradient\";\n@import \"css3/perspective\";\n@import \"css3/radial-gradient\";\n@import \"css3/transform\";\n@import \"css3/transition\";\n@import \"css3/user-select\";\n@import \"css3/placeholder\";\n\n// Addons & other mixins\n@import \"addons/button\";\n@import \"addons/clearfix\";\n@import \"addons/directional-values\";\n@import \"addons/ellipsis\";\n@import \"addons/font-family\";\n@import \"addons/hide-text\";\n@import \"addons/html5-input-types\";\n@import \"addons/position\";\n@import \"addons/prefixer\";\n@import \"addons/retina-image\";\n@import \"addons/size\";\n@import \"addons/timing-functions\";\n@import \"addons/triangle\";\n@import \"addons/word-wrap\";\n\n// Soon to be deprecated Mixins\n@import \"bourbon-deprecated-upcoming\";\n","// Variable settings for /addons/prefixer.scss\n$prefix-for-webkit: true !default;\n$prefix-for-mozilla: true !default;\n$prefix-for-microsoft: true !default;\n$prefix-for-opera: true !default;\n$prefix-for-spec: true !default; // required for keyframe mixin\n","$em-base: 16px !default;\n","//************************************************************************//\n// Helper function for str-to-num fn.\n// Source: http://sassmeister.com/gist/9647408\n//************************************************************************//\n@function _convert-units($number, $unit) {\n $strings: 'px' 'cm' 'mm' '%' 'ch' 'pica' 'in' 'em' 'rem' 'pt' 'pc' 'ex' 'vw' 'vh' 'vmin' 'vmax', 'deg', 'rad', 'grad', 'turn';\n $units: 1px 1cm 1mm 1% 1ch 1pica 1in 1em 1rem 1pt 1pc 1ex 1vw 1vh 1vmin 1vmax, 1deg, 1rad, 1grad, 1turn;\n $index: index($strings, $unit);\n\n @if not $index {\n @warn \"Unknown unit `#{$unit}`.\";\n @return false;\n }\n @return $number * nth($units, $index);\n}\n","@function _gradient-positions-parser($gradient-type, $gradient-positions) {\n @if $gradient-positions\n and ($gradient-type == linear)\n and (type-of($gradient-positions) != color) {\n $gradient-positions: _linear-positions-parser($gradient-positions);\n }\n @else if $gradient-positions\n and ($gradient-type == radial)\n and (type-of($gradient-positions) != color) {\n $gradient-positions: _radial-positions-parser($gradient-positions);\n }\n @return $gradient-positions;\n}\n","//************************************************************************//\n// Helper for linear-gradient-parser\n//************************************************************************//\n@function _is-num($char) {\n $values: '0' '1' '2' '3' '4' '5' '6' '7' '8' '9' 0 1 2 3 4 5 6 7 8 9;\n $index: index($values, $char);\n @return if($index, true, false);\n}\n","// Private function for linear-gradient-parser\n@function _linear-angle-parser($image, $first-val, $prefix, $suffix) {\n $offset: null;\n $unit-short: str-slice($first-val, str-length($first-val) - 2, str-length($first-val));\n $unit-long: str-slice($first-val, str-length($first-val) - 3, str-length($first-val));\n\n @if ($unit-long == \"grad\") or\n ($unit-long == \"turn\") {\n $offset: if($unit-long == \"grad\", -100grad * 3, -0.75turn);\n }\n\n @else if ($unit-short == \"deg\") or\n ($unit-short == \"rad\") {\n $offset: if($unit-short == \"deg\", -90 * 3, 1.6rad);\n }\n\n @if $offset {\n $num: _str-to-num($first-val);\n\n @return (\n webkit-image: -webkit- + $prefix + ($offset - $num) + $suffix,\n spec-image: $image\n );\n }\n}\n","@function _linear-gradient-parser($image) {\n $image: unquote($image);\n $gradients: ();\n $start: str-index($image, \"(\");\n $end: str-index($image, \",\");\n $first-val: str-slice($image, $start + 1, $end - 1);\n\n $prefix: str-slice($image, 0, $start);\n $suffix: str-slice($image, $end, str-length($image));\n\n $has-multiple-vals: str-index($first-val, \" \");\n $has-single-position: unquote(_position-flipper($first-val) + \"\");\n $has-angle: _is-num(str-slice($first-val, 0, 0));\n\n @if $has-multiple-vals {\n $gradients: _linear-side-corner-parser($image, $first-val, $prefix, $suffix, $has-multiple-vals);\n }\n\n @else if $has-single-position != \"\" {\n $pos: unquote($has-single-position + \"\");\n\n $gradients: (\n webkit-image: -webkit- + $image,\n spec-image: $prefix + \"to \" + $pos + $suffix\n );\n }\n\n @else if $has-angle {\n // Rotate degree for webkit\n $gradients: _linear-angle-parser($image, $first-val, $prefix, $suffix);\n }\n\n @else {\n $gradients: (\n webkit-image: -webkit- + $image,\n spec-image: $image\n );\n }\n\n @return $gradients;\n}\n","@function _linear-positions-parser($pos) {\n $type: type-of(nth($pos, 1));\n $spec: null;\n $degree: null;\n $side: null;\n $corner: null;\n $length: length($pos);\n // Parse Side and corner positions\n @if ($length > 1) {\n @if nth($pos, 1) == \"to\" { // Newer syntax\n $side: nth($pos, 2);\n\n @if $length == 2 { // eg. to top\n // Swap for backwards compatability\n $degree: _position-flipper(nth($pos, 2));\n }\n @else if $length == 3 { // eg. to top left\n $corner: nth($pos, 3);\n }\n }\n @else if $length == 2 { // Older syntax (\"top left\")\n $side: _position-flipper(nth($pos, 1));\n $corner: _position-flipper(nth($pos, 2));\n }\n\n @if (\"#{$side} #{$corner}\" == \"left top\") or (\"#{$side} #{$corner}\" == \"top left\") {\n $degree: _position-flipper(#{$side}) _position-flipper(#{$corner});\n }\n @else if (\"#{$side} #{$corner}\" == \"right top\") or (\"#{$side} #{$corner}\" == \"top right\") {\n $degree: _position-flipper(#{$side}) _position-flipper(#{$corner});\n }\n @else if (\"#{$side} #{$corner}\" == \"right bottom\") or (\"#{$side} #{$corner}\" == \"bottom right\") {\n $degree: _position-flipper(#{$side}) _position-flipper(#{$corner});\n }\n @else if (\"#{$side} #{$corner}\" == \"left bottom\") or (\"#{$side} #{$corner}\" == \"bottom left\") {\n $degree: _position-flipper(#{$side}) _position-flipper(#{$corner});\n }\n $spec: to $side $corner;\n }\n @else if $length == 1 {\n // Swap for backwards compatability\n @if $type == string {\n $degree: $pos;\n $spec: to _position-flipper($pos);\n }\n @else {\n $degree: -270 - $pos; //rotate the gradient opposite from spec\n $spec: $pos;\n }\n }\n $degree: unquote($degree + \",\");\n $spec: unquote($spec + \",\");\n @return $degree $spec;\n}\n\n@function _position-flipper($pos) {\n @return if($pos == left, right, null)\n if($pos == right, left, null)\n if($pos == top, bottom, null)\n if($pos == bottom, top, null);\n}\n","// Private function for linear-gradient-parser\n@function _linear-side-corner-parser($image, $first-val, $prefix, $suffix, $has-multiple-vals) {\n $val-1: str-slice($first-val, 0, $has-multiple-vals - 1 );\n $val-2: str-slice($first-val, $has-multiple-vals + 1, str-length($first-val));\n $val-3: null;\n $has-val-3: str-index($val-2, \" \");\n\n @if $has-val-3 {\n $val-3: str-slice($val-2, $has-val-3 + 1, str-length($val-2));\n $val-2: str-slice($val-2, 0, $has-val-3 - 1);\n }\n\n $pos: _position-flipper($val-1) _position-flipper($val-2) _position-flipper($val-3);\n $pos: unquote($pos + \"\");\n\n // Use old spec for webkit\n @if $val-1 == \"to\" {\n @return (\n webkit-image: -webkit- + $prefix + $pos + $suffix,\n spec-image: $image\n );\n }\n\n // Bring the code up to spec\n @else {\n @return (\n webkit-image: -webkit- + $image,\n spec-image: $prefix + \"to \" + $pos + $suffix\n );\n }\n}\n","@function _radial-arg-parser($G1, $G2, $pos, $shape-size) {\n @each $value in $G1, $G2 {\n $first-val: nth($value, 1);\n $pos-type: type-of($first-val);\n $spec-at-index: null;\n\n // Determine if spec was passed to mixin\n @if type-of($value) == list {\n $spec-at-index: if(index($value, at), index($value, at), false);\n }\n @if $spec-at-index {\n @if $spec-at-index > 1 {\n @for $i from 1 through ($spec-at-index - 1) {\n $shape-size: $shape-size nth($value, $i);\n }\n @for $i from ($spec-at-index + 1) through length($value) {\n $pos: $pos nth($value, $i);\n }\n }\n @else if $spec-at-index == 1 {\n @for $i from ($spec-at-index + 1) through length($value) {\n $pos: $pos nth($value, $i);\n }\n }\n $G1: null;\n }\n\n // If not spec calculate correct values\n @else {\n @if ($pos-type != color) or ($first-val != \"transparent\") {\n @if ($pos-type == number)\n or ($first-val == \"center\")\n or ($first-val == \"top\")\n or ($first-val == \"right\")\n or ($first-val == \"bottom\")\n or ($first-val == \"left\") {\n\n $pos: $value;\n\n @if $pos == $G1 {\n $G1: null;\n }\n }\n\n @else if\n ($first-val == \"ellipse\")\n or ($first-val == \"circle\")\n or ($first-val == \"closest-side\")\n or ($first-val == \"closest-corner\")\n or ($first-val == \"farthest-side\")\n or ($first-val == \"farthest-corner\")\n or ($first-val == \"contain\")\n or ($first-val == \"cover\") {\n\n $shape-size: $value;\n\n @if $value == $G1 {\n $G1: null;\n }\n\n @else if $value == $G2 {\n $G2: null;\n }\n }\n }\n }\n }\n @return $G1, $G2, $pos, $shape-size;\n}\n","@function _radial-positions-parser($gradient-pos) {\n $shape-size: nth($gradient-pos, 1);\n $pos: nth($gradient-pos, 2);\n $shape-size-spec: _shape-size-stripper($shape-size);\n\n $pre-spec: unquote(if($pos, \"#{$pos}, \", null))\n unquote(if($shape-size, \"#{$shape-size},\", null));\n $pos-spec: if($pos, \"at #{$pos}\", null);\n\n $spec: \"#{$shape-size-spec} #{$pos-spec}\";\n\n // Add comma\n @if ($spec != ' ') {\n $spec: \"#{$spec},\"\n }\n\n @return $pre-spec $spec;\n}\n","@function _radial-gradient-parser($image) {\n $image: unquote($image);\n $gradients: ();\n $start: str-index($image, \"(\");\n $end: str-index($image, \",\");\n $first-val: str-slice($image, $start + 1, $end - 1);\n\n $prefix: str-slice($image, 0, $start);\n $suffix: str-slice($image, $end, str-length($image));\n\n $is-spec-syntax: str-index($first-val, \"at\");\n\n @if $is-spec-syntax and $is-spec-syntax > 1 {\n $keyword: str-slice($first-val, 1, $is-spec-syntax - 2);\n $pos: str-slice($first-val, $is-spec-syntax + 3, str-length($first-val));\n $pos: append($pos, $keyword, comma);\n\n $gradients: (\n webkit-image: -webkit- + $prefix + $pos + $suffix,\n spec-image: $image\n )\n }\n\n @else if $is-spec-syntax == 1 {\n $pos: str-slice($first-val, $is-spec-syntax + 3, str-length($first-val));\n\n $gradients: (\n webkit-image: -webkit- + $prefix + $pos + $suffix,\n spec-image: $image\n )\n }\n\n @else if str-index($image, \"cover\") or str-index($image, \"contain\") {\n @warn \"Radial-gradient needs to be updated to conform to latest spec.\";\n\n $gradients: (\n webkit-image: null,\n spec-image: $image\n )\n }\n\n @else {\n $gradients: (\n webkit-image: -webkit- + $image,\n spec-image: $image\n )\n }\n\n @return $gradients;\n}\n","// User for linear and radial gradients within background-image or border-image properties\n\n@function _render-gradients($gradient-positions, $gradients, $gradient-type, $vendor: false) {\n $pre-spec: null;\n $spec: null;\n $vendor-gradients: null;\n @if $gradient-type == linear {\n @if $gradient-positions {\n $pre-spec: nth($gradient-positions, 1);\n $spec: nth($gradient-positions, 2);\n }\n }\n @else if $gradient-type == radial {\n $pre-spec: nth($gradient-positions, 1);\n $spec: nth($gradient-positions, 2);\n }\n\n @if $vendor {\n $vendor-gradients: -#{$vendor}-#{$gradient-type}-gradient(#{$pre-spec} $gradients);\n }\n @else if $vendor == false {\n $vendor-gradients: \"#{$gradient-type}-gradient(#{$spec} #{$gradients})\";\n $vendor-gradients: unquote($vendor-gradients);\n }\n @return $vendor-gradients;\n}\n","@function _shape-size-stripper($shape-size) {\n $shape-size-spec: null;\n @each $value in $shape-size {\n @if ($value == \"cover\") or ($value == \"contain\") {\n $value: null;\n }\n $shape-size-spec: \"#{$shape-size-spec} #{$value}\";\n }\n @return $shape-size-spec;\n}\n","//************************************************************************//\n// Helper function for linear/radial-gradient-parsers.\n// Source: http://sassmeister.com/gist/9647408\n//************************************************************************//\n@function _str-to-num($string) {\n // Matrices\n $strings: '0' '1' '2' '3' '4' '5' '6' '7' '8' '9';\n $numbers: 0 1 2 3 4 5 6 7 8 9;\n\n // Result\n $result: 0;\n $divider: 0;\n $minus: false;\n\n // Looping through all characters\n @for $i from 1 through str-length($string) {\n $character: str-slice($string, $i, $i);\n $index: index($strings, $character);\n\n @if $character == '-' {\n $minus: true;\n }\n\n @else if $character == '.' {\n $divider: 1;\n }\n\n @else {\n @if not $index {\n $result: if($minus, $result * -1, $result);\n @return _convert-units($result, str-slice($string, $i));\n }\n\n $number: nth($numbers, $index);\n\n @if $divider == 0 {\n $result: $result * 10;\n }\n\n @else {\n // Move the decimal dot to the left\n $divider: $divider * 10;\n $number: $number / $divider;\n }\n\n $result: $result + $number;\n }\n }\n @return if($minus, $result * -1, $result);\n}\n","@function assign-inputs($inputs, $pseudo: null) {\n $list : ();\n\n @each $input in $inputs {\n $input: unquote($input);\n $input: if($pseudo, $input + \":\" + $pseudo, $input);\n $list: append($list, $input, comma);\n }\n\n @return $list;\n}","// Programatically determines whether a color is light or dark\n// Returns a boolean\n// More details here http://robots.thoughtbot.com/closer-look-color-lightness\n\n@function is-light($hex-color) {\n $-local-red: red(rgba($hex-color, 1.0));\n $-local-green: green(rgba($hex-color, 1.0));\n $-local-blue: blue(rgba($hex-color, 1.0));\n\n $-local-lightness: ($-local-red * 0.2126 + $-local-green * 0.7152 + $-local-blue * 0.0722) / 255;\n\n @return $-local-lightness > .6;\n}\n","// Flexible grid\n@function flex-grid($columns, $container-columns: $fg-max-columns) {\n $width: $columns * $fg-column + ($columns - 1) * $fg-gutter;\n $container-width: $container-columns * $fg-column + ($container-columns - 1) * $fg-gutter;\n @return percentage($width / $container-width);\n}\n\n// Flexible gutter\n@function flex-gutter($container-columns: $fg-max-columns, $gutter: $fg-gutter) {\n $container-width: $container-columns * $fg-column + ($container-columns - 1) * $fg-gutter;\n @return percentage($gutter / $container-width);\n}\n\n// The $fg-column, $fg-gutter and $fg-max-columns variables must be defined in your base stylesheet to properly use the flex-grid function.\n// This function takes the fluid grid equation (target / context = result) and uses columns to help define each.\n//\n// The calculation presumes that your column structure will be missing the last gutter:\n//\n// -- column -- gutter -- column -- gutter -- column\n//\n// $fg-column: 60px; // Column Width\n// $fg-gutter: 25px; // Gutter Width\n// $fg-max-columns: 12; // Total Columns For Main Container\n//\n// div {\n// width: flex-grid(4); // returns (315px / 995px) = 31.65829%;\n// margin-left: flex-gutter(); // returns (25px / 995px) = 2.51256%;\n//\n// p {\n// width: flex-grid(2, 4); // returns (145px / 315px) = 46.031746%;\n// float: left;\n// margin: flex-gutter(4); // returns (25px / 315px) = 7.936508%;\n// }\n//\n// blockquote {\n// float: left;\n// width: flex-grid(2, 4); // returns (145px / 315px) = 46.031746%;\n// }\n// }","@function golden-ratio($value, $increment) {\n @return modular-scale($value, $increment, $golden)\n}\n","@function grid-width($n) {\n @return $n * $gw-column + ($n - 1) * $gw-gutter;\n}\n\n// The $gw-column and $gw-gutter variables must be defined in your base stylesheet to properly use the grid-width function.\n//\n// $gw-column: 100px; // Column Width\n// $gw-gutter: 40px; // Gutter Width\n//\n// div {\n// width: grid-width(4); // returns 520px;\n// margin-left: $gw-gutter; // returns 40px;\n// }\n","// Scaling Variables\n$golden: 1.618;\n$minor-second: 1.067;\n$major-second: 1.125;\n$minor-third: 1.2;\n$major-third: 1.25;\n$perfect-fourth: 1.333;\n$augmented-fourth: 1.414;\n$perfect-fifth: 1.5;\n$minor-sixth: 1.6;\n$major-sixth: 1.667;\n$minor-seventh: 1.778;\n$major-seventh: 1.875;\n$octave: 2;\n$major-tenth: 2.5;\n$major-eleventh: 2.667;\n$major-twelfth: 3;\n$double-octave: 4;\n\n@function modular-scale($value, $increment, $ratio) {\n $v1: nth($value, 1);\n $v2: nth($value, length($value));\n $value: $v1;\n\n // scale $v2 to just above $v1\n @while $v2 > $v1 {\n $v2: ($v2 / $ratio); // will be off-by-1\n }\n @while $v2 < $v1 {\n $v2: ($v2 * $ratio); // will fix off-by-1\n }\n\n // check AFTER scaling $v2 to prevent double-counting corner-case\n $double-stranded: $v2 > $v1;\n\n @if $increment > 0 {\n @for $i from 1 through $increment {\n @if $double-stranded and ($v1 * $ratio) > $v2 {\n $value: $v2;\n $v2: ($v2 * $ratio);\n } @else {\n $v1: ($v1 * $ratio);\n $value: $v1;\n }\n }\n }\n\n @if $increment < 0 {\n // adjust $v2 to just below $v1\n @if $double-stranded {\n $v2: ($v2 / $ratio);\n }\n\n @for $i from $increment through -1 {\n @if $double-stranded and ($v1 / $ratio) < $v2 {\n $value: $v2;\n $v2: ($v2 / $ratio);\n } @else {\n $v1: ($v1 / $ratio);\n $value: $v1;\n }\n }\n }\n\n @return $value;\n}\n","// Convert pixels to ems\n// eg. for a relational value of 12px write em(12) when the parent is 16px\n// if the parent is another value say 24px write em(12, 24)\n\n@function em($pxval, $base: $em-base) {\n @if not unitless($pxval) {\n $pxval: strip-units($pxval);\n }\n @if not unitless($base) {\n $base: strip-units($base);\n }\n @return ($pxval / $base) * 1em;\n}\n","// Convert pixels to rems\n// eg. for a relational value of 12px write rem(12)\n// Assumes $em-base is the font-size of <html>\n\n@function rem($pxval) {\n @if not unitless($pxval) {\n $pxval: strip-units($pxval);\n }\n\n $base: $em-base;\n @if not unitless($base) {\n $base: strip-units($base);\n }\n @return ($pxval / $base) * 1rem;\n}\n","// Srtips the units from a value. e.g. 12px -> 12\n\n@function strip-units($val) {\n @return ($val / ($val * 0 + 1));\n}\n","// Add percentage of white to a color\n@function tint($color, $percent){\n @return mix(white, $color, $percent);\n}\n\n// Add percentage of black to a color\n@function shade($color, $percent){\n @return mix(black, $color, $percent);\n}\n","// Return vendor-prefixed property names if appropriate\n// Example: transition-property-names((transform, color, background), moz) -> -moz-transform, color, background\n//************************************************************************//\n@function transition-property-names($props, $vendor: false) {\n\t$new-props: ();\n\t\n\t@each $prop in $props {\n\t\t$new-props: append($new-props, transition-property-name($prop, $vendor), comma);\n\t}\n\n\t@return $new-props;\n}\n\n@function transition-property-name($prop, $vendor: false) {\n\t// put other properties that need to be prefixed here aswell\n\t@if $vendor and $prop == transform {\n\t\t@return unquote('-'+$vendor+'-'+$prop);\n\t}\n\t@else {\n\t\t@return $prop;\n\t}\n}","// Convert shorthand to the 4-value syntax\n\n@function unpack($shorthand) {\n @if length($shorthand) == 1 {\n @return nth($shorthand, 1) nth($shorthand, 1) nth($shorthand, 1) nth($shorthand, 1);\n }\n @else if length($shorthand) == 2 {\n @return nth($shorthand, 1) nth($shorthand, 2) nth($shorthand, 1) nth($shorthand, 2);\n }\n @else if length($shorthand) == 3 {\n @return nth($shorthand, 1) nth($shorthand, 2) nth($shorthand, 3) nth($shorthand, 2);\n }\n @else {\n @return $shorthand;\n }\n}\n\n","// http://www.w3.org/TR/css3-animations/#the-animation-name-property-\n// Each of these mixins support comma separated lists of values, which allows different transitions for individual properties to be described in a single style rule. Each value in the list corresponds to the value at that same position in the other properties.\n\n// Official animation shorthand property.\n@mixin animation ($animations...) {\n @include prefixer(animation, $animations, webkit moz spec);\n}\n\n// Individual Animation Properties\n@mixin animation-name ($names...) {\n @include prefixer(animation-name, $names, webkit moz spec);\n}\n\n\n@mixin animation-duration ($times...) {\n @include prefixer(animation-duration, $times, webkit moz spec);\n}\n\n\n@mixin animation-timing-function ($motions...) {\n// ease | linear | ease-in | ease-out | ease-in-out\n @include prefixer(animation-timing-function, $motions, webkit moz spec);\n}\n\n\n@mixin animation-iteration-count ($values...) {\n// infinite | <number>\n @include prefixer(animation-iteration-count, $values, webkit moz spec);\n}\n\n\n@mixin animation-direction ($directions...) {\n// normal | alternate\n @include prefixer(animation-direction, $directions, webkit moz spec);\n}\n\n\n@mixin animation-play-state ($states...) {\n// running | paused\n @include prefixer(animation-play-state, $states, webkit moz spec);\n}\n\n\n@mixin animation-delay ($times...) {\n @include prefixer(animation-delay, $times, webkit moz spec);\n}\n\n\n@mixin animation-fill-mode ($modes...) {\n// none | forwards | backwards | both\n @include prefixer(animation-fill-mode, $modes, webkit moz spec);\n}\n","@mixin appearance ($value) {\n @include prefixer(appearance, $value, webkit moz ms o spec);\n}\n","//************************************************************************//\n// Backface-visibility mixin\n//************************************************************************//\n@mixin backface-visibility($visibility) {\n @include prefixer(backface-visibility, $visibility, webkit spec);\n}\n","//************************************************************************//\n// Background property for adding multiple backgrounds using shorthand\n// notation.\n//************************************************************************//\n\n@mixin background($backgrounds...) {\n $webkit-backgrounds: ();\n $spec-backgrounds: ();\n\n @each $background in $backgrounds {\n $webkit-background: ();\n $spec-background: ();\n $background-type: type-of($background);\n\n @if $background-type == string or list {\n $background-str: if($background-type == list, nth($background, 1), $background);\n\n $url-str: str-slice($background-str, 0, 3);\n $gradient-type: str-slice($background-str, 0, 6);\n\n @if $url-str == \"url\" {\n $webkit-background: $background;\n $spec-background: $background;\n }\n\n @else if $gradient-type == \"linear\" {\n $gradients: _linear-gradient-parser(\"#{$background}\");\n $webkit-background: map-get($gradients, webkit-image);\n $spec-background: map-get($gradients, spec-image);\n }\n\n @else if $gradient-type == \"radial\" {\n $gradients: _radial-gradient-parser(\"#{$background}\");\n $webkit-background: map-get($gradients, webkit-image);\n $spec-background: map-get($gradients, spec-image);\n }\n\n @else {\n $webkit-background: $background;\n $spec-background: $background;\n }\n }\n\n @else {\n $webkit-background: $background;\n $spec-background: $background;\n }\n\n $webkit-backgrounds: append($webkit-backgrounds, $webkit-background, comma);\n $spec-backgrounds: append($spec-backgrounds, $spec-background, comma);\n }\n\n background: $webkit-backgrounds;\n background: $spec-backgrounds;\n}\n","//************************************************************************//\n// Background-image property for adding multiple background images with\n// gradients, or for stringing multiple gradients together.\n//************************************************************************//\n\n@mixin background-image($images...) {\n $webkit-images: ();\n $spec-images: ();\n\n @each $image in $images {\n $webkit-image: ();\n $spec-image: ();\n\n @if (type-of($image) == string) {\n $url-str: str-slice($image, 0, 3);\n $gradient-type: str-slice($image, 0, 6);\n\n @if $url-str == \"url\" {\n $webkit-image: $image;\n $spec-image: $image;\n }\n\n @else if $gradient-type == \"linear\" {\n $gradients: _linear-gradient-parser($image);\n $webkit-image: map-get($gradients, webkit-image);\n $spec-image: map-get($gradients, spec-image);\n }\n\n @else if $gradient-type == \"radial\" {\n $gradients: _radial-gradient-parser($image);\n $webkit-image: map-get($gradients, webkit-image);\n $spec-image: map-get($gradients, spec-image);\n }\n }\n\n $webkit-images: append($webkit-images, $webkit-image, comma);\n $spec-images: append($spec-images, $spec-image, comma);\n }\n\n background-image: $webkit-images;\n background-image: $spec-images;\n}\n","@mixin border-image($borders...) {\n $webkit-borders: ();\n $spec-borders: ();\n\n @each $border in $borders {\n $webkit-border: ();\n $spec-border: ();\n $border-type: type-of($border);\n\n @if $border-type == string or list {\n $border-str: if($border-type == list, nth($border, 1), $border);\n\n $url-str: str-slice($border-str, 0, 3);\n $gradient-type: str-slice($border-str, 0, 6);\n\n @if $url-str == \"url\" {\n $webkit-border: $border;\n $spec-border: $border;\n }\n\n @else if $gradient-type == \"linear\" {\n $gradients: _linear-gradient-parser(\"#{$border}\");\n $webkit-border: map-get($gradients, webkit-image);\n $spec-border: map-get($gradients, spec-image);\n }\n\n @else if $gradient-type == \"radial\" {\n $gradients: _radial-gradient-parser(\"#{$border}\");\n $webkit-border: map-get($gradients, webkit-image);\n $spec-border: map-get($gradients, spec-image);\n }\n\n @else {\n $webkit-border: $border;\n $spec-border: $border;\n }\n }\n\n @else {\n $webkit-border: $border;\n $spec-border: $border;\n }\n\n $webkit-borders: append($webkit-borders, $webkit-border, comma);\n $spec-borders: append($spec-borders, $spec-border, comma);\n }\n\n -webkit-border-image: $webkit-borders;\n border-image: $spec-borders;\n border-style: solid;\n}\n\n//Examples:\n// @include border-image(url(\"image.png\"));\n// @include border-image(url(\"image.png\") 20 stretch);\n// @include border-image(linear-gradient(45deg, orange, yellow));\n// @include border-image(linear-gradient(45deg, orange, yellow) stretch);\n// @include border-image(linear-gradient(45deg, orange, yellow) 20 30 40 50 stretch round);\n// @include border-image(radial-gradient(top, cover, orange, yellow, orange));\n","//************************************************************************//\n// Shorthand Border-radius mixins\n//************************************************************************//\n@mixin border-top-radius($radii) {\n @include prefixer(border-top-left-radius, $radii, spec);\n @include prefixer(border-top-right-radius, $radii, spec);\n}\n\n@mixin border-bottom-radius($radii) {\n @include prefixer(border-bottom-left-radius, $radii, spec);\n @include prefixer(border-bottom-right-radius, $radii, spec);\n}\n\n@mixin border-left-radius($radii) {\n @include prefixer(border-top-left-radius, $radii, spec);\n @include prefixer(border-bottom-left-radius, $radii, spec);\n}\n\n@mixin border-right-radius($radii) {\n @include prefixer(border-top-right-radius, $radii, spec);\n @include prefixer(border-bottom-right-radius, $radii, spec);\n}\n","@mixin box-sizing ($box) {\n// content-box | border-box | inherit\n @include prefixer(box-sizing, $box, webkit moz spec);\n}\n","@mixin calc($property, $value) {\n #{$property}: -webkit-calc(#{$value});\n #{$property}: calc(#{$value});\n}\n","@mixin columns($arg: auto) {\n// <column-count> || <column-width>\n @include prefixer(columns, $arg, webkit moz spec);\n}\n\n@mixin column-count($int: auto) {\n// auto || integer\n @include prefixer(column-count, $int, webkit moz spec);\n}\n\n@mixin column-gap($length: normal) {\n// normal || length\n @include prefixer(column-gap, $length, webkit moz spec);\n}\n\n@mixin column-fill($arg: auto) {\n// auto || length\n @include prefixer(column-fill, $arg, webkit moz spec);\n}\n\n@mixin column-rule($arg) {\n// <border-width> || <border-style> || <color>\n @include prefixer(column-rule, $arg, webkit moz spec);\n}\n\n@mixin column-rule-color($color) {\n @include prefixer(column-rule-color, $color, webkit moz spec);\n}\n\n@mixin column-rule-style($style: none) {\n// none | hidden | dashed | dotted | double | groove | inset | inset | outset | ridge | solid\n @include prefixer(column-rule-style, $style, webkit moz spec);\n}\n\n@mixin column-rule-width ($width: none) {\n @include prefixer(column-rule-width, $width, webkit moz spec);\n}\n\n@mixin column-span($arg: none) {\n// none || all\n @include prefixer(column-span, $arg, webkit moz spec);\n}\n\n@mixin column-width($length: auto) {\n// auto || length\n @include prefixer(column-width, $length, webkit moz spec);\n}\n","@mixin filter($function: none) {\n // <filter-function> [<filter-function]* | none\n @include prefixer(filter, $function, webkit spec);\n}\n\n","// CSS3 Flexible Box Model and property defaults\n\n// Custom shorthand notation for flexbox\n@mixin box($orient: inline-axis, $pack: start, $align: stretch) {\n @include display-box;\n @include box-orient($orient);\n @include box-pack($pack);\n @include box-align($align);\n}\n\n@mixin display-box {\n display: -webkit-box;\n display: -moz-box;\n display: -ms-flexbox; // IE 10\n display: box;\n}\n\n@mixin box-orient($orient: inline-axis) {\n// horizontal|vertical|inline-axis|block-axis|inherit\n @include prefixer(box-orient, $orient, webkit moz spec);\n}\n\n@mixin box-pack($pack: start) {\n// start|end|center|justify\n @include prefixer(box-pack, $pack, webkit moz spec);\n -ms-flex-pack: $pack; // IE 10\n}\n\n@mixin box-align($align: stretch) {\n// start|end|center|baseline|stretch\n @include prefixer(box-align, $align, webkit moz spec);\n -ms-flex-align: $align; // IE 10\n}\n\n@mixin box-direction($direction: normal) {\n// normal|reverse|inherit\n @include prefixer(box-direction, $direction, webkit moz spec);\n -ms-flex-direction: $direction; // IE 10\n}\n\n@mixin box-lines($lines: single) {\n// single|multiple\n @include prefixer(box-lines, $lines, webkit moz spec);\n}\n\n@mixin box-ordinal-group($int: 1) {\n @include prefixer(box-ordinal-group, $int, webkit moz spec);\n -ms-flex-order: $int; // IE 10\n}\n\n@mixin box-flex($value: 0.0) {\n @include prefixer(box-flex, $value, webkit moz spec);\n -ms-flex: $value; // IE 10\n}\n\n@mixin box-flex-group($int: 1) {\n @include prefixer(box-flex-group, $int, webkit moz spec);\n}\n\n// CSS3 Flexible Box Model and property defaults\n// Unified attributes for 2009, 2011, and 2012 flavours.\n\n// 2009 - display (box | inline-box)\n// 2011 - display (flexbox | inline-flexbox)\n// 2012 - display (flex | inline-flex)\n@mixin display($value) {\n// flex | inline-flex\n @if $value == \"flex\" {\n // 2009\n display: -webkit-box;\n display: -moz-box;\n display: box;\n\n // 2012\n display: -webkit-flex;\n display: -moz-flex;\n display: -ms-flexbox; // 2011 (IE 10)\n display: flex;\n }\n\n @elseif $value == \"inline-flex\" {\n display: -webkit-inline-box;\n display: -moz-inline-box;\n display: inline-box;\n\n display: -webkit-inline-flex;\n display: -moz-inline-flex;\n display: -ms-inline-flexbox;\n display: inline-flex;\n }\n\n @else {\n display: $value;\n }\n}\n\n// 2009 - box-flex (integer)\n// 2011 - flex (decimal | width decimal)\n// 2012 - flex (integer integer width)\n@mixin flex($value) {\n\n // Grab flex-grow for older browsers.\n $flex-grow: nth($value, 1);\n\n // 2009\n @include prefixer(box-flex, $flex-grow, webkit moz spec);\n\n // 2011 (IE 10), 2012\n @include prefixer(flex, $value, webkit moz ms spec);\n}\n\n// 2009 - box-orient ( horizontal | vertical | inline-axis | block-axis)\n// - box-direction (normal | reverse) \n// 2011 - flex-direction (row | row-reverse | column | column-reverse)\n// 2012 - flex-direction (row | row-reverse | column | column-reverse)\n@mixin flex-direction($value: row) {\n\n // Alt values.\n $value-2009: $value;\n $value-2011: $value;\n $direction: \"normal\";\n\n @if $value == row {\n $value-2009: horizontal;\n }\n\n @elseif $value == \"row-reverse\" {\n $value-2009: horizontal;\n $direction: reverse;\n }\n\n @elseif $value == column {\n $value-2009: vertical;\n }\n\n @elseif $value == \"column-reverse\" {\n $value-2009: vertical;\n $direction: reverse;\n }\n\n // 2009\n @include prefixer(box-orient, $value-2009, webkit moz spec);\n @if $direction == \"reverse\" {\n @include prefixer(box-direction, $direction, webkit moz spec);\n }\n\n // 2012\n @include prefixer(flex-direction, $value, webkit moz spec);\n\n // 2011 (IE 10)\n -ms-flex-direction: $value;\n}\n\n// 2009 - box-lines (single | multiple)\n// 2011 - flex-wrap (nowrap | wrap | wrap-reverse)\n// 2012 - flex-wrap (nowrap | wrap | wrap-reverse)\n@mixin flex-wrap($value: nowrap) {\n\n // Alt values.\n $alt-value: $value;\n @if $value == nowrap {\n $alt-value: single;\n }\n\n @elseif $value == wrap {\n $alt-value: multiple;\n }\n\n @elseif $value == \"wrap-reverse\" {\n $alt-value: multiple;\n }\n\n @include prefixer(box-lines, $alt-value, webkit moz spec);\n @include prefixer(flex-wrap, $value, webkit moz ms spec);\n}\n\n// 2009 - TODO: parse values into flex-direction/flex-wrap\n// 2011 - TODO: parse values into flex-direction/flex-wrap\n// 2012 - flex-flow (flex-direction || flex-wrap)\n@mixin flex-flow($value) {\n @include prefixer(flex-flow, $value, webkit moz spec);\n}\n\n// 2009 - box-ordinal-group (integer)\n// 2011 - flex-order (integer)\n// 2012 - order (integer)\n@mixin order($int: 0) {\n // 2009\n @include prefixer(box-ordinal-group, $int, webkit moz spec);\n\n // 2012\n @include prefixer(order, $int, webkit moz spec);\n\n // 2011 (IE 10)\n -ms-flex-order: $int;\n}\n\n// 2012 - flex-grow (number)\n@mixin flex-grow($number: 0) {\n @include prefixer(flex-grow, $number, webkit moz spec);\n -ms-flex-positive: $number;\n}\n\n// 2012 - flex-shrink (number)\n@mixin flex-shrink($number: 1) {\n @include prefixer(flex-shrink, $number, webkit moz spec);\n -ms-flex-negative: $number;\n}\n\n// 2012 - flex-basis (number)\n@mixin flex-basis($width: auto) {\n @include prefixer(flex-basis, $width, webkit moz spec);\n -ms-flex-preferred-size: $width;\n}\n\n// 2009 - box-pack (start | end | center | justify)\n// 2011 - flex-pack (start | end | center | justify)\n// 2012 - justify-content (flex-start | flex-end | center | space-between | space-around)\n@mixin justify-content ($value: flex-start) {\n\n // Alt values.\n $alt-value: $value;\n @if $value == \"flex-start\" {\n $alt-value: start;\n }\n\n @elseif $value == \"flex-end\" {\n $alt-value: end;\n }\n\n @elseif $value == \"space-between\" {\n $alt-value: justify;\n }\n\n @elseif $value == \"space-around\" {\n $alt-value: center;\n }\n\n // 2009\n @include prefixer(box-pack, $alt-value, webkit moz spec);\n\n // 2012\n @include prefixer(justify-content, $value, webkit moz ms o spec);\n\n // 2011 (IE 10)\n -ms-flex-pack: $alt-value;\n}\n\n// 2009 - box-align (start | end | center | baseline | stretch)\n// 2011 - flex-align (start | end | center | baseline | stretch)\n// 2012 - align-items (flex-start | flex-end | center | baseline | stretch)\n@mixin align-items($value: stretch) {\n\n $alt-value: $value;\n\n @if $value == \"flex-start\" {\n $alt-value: start;\n } \n\n @elseif $value == \"flex-end\" {\n $alt-value: end;\n }\n\n // 2009\n @include prefixer(box-align, $alt-value, webkit moz spec);\n\n // 2012\n @include prefixer(align-items, $value, webkit moz ms o spec);\n \n // 2011 (IE 10)\n -ms-flex-align: $alt-value; \n}\n\n// 2011 - flex-item-align (auto | start | end | center | baseline | stretch)\n// 2012 - align-self (auto | flex-start | flex-end | center | baseline | stretch)\n@mixin align-self($value: auto) {\n\n $value-2011: $value;\n @if $value == \"flex-start\" {\n $value-2011: start;\n } \n\n @elseif $value == \"flex-end\" {\n $value-2011: end;\n }\n\n // 2012\n @include prefixer(align-self, $value, webkit moz spec);\n\n // 2011 (IE 10)\n -ms-flex-item-align: $value-2011;\n}\n\n// 2011 - flex-line-pack (start | end | center | justify | distribute | stretch)\n// 2012 - align-content (flex-start | flex-end | center | space-between | space-around | stretch)\n@mixin align-content($value: stretch) {\n\n $value-2011: $value;\n @if $value == \"flex-start\" {\n $value-2011: start;\n } \n\n @elseif $value == \"flex-end\" {\n $value-2011: end;\n }\n\n @elseif $value == \"space-between\" {\n $value-2011: justify;\n }\n\n @elseif $value == \"space-around\" {\n $value-2011: distribute;\n }\n\n // 2012\n @include prefixer(align-content, $value, webkit moz spec);\n\n // 2011 (IE 10)\n -ms-flex-line-pack: $value-2011;\n}\n\n","// Order of the includes matters, and it is: normal, bold, italic, bold+italic.\n\n@mixin font-face($font-family, $file-path, $weight: normal, $style: normal, $asset-pipeline: false ) {\n @font-face {\n font-family: $font-family;\n font-weight: $weight;\n font-style: $style;\n\n @if $asset-pipeline == true {\n src: font-url('#{$file-path}.eot');\n src: font-url('#{$file-path}.eot?#iefix') format('embedded-opentype'),\n font-url('#{$file-path}.woff') format('woff'),\n font-url('#{$file-path}.ttf') format('truetype'),\n font-url('#{$file-path}.svg##{$font-family}') format('svg');\n } @else {\n src: url('#{$file-path}.eot');\n src: url('#{$file-path}.eot?#iefix') format('embedded-opentype'),\n url('#{$file-path}.woff') format('woff'),\n url('#{$file-path}.ttf') format('truetype'),\n url('#{$file-path}.svg##{$font-family}') format('svg');\n }\n }\n}\n","@mixin hyphens($hyphenation: none) {\n// none | manual | auto\n @include prefixer(hyphens, $hyphenation, webkit moz ms spec);\n}","// HiDPI mixin. Default value set to 1.3 to target Google Nexus 7 (http://bjango.com/articles/min-device-pixel-ratio/)\n@mixin hidpi($ratio: 1.3) {\n @media only screen and (-webkit-min-device-pixel-ratio: $ratio),\n only screen and (min--moz-device-pixel-ratio: $ratio),\n only screen and (-o-min-device-pixel-ratio: #{$ratio}/1),\n only screen and (min-resolution: #{round($ratio*96)}dpi),\n only screen and (min-resolution: #{$ratio}dppx) {\n @content;\n }\n}\n","@mixin image-rendering ($mode:auto) {\n\n @if ($mode == crisp-edges) {\n -ms-interpolation-mode: nearest-neighbor; // IE8+\n image-rendering: -moz-crisp-edges;\n image-rendering: -o-crisp-edges;\n image-rendering: -webkit-optimize-contrast;\n image-rendering: crisp-edges;\n }\n\n @else {\n image-rendering: $mode;\n }\n}\n","// Adds keyframes blocks for supported prefixes, removing redundant prefixes in the block's content\n@mixin keyframes($name) {\n $original-prefix-for-webkit: $prefix-for-webkit;\n $original-prefix-for-mozilla: $prefix-for-mozilla;\n $original-prefix-for-microsoft: $prefix-for-microsoft;\n $original-prefix-for-opera: $prefix-for-opera;\n $original-prefix-for-spec: $prefix-for-spec;\n\n @if $original-prefix-for-webkit {\n @include disable-prefix-for-all();\n $prefix-for-webkit: true !global;\n @-webkit-keyframes #{$name} {\n @content;\n }\n }\n @if $original-prefix-for-mozilla {\n @include disable-prefix-for-all();\n $prefix-for-mozilla: true !global;\n @-moz-keyframes #{$name} {\n @content;\n }\n }\n\n $prefix-for-webkit: $original-prefix-for-webkit !global;\n $prefix-for-mozilla: $original-prefix-for-mozilla !global;\n $prefix-for-microsoft: $original-prefix-for-microsoft !global;\n $prefix-for-opera: $original-prefix-for-opera !global;\n $prefix-for-spec: $original-prefix-for-spec !global;\n\n @if $original-prefix-for-spec {\n @keyframes #{$name} {\n @content;\n }\n }\n}\n","@mixin linear-gradient($pos, $G1, $G2: null,\n $G3: null, $G4: null,\n $G5: null, $G6: null,\n $G7: null, $G8: null,\n $G9: null, $G10: null,\n $fallback: null) {\n // Detect what type of value exists in $pos\n $pos-type: type-of(nth($pos, 1));\n $pos-spec: null;\n $pos-degree: null;\n\n // If $pos is missing from mixin, reassign vars and add default position\n @if ($pos-type == color) or (nth($pos, 1) == \"transparent\") {\n $G10: $G9; $G9: $G8; $G8: $G7; $G7: $G6; $G6: $G5;\n $G5: $G4; $G4: $G3; $G3: $G2; $G2: $G1; $G1: $pos;\n $pos: null;\n }\n\n @if $pos {\n $positions: _linear-positions-parser($pos);\n $pos-degree: nth($positions, 1);\n $pos-spec: nth($positions, 2);\n }\n\n $full: $G1, $G2, $G3, $G4, $G5, $G6, $G7, $G8, $G9, $G10;\n\n // Set $G1 as the default fallback color\n $fallback-color: nth($G1, 1);\n\n // If $fallback is a color use that color as the fallback color\n @if (type-of($fallback) == color) or ($fallback == \"transparent\") {\n $fallback-color: $fallback;\n }\n\n background-color: $fallback-color;\n background-image: -webkit-linear-gradient($pos-degree $full); // Safari 5.1+, Chrome\n background-image: unquote(\"linear-gradient(#{$pos-spec}#{$full})\");\n}\n","@mixin perspective($depth: none) {\n // none | <length>\n @include prefixer(perspective, $depth, webkit moz spec);\n}\n\n@mixin perspective-origin($value: 50% 50%) {\n @include prefixer(perspective-origin, $value, webkit moz spec);\n}\n","// Requires Sass 3.1+\n@mixin radial-gradient($G1, $G2,\n $G3: null, $G4: null,\n $G5: null, $G6: null,\n $G7: null, $G8: null,\n $G9: null, $G10: null,\n $pos: null,\n $shape-size: null,\n $fallback: null) {\n\n $data: _radial-arg-parser($G1, $G2, $pos, $shape-size);\n $G1: nth($data, 1);\n $G2: nth($data, 2);\n $pos: nth($data, 3);\n $shape-size: nth($data, 4);\n\n $full: $G1, $G2, $G3, $G4, $G5, $G6, $G7, $G8, $G9, $G10;\n\n // Strip deprecated cover/contain for spec\n $shape-size-spec: _shape-size-stripper($shape-size);\n\n // Set $G1 as the default fallback color\n $first-color: nth($full, 1);\n $fallback-color: nth($first-color, 1);\n\n @if (type-of($fallback) == color) or ($fallback == \"transparent\") {\n $fallback-color: $fallback;\n }\n\n // Add Commas and spaces\n $shape-size: if($shape-size, '#{$shape-size}, ', null);\n $pos: if($pos, '#{$pos}, ', null);\n $pos-spec: if($pos, 'at #{$pos}', null);\n $shape-size-spec: if(($shape-size-spec != ' ') and ($pos == null), '#{$shape-size-spec}, ', '#{$shape-size-spec} ');\n\n background-color: $fallback-color;\n background-image: -webkit-radial-gradient(unquote(#{$pos}#{$shape-size}#{$full}));\n background-image: unquote(\"radial-gradient(#{$shape-size-spec}#{$pos-spec}#{$full})\");\n}\n","@mixin transform($property: none) {\n// none | <transform-function>\n @include prefixer(transform, $property, webkit moz ms o spec);\n}\n\n@mixin transform-origin($axes: 50%) {\n// x-axis - left | center | right | length | %\n// y-axis - top | center | bottom | length | %\n// z-axis - length\n @include prefixer(transform-origin, $axes, webkit moz ms o spec);\n}\n\n@mixin transform-style ($style: flat) {\n @include prefixer(transform-style, $style, webkit moz ms o spec);\n}\n","// Shorthand mixin. Supports multiple parentheses-deliminated values for each variable.\n// Example: @include transition (all 2s ease-in-out);\n// @include transition (opacity 1s ease-in 2s, width 2s ease-out);\n// @include transition-property (transform, opacity);\n\n@mixin transition ($properties...) {\n // Fix for vendor-prefix transform property\n $needs-prefixes: false;\n $webkit: ();\n $moz: ();\n $spec: ();\n\n // Create lists for vendor-prefixed transform\n @each $list in $properties {\n @if nth($list, 1) == \"transform\" {\n $needs-prefixes: true;\n $list1: -webkit-transform;\n $list2: -moz-transform;\n $list3: ();\n\n @each $var in $list {\n $list3: join($list3, $var);\n\n @if $var != \"transform\" {\n $list1: join($list1, $var);\n $list2: join($list2, $var);\n }\n }\n\n $webkit: append($webkit, $list1);\n $moz: append($moz, $list2);\n $spec: append($spec, $list3);\n }\n\n // Create lists for non-prefixed transition properties\n @else {\n $webkit: append($webkit, $list, comma);\n $moz: append($moz, $list, comma);\n $spec: append($spec, $list, comma);\n }\n }\n\n @if $needs-prefixes {\n -webkit-transition: $webkit;\n -moz-transition: $moz;\n transition: $spec;\n }\n @else {\n @if length($properties) >= 1 {\n @include prefixer(transition, $properties, webkit moz spec);\n }\n\n @else {\n $properties: all 0.15s ease-out 0s;\n @include prefixer(transition, $properties, webkit moz spec);\n }\n }\n}\n\n@mixin transition-property ($properties...) {\n -webkit-transition-property: transition-property-names($properties, 'webkit');\n -moz-transition-property: transition-property-names($properties, 'moz');\n transition-property: transition-property-names($properties, false);\n}\n\n@mixin transition-duration ($times...) {\n @include prefixer(transition-duration, $times, webkit moz spec);\n}\n\n@mixin transition-timing-function ($motions...) {\n// ease | linear | ease-in | ease-out | ease-in-out | cubic-bezier()\n @include prefixer(transition-timing-function, $motions, webkit moz spec);\n}\n\n@mixin transition-delay ($times...) {\n @include prefixer(transition-delay, $times, webkit moz spec);\n}\n","@mixin user-select($arg: none) {\n @include prefixer(user-select, $arg, webkit moz ms spec);\n}\n","@mixin placeholder {\n $placeholders: \":-webkit-input\" \":-moz\" \"-moz\" \"-ms-input\";\n @each $placeholder in $placeholders {\n &:#{$placeholder}-placeholder {\n @content;\n }\n }\n}\n","@mixin button ($style: simple, $base-color: #4294f0, $text-size: inherit, $padding: 7px 18px) {\n\n @if type-of($style) == string and type-of($base-color) == color {\n @include buttonstyle($style, $base-color, $text-size, $padding);\n }\n\n @if type-of($style) == string and type-of($base-color) == number {\n $padding: $text-size;\n $text-size: $base-color;\n $base-color: #4294f0;\n\n @if $padding == inherit {\n $padding: 7px 18px;\n }\n\n @include buttonstyle($style, $base-color, $text-size, $padding);\n }\n\n @if type-of($style) == color and type-of($base-color) == color {\n $base-color: $style;\n $style: simple;\n @include buttonstyle($style, $base-color, $text-size, $padding);\n }\n\n @if type-of($style) == color and type-of($base-color) == number {\n $padding: $text-size;\n $text-size: $base-color;\n $base-color: $style;\n $style: simple;\n\n @if $padding == inherit {\n $padding: 7px 18px;\n }\n\n @include buttonstyle($style, $base-color, $text-size, $padding);\n }\n\n @if type-of($style) == number {\n $padding: $base-color;\n $text-size: $style;\n $base-color: #4294f0;\n $style: simple;\n\n @if $padding == #4294f0 {\n $padding: 7px 18px;\n }\n\n @include buttonstyle($style, $base-color, $text-size, $padding);\n }\n\n &:disabled {\n opacity: 0.5;\n cursor: not-allowed;\n }\n}\n\n\n// Selector Style Button\n//************************************************************************//\n@mixin buttonstyle($type, $b-color, $t-size, $pad) {\n // Grayscale button\n @if $type == simple and $b-color == grayscale($b-color) {\n @include simple($b-color, true, $t-size, $pad);\n }\n\n @if $type == shiny and $b-color == grayscale($b-color) {\n @include shiny($b-color, true, $t-size, $pad);\n }\n\n @if $type == pill and $b-color == grayscale($b-color) {\n @include pill($b-color, true, $t-size, $pad);\n }\n\n @if $type == flat and $b-color == grayscale($b-color) {\n @include flat($b-color, true, $t-size, $pad);\n }\n\n // Colored button\n @if $type == simple {\n @include simple($b-color, false, $t-size, $pad);\n }\n\n @else if $type == shiny {\n @include shiny($b-color, false, $t-size, $pad);\n }\n\n @else if $type == pill {\n @include pill($b-color, false, $t-size, $pad);\n }\n\n @else if $type == flat {\n @include flat($b-color, false, $t-size, $pad);\n }\n}\n\n\n// Simple Button\n//************************************************************************//\n@mixin simple($base-color, $grayscale: false, $textsize: inherit, $padding: 7px 18px) {\n $color: hsl(0, 0, 100%);\n $border: adjust-color($base-color, $saturation: 9%, $lightness: -14%);\n $inset-shadow: adjust-color($base-color, $saturation: -8%, $lightness: 15%);\n $stop-gradient: adjust-color($base-color, $saturation: 9%, $lightness: -11%);\n $text-shadow: adjust-color($base-color, $saturation: 15%, $lightness: -18%);\n\n @if is-light($base-color) {\n $color: hsl(0, 0, 20%);\n $text-shadow: adjust-color($base-color, $saturation: 10%, $lightness: 4%);\n }\n\n @if $grayscale == true {\n $border: grayscale($border);\n $inset-shadow: grayscale($inset-shadow);\n $stop-gradient: grayscale($stop-gradient);\n $text-shadow: grayscale($text-shadow);\n }\n\n border: 1px solid $border;\n border-radius: 3px;\n box-shadow: inset 0 1px 0 0 $inset-shadow;\n color: $color;\n display: inline-block;\n font-size: $textsize;\n font-weight: bold;\n @include linear-gradient ($base-color, $stop-gradient);\n padding: $padding;\n text-decoration: none;\n text-shadow: 0 1px 0 $text-shadow;\n background-clip: padding-box;\n\n &:hover:not(:disabled) {\n $base-color-hover: adjust-color($base-color, $saturation: -4%, $lightness: -5%);\n $inset-shadow-hover: adjust-color($base-color, $saturation: -7%, $lightness: 5%);\n $stop-gradient-hover: adjust-color($base-color, $saturation: 8%, $lightness: -14%);\n\n @if $grayscale == true {\n $base-color-hover: grayscale($base-color-hover);\n $inset-shadow-hover: grayscale($inset-shadow-hover);\n $stop-gradient-hover: grayscale($stop-gradient-hover);\n }\n\n box-shadow: inset 0 1px 0 0 $inset-shadow-hover;\n cursor: pointer;\n @include linear-gradient ($base-color-hover, $stop-gradient-hover);\n }\n\n &:active:not(:disabled),\n &:focus:not(:disabled) {\n $border-active: adjust-color($base-color, $saturation: 9%, $lightness: -14%);\n $inset-shadow-active: adjust-color($base-color, $saturation: 7%, $lightness: -17%);\n\n @if $grayscale == true {\n $border-active: grayscale($border-active);\n $inset-shadow-active: grayscale($inset-shadow-active);\n }\n\n border: 1px solid $border-active;\n box-shadow: inset 0 0 8px 4px $inset-shadow-active, inset 0 0 8px 4px $inset-shadow-active;\n }\n}\n\n\n// Shiny Button\n//************************************************************************//\n@mixin shiny($base-color, $grayscale: false, $textsize: inherit, $padding: 7px 18px) {\n $color: hsl(0, 0, 100%);\n $border: adjust-color($base-color, $red: -117, $green: -111, $blue: -81);\n $border-bottom: adjust-color($base-color, $red: -126, $green: -127, $blue: -122);\n $fourth-stop: adjust-color($base-color, $red: -79, $green: -70, $blue: -46);\n $inset-shadow: adjust-color($base-color, $red: 37, $green: 29, $blue: 12);\n $second-stop: adjust-color($base-color, $red: -56, $green: -50, $blue: -33);\n $text-shadow: adjust-color($base-color, $red: -140, $green: -141, $blue: -114);\n $third-stop: adjust-color($base-color, $red: -86, $green: -75, $blue: -48);\n\n @if is-light($base-color) {\n $color: hsl(0, 0, 20%);\n $text-shadow: adjust-color($base-color, $saturation: 10%, $lightness: 4%);\n }\n\n @if $grayscale == true {\n $border: grayscale($border);\n $border-bottom: grayscale($border-bottom);\n $fourth-stop: grayscale($fourth-stop);\n $inset-shadow: grayscale($inset-shadow);\n $second-stop: grayscale($second-stop);\n $text-shadow: grayscale($text-shadow);\n $third-stop: grayscale($third-stop);\n }\n\n border: 1px solid $border;\n border-bottom: 1px solid $border-bottom;\n border-radius: 5px;\n box-shadow: inset 0 1px 0 0 $inset-shadow;\n color: $color;\n display: inline-block;\n font-size: $textsize;\n font-weight: bold;\n @include linear-gradient(top, $base-color 0%, $second-stop 50%, $third-stop 50%, $fourth-stop 100%);\n padding: $padding;\n text-align: center;\n text-decoration: none;\n text-shadow: 0 -1px 1px $text-shadow;\n\n &:hover:not(:disabled) {\n $first-stop-hover: adjust-color($base-color, $red: -13, $green: -15, $blue: -18);\n $second-stop-hover: adjust-color($base-color, $red: -66, $green: -62, $blue: -51);\n $third-stop-hover: adjust-color($base-color, $red: -93, $green: -85, $blue: -66);\n $fourth-stop-hover: adjust-color($base-color, $red: -86, $green: -80, $blue: -63);\n\n @if $grayscale == true {\n $first-stop-hover: grayscale($first-stop-hover);\n $second-stop-hover: grayscale($second-stop-hover);\n $third-stop-hover: grayscale($third-stop-hover);\n $fourth-stop-hover: grayscale($fourth-stop-hover);\n }\n\n cursor: pointer;\n @include linear-gradient(top, $first-stop-hover 0%,\n $second-stop-hover 50%,\n $third-stop-hover 50%,\n $fourth-stop-hover 100%);\n }\n\n &:active:not(:disabled),\n &:focus:not(:disabled) {\n $inset-shadow-active: adjust-color($base-color, $red: -111, $green: -116, $blue: -122);\n\n @if $grayscale == true {\n $inset-shadow-active: grayscale($inset-shadow-active);\n }\n\n box-shadow: inset 0 0 20px 0 $inset-shadow-active;\n }\n}\n\n\n// Pill Button\n//************************************************************************//\n@mixin pill($base-color, $grayscale: false, $textsize: inherit, $padding: 7px 18px) {\n $color: hsl(0, 0, 100%);\n $border-bottom: adjust-color($base-color, $hue: 8, $saturation: -11%, $lightness: -26%);\n $border-sides: adjust-color($base-color, $hue: 4, $saturation: -21%, $lightness: -21%);\n $border-top: adjust-color($base-color, $hue: -1, $saturation: -30%, $lightness: -15%);\n $inset-shadow: adjust-color($base-color, $hue: -1, $saturation: -1%, $lightness: 7%);\n $stop-gradient: adjust-color($base-color, $hue: 8, $saturation: 14%, $lightness: -10%);\n $text-shadow: adjust-color($base-color, $hue: 5, $saturation: -19%, $lightness: -15%);\n\n @if is-light($base-color) {\n $color: hsl(0, 0, 20%);\n $text-shadow: adjust-color($base-color, $saturation: 10%, $lightness: 4%);\n }\n\n @if $grayscale == true {\n $border-bottom: grayscale($border-bottom);\n $border-sides: grayscale($border-sides);\n $border-top: grayscale($border-top);\n $inset-shadow: grayscale($inset-shadow);\n $stop-gradient: grayscale($stop-gradient);\n $text-shadow: grayscale($text-shadow);\n }\n\n border: 1px solid $border-top;\n border-color: $border-top $border-sides $border-bottom;\n border-radius: 16px;\n box-shadow: inset 0 1px 0 0 $inset-shadow;\n color: $color;\n display: inline-block;\n font-size: $textsize;\n font-weight: normal;\n line-height: 1;\n @include linear-gradient ($base-color, $stop-gradient);\n padding: $padding;\n text-align: center;\n text-decoration: none;\n text-shadow: 0 -1px 1px $text-shadow;\n background-clip: padding-box;\n\n &:hover:not(:disabled) {\n $base-color-hover: adjust-color($base-color, $lightness: -4.5%);\n $border-bottom: adjust-color($base-color, $hue: 8, $saturation: 13.5%, $lightness: -32%);\n $border-sides: adjust-color($base-color, $hue: 4, $saturation: -2%, $lightness: -27%);\n $border-top: adjust-color($base-color, $hue: -1, $saturation: -17%, $lightness: -21%);\n $inset-shadow-hover: adjust-color($base-color, $saturation: -1%, $lightness: 3%);\n $stop-gradient-hover: adjust-color($base-color, $hue: 8, $saturation: -4%, $lightness: -15.5%);\n $text-shadow-hover: adjust-color($base-color, $hue: 5, $saturation: -5%, $lightness: -22%);\n\n @if $grayscale == true {\n $base-color-hover: grayscale($base-color-hover);\n $border-bottom: grayscale($border-bottom);\n $border-sides: grayscale($border-sides);\n $border-top: grayscale($border-top);\n $inset-shadow-hover: grayscale($inset-shadow-hover);\n $stop-gradient-hover: grayscale($stop-gradient-hover);\n $text-shadow-hover: grayscale($text-shadow-hover);\n }\n\n border: 1px solid $border-top;\n border-color: $border-top $border-sides $border-bottom;\n box-shadow: inset 0 1px 0 0 $inset-shadow-hover;\n cursor: pointer;\n @include linear-gradient ($base-color-hover, $stop-gradient-hover);\n text-shadow: 0 -1px 1px $text-shadow-hover;\n background-clip: padding-box;\n }\n\n &:active:not(:disabled),\n &:focus:not(:disabled) {\n $active-color: adjust-color($base-color, $hue: 4, $saturation: -12%, $lightness: -10%);\n $border-active: adjust-color($base-color, $hue: 6, $saturation: -2.5%, $lightness: -30%);\n $border-bottom-active: adjust-color($base-color, $hue: 11, $saturation: 6%, $lightness: -31%);\n $inset-shadow-active: adjust-color($base-color, $hue: 9, $saturation: 2%, $lightness: -21.5%);\n $text-shadow-active: adjust-color($base-color, $hue: 5, $saturation: -12%, $lightness: -21.5%);\n\n @if $grayscale == true {\n $active-color: grayscale($active-color);\n $border-active: grayscale($border-active);\n $border-bottom-active: grayscale($border-bottom-active);\n $inset-shadow-active: grayscale($inset-shadow-active);\n $text-shadow-active: grayscale($text-shadow-active);\n }\n\n background: $active-color;\n border: 1px solid $border-active;\n border-bottom: 1px solid $border-bottom-active;\n box-shadow: inset 0 0 6px 3px $inset-shadow-active;\n text-shadow: 0 -1px 1px $text-shadow-active;\n }\n}\n\n\n\n// Flat Button\n//************************************************************************//\n@mixin flat($base-color, $grayscale: false, $textsize: inherit, $padding: 7px 18px) {\n $color: hsl(0, 0, 100%);\n\n @if is-light($base-color) {\n $color: hsl(0, 0, 20%);\n }\n\n background-color: $base-color;\n border-radius: 3px;\n border: none;\n color: $color;\n display: inline-block;\n font-size: inherit;\n font-weight: bold;\n padding: 7px 18px;\n text-decoration: none;\n background-clip: padding-box;\n\n &:hover:not(:disabled){\n $base-color-hover: adjust-color($base-color, $saturation: 4%, $lightness: 5%);\n\n @if $grayscale == true {\n $base-color-hover: grayscale($base-color-hover);\n }\n\n background-color: $base-color-hover;\n cursor: pointer;\n }\n\n &:active:not(:disabled),\n &:focus:not(:disabled) {\n $base-color-active: adjust-color($base-color, $saturation: -4%, $lightness: -5%);\n\n @if $grayscale == true {\n $base-color-active: grayscale($base-color-active);\n }\n\n background-color: $base-color-active;\n cursor: pointer;\n }\n}\n","// Modern micro clearfix provides an easy way to contain floats without adding additional markup.\n//\n// Example usage:\n//\n// // Contain all floats within .wrapper\n// .wrapper {\n// @include clearfix;\n// .content,\n// .sidebar {\n// float : left;\n// }\n// }\n\n@mixin clearfix {\n &:after {\n content:\"\";\n display:table;\n clear:both;\n }\n}\n\n// Acknowledgements\n// Beat *that* clearfix: [Thierry Koblentz](http://www.css-101.org/articles/clearfix/latest-new-clearfix-so-far.php)\n","// directional-property mixins are shorthands\n// for writing properties like the following\n//\n// @include margin(null 0 10px);\n// ------\n// margin-right: 0;\n// margin-bottom: 10px;\n// margin-left: 0;\n//\n// - or -\n//\n// @include border-style(dotted null);\n// ------\n// border-top-style: dotted;\n// border-bottom-style: dotted;\n//\n// ------\n//\n// Note: You can also use false instead of null\n\n@function collapse-directionals($vals) {\n $output: null;\n\n $A: nth( $vals, 1 );\n $B: if( length($vals) < 2, $A, nth($vals, 2));\n $C: if( length($vals) < 3, $A, nth($vals, 3));\n $D: if( length($vals) < 2, $A, nth($vals, if( length($vals) < 4, 2, 4) ));\n\n @if $A == 0 { $A: 0 }\n @if $B == 0 { $B: 0 }\n @if $C == 0 { $C: 0 }\n @if $D == 0 { $D: 0 }\n\n @if $A == $B and $A == $C and $A == $D { $output: $A }\n @else if $A == $C and $B == $D { $output: $A $B }\n @else if $B == $D { $output: $A $B $C }\n @else { $output: $A $B $C $D }\n\n @return $output;\n}\n\n@function contains-falsy($list) {\n @each $item in $list {\n @if not $item {\n @return true;\n }\n }\n\n @return false;\n}\n\n@mixin directional-property($pre, $suf, $vals) {\n // Property Names\n $top: $pre + \"-top\" + if($suf, \"-#{$suf}\", \"\");\n $bottom: $pre + \"-bottom\" + if($suf, \"-#{$suf}\", \"\");\n $left: $pre + \"-left\" + if($suf, \"-#{$suf}\", \"\");\n $right: $pre + \"-right\" + if($suf, \"-#{$suf}\", \"\");\n $all: $pre + if($suf, \"-#{$suf}\", \"\");\n\n $vals: collapse-directionals($vals);\n\n @if contains-falsy($vals) {\n @if nth($vals, 1) { #{$top}: nth($vals, 1); }\n\n @if length($vals) == 1 {\n @if nth($vals, 1) { #{$right}: nth($vals, 1); }\n } @else {\n @if nth($vals, 2) { #{$right}: nth($vals, 2); }\n }\n\n // prop: top/bottom right/left\n @if length($vals) == 2 {\n @if nth($vals, 1) { #{$bottom}: nth($vals, 1); }\n @if nth($vals, 2) { #{$left}: nth($vals, 2); }\n\n // prop: top right/left bottom\n } @else if length($vals) == 3 {\n @if nth($vals, 3) { #{$bottom}: nth($vals, 3); }\n @if nth($vals, 2) { #{$left}: nth($vals, 2); }\n\n // prop: top right bottom left\n } @else if length($vals) == 4 {\n @if nth($vals, 3) { #{$bottom}: nth($vals, 3); }\n @if nth($vals, 4) { #{$left}: nth($vals, 4); }\n }\n\n // prop: top/right/bottom/left\n } @else {\n #{$all}: $vals;\n }\n}\n\n@mixin margin($vals...) {\n @include directional-property(margin, false, $vals...);\n}\n\n@mixin padding($vals...) {\n @include directional-property(padding, false, $vals...);\n}\n\n@mixin border-style($vals...) {\n @include directional-property(border, style, $vals...);\n}\n\n@mixin border-color($vals...) {\n @include directional-property(border, color, $vals...);\n}\n\n@mixin border-width($vals...) {\n @include directional-property(border, width, $vals...);\n}\n","@mixin ellipsis($width: 100%) {\n display: inline-block;\n max-width: $width;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n","$georgia: Georgia, Cambria, \"Times New Roman\", Times, serif;\n$helvetica: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;\n$lucida-grande: \"Lucida Grande\", Tahoma, Verdana, Arial, sans-serif;\n$monospace: \"Bitstream Vera Sans Mono\", Consolas, Courier, monospace;\n$verdana: Verdana, Geneva, sans-serif;\n","@mixin hide-text {\n overflow: hidden;\n\n &:before {\n content: \"\";\n display: block;\n width: 0;\n height: 100%;\n }\n}\n","//************************************************************************//\n// Generate a variable ($all-text-inputs) with a list of all html5\n// input types that have a text-based input, excluding textarea.\n// http://diveintohtml5.org/forms.html\n//************************************************************************//\n$inputs-list: 'input[type=\"email\"]',\n 'input[type=\"number\"]',\n 'input[type=\"password\"]',\n 'input[type=\"search\"]',\n 'input[type=\"tel\"]',\n 'input[type=\"text\"]',\n 'input[type=\"url\"]',\n\n // Webkit & Gecko may change the display of these in the future\n 'input[type=\"color\"]',\n 'input[type=\"date\"]',\n 'input[type=\"datetime\"]',\n 'input[type=\"datetime-local\"]',\n 'input[type=\"month\"]',\n 'input[type=\"time\"]',\n 'input[type=\"week\"]';\n\n// Bare inputs\n//************************************************************************//\n$all-text-inputs: assign-inputs($inputs-list);\n\n// Hover Pseudo-class\n//************************************************************************//\n$all-text-inputs-hover: assign-inputs($inputs-list, hover);\n\n// Focus Pseudo-class\n//************************************************************************//\n$all-text-inputs-focus: assign-inputs($inputs-list, focus);\n\n\n\n// You must use interpolation on the variable:\n// #{$all-text-inputs}\n// #{$all-text-inputs-hover}\n// #{$all-text-inputs-focus}\n\n// Example\n//************************************************************************//\n// #{$all-text-inputs}, textarea {\n// border: 1px solid red;\n// }\n\n\n\n//************************************************************************//\n// Generate a variable ($all-button-inputs) with a list of all html5\n// input types that have a button-based input, excluding button.\n//************************************************************************//\n$inputs-button-list: 'input[type=\"button\"]',\n 'input[type=\"reset\"]',\n 'input[type=\"submit\"]';\n\n// Bare inputs\n//************************************************************************//\n$all-button-inputs: assign-inputs($inputs-button-list);\n\n// Hover Pseudo-class\n//************************************************************************//\n$all-button-inputs-hover: assign-inputs($inputs-button-list, hover);\n\n// Focus Pseudo-class\n//************************************************************************//\n$all-button-inputs-focus: assign-inputs($inputs-button-list, focus);\n\n// Active Pseudo-class\n//************************************************************************//\n$all-button-inputs-active: assign-inputs($inputs-button-list, active);\n\n\n\n// You must use interpolation on the variable:\n// #{$all-button-inputs}\n// #{$all-button-inputs-hover}\n// #{$all-button-inputs-focus}\n// #{$all-button-inputs-active}\n\n// Example\n//************************************************************************//\n// #{$all-button-inputs}, button {\n// border: 1px solid red;\n// }\n","@mixin position ($position: relative, $coordinates: null null null null) {\n\n @if type-of($position) == list {\n $coordinates: $position;\n $position: relative;\n }\n\n $coordinates: unpack($coordinates);\n\n $top: nth($coordinates, 1);\n $right: nth($coordinates, 2);\n $bottom: nth($coordinates, 3);\n $left: nth($coordinates, 4);\n\n position: $position;\n\n @if ($top and $top == auto) or (type-of($top) == number) {\n top: $top;\n }\n\n @if ($right and $right == auto) or (type-of($right) == number) {\n right: $right;\n }\n\n @if ($bottom and $bottom == auto) or (type-of($bottom) == number) {\n bottom: $bottom;\n }\n\n @if ($left and $left == auto) or (type-of($left) == number) {\n left: $left;\n }\n}\n","//************************************************************************//\n// Example: @include prefixer(border-radius, $radii, webkit ms spec);\n//************************************************************************//\n// Variables located in /settings/_prefixer.scss\n\n@mixin prefixer ($property, $value, $prefixes) {\n @each $prefix in $prefixes {\n @if $prefix == webkit {\n @if $prefix-for-webkit {\n -webkit-#{$property}: $value;\n }\n }\n @else if $prefix == moz {\n @if $prefix-for-mozilla {\n -moz-#{$property}: $value;\n }\n }\n @else if $prefix == ms {\n @if $prefix-for-microsoft {\n -ms-#{$property}: $value;\n }\n }\n @else if $prefix == o {\n @if $prefix-for-opera {\n -o-#{$property}: $value;\n }\n }\n @else if $prefix == spec {\n @if $prefix-for-spec {\n #{$property}: $value;\n }\n }\n @else {\n @warn \"Unrecognized prefix: #{$prefix}\";\n }\n }\n}\n\n@mixin disable-prefix-for-all() {\n $prefix-for-webkit: false !global;\n $prefix-for-mozilla: false !global;\n $prefix-for-microsoft: false !global;\n $prefix-for-opera: false !global;\n $prefix-for-spec: false !global;\n}\n","@mixin retina-image($filename, $background-size, $extension: png, $retina-filename: null, $retina-suffix: _2x, $asset-pipeline: false) {\n @if $asset-pipeline {\n background-image: image-url(\"#{$filename}.#{$extension}\");\n }\n @else {\n background-image: url(\"#{$filename}.#{$extension}\");\n }\n\n @include hidpi {\n @if $asset-pipeline {\n @if $retina-filename {\n background-image: image-url(\"#{$retina-filename}.#{$extension}\");\n }\n @else {\n background-image: image-url(\"#{$filename}#{$retina-suffix}.#{$extension}\");\n }\n }\n\n @else {\n @if $retina-filename {\n background-image: url(\"#{$retina-filename}.#{$extension}\");\n }\n @else {\n background-image: url(\"#{$filename}#{$retina-suffix}.#{$extension}\");\n }\n }\n\n background-size: $background-size;\n\n }\n}\n","@mixin size($size) {\n $height: nth($size, 1);\n $width: $height;\n\n @if length($size) > 1 {\n $height: nth($size, 2);\n }\n\n @if $height == auto or (type-of($height) == number and not unitless($height)) {\n height: $height;\n }\n\n @if $width == auto or (type-of($height) == number and not unitless($width)) {\n width: $width;\n }\n}\n","// CSS cubic-bezier timing functions. Timing functions courtesy of jquery.easie (github.com/jaukia/easie)\n// Timing functions are the same as demo'ed here: http://jqueryui.com/demos/effect/easing.html\n\n// EASE IN\n$ease-in-quad: cubic-bezier(0.550, 0.085, 0.680, 0.530);\n$ease-in-cubic: cubic-bezier(0.550, 0.055, 0.675, 0.190);\n$ease-in-quart: cubic-bezier(0.895, 0.030, 0.685, 0.220);\n$ease-in-quint: cubic-bezier(0.755, 0.050, 0.855, 0.060);\n$ease-in-sine: cubic-bezier(0.470, 0.000, 0.745, 0.715);\n$ease-in-expo: cubic-bezier(0.950, 0.050, 0.795, 0.035);\n$ease-in-circ: cubic-bezier(0.600, 0.040, 0.980, 0.335);\n$ease-in-back: cubic-bezier(0.600, -0.280, 0.735, 0.045);\n\n// EASE OUT\n$ease-out-quad: cubic-bezier(0.250, 0.460, 0.450, 0.940);\n$ease-out-cubic: cubic-bezier(0.215, 0.610, 0.355, 1.000);\n$ease-out-quart: cubic-bezier(0.165, 0.840, 0.440, 1.000);\n$ease-out-quint: cubic-bezier(0.230, 1.000, 0.320, 1.000);\n$ease-out-sine: cubic-bezier(0.390, 0.575, 0.565, 1.000);\n$ease-out-expo: cubic-bezier(0.190, 1.000, 0.220, 1.000);\n$ease-out-circ: cubic-bezier(0.075, 0.820, 0.165, 1.000);\n$ease-out-back: cubic-bezier(0.175, 0.885, 0.320, 1.275);\n\n// EASE IN OUT\n$ease-in-out-quad: cubic-bezier(0.455, 0.030, 0.515, 0.955);\n$ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1.000);\n$ease-in-out-quart: cubic-bezier(0.770, 0.000, 0.175, 1.000);\n$ease-in-out-quint: cubic-bezier(0.860, 0.000, 0.070, 1.000);\n$ease-in-out-sine: cubic-bezier(0.445, 0.050, 0.550, 0.950);\n$ease-in-out-expo: cubic-bezier(1.000, 0.000, 0.000, 1.000);\n$ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.150, 0.860);\n$ease-in-out-back: cubic-bezier(0.680, -0.550, 0.265, 1.550);\n","@mixin triangle ($size, $color, $direction) {\n height: 0;\n width: 0;\n\n $width: nth($size, 1);\n $height: nth($size, length($size));\n\n $foreground-color: nth($color, 1);\n $background-color: if(length($color) == 2, nth($color, 2), transparent);\n\n @if ($direction == up) or ($direction == down) or ($direction == right) or ($direction == left) {\n\n $width: $width / 2;\n $height: if(length($size) > 1, $height, $height/2);\n\n @if $direction == up {\n border-left: $width solid $background-color;\n border-right: $width solid $background-color;\n border-bottom: $height solid $foreground-color;\n\n } @else if $direction == right {\n border-top: $width solid $background-color;\n border-bottom: $width solid $background-color;\n border-left: $height solid $foreground-color;\n\n } @else if $direction == down {\n border-left: $width solid $background-color;\n border-right: $width solid $background-color;\n border-top: $height solid $foreground-color;\n\n } @else if $direction == left {\n border-top: $width solid $background-color;\n border-bottom: $width solid $background-color;\n border-right: $height solid $foreground-color;\n }\n }\n\n @else if ($direction == up-right) or ($direction == up-left) {\n border-top: $height solid $foreground-color;\n\n @if $direction == up-right {\n border-left: $width solid $background-color;\n\n } @else if $direction == up-left {\n border-right: $width solid $background-color;\n }\n }\n\n @else if ($direction == down-right) or ($direction == down-left) {\n border-bottom: $height solid $foreground-color;\n\n @if $direction == down-right {\n border-left: $width solid $background-color;\n\n } @else if $direction == down-left {\n border-right: $width solid $background-color;\n }\n }\n\n @else if ($direction == inset-up) {\n border-width: $height $width;\n border-style: solid;\n border-color: $background-color $background-color $foreground-color;\n }\n\n @else if ($direction == inset-down) {\n border-width: $height $width;\n border-style: solid;\n border-color: $foreground-color $background-color $background-color;\n }\n\n @else if ($direction == inset-right) {\n border-width: $width $height;\n border-style: solid;\n border-color: $background-color $background-color $background-color $foreground-color;\n }\n\n @else if ($direction == inset-left) {\n border-width: $width $height;\n border-style: solid;\n border-color: $background-color $foreground-color $background-color $background-color;\n }\n}\n","@mixin word-wrap($wrap: break-word) {\n word-wrap: $wrap;\n\n @if $wrap == break-word {\n overflow-wrap: break-word;\n word-break: break-all;\n }\n}\n","//************************************************************************//\n// These mixins/functions are deprecated\n// They will be removed in the next MAJOR version release\n//************************************************************************//\n@mixin inline-block {\n display: inline-block;\n @warn \"inline-block mixin is deprecated and will be removed in the next major version release\";\n}\n","// Colors\n@import \"colors\";\n\n// Variables\n@import \"variables\";\n","// Core\n$white:\t\t\t\t\t\t\t#ffffff;\n$black:\t\t\t\t\t\t\t#000000;\n$light-gray:\t\t\t\t\t#dddddd;\n\n$core-border-color:\t\t\t\t$light-gray;\n$core-border-color-hover: \t\tdarken($core-border-color, 10);\n\n$code-text:\t\t\t\t\t\t#c7254e;\n$code-bg:\t\t\t\t\t\t#f9f2f4;\n$pre-text:\t\t\t\t\t\t#237794;\n$pre-bg:\t\t\t\t\t\t#f6f6f6;\n\n// Shadows\n$core-box-shadow: \t\t\t\tinset 0 1px 3px hsla(0, 0%, 0%, 0.06);\n","// Sizes\n$header-height: 5rem;\n$footer-height: 6rem;\n$border-radius: 4px;\n\n// Font Weights\n$font-weight-bold: 600;\n$font-weight-regular: 400;\n$font-weight-light:300;\n\n// Global Paddings\n$padding-default: 3rem;\n$padding-horiz: 7rem;\n$padding-vert: 3rem;\n\n//Forms\n$form-label-width: 30%;\n$form-border-radius: 4px;\n$form-border-width: 1px;\n$form-label-pad: 5px 0 5px 3rem;\n$form-input-pad: 5px 10px;\n$form-select-pad: 5px 30px 5px 10px;\n","@import \"buttons\";\n@import \"toggle-switch\";\n@import \"datetimepicker\";\n","%button {\n\tdisplay: inline-block;\n\tpadding: 0.3rem 1.5rem;\n font-weight: 300;\n -webkit-font-smoothing: auto;\n cursor: pointer;\n vertical-align: middle;\n\n &:active {\n margin: 1px 0 -1px 0;\n }\n\n i {\n margin-right: 5px;\n }\n\n &.button-small {\n padding: 2px 10px;\n font-size: 1rem;\n }\n\n &.button-x-small {\n padding: 2px 8px 2px 5px;\n font-size: 0.9rem;\n }\n\n}\n\n@mixin button-color($color, $text:$white, $lighter:null) {\n\tcolor: rgba($text, 0.85);\n\tborder-radius: $border-radius;\n background: $color;\n\n @if ($lighter == null) {\n $lighter: lightness($color) > 50;\n }\n\n @if ($lighter) {\n &:hover {\n background: shade($color,15%);\n color: $text;\n }\n &.dropdown-toggle {\n border-left: 1px solid lighten($color, 5%);\n }\n } @else {\n &:hover {\n background: tint($color,15%);\n color: $text;\n }\n &.dropdown-toggle {\n border-left: 1px solid darken($color, 5%);\n }\n }\n}\n","/*\n * CSS TOGGLE SWITCHES\n * Unlicense\n *\n * Ionuț Colceriu - ghinda.net\n * https://github.com/ghinda/css-toggle-switch\n *\n */\n\n/* Toggle Switches\n */\n\n$switch-height: 46px;\n\n/* Shared\n */\n.switch-wrapper {\n // height: $switch-height;\n}\n\n@mixin switch-shared() {\n\n display: inline-block;\n // height: $switch-height;\n\n * {\n @include box-sizing(border-box);\n }\n\n a {\n display: block;\n\n @include transition(all 0.1s ease-out);\n }\n\n label,\n > span {\n // line-height: $switch-height;\n vertical-align: middle;\n }\n\n /* Outline the toggles when the inputs are focused\n */\n input:focus ~ a,\n input:focus + label {\n outline: 1px dotted #888;\n }\n\n}\n\n/* Checkbox\n */\n@mixin switch-light() {\n\n @include switch-shared();\n\n position: relative;\n overflow: visible;\n padding: 0;\n margin-left: 100px;\n\n /* Position the label over all the elements, except the slide-button (<a>)\n * Clicking anywhere on the label will change the switch-state\n */\n label {\n position: relative;\n z-index: 3;\n\n display: block;\n width: 100%;\n }\n\n /* Don't hide the input from screen-readers and keyboard access\n */\n input {\n position: absolute;\n opacity: 0;\n z-index: 5;\n\n &:checked ~ a {\n right: 0%;\n }\n\n }\n\n > span {\n position: absolute;\n left: -100px;\n\n width: 100%;\n margin: 0;\n padding-right: 100px;\n\n text-align: left;\n\n span {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 5;\n\n display: block;\n width: 50%;\n margin-left: 100px;\n\n text-align: center;\n\n &:last-child {\n left: 50%;\n }\n }\n\n }\n\n a {\n position: absolute;\n right: 50%;\n top: 0;\n z-index: 4;\n\n display: block;\n width: 50%;\n height: 100%;\n padding: 0;\n }\n\n}\n\n/* Radio Switch\n */\n@mixin switch-toggle() {\n\n @include switch-shared();\n\n position: relative;\n\n /* For callout panels in foundation\n */\n padding: 0 !important;\n\n input {\n position: absolute;\n opacity: 0;\n }\n\n input + label {\n position: relative;\n z-index: 2;\n\n float: left;\n height: 100%;\n\n margin: 0;\n text-align: center;\n }\n\n a {\n position: absolute;\n top: 0;\n left: 0;\n padding: 0;\n z-index: 1;\n\n width: 50%;\n height: 100%;\n }\n\n input:last-of-type:checked ~ a {\n left: 50%;\n }\n\n /* Generate styles for the multiple states */\n @for $i from 1 through 3 {\n $state: $i + 2;\n $width: 100 / ($i + 2);\n\n &.switch-#{$state} {\n label,\n a {\n width: $width * 1%;\n }\n }\n\n @for $j from 2 through ($i + 1) {\n &.switch-#{$state} input:checked:nth-of-type(#{$j}) ~ a {\n left: $width * ($j - 1) * 1%;\n }\n }\n\n &.switch-#{$state} input:checked:last-of-type ~ a {\n left: 100 - $width * 1%;\n }\n }\n\n}\n\n/* Hide by default\n */\n.switch-toggle a,\n.switch-light span span {\n display: none;\n}\n\n/* We can't test for a specific feature,\n * so we only target browsers with support for media queries.\n */\n@media only screen {\n\n /* Checkbox switch\n */\n .switch-light {\n @include switch-light();\n }\n\n /* Radio switch\n */\n .switch-toggle {\n @include switch-toggle();\n }\n\n /* Standalone Themes */\n\n /* Grav Theme\n */\n .switch-grav {\n border-radius: $form-border-radius;\n\n label {\n @include transition(color 0.2s ease-out);\n padding: 5px 20px;\n\n }\n\n > span span {\n opacity: 0;\n\n @include transition(all 0.1s);\n\n &:first-of-type {\n opacity: 1;\n }\n }\n\n a {\n border-radius: $form-border-radius - 1px;\n }\n\n /* Selected ON switch-light\n */\n &.switch-light input:checked {\n\n ~ span span {\n &:first-of-type {\n opacity: 0;\n }\n\n &:last-of-type {\n opacity: 1;\n }\n }\n\n\n }\n }\n}\n\n/* Bugfix for older Webkit, including mobile Webkit. Adapted from\n * http://css-tricks.com/webkit-sibling-bug/\n */\n.switch-light,\n.switch-toggle {\n @media only screen and (-webkit-max-device-pixel-ratio: 2) and (max-device-width: 1280px) {\n -webkit-animation: webkitSiblingBugfix infinite 1s;\n }\n}\n\n@-webkit-keyframes webkitSiblingBugfix {\n from {\n -webkit-transform: translate3d(0,0,0);\n } to {\n -webkit-transform: translate3d(0,0,0);\n }\n}\n",".datetime-picker-wrapper {\n position: relative;\n input {\n padding-right: 2.5rem;\n }\n\n .field-icons {\n position: absolute;\n top: 0;\n right: 10px;\n bottom: 0;\n line-height: 2.5rem;\n }\n}\n\n.collapse {\n display: none;\n &.in {\n display: block;\n }\n\n tr &.in {\n display: table-row;\n }\n\n tbody &.in {\n display: table-row-group;\n }\n}\n\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n @include transition(height .35s ease, visibility .35s ease);\n}\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0,0,0,0);\n border: 0;\n}\n\n/* Bootstrap variables styling */\n.bootstrap-datetimepicker-widget {\n &.dropdown-menu {\n position: absolute;\n z-index: 1000;\n display: none;\n float: left;\n min-width: 160px;\n background-color: #fff;\n -webkit-background-clip: padding-box;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, .15);\n border-radius: 4px;\n box-shadow: 0 6px 12px rgba(0, 0, 0, .175);\n }\n\n .list-unstyled {\n padding-left: 0;\n list-style: none;\n }\n\n .collapse {\n display: none;\n visibility: hidden;\n\n &.in {\n display: block;\n visibility: visible;\n }\n }\n\n .datepicker-years .picker-switch {\n cursor: default !important;\n background: inherit !important;\n }\n\n .table-condensed > thead > tr > th {\n padding: 5px;\n }\n\n table {\n display: table;\n\n thead {\n display: table-header-group;\n }\n\n tbody {\n display: table-row-group;\n }\n\n tr {\n display: table-row;\n\n &:hover {\n background: inherit;\n }\n\n th, td {\n border: 0;\n display: table-cell;\n &:first-child {\n padding-left: inherit;\n }\n\n &:last-child {\n padding-right: inherit;\n }\n }\n }\n }\n}\n\n\n\n/*!\n * Datetimepicker for Bootstrap 3\n * ! version : 4.7.14\n * https://github.com/Eonasdan/bootstrap-datetimepicker/\n */\n$bs-datetimepicker-timepicker-font-size: 1.2em !default;\n$bs-datetimepicker-active-bg: white !default;\n$bs-datetimepicker-active-color: blue !default;\n$bs-datetimepicker-border-radius: 3px !default;\n$bs-datetimepicker-btn-hover-bg: #ddd !default;\n$bs-datetimepicker-disabled-color: #ccc !default;\n$bs-datetimepicker-alternate-color: #ccc !default;\n$bs-datetimepicker-secondary-border-color: #ccc !default;\n$bs-datetimepicker-secondary-border-color-rgba: rgba(0, 0, 0, 0.2) !default;\n$bs-datetimepicker-primary-border-color: white !default;\n$bs-datetimepicker-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25) !default;\n\n.bootstrap-datetimepicker-widget {\n list-style: none;\n\n &.dropdown-menu {\n margin: 2px 0;\n padding: 4px;\n width: 19em;\n\n &.timepicker-sbs {\n @media (min-width: 768px) {\n width: 38em;\n }\n\n @media (min-width: 992px) {\n width: 38em;\n }\n\n @media (min-width: 1200px) {\n width: 38em;\n }\n }\n\n &:before, &:after {\n content: '';\n display: inline-block;\n position: absolute;\n }\n\n &.bottom {\n &:before {\n border-left: 7px solid transparent;\n border-right: 7px solid transparent;\n border-bottom: 7px solid $bs-datetimepicker-secondary-border-color;\n border-bottom-color: $bs-datetimepicker-secondary-border-color-rgba;\n top: -7px;\n left: 7px;\n }\n\n &:after {\n border-left: 6px solid transparent;\n border-right: 6px solid transparent;\n border-bottom: 6px solid $bs-datetimepicker-primary-border-color;\n top: -6px;\n left: 8px;\n }\n }\n\n &.top {\n &:before {\n border-left: 7px solid transparent;\n border-right: 7px solid transparent;\n border-top: 7px solid $bs-datetimepicker-secondary-border-color;\n border-top-color: $bs-datetimepicker-secondary-border-color-rgba;\n bottom: -7px;\n left: 6px;\n }\n\n &:after {\n border-left: 6px solid transparent;\n border-right: 6px solid transparent;\n border-top: 6px solid $bs-datetimepicker-primary-border-color;\n bottom: -6px;\n left: 7px;\n }\n }\n\n &.pull-right {\n &:before {\n left: auto;\n right: 6px;\n }\n\n &:after {\n left: auto;\n right: 7px;\n }\n }\n }\n\n .list-unstyled {\n margin: 0;\n }\n\n a[data-action] {\n padding: 6px 0;\n }\n\n a[data-action]:active {\n box-shadow: none;\n }\n\n .timepicker-hour, .timepicker-minute, .timepicker-second {\n width: 54px;\n font-weight: bold;\n font-size: $bs-datetimepicker-timepicker-font-size;\n margin: 0;\n }\n\n button[data-action] {\n padding: 6px;\n }\n\n .btn[data-action=\"incrementHours\"]::after {\n @extend .sr-only;\n content: \"Increment Hours\";\n }\n\n .btn[data-action=\"incrementMinutes\"]::after {\n @extend .sr-only;\n content: \"Increment Minutes\";\n }\n\n .btn[data-action=\"decrementHours\"]::after {\n @extend .sr-only;\n content: \"Decrement Hours\";\n }\n\n .btn[data-action=\"decrementMinutes\"]::after {\n @extend .sr-only;\n content: \"Decrement Minutes\";\n }\n\n .btn[data-action=\"showHours\"]::after {\n @extend .sr-only;\n content: \"Show Hours\";\n }\n\n .btn[data-action=\"showMinutes\"]::after {\n @extend .sr-only;\n content: \"Show Minutes\";\n }\n\n .btn[data-action=\"togglePeriod\"]::after {\n @extend .sr-only;\n content: \"Toggle AM/PM\";\n }\n\n .btn[data-action=\"clear\"]::after {\n @extend .sr-only;\n content: \"Clear the picker\";\n }\n\n .btn[data-action=\"today\"]::after {\n @extend .sr-only;\n content: \"Set the date to today\";\n }\n\n .picker-switch {\n text-align: center;\n\n &::after {\n @extend .sr-only;\n content: \"Toggle Date and Time Screens\";\n }\n\n td {\n padding: 0;\n margin: 0;\n height: auto;\n width: auto;\n line-height: inherit;\n\n span {\n line-height: 2.5;\n height: 2.5em;\n width: 100%;\n }\n }\n }\n\n table {\n width: 100%;\n margin: 0;\n\n\n & td,\n & th {\n text-align: center;\n border-radius: $bs-datetimepicker-border-radius;\n }\n\n & th {\n height: 29px;\n line-height: 29px;\n width: 29px;\n\n &.picker-switch {\n width: 145px;\n }\n\n &.disabled,\n &.disabled:hover {\n background: none;\n color: $bs-datetimepicker-disabled-color;\n cursor: not-allowed;\n }\n\n &.prev::after {\n @extend .sr-only;\n content: \"Previous Month\";\n }\n\n &.next::after {\n @extend .sr-only;\n content: \"Next Month\";\n }\n }\n\n & thead tr:first-child th {\n cursor: pointer;\n\n &:hover {\n background: $bs-datetimepicker-btn-hover-bg;\n }\n }\n\n & td {\n height: 54px;\n line-height: 54px;\n width: 54px;\n\n &.cw {\n font-size: .8em;\n height: 20px;\n line-height: 20px;\n color: $bs-datetimepicker-alternate-color;\n }\n\n &.day {\n height: 29px;\n line-height: 29px;\n width: 29px;\n }\n\n &.day:hover,\n &.hour:hover,\n &.minute:hover,\n &.second:hover {\n background: $bs-datetimepicker-btn-hover-bg;\n cursor: pointer;\n }\n\n &.old,\n &.new {\n color: $bs-datetimepicker-alternate-color;\n }\n\n &.today {\n position: relative;\n\n &:before {\n content: '';\n display: inline-block;\n border: 0 0 7px 7px solid transparent;\n border-bottom-color: $bs-datetimepicker-active-bg;\n border-top-color: $bs-datetimepicker-secondary-border-color-rgba;\n position: absolute;\n bottom: 4px;\n right: 4px;\n }\n }\n\n &.active,\n &.active:hover {\n background-color: $bs-datetimepicker-active-bg;\n color: $bs-datetimepicker-active-color;\n text-shadow: $bs-datetimepicker-text-shadow;\n }\n\n &.active.today:before {\n border-bottom-color: #fff;\n }\n\n &.disabled,\n &.disabled:hover {\n background: none;\n color: $bs-datetimepicker-disabled-color;\n cursor: not-allowed;\n }\n\n span {\n display: inline-block;\n width: 54px;\n height: 54px;\n line-height: 54px;\n margin: 2px 1.5px;\n cursor: pointer;\n border-radius: $bs-datetimepicker-border-radius;\n\n &:hover {\n background: $bs-datetimepicker-btn-hover-bg;\n }\n\n &.active {\n background-color: $bs-datetimepicker-active-bg;\n color: $bs-datetimepicker-active-color;\n text-shadow: $bs-datetimepicker-text-shadow;\n }\n\n &.old {\n color: $bs-datetimepicker-alternate-color;\n }\n\n &.disabled,\n &.disabled:hover {\n background: none;\n color: $bs-datetimepicker-disabled-color;\n cursor: not-allowed;\n }\n }\n }\n }\n\n &.usetwentyfour {\n td.hour {\n height: 27px;\n line-height: 27px;\n }\n }\n}\n\n.input-group.date {\n & .input-group-addon {\n cursor: pointer;\n }\n}\n"],"mappings":"AyEsMA,cAAc,CAAC,CAAC,CAChB,aAAa,CAAC,IAAI,CAAC,IAAI,AAAC,CACpB,OAAO,CAAE,IAAK,CACjB,AAKD,MAAM,MAAD,MAAM,CAIP,aAAa,AAAC,CA5Ld,OAAO,CAAE,YAAa,CAkCtB,QAAQ,CAAE,QAAS,CACnB,QAAQ,CAAE,OAAQ,CAClB,OAAO,CAAE,CAAE,CACX,WAAW,CAAE,KAAM,CAyJlB,AAFD,aAAa,CAzLb,CAAC,AAAC,CZhBE,kBAAoB,CYiBA,UAAU,CZZ9B,eAAiB,CYYG,UAAU,CZG9B,UAAY,CYHQ,UAAU,CACjC,AAuLD,aAAa,CArLb,CAAC,AAAC,CACE,OAAO,CAAE,KAAM,CZrBf,kBAAoB,CYuBA,GAAG,CAAC,IAAI,CAAC,QAAQ,CZlBrC,eAAiB,CYkBG,GAAG,CAAC,IAAI,CAAC,QAAQ,CZHrC,UAAY,CYGQ,GAAG,CAAC,IAAI,CAAC,QAAQ,CACxC,AAiLD,aAAa,CA/Kb,KAAK,CA+KL,aAAa,CA9KX,IAAI,AAAC,CAEH,cAAc,CAAE,MAAO,CAC1B,AA2KD,aAAa,CAvKb,KAAK,AAAA,MAAM,GAAG,CAAC,CAuKf,aAAa,CAtKb,KAAK,AAAA,MAAM,CAAG,KAAK,AAAC,CAChB,OAAO,CAAE,eAAgB,CAC5B,AAoKD,aAAa,CAlJb,KAAK,AAAC,CACF,QAAQ,CAAE,QAAS,CACnB,OAAO,CAAE,CAAE,CAEX,OAAO,CAAE,KAAM,CACf,KAAK,CAAE,IAAK,CACf,AA4ID,aAAa,CAxIb,KAAK,AAAC,CACF,QAAQ,CAAE,QAAS,CACnB,OAAO,CAAE,CAAE,CACX,OAAO,CAAE,CAAE,CAMd,AA+HD,aAAa,CAxIb,KAAK,AAKA,QAAQ,GAAG,CAAC,AAAC,CACV,KAAK,CAAE,EAAG,CACb,AAiIL,aAAa,CA7HX,IAAI,AAAC,CACH,QAAQ,CAAE,QAAS,CACnB,IAAI,CAAE,MAAO,CAEb,KAAK,CAAE,IAAK,CACZ,MAAM,CAAE,CAAE,CACV,aAAa,CAAE,KAAM,CAErB,UAAU,CAAE,IAAK,CAmBpB,AAkGD,aAAa,CA7HX,IAAI,CAUF,IAAI,AAAC,CACD,QAAQ,CAAE,QAAS,CACnB,GAAG,CAAE,CAAE,CACP,IAAI,CAAE,CAAE,CACR,OAAO,CAAE,CAAE,CAEX,OAAO,CAAE,KAAM,CACf,KAAK,CAAE,GAAI,CACX,WAAW,CAAE,KAAM,CAEnB,UAAU,CAAE,MAAO,CAKtB,AAoGL,aAAa,CA7HX,IAAI,CAUF,IAAI,AAYC,WAAW,AAAC,CACT,IAAI,CAAE,GAAI,CACb,AAqGT,aAAa,CAhGb,CAAC,AAAC,CACE,QAAQ,CAAE,QAAS,CACnB,KAAK,CAAE,GAAI,CACX,GAAG,CAAE,CAAE,CACP,OAAO,CAAE,CAAE,CAEX,OAAO,CAAE,KAAM,CACf,KAAK,CAAE,GAAI,CACX,MAAM,CAAE,IAAK,CACb,OAAO,CAAE,CAAE,CACd,AA4FD,cAAc,AAAC,CAlMf,OAAO,CAAE,YAAa,CAgHtB,QAAQ,CAAE,QAAS,CAInB,OAAO,CAAE,YAAa,CAgFrB,AAFD,cAAc,CA/Ld,CAAC,AAAC,CZhBE,kBAAoB,CYiBA,UAAU,CZZ9B,eAAiB,CYYG,UAAU,CZG9B,UAAY,CYHQ,UAAU,CACjC,AA6LD,cAAc,CA3Ld,CAAC,AAAC,CACE,OAAO,CAAE,KAAM,CZrBf,kBAAoB,CYuBA,GAAG,CAAC,IAAI,CAAC,QAAQ,CZlBrC,eAAiB,CYkBG,GAAG,CAAC,IAAI,CAAC,QAAQ,CZHrC,UAAY,CYGQ,GAAG,CAAC,IAAI,CAAC,QAAQ,CACxC,AAuLD,cAAc,CArLd,KAAK,CAqLL,cAAc,CApLZ,IAAI,AAAC,CAEH,cAAc,CAAE,MAAO,CAC1B,AAiLD,cAAc,CA7Kd,KAAK,AAAA,MAAM,GAAG,CAAC,CA6Kf,cAAc,CA5Kd,KAAK,AAAA,MAAM,CAAG,KAAK,AAAC,CAChB,OAAO,CAAE,eAAgB,CAC5B,AA0KD,cAAc,CA5Ed,KAAK,AAAC,CACF,QAAQ,CAAE,QAAS,CACnB,OAAO,CAAE,CAAE,CACd,AAyED,cAAc,CAvEd,KAAK,CAAG,KAAK,AAAC,CACV,QAAQ,CAAE,QAAS,CACnB,OAAO,CAAE,CAAE,CAEX,KAAK,CAAE,IAAK,CACZ,MAAM,CAAE,IAAK,CAEb,MAAM,CAAE,CAAE,CACV,UAAU,CAAE,MAAO,CACtB,AA8DD,cAAc,CA5Dd,CAAC,AAAC,CACE,QAAQ,CAAE,QAAS,CACnB,GAAG,CAAE,CAAE,CACP,IAAI,CAAE,CAAE,CACR,OAAO,CAAE,CAAE,CACX,OAAO,CAAE,CAAE,CAEX,KAAK,CAAE,GAAI,CACX,MAAM,CAAE,IAAK,CAChB,AAmDD,cAAc,CAjDd,KAAK,AAAA,aAAa,AAAA,QAAQ,GAAG,CAAC,AAAC,CAC3B,IAAI,CAAE,GAAI,CACb,AA+CD,cAAc,AAxCT,SAAS,CACN,KAAK,CAuCb,cAAc,AAxCT,SAAS,CAEN,CAAC,AAAC,CACE,KAAK,CAAE,SAAM,CAChB,AAoCT,cAAc,AAhCL,SAAS,CAAC,KAAK,AAAA,QAAQ,AAAA,YAAa,CAAA,CAAC,IAAI,CAAC,AAA3C,CACI,IAAI,CAAE,SAAM,CACf,AA8BT,cAAc,AA3BT,SAAS,CAAC,KAAK,AAAA,QAAQ,AAAA,aAAa,GAAG,CAAC,AAAzC,CACI,IAAI,CAAE,SAAG,CACZ,AAyBL,cAAc,AAxCT,SAAS,CACN,KAAK,CAuCb,cAAc,AAxCT,SAAS,CAEN,CAAC,AAAC,CACE,KAAK,CAAE,GAAM,CAChB,AAoCT,cAAc,AAhCL,SAAS,CAAC,KAAK,AAAA,QAAQ,AAAA,YAAa,CAAA,CAAC,IAAI,CAAC,AAA3C,CACI,IAAI,CAAE,GAAM,CACf,AA8BT,cAAc,AAhCL,SAAS,CAAC,KAAK,AAAA,QAAQ,AAAA,YAAa,CAAA,CAAC,IAAI,CAAC,AAA3C,CACI,IAAI,CAAE,GAAM,CACf,AA8BT,cAAc,AA3BT,SAAS,CAAC,KAAK,AAAA,QAAQ,AAAA,aAAa,GAAG,CAAC,AAAzC,CACI,IAAI,CAAE,GAAG,CACZ,AAyBL,cAAc,AAxCT,SAAS,CACN,KAAK,CAuCb,cAAc,AAxCT,SAAS,CAEN,CAAC,AAAC,CACE,KAAK,CAAE,GAAM,CAChB,AAoCT,cAAc,AAhCL,SAAS,CAAC,KAAK,AAAA,QAAQ,AAAA,YAAa,CAAA,CAAC,IAAI,CAAC,AAA3C,CACI,IAAI,CAAE,GAAM,CACf,AA8BT,cAAc,AAhCL,SAAS,CAAC,KAAK,AAAA,QAAQ,AAAA,YAAa,CAAA,CAAC,IAAI,CAAC,AAA3C,CACI,IAAI,CAAE,GAAM,CACf,AA8BT,cAAc,AAhCL,SAAS,CAAC,KAAK,AAAA,QAAQ,AAAA,YAAa,CAAA,CAAC,IAAI,CAAC,AAA3C,CACI,IAAI,CAAE,GAAM,CACf,AA8BT,cAAc,AA3BT,SAAS,CAAC,KAAK,AAAA,QAAQ,AAAA,aAAa,GAAG,CAAC,AAAzC,CACI,IAAI,CAAE,GAAG,CACZ,AAiCL,YAAY,AAAC,CACT,aAAa,CHhNA,GAAG,CGsPnB,AAvCD,YAAY,CAGR,KAAK,AAAC,CZ1NN,kBAAoB,CY2NI,KAAK,CAAC,IAAI,CAAC,QAAQ,CZtN3C,eAAiB,CYsNO,KAAK,CAAC,IAAI,CAAC,QAAQ,CZvM3C,UAAY,CYuMY,KAAK,CAAC,IAAI,CAAC,QAAQ,CACvC,OAAO,CAAE,QAAS,CAErB,AAPL,YAAY,CASN,IAAI,CAAC,IAAI,AAAC,CACR,OAAO,CAAE,CAAE,CZjOf,kBAAoB,CYmOI,GAAG,CAAC,IAAI,CZ9NhC,eAAiB,CY8NO,GAAG,CAAC,IAAI,CZ/MhC,UAAY,CY+MY,GAAG,CAAC,IAAI,CAK/B,AAjBL,YAAY,CASN,IAAI,CAAC,IAAI,AAKN,cAAc,AAAC,CACZ,OAAO,CAAE,CAAE,CACd,AAhBT,YAAY,CAmBR,CAAC,AAAC,CACE,aAAa,CAAE,GAAmB,CACrC,AArBL,YAAY,AAyBP,aAAa,CAAC,KAAK,AAAA,QAAQ,GAEtB,IAAI,CAAC,IAAI,AACN,cAAc,AAAC,CACZ,OAAO,CAAE,CAAE,CACd,AA9Bb,YAAY,AAyBP,aAAa,CAAC,KAAK,AAAA,QAAQ,GAEtB,IAAI,CAAC,IAAI,AAKN,aAAa,AAAC,CACX,OAAO,CAAE,CAAE,CACd,CAab,MAAM,MAAD,MAAM,OAAO,6BAA6B,EAAE,CAAC,OAAO,gBAAgB,EAAE,MAAM,EAFrF,aAAa,CACb,cAAc,AAAC,CAEP,iBAAiB,CAAE,+BAAgC,CAE1D,CAED,kBAAkB,CAAC,mBAAmB,CAClC,IAAI,CACA,iBAAiB,CAAE,oBAAW,CAChC,EAAE,CACA,iBAAiB,CAAE,oBAAW,ECxRtC,wBAAwB,AAAC,CACrB,QAAQ,CAAE,QAAS,CAYtB,AAbD,wBAAwB,CAEpB,KAAK,AAAC,CACF,aAAa,CAAE,MAAO,CACzB,AAJL,wBAAwB,CAMpB,YAAY,AAAC,CACT,QAAQ,CAAE,QAAS,CACnB,GAAG,CAAE,CAAE,CACP,KAAK,CAAE,IAAK,CACZ,MAAM,CAAE,CAAE,CACV,WAAW,CAAE,MAAO,CACvB,AAGL,SAAS,AAAC,CACN,OAAO,CAAE,IAAK,CAYjB,AAbD,SAAS,AAEJ,GAAG,AAAC,CACD,OAAO,CAAE,KAAM,CAClB,AAED,EAAE,CANN,SAAS,AAMD,GAAG,AAAC,CACJ,OAAO,CAAE,SAAU,CACtB,AAED,KAAK,CAVT,SAAS,AAUE,GAAG,AAAC,CACP,OAAO,CAAE,eAAgB,CAC5B,AAGL,WAAW,AAAC,CACR,QAAQ,CAAE,QAAS,CACnB,MAAM,CAAE,CAAE,CACV,QAAQ,CAAE,MAAO,CbxBb,kBAAoB,CayBJ,MAAM,CAAC,KAAI,CAAC,IAAI,CAAE,UAAU,CAAC,KAAI,CAAC,IAAI,CbpBtD,eAAiB,CaoBD,MAAM,CAAC,KAAI,CAAC,IAAI,CAAE,UAAU,CAAC,KAAI,CAAC,IAAI,CbLtD,UAAY,CaKI,MAAM,CAAC,KAAI,CAAC,IAAI,CAAE,UAAU,CAAC,KAAI,CAAC,IAAI,CAC7D,AAED,QAAQ,CAuGR,gCAAgC,CAsG5B,IAAI,CAAA,AAAA,WAAC,CAAY,gBAAgB,AAA5B,CAA6B,OAAO,CAtG7C,gCAAgC,CA2G5B,IAAI,CAAA,AAAA,WAAC,CAAY,kBAAkB,AAA9B,CAA+B,OAAO,CA3G/C,gCAAgC,CAgH5B,IAAI,CAAA,AAAA,WAAC,CAAY,gBAAgB,AAA5B,CAA6B,OAAO,CAhH7C,gCAAgC,CAqH5B,IAAI,CAAA,AAAA,WAAC,CAAY,kBAAkB,AAA9B,CAA+B,OAAO,CArH/C,gCAAgC,CA0H5B,IAAI,CAAA,AAAA,WAAC,CAAY,WAAW,AAAvB,CAAwB,OAAO,CA1HxC,gCAAgC,CA+H5B,IAAI,CAAA,AAAA,WAAC,CAAY,aAAa,AAAzB,CAA0B,OAAO,CA/H1C,gCAAgC,CAoI5B,IAAI,CAAA,AAAA,WAAC,CAAY,cAAc,AAA1B,CAA2B,OAAO,CApI3C,gCAAgC,CAyI5B,IAAI,CAAA,AAAA,WAAC,CAAY,OAAO,AAAnB,CAAoB,OAAO,CAzIpC,gCAAgC,CA8I5B,IAAI,CAAA,AAAA,WAAC,CAAY,OAAO,AAAnB,CAAoB,OAAO,CA9IpC,gCAAgC,CAmJ5B,cAAc,AAGT,OAAO,CAtJhB,gCAAgC,CA0K5B,KAAK,CAWC,EAAE,AAgBC,KAAK,AAAA,OAAO,CArMzB,gCAAgC,CA0K5B,KAAK,CAWC,EAAE,AAqBC,KAAK,AAAA,OAAO,AAjThB,CACL,QAAQ,CAAE,QAAS,CACnB,KAAK,CAAE,GAAI,CACX,MAAM,CAAE,GAAI,CACZ,MAAM,CAAE,IAAK,CACb,OAAO,CAAE,CAAE,CACX,QAAQ,CAAE,MAAO,CACjB,IAAI,CAAE,gBAAI,CACV,MAAM,CAAE,CAAE,CACb,AAGD,gCAAgC,AAC3B,cAAc,AAAC,CACZ,QAAQ,CAAE,QAAS,CACnB,OAAO,CAAE,IAAK,CACd,OAAO,CAAE,IAAK,CACd,KAAK,CAAE,IAAK,CACZ,SAAS,CAAE,KAAM,CACjB,gBAAgB,CAAE,IAAK,CACvB,uBAAuB,CAAE,WAAY,CACrC,eAAe,CAAE,WAAY,CAC7B,MAAM,CAAE,GAAG,CAAC,KAAK,CAAC,gBAAI,CACtB,aAAa,CAAE,GAAI,CACnB,UAAU,CAAE,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,iBAAI,CAC9B,AAbL,gCAAgC,CAe5B,cAAc,AAAC,CACX,YAAY,CAAE,CAAE,CAChB,UAAU,CAAE,IAAK,CACpB,AAlBL,gCAAgC,CAoB5B,SAAS,AAAC,CACN,OAAO,CAAE,IAAK,CACd,UAAU,CAAE,MAAO,CAMtB,AA5BL,gCAAgC,CAoB5B,SAAS,AAIJ,GAAG,AAAC,CACD,OAAO,CAAE,KAAM,CACf,UAAU,CAAE,OAAQ,CACvB,AA3BT,gCAAgC,CA8B5B,iBAAiB,CAAC,cAAc,AAAC,CAC7B,MAAM,CAAE,kBAAmB,CAC3B,UAAU,CAAE,kBAAmB,CAClC,AAjCL,gCAAgC,CAmC5B,gBAAgB,CAAG,KAAK,CAAG,EAAE,CAAG,EAAE,AAAC,CAC/B,OAAO,CAAE,GAAI,CAChB,AArCL,gCAAgC,CAuC5B,KAAK,AAAC,CACF,OAAO,CAAE,KAAM,CA6BlB,AArEL,gCAAgC,CAuC5B,KAAK,CAGD,KAAK,AAAC,CACF,OAAO,CAAE,kBAAmB,CAC/B,AA5CT,gCAAgC,CAuC5B,KAAK,CAOD,KAAK,AAAC,CACF,OAAO,CAAE,eAAgB,CAC5B,AAhDT,gCAAgC,CAuC5B,KAAK,CAWD,EAAE,AAAC,CACC,OAAO,CAAE,SAAU,CAiBtB,AApET,gCAAgC,CAuC5B,KAAK,CAWD,EAAE,AAGG,MAAM,AAAC,CACJ,UAAU,CAAE,OAAQ,CACvB,AAvDb,gCAAgC,CAuC5B,KAAK,CAWD,EAAE,CAOE,EAAE,CAzDd,gCAAgC,CAuC5B,KAAK,CAWD,EAAE,CAOM,EAAE,AAAC,CACH,MAAM,CAAE,CAAE,CACV,OAAO,CAAE,UAAW,CAQvB,AAnEb,gCAAgC,CAuC5B,KAAK,CAWD,EAAE,CAOE,EAAE,AAGG,YAAY,CA5D7B,gCAAgC,CAuC5B,KAAK,CAWD,EAAE,CAOM,EAAE,AAGD,YAAY,AAAC,CACV,YAAY,CAAE,OAAQ,CACzB,AA9DjB,gCAAgC,CAuC5B,KAAK,CAWD,EAAE,CAOE,EAAE,AAOG,WAAW,CAhE5B,gCAAgC,CAuC5B,KAAK,CAWD,EAAE,CAOM,EAAE,AAOD,WAAW,AAAC,CACT,aAAa,CAAE,OAAQ,CAC1B,AAQjB;;;;GAIG,AAaH,gCAAgC,AAAC,CAC7B,UAAU,CAAE,IAAK,CA8TpB,AA/TD,gCAAgC,AAG3B,cAAc,AAAC,CACZ,MAAM,CAAE,KAAM,CACd,OAAO,CAAE,GAAI,CACb,KAAK,CAAE,IAAK,CAuEf,AApEO,MAAM,EAAL,SAAS,EAAE,KAAK,EAT7B,gCAAgC,AAG3B,cAAc,AAKV,eAAe,AAAC,CAET,KAAK,CAAE,IAAK,CAUnB,CAPG,MAAM,EAAL,SAAS,EAAE,KAAK,EAb7B,gCAAgC,AAG3B,cAAc,AAKV,eAAe,AAAC,CAMT,KAAK,CAAE,IAAK,CAMnB,CAHG,MAAM,EAAL,SAAS,EAAE,MAAM,EAjB9B,gCAAgC,AAG3B,cAAc,AAKV,eAAe,AAAC,CAUT,KAAK,CAAE,IAAK,CAEnB,CApBT,gCAAgC,AAG3B,cAAc,AAmBV,OAAO,CAtBhB,gCAAgC,AAG3B,cAAc,AAmBA,MAAM,AAAC,CACd,OAAO,CAAE,EAAG,CACZ,OAAO,CAAE,YAAa,CACtB,QAAQ,CAAE,QAAS,CACtB,AA1BT,gCAAgC,AAG3B,cAAc,AAyBV,OAAO,AACH,OAAO,AAAC,CACL,WAAW,CAAE,qBAAsB,CACnC,YAAY,CAAE,qBAAsB,CACpC,aAAa,CAAE,GAAG,CAAC,KAAK,CArCG,IAAI,CAsC/B,mBAAmB,CArCa,eAAI,CAsCpC,GAAG,CAAE,IAAK,CACV,IAAI,CAAE,GAAI,CACb,AApCb,gCAAgC,AAG3B,cAAc,AAyBV,OAAO,AAUH,MAAM,AAAC,CACJ,WAAW,CAAE,qBAAsB,CACnC,YAAY,CAAE,qBAAsB,CACpC,aAAa,CAAE,GAAG,CAAC,KAAK,CA5CC,IAAK,CA6C9B,GAAG,CAAE,IAAK,CACV,IAAI,CAAE,GAAI,CACb,AA5Cb,gCAAgC,AAG3B,cAAc,AA4CV,IAAI,AACA,OAAO,AAAC,CACL,WAAW,CAAE,qBAAsB,CACnC,YAAY,CAAE,qBAAsB,CACpC,UAAU,CAAE,GAAG,CAAC,KAAK,CAxDM,IAAI,CAyD/B,gBAAgB,CAxDgB,eAAI,CAyDpC,MAAM,CAAE,IAAK,CACb,IAAI,CAAE,GAAI,CACb,AAvDb,gCAAgC,AAG3B,cAAc,AA4CV,IAAI,AAUA,MAAM,AAAC,CACJ,WAAW,CAAE,qBAAsB,CACnC,YAAY,CAAE,qBAAsB,CACpC,UAAU,CAAE,GAAG,CAAC,KAAK,CA/DI,IAAK,CAgE9B,MAAM,CAAE,IAAK,CACb,IAAI,CAAE,GAAI,CACb,AA/Db,gCAAgC,AAG3B,cAAc,AA+DV,WAAW,AACP,OAAO,AAAC,CACL,IAAI,CAAE,IAAK,CACX,KAAK,CAAE,GAAI,CACd,AAtEb,gCAAgC,AAG3B,cAAc,AA+DV,WAAW,AAMP,MAAM,AAAC,CACJ,IAAI,CAAE,IAAK,CACX,KAAK,CAAE,GAAI,CACd,AA3Eb,gCAAgC,CA+E5B,cAAc,AAAC,CACX,MAAM,CAAE,CAAE,CACb,AAjFL,gCAAgC,CAmF5B,CAAC,CAAA,AAAA,WAAC,AAAA,CAAa,CACX,OAAO,CAAE,KAAM,CAClB,AArFL,gCAAgC,CAuF5B,CAAC,CAAA,AAAA,WAAC,AAAA,CAAY,OAAO,AAAC,CAClB,UAAU,CAAE,IAAK,CACpB,AAzFL,gCAAgC,CA2F5B,gBAAgB,CA3FpB,gCAAgC,CA2FV,kBAAkB,CA3FxC,gCAAgC,CA2FU,kBAAkB,AAAC,CACrD,KAAK,CAAE,IAAK,CACZ,WAAW,CAAE,IAAK,CAClB,SAAS,CA1GwB,KAAK,CA2GtC,MAAM,CAAE,CAAE,CACb,AAhGL,gCAAgC,CAkG5B,MAAM,CAAA,AAAA,WAAC,AAAA,CAAa,CAChB,OAAO,CAAE,GAAI,CAChB,AApGL,gCAAgC,CAsG5B,IAAI,CAAA,AAAA,WAAC,CAAY,gBAAgB,AAA5B,CAA6B,OAAO,AAAC,CAEtC,OAAO,CAAE,iBAAkB,CAC9B,AAzGL,gCAAgC,CA2G5B,IAAI,CAAA,AAAA,WAAC,CAAY,kBAAkB,AAA9B,CAA+B,OAAO,AAAC,CAExC,OAAO,CAAE,mBAAoB,CAChC,AA9GL,gCAAgC,CAgH5B,IAAI,CAAA,AAAA,WAAC,CAAY,gBAAgB,AAA5B,CAA6B,OAAO,AAAC,CAEtC,OAAO,CAAE,iBAAkB,CAC9B,AAnHL,gCAAgC,CAqH5B,IAAI,CAAA,AAAA,WAAC,CAAY,kBAAkB,AAA9B,CAA+B,OAAO,AAAC,CAExC,OAAO,CAAE,mBAAoB,CAChC,AAxHL,gCAAgC,CA0H5B,IAAI,CAAA,AAAA,WAAC,CAAY,WAAW,AAAvB,CAAwB,OAAO,AAAC,CAEjC,OAAO,CAAE,YAAa,CACzB,AA7HL,gCAAgC,CA+H5B,IAAI,CAAA,AAAA,WAAC,CAAY,aAAa,AAAzB,CAA0B,OAAO,AAAC,CAEnC,OAAO,CAAE,cAAe,CAC3B,AAlIL,gCAAgC,CAoI5B,IAAI,CAAA,AAAA,WAAC,CAAY,cAAc,AAA1B,CAA2B,OAAO,AAAC,CAEpC,OAAO,CAAE,cAAe,CAC3B,AAvIL,gCAAgC,CAyI5B,IAAI,CAAA,AAAA,WAAC,CAAY,OAAO,AAAnB,CAAoB,OAAO,AAAC,CAE7B,OAAO,CAAE,kBAAmB,CAC/B,AA5IL,gCAAgC,CA8I5B,IAAI,CAAA,AAAA,WAAC,CAAY,OAAO,AAAnB,CAAoB,OAAO,AAAC,CAE7B,OAAO,CAAE,uBAAwB,CACpC,AAjJL,gCAAgC,CAmJ5B,cAAc,AAAC,CACX,UAAU,CAAE,MAAO,CAoBtB,AAxKL,gCAAgC,CAmJ5B,cAAc,AAGT,OAAO,AAAC,CAEL,OAAO,CAAE,8BAA+B,CAC3C,AAzJT,gCAAgC,CAmJ5B,cAAc,CAQV,EAAE,AAAC,CACC,OAAO,CAAE,CAAE,CACX,MAAM,CAAE,CAAE,CACV,MAAM,CAAE,IAAK,CACb,KAAK,CAAE,IAAK,CACZ,WAAW,CAAE,OAAQ,CAOxB,AAvKT,gCAAgC,CAmJ5B,cAAc,CAQV,EAAE,CAOE,IAAI,AAAC,CACD,WAAW,CAAE,GAAI,CACjB,MAAM,CAAE,KAAM,CACd,KAAK,CAAE,IAAK,CACf,AAtKb,gCAAgC,CA0K5B,KAAK,AAAC,CACF,KAAK,CAAE,IAAK,CACZ,MAAM,CAAE,CAAE,CA2Ib,AAvTL,gCAAgC,CA0K5B,KAAK,CAKC,EAAE,CA/KZ,gCAAgC,CA0K5B,KAAK,CAMC,EAAE,AAAC,CACD,UAAU,CAAE,MAAO,CACnB,aAAa,CA3LS,GAAG,CA4L5B,AAnLT,gCAAgC,CA0K5B,KAAK,CAWC,EAAE,AAAC,CACD,MAAM,CAAE,IAAK,CACb,WAAW,CAAE,IAAK,CAClB,KAAK,CAAE,IAAK,CAsBf,AA9MT,gCAAgC,CA0K5B,KAAK,CAWC,EAAE,AAKC,cAAc,AAAC,CACZ,KAAK,CAAE,KAAM,CAChB,AA5Lb,gCAAgC,CA0K5B,KAAK,CAWC,EAAE,AASC,SAAS,CA9LtB,gCAAgC,CA0K5B,KAAK,CAWC,EAAE,AAUC,SAAS,AAAA,MAAM,AAAC,CACb,UAAU,CAAE,IAAK,CACjB,KAAK,CAxMc,IAAI,CAyMvB,MAAM,CAAE,WAAY,CACvB,AAnMb,gCAAgC,CA0K5B,KAAK,CAWC,EAAE,AAgBC,KAAK,AAAA,OAAO,AAAC,CAEV,OAAO,CAAE,gBAAiB,CAC7B,AAxMb,gCAAgC,CA0K5B,KAAK,CAWC,EAAE,AAqBC,KAAK,AAAA,OAAO,AAAC,CAEV,OAAO,CAAE,YAAa,CACzB,AA7Mb,gCAAgC,CA0K5B,KAAK,CAsCC,KAAK,CAAC,EAAE,AAAA,YAAY,CAAC,EAAE,AAAC,CACtB,MAAM,CAAE,OAAQ,CAKnB,AAtNT,gCAAgC,CA0K5B,KAAK,CAsCC,KAAK,CAAC,EAAE,AAAA,YAAY,CAAC,EAAE,AAGpB,MAAM,AAAC,CACJ,UAAU,CA5NO,IAAI,CA6NxB,AArNb,gCAAgC,CA0K5B,KAAK,CA8CC,EAAE,AAAC,CACD,MAAM,CAAE,IAAK,CACb,WAAW,CAAE,IAAK,CAClB,KAAK,CAAE,IAAK,CA2Ff,AAtTT,gCAAgC,CA0K5B,KAAK,CA8CC,EAAE,AAKC,GAAG,AAAC,CACD,SAAS,CAAE,IAAK,CAChB,MAAM,CAAE,IAAK,CACb,WAAW,CAAE,IAAK,CAClB,KAAK,CAvOe,IAAI,CAwO3B,AAlOb,gCAAgC,CA0K5B,KAAK,CA8CC,EAAE,AAYC,IAAI,AAAC,CACF,MAAM,CAAE,IAAK,CACb,WAAW,CAAE,IAAK,CAClB,KAAK,CAAE,IAAK,CACf,AAxOb,gCAAgC,CA0K5B,KAAK,CA8CC,EAAE,AAkBC,IAAI,AAAA,MAAM,CA1OvB,gCAAgC,CA0K5B,KAAK,CA8CC,EAAE,AAmBC,KAAK,AAAA,MAAM,CA3OxB,gCAAgC,CA0K5B,KAAK,CA8CC,EAAE,AAoBC,OAAO,AAAA,MAAM,CA5O1B,gCAAgC,CA0K5B,KAAK,CA8CC,EAAE,AAqBC,OAAO,AAAA,MAAM,AAAC,CACX,UAAU,CAtPO,IAAI,CAuPrB,MAAM,CAAE,OAAQ,CACnB,AAhPb,gCAAgC,CA0K5B,KAAK,CA8CC,EAAE,AA0BC,IAAI,CAlPjB,gCAAgC,CA0K5B,KAAK,CA8CC,EAAE,AA2BC,IAAI,AAAC,CACF,KAAK,CA1Pe,IAAI,CA2P3B,AArPb,gCAAgC,CA0K5B,KAAK,CA8CC,EAAE,AA+BC,MAAM,AAAC,CACJ,QAAQ,CAAE,QAAS,CAYtB,AApQb,gCAAgC,CA0K5B,KAAK,CA8CC,EAAE,AA+BC,MAAM,AAGF,OAAO,AAAC,CACL,OAAO,CAAE,EAAG,CACZ,OAAO,CAAE,YAAa,CACtB,MAAM,CAAE,6BAA8B,CACtC,mBAAmB,CAzQT,IAAK,CA0Qf,gBAAgB,CAnQY,eAAI,CAoQhC,QAAQ,CAAE,QAAS,CACnB,MAAM,CAAE,GAAI,CACZ,KAAK,CAAE,GAAI,CACd,AAnQjB,gCAAgC,CA0K5B,KAAK,CA8CC,EAAE,AA8CC,OAAO,CAtQpB,gCAAgC,CA0K5B,KAAK,CA8CC,EAAE,AA+CC,OAAO,AAAA,MAAM,AAAC,CACX,gBAAgB,CAnRF,IAAK,CAoRnB,KAAK,CAnRY,IAAI,CAoRrB,WAAW,CA5QK,CAAC,CAAE,IAAG,CAAC,CAAC,CAAC,gBAAI,CA6QhC,AA3Qb,gCAAgC,CA0K5B,KAAK,CA8CC,EAAE,AAqDC,OAAO,AAAA,MAAM,AAAA,OAAO,AAAC,CAClB,mBAAmB,CAAE,IAAK,CAC7B,AA/Qb,gCAAgC,CA0K5B,KAAK,CA8CC,EAAE,AAyDC,SAAS,CAjRtB,gCAAgC,CA0K5B,KAAK,CA8CC,EAAE,AA0DC,SAAS,AAAA,MAAM,AAAC,CACb,UAAU,CAAE,IAAK,CACjB,KAAK,CA3Rc,IAAI,CA4RvB,MAAM,CAAE,WAAY,CACvB,AAtRb,gCAAgC,CA0K5B,KAAK,CA8CC,EAAE,CAgEA,IAAI,AAAC,CACD,OAAO,CAAE,YAAa,CACtB,KAAK,CAAE,IAAK,CACZ,MAAM,CAAE,IAAK,CACb,WAAW,CAAE,IAAK,CAClB,MAAM,CAAE,SAAU,CAClB,MAAM,CAAE,OAAQ,CAChB,aAAa,CAxSK,GAAG,CA8TxB,AArTb,gCAAgC,CA0K5B,KAAK,CA8CC,EAAE,CAgEA,IAAI,AASC,MAAM,AAAC,CACJ,UAAU,CA1SG,IAAI,CA2SpB,AAnSjB,gCAAgC,CA0K5B,KAAK,CA8CC,EAAE,CAgEA,IAAI,AAaC,OAAO,AAAC,CACL,gBAAgB,CAjTN,IAAK,CAkTf,KAAK,CAjTQ,IAAI,CAkTjB,WAAW,CA1SC,CAAC,CAAE,IAAG,CAAC,CAAC,CAAC,gBAAI,CA2S5B,AAzSjB,gCAAgC,CA0K5B,KAAK,CA8CC,EAAE,CAgEA,IAAI,AAmBC,IAAI,AAAC,CACF,KAAK,CAlTW,IAAI,CAmTvB,AA7SjB,gCAAgC,CA0K5B,KAAK,CA8CC,EAAE,CAgEA,IAAI,AAuBC,SAAS,CA/S1B,gCAAgC,CA0K5B,KAAK,CA8CC,EAAE,CAgEA,IAAI,AAwBC,SAAS,AAAA,MAAM,AAAC,CACb,UAAU,CAAE,IAAK,CACjB,KAAK,CAzTU,IAAI,CA0TnB,MAAM,CAAE,WAAY,CACvB,AApTjB,gCAAgC,AAyT3B,cAAc,CACX,EAAE,AAAA,KAAK,AAAC,CACJ,MAAM,CAAE,IAAK,CACb,WAAW,CAAE,IAAK,CACrB,AAIT,YAAY,AAAA,KAAK,CACX,kBAAkB,AAAC,CACjB,MAAM,CAAE,OAAQ,CACnB,A1EvWL,IAAI,AAAC,CACD,UAAU,CAjFkB,OAAO,CAkFnC,KAAK,CAjFuB,OAAO,CAkFtC,AAED,CAAC,AAAC,CACE,KAAK,CApFuB,OAAO,CAwFtC,AALD,CAAC,AAEI,MAAM,AAAC,CACJ,KAAK,CAAE,OAAM,CAChB,AAIL,UAAU,AAAC,CACP,WAAW,CAAE,IAAI,CAAC,KAAK,CAAC,OAAM,CAOjC,AARD,UAAU,CAEN,CAAC,AAAC,CACE,KAAK,CAAE,IAAK,CACf,AAJL,UAAU,CAKN,IAAI,AAAC,CACD,KAAK,CAAE,IAAK,CACf,AAGL,IAAI,AAAC,CACD,UAAU,CqExHC,OAAO,CrEyHlB,KAAK,CAAE,OAAM,CAChB,AAED,GAAG,AAAC,CACA,UAAU,CqE3HA,OAAO,CrE4HjB,MAAM,CAAE,GAAG,CAAC,KAAK,CqEpIJ,IAAO,CrEwIvB,AAND,GAAG,CAGC,IAAI,AAAC,CACD,KAAK,CqE/HG,OAAO,CrEgIlB,AAGL,EAAE,AAAC,CACC,aAAa,CAAE,GAAG,CAAC,KAAK,CAAC,OAAM,CAClC,AAED,MAAM,AAAC,CACH,UAAU,CAvHkB,OAAO,CAwHnC,KAAK,CqElJK,IAAO,CrEmJpB,AAGD,EAAE,AAAC,CACC,aAAa,CAAE,GAAG,CAAC,KAAK,CAAC,OAAM,CAClC,AAED,EAAE,CACE,EAAE,AACG,YAAY,AAAC,CACV,gBAAgB,CAAE,OAAQ,CAC7B,AAJT,EAAE,AAMG,MAAM,AAAC,CACJ,UAAU,CAAE,OAAO,CACtB,AAIL,QAAQ,AAAC,CACL,UAAU,CArIkB,OAAO,CAsInC,KAAK,CArIuB,OAAO,CAuJtC,AApBD,QAAQ,CAIJ,EAAE,AACG,OAAO,CACJ,IAAI,CANhB,QAAQ,CAIJ,EAAE,AACG,OAAO,CACE,CAAC,AAAC,CACJ,UAAU,CAhJM,IAAO,CAiJvB,KAAK,CAhJW,OAAO,CAiJ1B,AATb,QAAQ,CAaJ,IAAI,CAbR,QAAQ,CAaE,CAAC,AAAC,CACJ,KAAK,CAjJmB,OAAO,CAsJlC,AAnBL,QAAQ,CAaJ,IAAI,AAEC,MAAM,CAff,QAAQ,CAaE,CAAC,AAEF,MAAM,AAAC,CACJ,KAAK,CAAE,OAAO,CACd,UAAU,CAAE,OAAO,CACtB,AAMT,OAAO,AAAC,CwElKP,KAAK,CH5BQ,sBAAO,CG6BpB,aAAa,CF3BE,GAAG,CE4Bf,UAAU,CxEQkB,OAAO,CAsKtC,AAdD,OAAO,AwEzJE,MAAM,AAAC,CACJ,UAAU,C9ChCZ,OAAG,C8CiCD,KAAK,CHvCH,IAAO,CGwCZ,AxEsJT,OAAO,AwErJE,gBAAgB,AAAC,CACd,WAAW,CAAE,GAAG,CAAC,KAAK,CAAC,OAAO,CACjC,AxEmJT,OAAO,AAGF,gBAAgB,AAAC,CACd,WAAW,CAAE,GAAG,CAAC,KAAK,CAAC,OAAM,CAChC,AALL,OAAO,AAOF,UAAU,AAAC,CwEzKf,KAAK,CH5BQ,sBAAO,CG6BpB,aAAa,CF3BE,GAAG,CE4Bf,UAAU,C9CxBJ,OAAG,C1BqMR,AAbL,OAAO,AAOF,UAAU,AwExJN,MAAM,AAAC,CACJ,UAAU,C9C7CZ,OAAG,C8C8CD,KAAK,CH/CH,IAAO,CGgDZ,AxE8IT,OAAO,AAOF,UAAU,AwEpJN,gBAAgB,AAAC,CACd,WAAW,CAAE,GAAG,CAAC,KAAK,CAAC,OAAM,CAChC,AxE2IT,OAAO,AAOF,UAAU,AAGN,gBAAgB,AAAC,CACd,WAAW,CAAE,GAAG,CAAC,KAAK,CAAC,OAAM,CAChC,AAIT,aAAa,CACT,cAAc,AAAC,CACX,gBAAgB,CA1KQ,OAAO,CA2K/B,UAAU,CAAE,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,iBAAI,CAoB9B,AAvBL,aAAa,CACT,cAAc,CAIV,QAAQ,AAAC,CACL,gBAAgB,CA9KI,OAAO,CA+K9B,AAPT,aAAa,CACT,cAAc,CAQV,EAAE,CAAG,CAAC,AAAC,CACH,KAAK,CAjLe,IAAO,CAuL9B,AAhBT,aAAa,CACT,cAAc,CAQV,EAAE,CAAG,CAAC,AAGD,MAAM,CAZnB,aAAa,CACT,cAAc,CAQV,EAAE,CAAG,CAAC,AAGQ,MAAM,AAAC,CACb,KAAK,CApLW,IAAO,CAqLvB,gBAAgB,CAtLA,OAAO,CAuL1B,AAfb,aAAa,CACT,cAAc,AAiBT,kBAAkB,CACf,CAAC,AAAA,OAAO,AAAC,CACL,gBAAgB,CAAE,OAAO,CAC5B,AAKb,oBAAoB,AAAC,CACjB,UAAU,CAAE,2DAAe,CAC9B,AAED,YAAY,AAAC,CACT,UAAU,CAlOkB,OAAO,CAmQtC,AAlCD,YAAY,AAGP,KAAK,CAAC,IAAI,CAAC,KAAK,AoD7OhB,2BAA2B,AAA5B,CpD+OQ,KAAK,C0BhPP,OAAG,C0BGR,ApDwOL,YAAY,AAGP,KAAK,CAAC,IAAI,CAAC,KAAK,AoD7OhB,kBAAkB,AAAnB,CpD+OQ,KAAK,C0BhPP,OAAG,C0BGR,ApDwOL,YAAY,AAGP,KAAK,CAAC,IAAI,CAAC,KAAK,AoD7OhB,iBAAiB,AAAlB,CpD+OQ,KAAK,C0BhPP,OAAG,C0BGR,ApDwOL,YAAY,AAGP,KAAK,CAAC,IAAI,CAAC,KAAK,AoD7OhB,sBAAsB,AAAvB,CpD+OQ,KAAK,C0BhPP,OAAG,C0BGR,ApDwOL,YAAY,CASR,eAAe,CACX,EAAE,AAAC,CACC,KAAK,CAAO,qBAAK,CACjB,aAAa,CAAE,GAAG,CAAC,KAAK,CA3OJ,qBAAO,CA4O9B,AAbT,YAAY,CAgBR,aAAa,AAAC,CACV,KAAK,CAjPmB,qBAAO,CAkPlC,AAlBL,YAAY,CAoBR,EAAE,AAAC,CACC,UAAU,CA1Pc,OAAO,CA0PY,uBAAC,CAAC,GAAG,CAAC,GAAG,CAAC,SAAS,CACjE,AAtBL,YAAY,CAwBR,IAAI,CACA,KAAK,AAAC,CACF,UAAU,CAAE,OAAO,CACnB,KAAK,CA1Pe,OAAO,CA2P3B,MAAM,CAAE,GAAG,CAAC,KAAK,C0BlQnB,OAAG,C1BsQJ,AAhCT,YAAY,CAwBR,IAAI,CACA,KAAK,AoDnQR,2BAA2B,AAA5B,CpDwQY,KAAK,C0BzQX,OAAG,C0BGR,ApDwOL,YAAY,CAwBR,IAAI,CACA,KAAK,AoDnQR,kBAAkB,AAAnB,CpDwQY,KAAK,C0BzQX,OAAG,C0BGR,ApDwOL,YAAY,CAwBR,IAAI,CACA,KAAK,AoDnQR,iBAAiB,AAAlB,CpDwQY,KAAK,C0BzQX,OAAG,C0BGR,ApDwOL,YAAY,CAwBR,IAAI,CACA,KAAK,AoDnQR,sBAAsB,AAAvB,CpDwQY,KAAK,C0BzQX,OAAG,C0BGR,ApD4QL,cAAc,AAAC,CACX,UAAU,CAtQkB,OAAO,CA6QtC,AARD,cAAc,CAEV,CAAC,AAAC,CACE,KAAK,CAtQmB,qBAAO,CA0QlC,AAPL,cAAc,CAEV,CAAC,AAEI,MAAM,AAAC,CACJ,KAAK,CAxQe,OAAO,CAyQ9B,AAIT,WAAW,CAAE,YAAY,AAAC,CACtB,UAAU,CApRkB,OAAO,CAuStC,AApBD,WAAW,CAGP,UAAU,CACN,IAAI,CAJC,YAAY,CAGrB,UAAU,CACN,IAAI,AAAC,CACD,IAAI,CAvRgB,qBAAO,CAuRC,UAAU,CACzC,AANT,WAAW,CAGP,UAAU,AAKL,MAAM,CACH,IAAI,CATH,YAAY,CAGrB,UAAU,AAKL,MAAM,CACH,IAAI,AAAC,CACD,IAAI,CA5RY,IAAO,CA4RN,UAAU,CAC9B,AAXb,WAAW,CAcP,CAAC,CAdQ,YAAY,CAcrB,CAAC,AAAC,CACE,KAAK,C0BnSH,IAAG,C1BuSR,AAnBL,WAAW,CAcP,CAAC,AAEI,MAAM,CAhBF,YAAY,CAcrB,CAAC,AAEI,MAAM,AAAC,CACJ,KAAK,CAnSe,IAAO,CAoS9B,AAIT,mBAAmB,CAAE,mBAAmB,AAAC,CACrC,aAAa,CAAE,GAAG,CAAC,KAAK,CAAC,OAAO,CAWnC,AAZD,mBAAmB,AAGd,MAAM,CAAC,GAAG,CAHM,mBAAmB,AAGnC,MAAM,CAAC,GAAG,AAAC,CACR,UAAU,CAAE,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CACrC,AALL,mBAAmB,CAOf,iBAAiB,CACb,EAAE,CARV,mBAAmB,CAOf,iBAAiB,CACT,EAAE,CARO,mBAAmB,CAOpC,iBAAiB,CACb,EAAE,CARW,mBAAmB,CAOpC,iBAAiB,CACT,EAAE,AAAC,CACH,KAAK,CA5Se,OAAO,CA6S9B,AAIT,WAAW,CACP,EAAE,CACE,OAAO,CACH,MAAM,AAAC,CACH,KAAK,CArTW,OAAO,CAsTvB,gBAAgB,CAAE,OAAO,CAC5B,AANb,WAAW,CACP,EAAE,CACE,OAAO,CAMH,QAAQ,AAAC,CACL,KAAK,CA5RW,IAAO,CA6RvB,gBAAgB,CA9RA,OAAO,CA+R1B,AAXb,WAAW,CACP,EAAE,CAaE,CAAC,AACI,MAAM,AAAC,CACJ,UAAU,CA9TM,OAAO,CA+TvB,KAAK,CA9TW,IAAO,CAmU1B,AAtBb,WAAW,CACP,EAAE,CAaE,CAAC,AACI,MAAM,CAIH,GAAG,AAAC,CACA,KAAK,CAjUO,IAAO,CAkUtB,AArBjB,WAAW,CACP,EAAE,AAwBG,SAAS,CACN,CAAC,AAAC,CACE,UAAU,CA3UM,OAAO,CA4UvB,KAAK,CA3UW,IAAO,CA4UvB,WAAW,CAAE,GAAG,CAAC,KAAK,C0BrV5B,OAAG,C1B0VA,AAlCb,WAAW,CACP,EAAE,AAwBG,SAAS,CACN,CAAC,CAKG,GAAG,AAAC,CACA,KAAK,CA/UO,IAAO,CAgVtB,AAMjB,WAAW,CAEP,YAAY,AAAC,CACT,UAAU,CA1Tc,OAAO,CA2T/B,KAAK,CA1TmB,IAAO,CA+TlC,AATL,WAAW,CAEP,YAAY,CAIR,CAAC,AAAA,OAAO,CANhB,WAAW,CAEP,YAAY,CAIE,IAAI,AAAA,OAAO,AAAC,CwE/U7B,KAAK,CxEmB0B,sBAAO,CwElBtC,aAAa,CF3BE,GAAG,CE4Bf,UAAU,C9CxBJ,OAAG,C1BuWJ,AART,WAAW,CAEP,YAAY,CAIR,CAAC,AAAA,OAAO,AwEtUP,MAAM,CxEgUf,WAAW,CAEP,YAAY,CAIE,IAAI,AAAA,OAAO,AwEtUpB,MAAM,AAAC,CACJ,UAAU,C9ChCZ,OAAG,C8CiCD,KAAK,CxEQe,IAAO,CwEP9B,AxE6TT,WAAW,CAEP,YAAY,CAIR,CAAC,AAAA,OAAO,AwElUP,gBAAgB,CxE4TzB,WAAW,CAEP,YAAY,CAIE,IAAI,AAAA,OAAO,AwElUpB,gBAAgB,AAAC,CACd,WAAW,CAAE,GAAG,CAAC,KAAK,CAAC,OAAO,CACjC,AxE0TT,WAAW,CAWP,SAAS,AAAC,CACN,UAAU,CA7Vc,OAAO,CA8V/B,KAAK,CA7VmB,IAAO,CA8VlC,AAdL,WAAW,CAgBP,aAAa,AAAC,CACV,UAAU,CqErXJ,eAAO,CrEyXhB,AArBL,WAAW,CAgBP,aAAa,CAET,MAAM,CAlBd,WAAW,CAgBP,aAAa,CAED,MAAM,AAAA,OAAO,CAlB7B,WAAW,CAgBP,aAAa,CAEc,MAAM,AAAA,MAAM,AAAC,CAChC,UAAU,CAnWU,IAAO,CAoW9B,AApBT,WAAW,CAuBP,YAAY,AAAC,CACT,UAAU,CAhWc,IAAO,CAiW/B,KAAK,CAhWmB,OAAO,CAiXlC,AA1CL,WAAW,CAuBP,YAAY,CAIR,CAAC,AAAC,CACE,KAAK,CAlWe,OAAO,CAsW9B,AAhCT,WAAW,CAuBP,YAAY,CAIR,CAAC,AAEI,MAAM,AAAC,CACJ,KAAK,CAAE,OAAM,CAChB,AA/Bb,WAAW,CAuBP,YAAY,CAWR,EAAE,AAAC,CACC,KAAK,CAvWe,OAAO,CAwW3B,aAAa,CAAE,GAAG,CAAC,KAAK,CAAC,OAAM,CAClC,AArCT,WAAW,CAuBP,YAAY,CAgBR,OAAO,AAAC,CwEhXf,KAAK,CH5BQ,sBAAO,CG6BpB,aAAa,CF3BE,GAAG,CE4Bf,UAAU,CxEQkB,OAAO,CAwW9B,AAzCT,WAAW,CAuBP,YAAY,CAgBR,OAAO,AwEvWN,MAAM,AAAC,CACJ,UAAU,C9ChCZ,OAAG,C8CiCD,KAAK,CHvCH,IAAO,CGwCZ,AxE6TT,WAAW,CAuBP,YAAY,CAgBR,OAAO,AwEnWN,gBAAgB,AAAC,CACd,WAAW,CAAE,GAAG,CAAC,KAAK,CAAC,OAAO,CACjC,AxE0TT,WAAW,CA4CP,OAAO,AACF,WAAW,CA7CpB,WAAW,CA4CE,QAAQ,AACZ,WAAW,AAAC,CACT,UAAU,CAAE,OAAM,CACrB,AA/CT,WAAW,CAkDP,OAAO,AACF,WAAW,CACR,OAAO,AAAC,CwE7XnB,KAAK,CH5BQ,sBAAO,CG6BpB,aAAa,CF3BE,GAAG,CE4Bf,UAAU,CxEoBkB,OAAO,CAyW1B,AAtDb,WAAW,CAkDP,OAAO,AACF,WAAW,CACR,OAAO,AwEpXV,MAAM,AAAC,CACJ,UAAU,C9ChCZ,OAAG,C8CiCD,KAAK,CHvCH,IAAO,CGwCZ,AxE6TT,WAAW,CAkDP,OAAO,AACF,WAAW,CACR,OAAO,AwEhXV,gBAAgB,AAAC,CACd,WAAW,CAAE,GAAG,CAAC,KAAK,CAAC,OAAO,CACjC,AxEqXT,gBAAgB,CAEZ,eAAe,AAAC,C8CjYlB,gBAAgB,CpB3BR,OAAG,CoB4BX,gBAAgB,CAAE,wCAAuB,CACzC,gBAAgB,CAAE,gCAAO,C9CmZtB,AAtBL,gBAAgB,CAEZ,eAAe,CAGX,CAAC,AAAC,CACE,KAAK,CA/Xe,sBAAO,CAgY9B,AAPT,gBAAgB,CAEZ,eAAe,CAMX,KAAK,CACD,CAAC,AAAC,CACE,KAAK,CAnYW,sBAAO,CAoY1B,AAXb,gBAAgB,CAEZ,eAAe,CAWX,QAAQ,CACJ,EAAE,AAAC,CACC,KAAK,CAxYW,sBAAO,CAyY1B,AAhBb,gBAAgB,CAEZ,eAAe,CAiBX,aAAa,AAAC,CACV,KAAK,C0B9aP,OAAG,C1B+aJ,AArBT,gBAAgB,CAwBZ,iBAAiB,AAAC,C8CvZpB,gBAAgB,CpB3BR,OAAG,CoB4BX,gBAAgB,CAAE,wCAAuB,CACzC,gBAAgB,CAAE,gCAAO,C9CyatB,AA5CL,gBAAgB,CAwBZ,iBAAiB,CAGb,CAAC,AAAC,CACE,KAAK,CAjZe,sBAAO,CAkZ9B,AA7BT,gBAAgB,CAwBZ,iBAAiB,CAMb,KAAK,CACD,CAAC,AAAC,CACE,KAAK,CArZW,sBAAO,CAsZ1B,AAjCb,gBAAgB,CAwBZ,iBAAiB,CAWb,QAAQ,CACJ,EAAE,AAAC,CACC,KAAK,CA1ZW,sBAAO,CA2Z1B,AAtCb,gBAAgB,CAwBZ,iBAAiB,CAiBb,aAAa,AAAC,CACV,KAAK,C0BpcP,OAAG,C1BqcJ,AAOT,IAAI,CACA,EAAE,CADN,IAAI,CACI,EAAE,AAAC,CACH,KAAK,CA5bmB,OAAO,CA6b/B,aAAa,CAAE,GAAG,CAAC,KAAK,CAAC,OAAM,CAClC,AAJL,IAAI,CAMA,KAAK,AAAC,CACF,KAAK,CAvamB,OAAO,CAwalC,AARL,IAAI,CAUA,SAAS,AAAC,CACN,KAAK,CA7bmB,OAAO,CA8blC,AAZL,IAAI,CAcA,oBAAoB,AACf,MAAM,CAff,IAAI,CAcsB,kBAAkB,AAAA,OAAO,CAAC,gBAAgB,AAC3D,MAAM,AAAC,CACJ,KAAK,CAAE,OAAO,CACjB,AAjBT,IAAI,CAoBA,gBAAgB,AAAC,CACb,KAAK,CAzcmB,OAAO,CA0c/B,YAAY,CApYN,OAAM,CAqYf,AAvBL,IAAI,CAyBA,kBAAkB,AAAA,MAAM,CAAC,gBAAgB,CACnC,GAAG,AAAC,CACF,KAAK,CAhde,IAAO,CAid3B,UAAU,CAhdU,OAAO,CAqd9B,AAjCT,IAAI,CAyBA,kBAAkB,AAAA,MAAM,CAAC,gBAAgB,CACnC,GAAG,AAGA,OAAO,AAAC,CACL,UAAU,CAtcM,OAAO,CAucvB,KAAK,CAtcW,IAAO,CAuc1B,AAhCb,IAAI,CAoCA,MAAM,AAAC,CACH,MAAM,CAlZM,GAAG,CAkZY,KAAK,CAnZ1B,OAAM,CAoZZ,UAAU,CqExfJ,IAAO,CrEyfhB,AAvCL,IAAI,CAyCA,KAAK,CAAA,AAAA,IAAC,CAAD,IAAC,AAAA,EAzCV,IAAI,CAyCkB,KAAK,CAAA,AAAA,IAAC,CAAD,QAAC,AAAA,EAzC5B,IAAI,CAyCwC,KAAK,CAAA,AAAA,IAAC,CAAD,KAAC,AAAA,EAzClD,IAAI,CAyC2D,KAAK,CAAA,AAAA,IAAC,CAAD,IAAC,AAAA,CAAW,CACxE,MAAM,CAvZM,GAAG,CAuZY,KAAK,CAxZ1B,OAAM,CAyZZ,UAAU,CqE7fJ,IAAO,CrE8fhB,AA5CL,IAAI,CA8CA,KAAK,CAAA,AAAA,QAAC,CAAD,QAAC,AAAA,CAAmB,CACrB,UAAU,CAAE,OAAM,CACrB,AAhDL,IAAI,CAkDA,QAAQ,AAAC,CACL,MAAM,CAhaM,GAAG,CAgaY,KAAK,CAja1B,OAAM,CAkaZ,UAAU,CqEtgBJ,IAAO,CrEugBhB,AArDL,IAAI,CAuDA,yBAAyB,AAAC,CACtB,MAAM,CAraM,GAAG,CAqaY,KAAK,CAta1B,OAAM,CAuaf,AAzDL,IAAI,CA2DA,WAAW,AAAC,CACR,UAAU,CAAE,OAAO,CACtB,AA7DL,IAAI,CA+DA,WAAW,CACP,KAAK,AAAA,OAAO,AAAC,CACT,UAAU,CqEnhBR,IAAO,CrEohBT,MAAM,CA/aE,GAAG,CA+agB,KAAK,CAhb9B,OAAM,CAibX,AAIT,oBAAoB,AAAC,CACjB,gBAAgB,CAAE,OAAI,C8CzfxB,gBAAgB,C9C0fgB,OAAI,C8CzfpC,gBAAgB,CAAE,qJAAuB,CACzC,gBAAgB,CAAE,kJAAO,C9Cyf1B,AAED,mBAAmB,CACf,EAAE,AAAA,SAAS,CACP,EAAE,AAAC,CACC,MAAM,CAAE,GAAG,CAAC,KAAK,CA7bf,OAAM,CA8bR,UAAU,CAAE,OAAO,CACnB,KAAK,CAAE,OAAO,CAMjB,AAXT,mBAAmB,CACf,EAAE,AAAA,SAAS,CACP,EAAE,AAKG,YAAY,AAAC,CACV,UAAU,CAAE,IAAO,CACnB,KAAK,CAAE,OAAM,CAChB,AAKb,kBAAkB,CACd,EAAE,CAAA,AAAA,sBAAC,AAAA,EACG,EAAE,AAAC,CACD,MAAM,CAAE,GAAG,CAAC,KAAK,CA5cf,OAAM,CA6cR,UAAU,CAAE,OAAO,CACnB,KAAK,CAAE,OAAO,CAKjB,AAVT,kBAAkB,CACd,EAAE,CAAA,AAAA,sBAAC,AAAA,EACG,EAAE,CAKA,aAAa,AAAC,CACV,KAAK,CAAE,OAAM,CAChB,AAKb,cAAc,AAAC,CACX,gBAAgB,CAAE,OAAQ,CAC1B,MAAM,CAAE,iBAAkB,CAC7B,AAED,qBAAqB,AAAC,CAClB,gBAAgB,CAAE,OAAQ,CAM7B,AAPD,qBAAqB,AAGhB,MAAM,CACP,cAAc,CAAC,KAAK,AAAA,QAAQ,CAJhC,qBAAqB,AAIgB,CAC7B,gBAAgB,CAAE,IAAK,CAC1B,AAGL,UAAU,AAAC,CACP,UAAU,CAxiBkB,OAAO,CAqkBtC,AA9BD,UAAU,CAGJ,KAAK,CAAA,AAAA,IAAC,CAAD,KAAC,AAAA,CACH,QAAQ,CACH,KAAK,AAAC,CACJ,UAAU,CAljBM,IAAO,CAmjBvB,KAAK,CAljBW,OAAO,CAmjB1B,AARb,UAAU,CAWJ,KAAK,AAAC,CACJ,KAAK,CAljBmB,OAAO,CAujBlC,AAjBL,UAAU,CAWJ,KAAK,AAEF,MAAM,AAAC,CACJ,KAAK,CAAE,OAAO,CACd,UAAU,CAAE,OAAO,CACtB,AAhBT,UAAU,AAmBL,OAAO,AAAC,CACL,UAAU,C0BvlBR,OAAG,C1BgmBR,AA7BL,UAAU,AAmBL,OAAO,CAGF,KAAK,AAAC,CACJ,KAAK,C0B1lBP,OAAG,C1B+lBJ,AA5BT,UAAU,AAmBL,OAAO,CAGF,KAAK,AAEF,MAAM,AAAC,CACJ,KAAK,C0B5lBX,OAAG,C1B6lBG,UAAU,C0B7lBhB,OAAG,C1B8lBA,AAKb,iBAAiB,AAAC,CACd,UAAU,CA7kBkB,IAAO,CA8kBtC,AAED,YAAY,AAAC,CACT,gBAAgB,CqE9mBN,IAAO,CrE+mBjB,MAAM,CA1gBU,GAAG,CA0gBQ,KAAK,CA3gBtB,OAAM,CAsiBnB,AA7BD,YAAY,CAIR,KAAK,AAAC,CACF,KAAK,CAplBmB,OAAO,CAqlBlC,AANL,YAAY,CAQR,CAAC,AAAC,CACE,UAAU,CAAE,IAAK,CACpB,AAVL,YAAY,AAYP,cAAc,CAAC,KAAK,AAAA,UAAU,AAAA,QAAQ,GACjC,CAAC,AAAC,CACA,UAAU,CArlBU,OAAO,CAslB9B,AAfT,YAAY,AAoBP,aAAa,CAAC,KAAK,AAAA,QAAQ,GACtB,CAAC,AAAC,CACA,gBAAgB,CAAE,IAAK,CAC1B,AAvBT,YAAY,CA0BR,KAAK,AAAA,QAAQ,CAAG,KAAK,AAAC,CAClB,KAAK,CAAE,IAAK,CACf,AAIL,MAAM,AAAC,CACH,gBAAgB,CAAE,OAAQ,CAC7B,AACD,cAAc,AAAC,CACX,gBAAgB,CAnmBY,OAAO,CA0mBtC,AARD,cAAc,CAGV,OAAO,AAAC,CACJ,UAAU,CAAE,OAAO,CwExnB1B,KAAK,CH5BQ,sBAAO,CG6BpB,aAAa,CF3BE,GAAG,CE4Bf,UAAU,CxEunBgB,OAAO,CAChC,AANL,cAAc,CAGV,OAAO,AwE9mBF,MAAM,AAAC,CACJ,UAAU,C9ChCZ,OAAG,C8CiCD,KAAK,CHvCH,IAAO,CGwCZ,AxEwmBT,cAAc,CAGV,OAAO,AwE1mBF,gBAAgB,AAAC,CACd,WAAW,CAAE,GAAG,CAAC,KAAK,CAAC,OAAO,CACjC,AxE8mBT,YAAY,AAAC,CACT,gBAAgB,CAxmBY,OAAO,CA8mBtC,AAPD,YAAY,CAGR,OAAO,AAAC,CACJ,gBAAgB,CAAE,OAAM,CwEjoB/B,KAAK,CH5BQ,sBAAO,CG6BpB,aAAa,CF3BE,GAAG,CE4Bf,UAAU,CxEgoBgB,OAAM,CAC/B,AANL,YAAY,CAGR,OAAO,AwE/mBF,MAAM,AAAC,CACJ,UAAU,C9C7CZ,OAAG,C8C8CD,KAAK,CH/CH,IAAO,CGgDZ,AxEymBT,YAAY,CAGR,OAAO,AwE3mBF,gBAAgB,AAAC,CACd,WAAW,CAAE,GAAG,CAAC,KAAK,CAAC,OAAM,CAChC,AxE8mBT,WAAW,AAAC,CACR,gBAAgB,CAxnBY,OAAO,CA8nBtC,AAPD,WAAW,CAGP,OAAO,AAAC,CACJ,gBAAgB,CAAE,OAAM,CwEzoB/B,KAAK,CH5BQ,sBAAO,CG6BpB,aAAa,CF3BE,GAAG,CE4Bf,UAAU,CxEwoBgB,OAAM,CAC/B,AANL,WAAW,CAGP,OAAO,AwEvnBF,MAAM,AAAC,CACJ,UAAU,C9C7CZ,OAAG,C8C8CD,KAAK,CH/CH,IAAO,CGgDZ,AxEinBT,WAAW,CAGP,OAAO,AwEnnBF,gBAAgB,AAAC,CACd,WAAW,CAAE,GAAG,CAAC,KAAK,CAAC,OAAM,CAChC,AxEwnBT,KAAK,AAAC,CACF,UAAU,CA9nBkB,OAAO,CA+nBnC,KAAK,CA9nBuB,IAAO,CAqoBtC,AATD,KAAK,CAGD,CAAC,AAAC,CACE,KAAK,CAAE,OAAM,CAIhB,AARL,KAAK,CAGD,CAAC,AAEI,MAAM,AAAC,CACJ,KAAK,CAloBe,IAAO,CAmoB9B,AAIT,aAAa,AAAC,CACV,KAAK,CAzoBuB,OAAO,CA0oBtC,AAED,OAAO,AAAC,CACJ,UAAU,CAjpBkB,OAAO,CAkpBnC,KAAK,CAjpBuB,IAAO,CAwpBtC,AATD,OAAO,CAGH,CAAC,AAAC,CACE,KAAK,CAAE,OAAM,CAIhB,AARL,OAAO,CAGH,CAAC,AAEI,MAAM,AAAC,CACJ,KAAK,CArpBe,IAAO,CAspB9B,AAIT,MAAM,AAAC,CACH,UAAU,CAppBkB,OAAO,CAqpBnC,KAAK,CAppBuB,IAAO,CA2pBtC,AATD,MAAM,CAGF,CAAC,AAAC,CACE,KAAK,CAAE,OAAM,CAIhB,AARL,MAAM,CAGF,CAAC,AAEI,MAAM,AAAC,CACJ,KAAK,CAxpBe,IAAO,CAypB9B,AAIT,eAAe,AAAC,CACZ,UAAU,C0B3sBJ,OAAG,C1B4sBT,KAAK,CA3qBuB,IAAO,CAorBtC,AAXD,eAAe,CAIX,WAAW,AAAC,CACR,UAAU,C0B/sBR,OAAG,C1BgtBR,AANL,eAAe,CAQX,OAAO,AAAC,CwE5rBX,KAAK,CxEW0B,sBAAO,CwEVtC,aAAa,CF3BE,GAAG,CE4Bf,UAAU,CxEQkB,OAAO,CAorBlC,AAVL,eAAe,CAQX,OAAO,AwEnrBF,MAAM,AAAC,CACJ,UAAU,C9ChCZ,OAAG,C8CiCD,KAAK,CxEAe,IAAO,CwEC9B,AxEwqBT,eAAe,CAQX,OAAO,AwE/qBF,gBAAgB,AAAC,CACd,WAAW,CAAE,GAAG,CAAC,KAAK,CAAC,OAAO,CACjC,AxEkrBT,iBAAiB,AAAC,CACd,UAAU,C0BxtBJ,OAAG,C1BytBT,KAAK,CAprBuB,IAAO,CA6rBtC,AAXD,iBAAiB,CAIb,WAAW,AAAC,CACR,UAAU,C0B5tBR,OAAG,C1B6tBR,AANL,iBAAiB,CAQb,OAAO,AAAC,CwEzsBX,KAAK,CxEe0B,sBAAO,CwEdtC,aAAa,CF3BE,GAAG,CE4Bf,UAAU,CxEYkB,OAAO,CA6rBlC,AAVL,iBAAiB,CAQb,OAAO,AwExrBF,MAAM,AAAC,CACJ,UAAU,C9C7CZ,OAAG,C8C8CD,KAAK,CxEJe,IAAO,CwEK9B,AxE6qBT,iBAAiB,CAQb,OAAO,AwEprBF,gBAAgB,AAAC,CACd,WAAW,CAAE,GAAG,CAAC,KAAK,CAAC,OAAM,CAChC,AxEurBT,UAAU,AAAC,CACP,MAAM,CAAE,GAAG,CAAC,KAAK,CAAC,OAAM,CACxB,UAAU,CqE5uBA,IAAO,CrE2vBpB,AAjBD,UAAU,CAIN,YAAY,AAAC,CACT,UAAU,CAAE,OAAM,CACrB,AANL,UAAU,AASL,aAAa,AAAC,CACX,MAAM,CAAE,GAAG,CAAC,KAAK,CA1sBO,OAAO,CAgtBlC,AAhBL,UAAU,AASL,aAAa,CAGV,YAAY,AAAC,CACT,UAAU,CA7sBU,OAAO,CA8sB3B,KAAK,CA7sBe,IAAO,CA8sB9B,AAIT,aAAa,CACT,EAAE,AAAC,CACC,KAAK,CA9tBmB,OAAO,CAmuBlC,AAPL,aAAa,CACT,EAAE,CAGE,IAAI,AAAC,CACD,KAAK,CApuBe,OAAO,CAquB9B,AANT,aAAa,CAST,SAAS,AAAC,CACN,KAAK,CAAE,OAAO,CAIjB,AAdL,aAAa,CAST,SAAS,CAEL,CAAC,AAAC,CACE,KAAK,CA3uBe,OAAO,CA2uBN,UAAU,CAClC,AAIT,WAAW,CAAC,oBAAoB,AAAC,CAC7B,MAAM,CAAE,GAAG,CAAC,KAAK,CA3qBP,OAAM,CA4qBhB,uBAAuB,CsE9wBX,GAAG,CtE+wBf,sBAAsB,CsE/wBV,GAAG,CtEgxBf,UAAU,CAAE,OAAO,CA8CtB,AAlDD,WAAW,CAAC,oBAAoB,CAM5B,EAAE,CACE,CAAC,AAAC,CACE,KAAK,CAxvBe,OAAO,CAgwB9B,AAhBT,WAAW,CAAC,oBAAoB,CAM5B,EAAE,CACE,CAAC,AAGI,MAAM,CAVnB,WAAW,CAAC,oBAAoB,CAM5B,EAAE,CACE,CAAC,AAGa,MAAM,AAAC,CACb,UAAU,CAAE,OAAO,CACnB,KAAK,CAAE,OAAM,CACb,UAAU,CAAE,GAAG,CAAC,KAAK,CAvrBvB,OAAM,CAwrBJ,aAAa,CAAE,GAAG,CAAC,KAAK,CAxrB1B,OAAM,CAyrBP,AAfb,WAAW,CAAC,oBAAoB,CAM5B,EAAE,CAYE,cAAc,CACV,CAAC,AAAC,CACE,MAAM,CAAE,IAAK,CACb,UAAU,CAAE,KAAM,CAClB,UAAU,CAAE,GAAG,CAAC,KAAK,CAhsBvB,OAAM,CAisBJ,WAAW,CAAE,GAAG,CAAC,KAAK,CAjsBxB,OAAM,CAksBJ,YAAY,CAAE,GAAG,CAAC,KAAK,CAlsBzB,OAAM,CAysBP,AA/Bb,WAAW,CAAC,oBAAoB,CAM5B,EAAE,CAYE,cAAc,CACV,CAAC,AAOI,MAAM,AAAC,CACJ,UAAU,CqEzyBhB,IAAO,CrE0yBD,UAAU,CAAE,CAAE,CACd,aAAa,CAAE,GAAG,CAAC,KAAK,CqE3yB9B,IAAO,CrE4yBJ,AA9BjB,WAAW,CAAC,oBAAoB,CAM5B,EAAE,CAYE,cAAc,AAeT,WAAW,CAAC,CAAC,CAjC1B,WAAW,CAAC,oBAAoB,CAM5B,EAAE,CAYE,cAAc,AAeO,WAAW,CAAC,CAAC,AAAA,MAAM,AAAC,CACjC,YAAY,CAAE,qBAAsB,CACvC,AAnCb,WAAW,CAAC,oBAAoB,CAM5B,EAAE,CAgCE,gBAAgB,CAAC,CAAC,AAAC,CACf,KAAK,CAAE,IAAK,CACZ,WAAW,CAAE,WAAY,CAQ5B,AAhDT,WAAW,CAAC,oBAAoB,CAM5B,EAAE,CAgCE,gBAAgB,CAAC,CAAC,AAIb,MAAM,CA1CnB,WAAW,CAAC,oBAAoB,CAM5B,EAAE,CAgCE,gBAAgB,CAAC,CAAC,AAIJ,MAAM,AAAC,CACb,UAAU,CAAE,OAAO,CACnB,KAAK,CAAE,IAAK,CACZ,WAAW,CAAE,qBAAsB,CACnC,YAAY,CAAE,qBAAsB,CACvC,AAKb,WAAW,CAAC,yBAAyB,CAAG,GAAG,AAAC,CACxC,MAAM,CAAE,GAAG,CAAC,KAAK,CA/tBP,OAAM,CAguBhB,uBAAuB,CsEl0BX,GAAG,CtEm0Bf,sBAAsB,CsEn0BV,GAAG,CtEo0BlB,AAED,oBAAoB,CAAE,oBAAoB,AAAC,CACvC,MAAM,CAAE,GAAG,CAAC,KAAK,CAruBP,OAAM,CAsuBhB,UAAU,CAAE,CAAE,CACd,0BAA0B,CsEz0Bd,GAAG,CtE00Bf,yBAAyB,CsE10Bb,GAAG,CtE20BlB,AAED,oBAAoB,CAAC,WAAW,AAAC,CAC7B,yBAAyB,CsE90Bb,GAAG,CtE+0BlB,AAED,oBAAoB,AAAC,CACjB,0BAA0B,CsEl1Bd,GAAG,CtEm1BlB,AAED,sBAAsB,AAAC,CACnB,MAAM,CAAE,GAAG,CAAC,KAAK,CApvBP,OAAM,CAqvBnB,CAED,AAAA,SAAC,CAAD,KAAC,AAAA,EACG,mBAAmB,AAAC,CAChB,YAAY,CAAE,GAAG,CAAC,KAAK,CAzvBjB,OAAM,CA0vBf,AAGL,WAAW,CACP,oBAAoB,CAChB,EAAE,CAFV,WAAW,CACP,oBAAoB,CACZ,EAAE,CAFd,WAAW,CACP,oBAAoB,CACR,EAAE,CAFlB,WAAW,CACP,oBAAoB,CACJ,EAAE,CAFtB,WAAW,CACP,oBAAoB,CACA,EAAE,CAF1B,WAAW,CACP,oBAAoB,CACI,EAAE,AAAC,CACnB,KAAK,CAAE,OAAM,CAChB,AAIT,eAAe,CACX,SAAS,CACL,UAAU,AACL,YAAY,CACT,OAAO,AAAC,CACJ,MAAM,CAv0BM,sBAAO,CAu0BoB,UAAU,CACpD,AANjB,eAAe,CACX,SAAS,CACL,UAAU,AACL,YAAY,CAIT,eAAe,AAAC,CACZ,MAAM,CA10BM,IAAO,CA00BQ,UAAU,CACxC,AATjB,eAAe,CACX,SAAS,CACL,UAAU,AASL,YAAY,CACT,eAAe,AAAC,CACZ,MAAM,CA/0BM,qBAAO,CA+0BmB,UAAU,CACnD,AAMjB,iBAAiB,CACb,SAAS,CACL,UAAU,AACL,YAAY,CACT,OAAO,AAAC,CACJ,MAAM,CAv1BM,sBAAO,CAu1BsB,UAAU,CACtD,AANjB,iBAAiB,CACb,SAAS,CACL,UAAU,AACL,YAAY,CAIT,eAAe,AAAC,CACZ,MAAM,CA11BM,IAAO,CA01BU,UAAU,CAC1C,AATjB,iBAAiB,CACb,SAAS,CACL,UAAU,AASL,YAAY,CACT,eAAe,AAAC,CACZ,MAAM,CA/1BM,qBAAO,CA+1BqB,UAAU,CACrD,AAOjB,SAAS,AAAC,CACN,UAAU,CqEn5BA,IAAO,CrEo5BjB,MAAM,CAAE,GAAG,CAhzBD,OAAM,CAgzBS,KAAK,CAmDjC,AArDD,SAAS,AAIJ,cAAc,AAAC,CACZ,YAAY,CAAE,gBAAI,CAClB,UAAU,CAAE,gBAAI,CACnB,AAPL,SAAS,CASL,WAAW,CACP,gBAAgB,CAVxB,SAAS,CASL,WAAW,CACW,cAAc,AAAC,CAC7B,KAAK,CqE75BH,IAAO,CrE85BZ,AAZT,SAAS,CASL,WAAW,CAKP,gBAAgB,AAAC,CACb,gBAAgB,CAAE,OAAO,CAC5B,AAhBT,SAAS,CASL,WAAW,CASP,cAAc,AAAC,CACX,gBAAgB,CAn3BI,OAAO,CAo3B9B,AApBT,SAAS,CASL,WAAW,CAaP,YAAY,AAAC,CACT,UAAU,CAAE,OAAQ,CAKvB,AA5BT,SAAS,CASL,WAAW,CAaP,YAAY,CAGR,UAAU,AAAC,CACP,gBAAgB,CAAE,OAAO,CAC5B,AA3Bb,SAAS,CASL,WAAW,CAqBP,iBAAiB,AAAC,CACd,UAAU,CAAE,OAAO,CACnB,KAAK,CAh4Be,OAAO,CAi4B9B,AAjCT,SAAS,CASL,WAAW,AA0BN,MAAM,CAAC,UAAU,CAnC1B,SAAS,CASL,WAAW,AA0Bc,MAAM,CAAC,UAAU,AAAC,CACnC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,OAAM,CAI1B,AAxCT,SAAS,CASL,WAAW,AA0BN,MAAM,CAAC,UAAU,AAEb,MAAM,CArCnB,SAAS,CASL,WAAW,AA0Bc,MAAM,CAAC,UAAU,AAEjC,MAAM,AAAC,CACJ,UAAU,CA35BM,IAAO,CA45B1B,AAvCb,SAAS,CASL,WAAW,CAiCP,WAAW,AAAC,CACR,UAAU,CAAE,OAAO,CACnB,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,OAAM,CAC1B,AA7CT,SAAS,AAgDJ,aAAa,CACV,WAAW,CAjDnB,SAAS,AAgDJ,aAAa,CACG,WAAW,CAAC,IAAI,AAAC,CAC1B,KAAK,CAAE,OAAO,CACjB,AAIT,IAAI,CAEE,KAAK,CAAG,KAAK,CACT,EAAE,AAAC,CACD,aAAa,CAAE,iBAAkB,CACpC,AALT,IAAI,CAQA,SAAS,AAAC,CACN,KAAK,CAAE,OAAO,CACjB,AAVL,IAAI,CAYA,YAAY,AAAC,CACT,KAAK,CAAE,OAAO,CACjB,AAdL,IAAI,CAgBA,WAAW,CAhBf,IAAI,CAgBa,MAAM,AAAA,OAAO,AAAC,CACvB,UAAU,CA56Bc,OAAO,CAm7BlC,AAxBL,IAAI,CAgBA,WAAW,CAEP,CAAC,CAlBT,IAAI,CAgBA,WAAW,CAhBf,IAAI,CAgBa,MAAM,AAAA,OAAO,CAEtB,CAAC,CAlBT,IAAI,CAgBa,MAAM,AAAA,OAAO,AAEjB,CACD,KAAK,CA76Be,IAAO,CA66BP,UAAU,CAIjC,AAvBT,IAAI,CAgBA,WAAW,CAEP,CAAC,AAEI,MAAM,CApBnB,IAAI,CAgBA,WAAW,AAIF,MAAM,CApBnB,IAAI,CAgBa,MAAM,AAAA,OAAO,CAEtB,CAAC,AAEI,MAAM,CApBnB,IAAI,CAgBa,MAAM,AAAA,OAAO,AAIjB,MAAM,AAAC,CACJ,UAAU,C0Bx9BhB,OAAG,C1By9BA,AAtBb,IAAI,CA0BA,WAAW,CACP,SAAS,AAAC,CACN,KAAK,CA/7Be,OAAO,CAg8B9B,AA7BT,IAAI,CAgCA,cAAc,AAAC,CACX,aAAa,CAAE,GAAG,CAAC,KAAK,CAAC,OAAM,CAIlC,AArCL,IAAI,CAgCA,cAAc,CAEV,cAAc,AAAC,CACX,KAAK,CAAE,OAAM,CAChB,AApCT,IAAI,CAuCA,YAAY,CACR,SAAS,AAAC,CACN,KAAK,CAAE,OAAO,CACjB,AAIT,WAAW,AAAC,CACR,UAAU,CAAE,GAAG,CAAC,KAAK,CAAC,OAAM,CAmC/B,AApCD,WAAW,CAGP,IAAI,AAAC,CACD,aAAa,CAAE,GAAG,CAAC,KAAK,CAAC,OAAM,CAuBlC,AA3BL,WAAW,CAGP,IAAI,AAGC,MAAM,AAAC,CACJ,UAAU,CAAE,OAAO,CACtB,AART,WAAW,CAGP,IAAI,CAOA,CAAC,AAAA,WAAW,AAAC,CACT,KAAK,CAAE,IAAM,CACb,WAAW,CAAE,GAAG,CAAC,GAAG,CAAC,CAAC,CqEngCpB,IAAO,CrEwgCZ,AAjBT,WAAW,CAGP,IAAI,CAOA,CAAC,AAAA,WAAW,CAIR,OAAO,AAAC,CACJ,KAAK,CAAE,OAAM,CAChB,AAhBb,WAAW,CAGP,IAAI,CAgBA,MAAM,AAAA,KAAK,AAAC,CACR,gBAAgB,CAAE,IAAK,CACvB,KAAK,CAAE,KAAM,CAChB,AAtBT,WAAW,CAGP,IAAI,CAqBA,MAAM,AAAA,KAAK,AAAA,KAAK,AAAC,CACb,gBAAgB,CAl+BI,OAAO,CAm+B9B,AA1BT,WAAW,CA6BP,UAAU,AAAC,CACP,KAAK,CAAE,IAAM,CAChB,AA/BL,WAAW,CAiCP,UAAU,AAAC,CACP,KAAK,CAAE,IAAM,CAChB,AAGL,aAAa,CACT,kBAAkB,AAAC,CACf,OAAO,CAAE,EAAG,CAWf,AAbL,aAAa,CACT,kBAAkB,CAEd,MAAM,AAAC,CwEpgCd,KAAK,CH5BQ,sBAAO,CG6BpB,aAAa,CF3BE,GAAG,CE4Bf,UAAU,CxEgBkB,OAAO,CAo/B9B,AALT,aAAa,CACT,kBAAkB,CAEd,MAAM,AwE3/BL,MAAM,AAAC,CACJ,UAAU,C9ChCZ,OAAG,C8CiCD,KAAK,CHvCH,IAAO,CGwCZ,AxEq/BT,aAAa,CACT,kBAAkB,CAEd,MAAM,AwEv/BL,gBAAgB,AAAC,CACd,WAAW,CAAE,GAAG,CAAC,KAAK,CAAC,OAAO,CACjC,AxEk/BT,aAAa,CACT,kBAAkB,CAKd,cAAc,AAAC,CACX,UAAU,CAt/BU,OAAO,CA2/B9B,AAZT,aAAa,CACT,kBAAkB,CAKd,cAAc,CAEV,MAAM,AAAC,CACH,UAAU,CAAE,WAAY,CACxB,KAAK,CqEviCP,IAAO,CrEwiCR,AAXb,aAAa,CAeT,YAAY,AAAC,CACT,gBAAgB,CAAE,OAAO,CAC5B,AAjBL,aAAa,CAmBT,cAAc,CACV,KAAK,AAAA,QAAQ,CAAG,KAAK,AAAC,CAClB,KAAK,CqEljCH,IAAO,CrEmjCZ,AAtBT,aAAa,CAmBT,cAAc,CAKV,KAAK,CAAG,KAAK,AAAC,CACV,KAAK,CAnhCe,OAAO,CAohC9B,AA1BT,aAAa,CAmBT,cAAc,CASV,KAAK,AAAA,UAAU,AAAA,QAAQ,GACjB,CAAC,AAAC,CACA,UAAU,CAjhCM,OAAO,CAkhC1B,AAKb,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,AAAC,CACtC,KAAK,CqEjkCK,IAAO,CrEkkCjB,aAAa,CAAE,cAAe,CAC9B,gBAAgB,CAAE,OAAQ,CAC7B,AAED,QAAQ,CACJ,EAAE,AAAC,CACC,UAAU,CAAE,OAAQ,CACvB,AAHL,QAAQ,CAKJ,EAAE,AAAC,CACC,SAAS,CAAE,UAAW,CAIzB,AAVL,QAAQ,CAKJ,EAAE,AAEG,YAAY,AAAC,CACV,KAAK,CAziCe,OAAO,CA0iC9B,AAIT,QAAQ,AAAC,CACL,UAAU,CAxjCkB,IAAO,CAyjCnC,KAAK,CAxjCuB,OAAO,CA0jCtC,AAED,cAAc,AAAC,CACX,KAAK,CA7jCuB,OAAO,CA8jCtC,AAED,cAAc,AAAA,MAAM,CACpB,cAAc,AAAA,MAAM,AAAC,CACjB,KAAK,CAAE,OAAM,CAChB","names":[],"sourceRoot":"/source/"} |