{"version":3,"sources":["../scss/04_organisms/_show-more.scss","00_helpers/mixins/_show-more.scss","../scss/00_tools/cssVartoSass.scss","00_tools/_background-variants.scss","00_helpers/variables/_colors.scss"],"names":[],"mappings":"AAAA;EACE,kBAAkB,EAAA;EAElB;IACE,iBAAiB;IACjB,kBAAkB;IAClB,gBAAgB,EAAA;;AAIpB;EACE,eAAe;EACf,kBAAkB;EAClB,kBAAkB,EAAA;EAElB;IACE,WAAW;IACX,WAAW;IACX,SAAS;IACT,kBAAkB;IAClB,oBAAoB;IACpB,wCAAgC;IAAhC,gCAAgC;IAChC,WAAW;IACX,UAAU,EAAA;EAGZ;IACE,eAAe;IACf,kBAAkB;IAClB,UAAU,EAAA;;AC3BZ;EAGI,2CCHuC,EAAA;;ADA3C;EAOI,8BCPuC,EAAA;EDSvC;IACE,+CAA+C,EAAA;;AAVrD;EAeI,gCCfuC,EAAA;;ACoD/B;EF3BN,2BCzBqC,EAAA;;ACoD/B;EFvBN,8BC7BqC,EAAA;;ACoD/B;EFnBN,gCCjCqC,EAAA;;ACoD/B;EF3BN,2BCzBqC,EAAA;;ACoD/B;EFvBN,uCC7BqC,EAAA;;ACoD/B;EFnBN,gCCjCqC,EAAA;;ADyC3C;EACE,cGxBmB,EAAA;;AH4BnB;EACE,gBG3CmB,EAAA;;AH8CrB;EACE,mBGlDqB,EAAA","file":"show-more.css","sourcesContent":[".show-more {\n  text-align: center;\n\n  &__indicator {\n    margin-left: auto;\n    margin-right: auto;\n    max-width: 325px;\n  }\n}\n\n.section-separator {\n  padding: 20px 0;\n  position: relative;\n  text-align: center;\n\n  &--border:before {\n    content: '';\n    height: 1px;\n    left: 50%;\n    position: absolute;\n    top: calc(50% + 1px);\n    transform: translate(-50%, -50%);\n    width: 100%;\n    z-index: 1;\n  }\n\n  &--border span {\n    padding: 0 10px;\n    position: relative;\n    z-index: 2;\n  }\n}\n\n// background mappings\n@include show-more-background-mapping;\n","@mixin show-more-background-mapping {\n\n  .show-more {\n\n    .section-separator {\n      color: returnColorCSSVar('brand-secondary-tint-80');\n    }\n\n    .section-separator--border span {\n      background: returnColorCSSVar('white');\n\n      .bg-variant-brand-tertiary & {\n        background: returncolorCSSVar('brand-teritary');\n      }\n    }\n\n    .section-separator--border:before {\n      background: returnColorCSSVar('gray-20');\n    }\n\n    @include bg-variants (\n      $supportedBackgrounds: (\n       'white',\n       'brand-tertiary'\n      )\n    ) {\n      .section-sparator {\n        color: variant-property('divider')\n      }\n\n      .section-separator--border span {\n        background: variant-property('background');\n      }\n\n      .section-separator--border:before {\n        background: variant-property('divider');\n      }\n\n    }\n  }\n\n//! deprecation waring do not use after color map is live\n\n  .bg-brand--off-white .section-separator {\n    color: $color--two-80;\n  }\n\n  .section-separator--border span {\n    .bg-brand--white & {\n      background: $color-brand--white;\n    }\n\n    .bg-brand--off-white & {\n      background: $color-brand--four;\n    }\n  }\n}\n","// Returns CSS4 color variables\n@function returnColorCSSVar($color-name) {\n  @return var(--color-#{$color-name});\n}\n","@import '../00_settings/background-variants-color-map';\n// Creates the .bg-variant-#{$variant} classes with the right background-color property from the background-variants-color-map\n// Use only once to set up the utilities\n// e.g.\n//\n// @include bg-variant-classes();\n@mixin bg-variant-classes($backgroundmap: $backgrounds) {\n  @each $variant, $value in $backgroundmap {\n    $backgroundColor: map-get($value, 'background');\n    $defaultTextColor: map-get($value, 'bodyPrimary');\n\n    .bg-variant-#{$variant} {\n      background-color: returnColorCSSVar($backgroundColor);\n      color: returnColorCSSVar($defaultTextColor);\n    }\n  }\n}\n\n// Iterates over all backgrounds mapped in background-variants-color-map and outputs whatever is wrapped inside it with a .bg-variant-#{$variant} class selector before it\n// .bg-variant-#{$variant} &\n// Use together with varient-property function\n// Pass the $supportedBackgrounds as a list, if you only want to create classes for certain backgrounds\n// Set the $isChained to true, if you need to have a class that is chained to the parent e.g. .block.bg-variant-brand-primary\n// e.g.\n//\n// .divider {\n//   @include bg-variants(\n//     $supportedBackgrounds: (\n//       'brand-primary',\n//       'brand-senary'\n//     )\n//   ) {\n//     color: variant-property('divider');\n//   }\n// }\n//\n// .divider {\n//   @include bg-variants() {\n//     border-color: variant-property('divider');\n//   }\n// }\n@mixin bg-variants(\n  $backgroundmap: $backgrounds,\n  $supportedBackgrounds: null,\n  $isChained: false\n) {\n  @if ($supportedBackgrounds != null) {\n    @each $variant in $supportedBackgrounds {\n      $className: if(\n        $isChained==true,\n        '.bg-variant-#{$variant}#{&}',\n        '.bg-variant-#{$variant} &'\n      );\n\n      @at-root #{$className} {\n        $variant-map: () !global;\n\n        $supportedMap: if(\n          map-has-key($backgroundmap, $variant),\n          map-get($backgroundmap, $variant),\n          null\n        );\n\n        @each $key, $value in $supportedMap {\n          $variant-map: map-merge(\n            $variant-map,\n            (\n              $key: returnColorCSSVar($value)\n            )\n          ) !global;\n        }\n\n        @content;\n        $variant-map: null !global;\n      }\n    }\n  } @else {\n    @each $variant, $map in $backgroundmap {\n      $className: if(\n        $isChained==true,\n        '.bg-variant-#{$variant}#{&}',\n        '.bg-variant-#{$variant} &'\n      );\n\n      @at-root #{$className} {\n        // Makes a global map that can be accessed by the variant-property function\n        $variant-map: () !global;\n\n        @each $key, $submap in $map {\n          $value: map-get(map-get($backgroundmap, $variant), '#{$key}');\n          $variant-map: map-merge(\n            $variant-map,\n            (\n              $key: returnColorCSSVar($value)\n            )\n          ) !global;\n        }\n\n        @content;\n        $variant-map: null !global;\n      }\n    }\n  }\n}\n\n// function to use inside the wrapped content and access the\n// Use together with bg-varients mixin\n// e.g.\n//\n// .divider {\n//   @include bg-variants() {\n//     border-color: variant-property('divider');\n//   }\n// }\n@function variant-property($key) {\n  $value: map-get($variant-map, $key);\n\n  @if ($value != null) {\n    @return map-get($variant-map, $key);\n  } @else {\n    @return null;\n  }\n}\n","$color-brand--one: #2175d9;\n$color-brand--two: #0f1941;\n$color-brand--three: #6ba5b4;\n$color-brand--four: #f7f5f0;\n$color-brand--five: #e74536;\n$color-brand--six: #ffb511;\n$color-brand--white: #fff;\n\n// user interface colors\n//\n// additional colors, such as surface, background and error colors, typically don't\n// represent the brand but can be applied sparingly to accent select parts of your UI.\n//\n\n$color--one-7: #ecf3fc;\n$color--one-80: #4d91e1;\n$color--one-130: #175197;\n\n$color--two-50: #878ca0;\n$color--two-60: #6c738d;\n$color--two-80: #3c4464;\n$color--two-180: #03050d;\n\n$color--grey: #d7d7d7;\n$color--grey-10: #f7f7f7;\n\n$color--white: #fff;\n\n$color--four-80: #f9f7f3;\n$color--four-110: #dedcd8;\n\n$color--negative: #e00f0f;\n$color--negative-5: #fdf3f3;\n\n$color--positive: #257f56;\n$color--positive-5: #f4f8f6;\n\n$color--warning: #e9a204;\n$color--warning-10: #fcf5e5;\n\n// user interface opacities\n//\n// opacity colors are only used on modal backgrounds. HEX colors would not be\n// used due to the colors' alpha layers.\n//\n\n$color-alpha--one-10: rgba(33, 117, 217, 0.1);\n$color-alpha--one-30: rgba(33, 117, 217, 0.3);\n\n$color-alpha--two-10: rgba(15, 25, 65, 0.1);\n$color-alpha--two-30: rgba(15, 25, 65, 0.3);\n$color-alpha--two-70: rgba(15, 25, 65, 0.7);\n$color-alpha--two-80: rgba(15, 25, 65, 0.8);\n\n// ! This needs to be changed to the new white colors in story (DF909-751)\n$color-alpha--four-30: rgba(247, 245, 240, 0.3);\n$color-alpha--four-50: rgba(247, 245, 240, 0.5);\n\n// set color values\n$color--disabled: $color--two-60;\n$color--text: $color-brand--two;\n$color--one-light: $color--one-7;\n\n// degree brand colors\n// used in the charts as extra color scheme\n\n$color-brand--one-65: #7aace8;\n$color-brand--one-45: #a6c8f0;\n$color-brand--one-25: #bbd4f1;\n$color-brand--two-65: #636983;\n$color-brand--two-45: #999aa8;\n$color-brand--two-25: #8a8caf;\n$color-brand--three-65: #020202;\n$color-brand--three-45: #c4dbe1;\n$color-brand--five-65: #f18f86;\n$color-brand--five-45: #f5b5af;\n$color-brand--five-25: #f7beb9;\n$color-brand--six-65: #ffd370;\n$color-brand--six-45: #ffe1a0;\n$color-brand--six-25: #fce8b5;\n \n\n// notice colors\n$color-notice--warning: #fff2f2;\n"]}