{"version":3,"sources":["../scss/04_organisms/_logos.scss","00_helpers/variables/_spacing.scss","00_helpers/mixins/grid/_grid-columns.scss","00_helpers/mixins/_transitions.scss","00_helpers/mixins/_media-queries.scss"],"names":[],"mappings":"AACE;EACE,oBCYsB,EAAA;;ADTxB;EACE,oBAAa;EAAb,qBAAa;EAAb,oBAAa;EAAb,aAAa;EACb,8BAAmB;EAAnB,6BAAmB;EAAnB,2BAAmB;EAAnB,uBAAmB;EAAnB,mBAAmB;EACnB,yBAA8B;EAA9B,sCAA8B;EAA9B,sBAA8B;EAA9B,8BAA8B;EAC9B,6CACqC,EAAA;;AAGvC;EACE,cAA2B;EAC3B,2BEcyD,EAAA;EFhB1D;IGiDG,2CH5C4D;IG0C5D,mCH1C4D;IAC5D,4BAAoB;IAApB,oBAAoB;IACpB,YAAY;IACZ,SAAS;IACT,gBAAgB;IAChB,YAAY;IACZ,iBAAiB;IACjB,mCAA2B;IAA3B,2BAA2B;IAC3B,WAAW,EAAA;EAbd;IAiBG,UAAU,EAAA;;AIgCZ;EJzBA;IACE,qBAA8B,EAAA;EAGhC;IACE,4CAEC,EAAA;EAGH;IACE,cAA2B;IAC3B,2BEpBuD,EAAA;EFyB3D;IACE,+CAEC;IACD,2BE7ByD,EAAA;IFyB3D;MAOI,2BEhCuD,EAAA,EFiCxD","file":"logos.css","sourcesContent":[".logos {\n  &__wrapper {\n    padding-bottom: $spacing--l;\n  }\n\n  &__list {\n    display: flex;\n    flex-flow: row wrap;\n    justify-content: space-between;\n    margin-top: calc(\n      ((#{$baseline} * 1.5) + 0.8%) * -1); //small correction in negative margin to compensate % image padding.\n  }\n\n  &__item {\n    margin: ($baseline * 1.5) 0;\n    width: grid-columns(3, 6);\n\n    img {\n      @include transition(opacity $transition-duration--fast, ease);\n      filter: grayscale(1);\n      height: auto;\n      left: 50%;\n      max-height: 100%;\n      opacity: 0.5;\n      padding: 7.5% 15%;\n      transform: translateX(-50%);\n      width: auto;\n    }\n\n    a:hover img {\n      opacity: 1;\n    }\n  }\n}\n\n@include viewport--l {\n  .logos {\n    &__wrapper {\n      padding-bottom: $baseline * 11;\n    }\n\n    &__list {\n      margin-top: calc(\n        ((#{$baseline} * 3) + 0.95%) * -1\n      ); //small correction in negative margin to compensate % image padding.\n    }\n\n    &__item {\n      margin: ($baseline * 2.5) 0;\n      width: grid-columns(3, 9);\n    }\n  }\n\n  // two column layout\n  .logos__list--double {\n    margin-top: calc(\n      ((#{$baseline} * 4.25) + 0.95%) * -1\n    ); //small correction in negative margin to compensate % image padding.\n    width: grid-columns(8, 9);\n\n    .logos__item {\n      width: grid-columns(4, 8);\n    }\n  }\n}\n","// | variable      | size  | calculation     |\n// |---------------|-------|-----------------|\n// | $spacing--xxs |  5px  | $baseline * 0.5 |\n// | $spacing--xs  | 10px  | $baseline * 1   |\n// | $spacing--s   | 20px  | $baseline * 2   |\n// | $spacing--m   | 30px  | $baseline * 3   |\n// | $spacing--l   | 50px  | $baseline * 5   |\n// | $spacing--xl  | 80px  | $baseline * 8   |\n// | $spacing--xxl | 130px | $baseline * 13  |\n\n$spacing--xxs: $baseline * 0.5;\n$spacing--xs: $baseline * 1;\n$spacing--s: $baseline * 2;\n$spacing--m: $baseline * 3;\n$spacing--l: $baseline * 5;\n$spacing--xl: $baseline * 8;\n$spacing--xxl: $baseline * 13;\n\n// grid spacings\n$grid-margin--s: 25px;\n$grid-margin--m: 50px;\n$grid-margin--l: 100px;\n","// @grid-columns($columns, $columns-total, $grid-gutter)\n\n// grid for viewport S & M:\n// 6 columns / 28 units\n//\n//  |   |   |   |   |   |   |   |   |   |   |   |\n//  | 3 | 2 | 3 | 2 | 3 | 2 | 3 | 2 | 3 | 2 | 3 |\n//  |   |   |   |   |   |   |   |   |   |   |   |\n//\n//\n// grid for vieport L:\n// 12 columns / 58 units\n//\n//  |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |\n//  | 3 | 2 | 3 | 2 | 3 | 2 | 3 | 2 | 3 | 2 | 3 | 2 | 3 | 2 | 3 | 2 | 3 | 2 | 3 | 2 | 3 | 2 | 3 |\n//  |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |\n\n@function grid-columns($columns, $columns-total, $grid-gutter: null) {\n  $column-gutter-diff: ($grid-column-units - $grid-gutter-units);\n\n  $column-units: ($columns * $grid-column-units) + (($columns - $column-gutter-diff) * $grid-gutter-units);\n  $columns-total: ($columns-total * $grid-column-units) + (($columns-total - $column-gutter-diff) * $grid-gutter-units);\n\n  // if grid gutter is provided use it in calculation\n  @if ($grid-gutter) {\n    @return calc(((#{$column-units} + (#{$grid-gutter} * #{$grid-gutter-units})) /#{$columns-total}) * 100%);\n  }\n  // if grid-gutter is not provided return default calculation\n  @else {\n    @return calc((#{$column-units}/#{$columns-total}) * 100%);\n  }\n}\n","// @transition($property, $duration, $easing, $delay, $propertyprefix, $ms)\n\n// $property - space separated list of properties that need to animate\n// $duration - duration of the transition - Defaults to 1s\n// $easing - easing of the transition - Defaults to false (no easing)\n// $delay - the delay of the transition - Defaults to false (no delay)\n// $propertyprefix if the property needs to be prefixed - Defaults to false\n// $ms - if special IE support is needed - Defaults to true\n\n@mixin transition($property, $duration: 1s, $easing: false, $delay: false, $propertyprefix: false, $ms: true) {\n  // $browsers: -webkit- -moz- -o-;\n  $browsers: -webkit-;\n  // add ms support\n  @if $ms {\n    $browsers: append($browsers, -ms-);\n  }\n  // add none prefixed\n  $browsers: append($browsers, none);\n  // add prefixes to the mix\n  @each $browser in $browsers {\n    $transition: ();\n\n    @if $property == none {\n      $transition: none;\n    } @else {\n      @for $i from 1 through length($property) {\n        // property (prefixed or not)\n        @if $browser == none {\n          $transition: append($transition, nth($property, $i));\n        } @else if length($propertyprefix) > 1 and nth($propertyprefix, $i) or $propertyprefix == true {\n          $transition: append($transition, $browser + nth($property, $i));\n        } @else {\n          $transition: append($transition, nth($property, $i));\n        }\n        // duration\n        @if length($duration) > 1 and nth($duration, $i) {\n          $transition: append($transition, nth($duration, $i));\n        } @else {\n          $transition: append($transition, $duration);\n        }\n        // delay\n        @if length($delay) > 1 and nth($delay, $i) {\n          $transition: append($transition, nth($delay, $i));\n        } @else if $delay {\n          $transition: append($transition, $delay);\n        }\n        // easing\n        @if length($easing) > 1 and nth($easing, $i) {\n          $transition: append($transition, nth($easing, $i));\n        } @else if $easing {\n          $transition: append($transition, $easing);\n        }\n\n        @if length($property) > $i {\n          $transition: #{$transition + ','};\n        }\n      }\n    }\n    // add prefixed transition\n    @if $browser == none {\n      transition: $transition;\n    } @else {\n      #{$browser + 'transition'}: $transition;\n    }\n  }\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"]}