{"version":3,"sources":["../scss/03_molecules/_tab-bar.scss","00_helpers/variables/_colors.scss","00_helpers/variables/_transitions.scss","00_helpers/mixins/_colors.scss","../scss/00_tools/cssVartoSass.scss","00_helpers/mixins/_font-style.scss","00_helpers/variables/_fonts.scss","00_helpers/mixins/_media-queries.scss","00_helpers/variables/_sizing.scss","00_helpers/mixins/_tab-bar.scss"],"names":[],"mappings":"AAAA;EACE,oBAAa;EAAb,qBAAa;EAAb,oBAAa;EAAb,aAAa;EACb,uBAA2B;EAA3B,mCAA2B;EAA3B,oBAA2B;EAA3B,2BAA2B;EAC3B,gBAAgB;EAChB,uBAAuB;EACvB,WAAW;EACX,qBAAqB;EACrB,4CAA4C,EAAA;EAP9C;IASI,aAAa,EAAA;EAGf;IACE,cAAc,EAAA;EAGhB;IACE,kBAAkB,EAAA;EAGpB;IACE,yBAAmB;IAAnB,2BAAmB;IAAnB,sBAAmB;IAAnB,mBAAmB;IACnB,oCAAoC;IACpC,4BC4BuC;ID3BvC,eAAe;IACf,oBAAa;IAAb,qBAAa;IAAb,oBAAa;IAAb,aAAa;IACb,YAAY;IACZ,eAAuB;IACvB,qBAAqB;IACrB,wBE3BsB;IF2BtB,gBE3BsB;IF4BtB,mBAAmB,EAAA;EAGrB;IAEE,cClCsB;IDmCtB,wBElCsB;IFkCtB,gBElCsB;IFmCtB,qBAAqB,EAAA;EAGvB;IACE,gCCxCsB,EAAA;ED2CxB;IACE,gBAA4B,EAAA;EA7ChC;IAiDI,aAAa,EAAA;EAjDjB;IAqDI,YAAqB;IACrB,kBAAkB;IAClB,WAAW;IACX,UAAU,EAAA;IAxDd;MA2DM,+EAIC;MAJD,2EAIC,EAAA;IA/DP;MAmEM,gFAIC;MAJD,0EAIC;MACD,OAAO,EAAA;IAxEb;MA4EM,YAAuB;MACvB,QAAQ,EAAA;MA7Ed;QGCE,2CCC2C;QDA3C,0CCA2C;QJ+ErC,wBE/EkB;QF+ElB,gBE/EkB,EAAA;MFF1B;QAqFQ,eAAe,EAAA;QArFvB;UAwFU,aCnEc;UDoEd,wBEvFgB;UFuFhB,gBEvFgB,EAAA;MFF1B;QA8FQ,UAAU,EAAA;QA9FlB;UAiGU,kBAAkB;UAClB,gBAA4B,EAAA;MAlGtC;QAuGQ,WAAW,EAAA;QAvGnB;UA0GU,iBAAiB;UACjB,gBAA4B,EAAA;EAMnC;IAEG,oBAAa;IAAb,qBAAa;IAAb,oBAAa;IAAb,aAAa;IACb,4BAAsB;IAAtB,6BAAsB;IAAtB,8BAAsB;IAAtB,0BAAsB;IAAtB,sBAAsB;IACtB,wBAAuB;IAAvB,+BAAuB;IAAvB,qBAAuB;IAAvB,uBAAuB;IACvB,cAAc;IK1FlB,eCPiB;IDQjB,iBCNmB;IDOnB,iBCRmB,EAAA;ICkBjB;MPyED;QASK,kBAAkB;QAClB,cAAc,EAAA,EAsBjB;IAhCF;MAcK,cAAc,EAAA;IOvFlB;MPyED;QAkBK,8BAAmB;QAAnB,6BAAmB;QAAnB,2BAAmB;QAAnB,uBAAmB;QAAnB,mBAAmB,EAAA,EActB;IAhCF;MAsBK,0BAAkB;MAAlB,2BAAkB;MAAlB,kBAAkB;MAClB,cAAc;MACd,kBAAkB;MAClB,kBAAkB,EAAA;MOlGtB;QPyED;UA4BO,kBQ5IK;UR6IL,gBAAgB,EAAA,EAEnB;ES9IH;;IAEE,iFAIC;IAJD,6EAIC,EAAA;EAGH;;IAEE,iFAIC;IAJD,6EAIC,EAAA;EAKH;IACE,4CLrBuC,EAAA;IKoBzC;MAII,mCLxBqC,EAAA;IKoBzC;MAQI,mCL5BqC,EAAA;EKkCzC;;IAEE,kFAIC;IAJD,4EAIC,EAAA;EAGH;;IAEE,kFAIC;IAJD,4EAIC,EAAA","file":"tab-bar.css","sourcesContent":[".tab-bar {\n  display: flex;\n  justify-content: flex-start;\n  overflow: scroll;\n  scroll-behavior: smooth;\n  width: 100%;\n  scrollbar-width: none; // firefox hide scrollbar\n  -ms-overflow-style: -ms-autohiding-scrollbar; // edge hide scrollbar\n  &::-webkit-scrollbar {\n    display: none; // chrome, opera, safari hide scrollbar\n  }\n\n  &__item:not(:first-child) {\n    margin: 0 15px;\n  }\n\n  &__item:first-child {\n    margin-right: 15px;\n  }\n\n  &__item {\n    align-items: center;\n    border-bottom: 3px solid transparent;\n    color: $color-alpha--two-70;\n    cursor: pointer;\n    display: flex;\n    height: 80px;\n    padding: $spacing--xs 0;\n    text-decoration: none;\n    transition: $transition-duration;\n    white-space: nowrap;\n  }\n\n  &__item:hover,\n  &__item.active {\n    color: $color-brand--two;\n    transition: $transition-duration;\n    text-decoration: none;\n  }\n\n  &__item.active {\n    border-bottom: 3px solid $color-brand--two;\n  }\n\n  &__line {\n    margin-top: $baseline * -0.1;\n  }\n\n  .hide {\n    display: none;\n  }\n\n  .fade-element {\n    height: $baseline * 8;\n    position: absolute;\n    width: 50px;\n    z-index: 1;\n\n    &--right {\n      background: linear-gradient(\n        to right,\n        rgba(255, 255, 255, 0) 0%,\n        rgba(255, 255, 255, 1) 30%\n      );\n    }\n\n    &--left {\n      background: linear-gradient(\n        to left,\n        rgba(255, 255, 255, 0) 0%,\n        rgba(255, 255, 255, 1) 30%\n      );\n      left: 0;\n    }\n\n    .icon {\n      height: $baseline * 7.5;\n      top: 1px;\n\n      svg {\n        @include color-dark-shade-main;\n        transition: $transition-duration;\n      }\n\n      &:hover {\n        cursor: pointer;\n\n        svg {\n          fill: $color--two-180;\n          transition: $transition-duration;\n        }\n      }\n\n      &__left {\n        left: 20px;\n\n        svg {\n          padding-right: 3px;\n          padding-top: $baseline * 0.1;\n        }\n      }\n\n      &__right {\n        right: 20px;\n\n        svg {\n          padding-left: 3px;\n          padding-top: $baseline * 0.1;\n        }\n      }\n    }\n  }\n\n  &--icon {\n    .tab-bar__item {\n      display: flex;\n      flex-direction: column;\n      justify-content: center;\n      margin: 0 10px;\n      @include font-style('body--xs');\n\n      @include viewport--m {\n        font-size: inherit;\n        margin: 0 15px;\n      }\n\n      &:first-child {\n        margin-left: 0;\n      }\n\n      @include viewport--m {\n        flex-direction: row;\n      }\n\n      .icon {\n        align-self: center;\n        color: inherit;\n        margin-bottom: 6px;\n        position: relative;\n\n        @include viewport--m {\n          margin-right: $baseline;\n          margin-bottom: 0;\n        }\n      }\n    }\n  }\n\n  @include tab-bar-background-mapping;\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","$transition-duration--faster: 0.1s;\n$transition-duration--fast: 0.2s;\n$transition-duration: 0.3s;\n$transition-duration--slow: 0.5s;\n$transition-duration--slower: 0.7s;\n$transition-duration--slowest: 0.9s;\n","@mixin color-dark-shade-main {\n  color: returnColorCSSVar('brand-secondary-tint-60');\n  fill: returnColorCSSVar('brand-secondary-tint-60');\n}\n\n@mixin color-dark-shade-alternative {\n  color: returnColorCSSVar('brand-secondary-tint-80');\n  fill: returnColorCSSVar('brand-secondary-tint-80');\n}\n\n","// Returns CSS4 color variables\n@function returnColorCSSVar($color-name) {\n  @return var(--color-#{$color-name});\n}\n","// @font-style($font-style-small, $font-style-large)\n\n// $font-style-small - Desired type size for small/medium viewport.\n// $font-style-large - Desired type size for large viewport. This includes default fallback\n//                     for the S/M viewport.\n\n//\n// | viewport S       | viewport M       | viewport L      | default mapping |\n// |------------------|------------------|-----------------|-----------------|\n// | title l    | 40  | title l    | 40  | title xxl  | 80 | default         |\n// | title m    | 32  | title m    | 32  | title xl   | 60 | default         |\n// | title s    | 26  | title s    | 26  | title l    | 40 |                 |\n// | title s    | 26  | title s    | 26  | title m    | 32 | default         |\n// | title xs   | 20  | title xs   | 20  | title s    | 26 |                 |\n// | title xs   | 20  | title xs   | 20  | title xs   | 20 | default         |\n// | title xxs  | 18  | title xxs  | 18  | title xxs  | 18 |                 |\n// |            |     |            |     |            |    |                 |\n// | body l     | 18  | body l     | 18  | body l     | 18 |                 |\n// | body m     | 16  | body m     | 16  | body m     | 16 |                 |\n// | body s     | 12  | body s     | 12  | body s     | 12 |                 |\n\n// import variables needed for the mixins\n@import '../variables/__variables.scss';\n\n// mixin to get applicable properties for chosen type size\n@mixin typeset($type) {\n  $type: map-get($types, $type);\n\n  font-size: (map-get($type, font-size));\n  letter-spacing: (map-get($type, letter-spacing));\n  line-height: (map-get($type, line-height));\n}\n\n// get correct font characteristics based on font\n@mixin type-size($size) {\n  $size: map-get($type-sizes, $size);\n  @include typeset($size);\n}\n\n// mixin to get font-size\n@mixin font-style($font-style-small: 'body--l', $font-style-large: null) {\n  // if both arguments are added\n  @if ($font-style-large != null) {\n    // make sure $font-style-small & $font-style-large are not equal\n    @if ($font-style-small != $font-style-large) {\n      @include type-size($font-style-small);\n\n      @include viewport--l {\n        @include type-size($font-style-large);\n      }\n    } @else {\n      @include type-size($font-style-small);\n    }\n  } @else {\n    @include type-size($font-style-small);\n    // default font style mappings\n    @if ($font-style-small == 'title--l') {\n      @include viewport--l {\n        @include type-size('title--xxl');\n      }\n    } @else if ($font-style-small == 'title--m') {\n      @include viewport--l {\n        @include type-size('title--xl');\n      }\n    } @else if ($font-style-small == 'title--s') {\n      @include viewport--l {\n        @include type-size('title--m');\n      }\n    }\n  }\n}\n","// | viewport S       | viewport M       | viewport L      | default mapping |\n// |------------------|------------------|-----------------|-----------------|\n// | title l    | 40  | title l    | 40  | title xxl  | 80 | default         |\n// | title m    | 32  | title m    | 32  | title xl   | 60 | default         |\n// | title s    | 26  | title s    | 26  | title l    | 40 |                 |\n// | title s    | 26  | title s    | 26  | title m    | 32 | default         |\n// | title xs   | 20  | title xs   | 20  | title s    | 26 |                 |\n// | title xs   | 20  | title xs   | 20  | title xs   | 20 | default         |\n// | title xxs  | 18  | title xxs  | 18  | title xxs  | 18 |                 |\n// |            |     |            |     |            |    |                 |\n// | body l     | 18  | body l     | 18  | body l     | 18 |                 |\n// | body m     | 16  | body m     | 16  | body m     | 16 |                 |\n// | body s     | 14  | body s     | 14  | body s     | 14 |                 |\n// | body xs    | 12  | body xs    | 12  | body xs    | 12 |                 |\n\n// font family\n$font-family-theme: Graphik, Tahoma, 'sans-serif';\n\n// font mappings - font-size / line-height / letter-spacing\n$types: (\n  12: (\n    font-size: 12px,\n    line-height: 15px,\n    letter-spacing: 0\n  ),\n  14: (\n    font-size: 14px,\n    line-height: 25px,\n    letter-spacing: 0\n  ),\n  16: (\n    font-size: 16px,\n    line-height: 25px,\n    letter-spacing: 0\n  ),\n  18: (\n    font-size: 18px,\n    line-height: 30px,\n    letter-spacing: 0\n  ),\n  20: (\n    font-size: 20px,\n    line-height: 30px,\n    letter-spacing: 0\n  ),\n  26: (\n    font-size: 26px,\n    line-height: 30px,\n    letter-spacing: -1px\n  ),\n  32: (\n    font-size: 32px,\n    line-height: 40px,\n    letter-spacing: -1px\n  ),\n  40: (\n    font-size: 40px,\n    line-height: 45px,\n    letter-spacing: -2px\n  ),\n  60: (\n    font-size: 60px,\n    line-height: 60px,\n    letter-spacing: -3px\n  ),\n  80: (\n    font-size: 80px,\n    line-height: 80px,\n    letter-spacing: -4px\n  )\n);\n\n// type-sizes - links the type-size to correct font mapping\n$type-sizes: (\n  title--xxl: 80,\n  title--xl: 60,\n  title--l: 40,\n  title--m: 32,\n  title--s: 26,\n  title--xs: 20,\n  title--xxs: 18,\n  body--l: 18,\n  body--m: 16,\n  body--s: 14,\n  body--xs: 12\n);\n","// @viewport--x($reversed)\n\n// viewport s\n@mixin viewport--s($type: null) {\n  // inversed\n  @if ($type == 'inversed') {\n    @media (max-width: #{($breakpoint-viewport--s - 1)}) {\n      @content;\n    }\n  }\n  // range\n  @else if ($type== 'range') {\n    @media (min-width:0) and (max-width: #{($breakpoint-viewport--s - 1)}) {\n      @content;\n    }\n  }\n  // default\n  @else {\n    @media (min-width: #{$breakpoint-viewport--s}) {\n      @content;\n    }\n  }\n}\n\n// viewport m\n@mixin viewport--m($type: null) {\n  // inversed\n  @if ($type == 'inversed') {\n    @media (max-width: #{($breakpoint-viewport--m - 1)}) {\n      @content;\n    }\n  }\n  // range\n  @else if ($type== 'range') {\n    @media (min-width: $breakpoint-viewport--m) and (max-width: #{($breakpoint-viewport--l - 1)}) {\n      @content;\n    }\n  }\n  // default\n  @else {\n    @media (min-width: #{$breakpoint-viewport--m}) {\n      @content;\n    }\n  }\n}\n\n// viewport l\n@mixin viewport--l($type: null) {\n  // inversed\n  @if ($type == 'inversed') {\n    @media (max-width: #{($breakpoint-viewport--l - 1)}) {\n      @content;\n    }\n  }\n  // range\n  @else if ($type== 'range') {\n    @media (min-width: $breakpoint-viewport--l) and (max-width: #{($breakpoint-viewport--xl - 1)}) {\n      @content;\n    }\n  }\n  // default\n  @else {\n    @media (min-width: #{$breakpoint-viewport--l}) {\n      @content;\n    }\n  }\n}\n\n// viewport xl\n@mixin viewport--xl($type: null) {\n  @if ($type == 'inversed') {\n    @media (max-width: #{($breakpoint-viewport--xl - 1)}) {\n      @content;\n    }\n  }\n  // range\n  @else if ($type== 'range') {\n    @media (min-width: $breakpoint-viewport--xl) and (max-width: #{($breakpoint-viewport--xxl - 1)}) {\n      @content;\n    }\n  }\n  // default\n  @else {\n    @media (min-width: #{$breakpoint-viewport--xl}) {\n      @content;\n    }\n  }\n}\n\n// viewport xxl\n@mixin viewport--xxl($type: null) {\n  // inversed\n  @if ($type == 'inversed') {\n    @media (max-width: #{($breakpoint-viewport--xxl - 1)}) {\n      @content;\n    }\n  }\n  // default\n  @else {\n    @media (min-width: #{$breakpoint-viewport--xxl}) {\n      @content;\n    }\n  }\n}\n\n// viewport range\n@mixin viewport--range($viewport1, $viewport2) {\n  @media (min-width: #{($viewport1)}) and (max-width: #{($viewport2 - 1)}) {\n    @content;\n  }\n}\n\n// Internet Explorer 10 + 11\n@mixin internet-explorer-10-11 {\n  @media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {\n    @content;\n  }\n}\n","// baseline size, used for every calculation\n$baseline: 10px;\n\n// border radius\n$border-radius: 4px;\n$border-radius--s: 3px;\n$border-radius--xs: 2px;\n$border-radius--m: 5px;\n$border-radius--m-l: 6px;\n$border-radius--l: 8px;\n$border-radius--max: 30px;\n","@mixin tab-bar-background-mapping {\n  .fade-element--right {\n    .bg-brand-tertiary &,\n    .bg-variant-brand-tertiary & {\n      background: linear-gradient(\n        to right,\n        rgba(247, 245, 240, 0) 0%,\n        rgba(247, 245, 240, 1) 30%\n      );\n    }\n\n    .bg-greyscale--grey-10 &,\n    .bg-gray-10 & {\n      background: linear-gradient(\n        to right,\n        rgba(247, 247, 247, 0) 0%,\n        rgba(247, 247, 247, 1) 30%\n      );\n    }\n  }\n\n  .tab-bar__item {\n    .bg-variant-brand-tertiary & {\n      color: returnColorCSSVar('brand-secondary-alpha-70');\n\n      &.active {\n        color: returnColorCSSVar('brand-secondary');\n      }\n\n      &:hover {\n        color: returnColorCSSVar('brand-secondary');\n      }\n    }\n  }\n\n  .fade-element--left {\n    .bg-brand-tertiary &,\n    .bg-variant-brand-tertiary & {\n      background: linear-gradient(\n        to left,\n        rgba(247, 245, 240, 0) 0%,\n        rgba(247, 245, 240, 1) 30%\n      );\n    }\n\n    .bg-greyscale--grey-10 &,\n    .bg-gray-10 & {\n      background: linear-gradient(\n        to left,\n        rgba(247, 247, 247, 0) 0%,\n        rgba(247, 247, 247, 1) 30%\n      );\n    }\n  }\n}\n"]}