{"version":3,"sources":["shortcodes-map-responsive.scss","shortcodes-map-responsive.css","../../../../../themes/blomma/assets/css/scss/_mixins.scss","../../../shortcodes/instagram-list/assets/css/scss/responsive/_instagram-list-responsive.scss"],"names":[],"mappings":"AAAA;;+ECE+E;ADI/E;;+ECD+E;ACmjB3E;ECtjBA;IAQgB,gBAHmB;EFErC;AACF;;AEGgB;EAXZ;IAgBwB,WAAW;EFHrC;AACF;;ACwiBI;ECtjBA;IAQgB,gBAHmB;EFcrC;AACF;;AETgB;EAXZ;IAgBwB,WAAW;EFSrC;AACF;;ACwiBI;ECviBA;IAOgB,UAAU;EFH5B;AACF;;AEKgB;EAVZ;IAewB,WAAW;EFLrC;AACF;;AC4hBI;ECviBA;IAOgB,UAAU;EFS5B;AACF;;AEPgB;EAVZ;IAewB,WAAW;EFOrC;AACF;;ACghBI;ECviBA;IAOgB,UAAU;EFqB5B;AACF;;AEnBgB;EAVZ;IAewB,WAAW;EFmBrC;AACF;;ACghBI;ECzhBA;IAGQ,sBAAsB;EFWhC;AACF","file":"../../../../blomma-instagram-feed/assets/css/scss/shortcodes-map-responsive.css","sourcesContent":["/* ==========================================================================\n   Global partials\n   ========================================================================== */\n@import '../../../../../themes/blomma/assets/css/scss/variables';\n@import '../../../../../themes/blomma/assets/css/scss/mixins';\n\n/* ==========================================================================\n   Shortcodes responsive styles\n   ========================================================================== */\n@import \"D:/local/blomma/app/public/wp-content/plugins/blomma-instagram-feed/shortcodes/instagram-list/assets/css/scss/responsive/_instagram-list-responsive.scss\";","/* ==========================================================================\n   Global partials\n   ========================================================================== */\n/* ==========================================================================\n   Shortcodes responsive styles\n   ========================================================================== */\n@media only screen and (max-width: 1280px) {\n  .qodef-instagram-list-holder.qodef-il-four-columns .qodef-il-item {\n    width: 33.33333%;\n  }\n}\n\n@media only screen and (max-width: 1280px) and (min-width: 1025px) {\n  .qodef-instagram-list-holder.qodef-il-four-columns .qodef-il-item:nth-child(3n+1) {\n    clear: both;\n  }\n}\n\n@media only screen and (max-width: 1280px) {\n  .qodef-instagram-list-holder.qodef-il-five-columns .qodef-il-item {\n    width: 33.33333%;\n  }\n}\n\n@media only screen and (max-width: 1280px) and (min-width: 1025px) {\n  .qodef-instagram-list-holder.qodef-il-five-columns .qodef-il-item:nth-child(3n+1) {\n    clear: both;\n  }\n}\n\n@media only screen and (max-width: 1024px) {\n  .qodef-instagram-list-holder.qodef-il-three-columns .qodef-il-item {\n    width: 50%;\n  }\n}\n\n@media only screen and (max-width: 1024px) and (min-width: 681px) {\n  .qodef-instagram-list-holder.qodef-il-three-columns .qodef-il-item:nth-child(2n+1) {\n    clear: both;\n  }\n}\n\n@media only screen and (max-width: 1024px) {\n  .qodef-instagram-list-holder.qodef-il-four-columns .qodef-il-item {\n    width: 50%;\n  }\n}\n\n@media only screen and (max-width: 1024px) and (min-width: 681px) {\n  .qodef-instagram-list-holder.qodef-il-four-columns .qodef-il-item:nth-child(2n+1) {\n    clear: both;\n  }\n}\n\n@media only screen and (max-width: 1024px) {\n  .qodef-instagram-list-holder.qodef-il-five-columns .qodef-il-item {\n    width: 50%;\n  }\n}\n\n@media only screen and (max-width: 1024px) and (min-width: 681px) {\n  .qodef-instagram-list-holder.qodef-il-five-columns .qodef-il-item:nth-child(2n+1) {\n    clear: both;\n  }\n}\n\n@media only screen and (max-width: 680px) {\n  .qodef-instagram-list-holder .qodef-il-item {\n    width: 100% !important;\n  }\n}\n","////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////\n\n// layout mixins - start\n\n@mixin qodefRelativeHolderLayout($vertical-align: middle) {\n    position: relative;\n    display: inline-block;\n    width: 100%;\n    vertical-align: $vertical-align;\n}\n\n@mixin qodefAbsoluteHolderLayout() {\n    position: absolute;\n    display: block;\n    width: 100%;\n    height: 100%;\n    top: 0;\n    left: 0;\n}\n\n@mixin qodefFlexBoxLayout($position: null, $align-items: null, $justify-content: null) {\n    @if ($position) {\n        position: $position;\n    }\n    \n    @include qodefFlexLayout();\n    \n    @if ($align-items) {\n        @include qodefFlexAlignItems($align-items);\n    }\n    \n    @if ($justify-content) {\n        @include qodefFlexJustifyContent($justify-content);\n    }\n}\n\n@mixin qodefFlexContainer($align-items: null, $justify-content: null, $flex-direction: null, $flex-wrap: null, $align-content: null) {\n\t@include qodefFlexBoxLayout(null, $align-items, $justify-content);\n\t\n\t@if ($flex-direction) {\n\t\tflex-direction: $flex-direction;\n\t}\n\t\n\t@if ($flex-wrap) {\n\t\tflex-wrap: $flex-wrap;\n\t}\n\t\n\t@if ($align-content) {\n\t\talign-content: $align-content;\n\t}\n}\n\n@mixin qodefFlexLayout() {\n    display: -webkit-box;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n}\n\n@mixin qodefInlineFlexLayout() {\n    display: -webkit-inline-flex;\n    display: -ms-inline-flexbox;\n    display: inline-flex;\n}\n\n@mixin qodefFlexItem($order: 0, $flex-grow: 0, $flex-shrink: 1, $flex-basis: auto) {\n    order: $order;\n    flex-grow: $flex-grow;\n    flex-shrink: $flex-shrink;\n    flex-basis: $flex-basis;\n}\n\n@mixin qodefFlexAlignItems($align-items) {\n    $older-align-items: $align-items;\n    \n    @if ($align-items == 'flex-start') {\n        $older-align-items: start;\n    } @else if ($align-items == 'flex-end') {\n        $older-align-items: end;\n    }\n    \n    -webkit-box-align: $older-align-items;\n    -webkit-align-items: $align-items;\n    -ms-flex-align: $older-align-items;\n    align-items: $align-items;\n}\n\n@mixin qodefFlexJustifyContent($justify-content) {\n    $older-justify-content: $justify-content;\n    \n    @if ($justify-content == 'flex-start') {\n        $older-justify-content: start;\n    } @else if ($justify-content == 'flex-end') {\n        $older-justify-content: end;\n    }\n    \n    -webkit-box-pack: $older-justify-content;\n    -webkit-justify-content: $justify-content;\n    -ms-flex-pack: $older-justify-content;\n    justify-content: $justify-content;\n}\n\n@mixin qodefTableLayout() {\n    position: relative;\n    display: table;\n    table-layout: fixed;\n    height: 100%;\n    width: 100%;\n}\n\n@mixin qodefTableCellLayout($vertical-align: middle) {\n    position: relative;\n    display: table-cell;\n    height: 100%;\n    width: 100%;\n    vertical-align: $vertical-align;\n}\n\n@mixin qodefTypographyLayout() {\n    color: inherit;\n    font-family: inherit;\n    font-size: inherit;\n    font-weight: inherit;\n    font-style: inherit;\n    line-height: inherit;\n    letter-spacing: inherit;\n    text-transform: inherit;\n}\n\n// layout mixins - end\n\n////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////\n\n// transition mixins - start\n\n@mixin qodefTransition($transition-param...) {\n    -webkit-transition: $transition-param;\n    -moz-transition: $transition-param;\n    transition: $transition-param;\n}\n\n@mixin qodefTransitionTransform($transition-param...) {\n    -webkit-transition: -webkit-transform $transition-param;\n    -moz-transition: -moz-transform $transition-param;\n    transition: transform $transition-param;\n}\n\n@mixin qodefTransform($transform-param...) {\n    -webkit-transform: $transform-param;\n    -moz-transform: $transform-param;\n    transform: $transform-param;\n}\n\n@mixin qodefAnimation($animation-param...) {\n    -webkit-animation: $animation-param;\n    -moz-animation: $animation-param;\n    animation: $animation-param;\n}\n\n@mixin qodefTransformOrigin($animation-param...) {\n    -webkit-transform-origin: $animation-param;\n    -moz-transform-origin: $animation-param;\n    transform-origin: $animation-param;\n}\n\n// transition mixins - end\n\n////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////\n\n// checkbox mixins - start\n\n$checkbox-size: 15px;\n$checkbox-border-width: 1px;\n\n%checkbox-style {\n    position: relative;\n    margin: 8px 0;\n    line-height: 1;\n\n    input[type=checkbox] {\n        width: $checkbox-size;\n        height: $checkbox-size;\n        max-height: $checkbox-size;\n        position: relative;\n        display: inline-block;\n        vertical-align: top;\n        top: 0;\n        left: 0;\n        margin: 0;\n    }\n\n    input[type=checkbox] + label {\n        position: absolute;\n        top: 0;\n        left: 0;\n        display: inline-block;\n        line-height: 0;\n        pointer-events: none;\n        cursor: pointer;\n    }\n\n    input[type=checkbox] + label span.qodef-label-text {\n        display: inline-block;\n        padding-left: 10px;\n        line-height: $checkbox-size;\n        color: $default-heading-color;\n    }\n\n    input[type=checkbox] + label .qodef-label-view {\n        display: inline-block;\n        vertical-align: top;\n        width: $checkbox-size;\n        height: $checkbox-size;\n        background-color: $default-background-color;\n        border: $checkbox-border-width solid $default-border-color;\n        border-radius: 2px;\n        cursor: pointer;\n        box-sizing: border-box;\n\n        &:hover {\n            cursor: pointer;\n        }\n    }\n\n    input[type=checkbox] + label .qodef-label-view:after {\n        content: '';\n        position: absolute;\n        top: ($checkbox-size - ($checkbox-size / 2 - $checkbox-border-width)) / 2;\n        left: ($checkbox-size - ($checkbox-size / 2 - $checkbox-border-width)) / 2;\n        width: $checkbox-size / 2 - $checkbox-border-width;\n        height: $checkbox-size / 2 - $checkbox-border-width;\n        background-color: $first-main-color;\n        opacity: 0;\n        @include qodefTransition(opacity 0.3s ease-in-out);\n    }\n\n    input[type=checkbox]:checked + label .qodef-label-view:after {\n        opacity: 1;\n    }\n}\n\n// checkbox mixins - end\n\n////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////\n\n// common mixins - start\n\n@mixin qodefBckImageStyle() {\n    background-size: cover;\n    background-repeat: no-repeat;\n    background-position: center center;\n}\n\n@mixin qodefImageOverlayHoverStyle($with-hover: true) {\n    \n    @if ($with-hover) {\n        \n        &:hover {\n            \n            &:after {\n                opacity: 1;\n            }\n        }\n\n        &:after {\n            @include qodefAbsoluteHolderLayout();\n            content: '';\n            background-color: rgba($default-heading-color, .4);\n            opacity: 0;\n            @include qodefTransition(opacity .2s ease-in-out);\n        }\n\n    } @else {\n        @include qodefAbsoluteHolderLayout();\n        content: '';\n        background-color: rgba($default-heading-color, .4);\n        opacity: 0;\n        @include qodefTransition(opacity .2s ease-in-out);\n    }\n}\n\n@mixin qodefStandardPaginationStyle($list_type: null) {\n    @include qodefRelativeHolderLayout(top);\n    margin: 30px 0 0;\n    clear: both;\n\n    ul {\n        @include qodefRelativeHolderLayout(top);\n        padding: 0;\n        margin: 0;\n        list-style: none;\n        text-align: center;\n\n        li {\n            position: relative;\n            display: inline-block;\n            vertical-align: top;\n            margin: 0 6px;\n            \n         /* &:last-child{\n                &:before{\n                    content: '...';\n                    font-size: 12px;\n                    display: inline-block;\n                    letter-spacing: 3px;\n                    font-weight: 400;\n                    font-family: $default-text-font;\n                    position: relative;\n                    bottom: 1px;\n                }\n            }\n         */\n            a, span {\n                position: relative;\n                display: inline-block;\n                vertical-align: top;\n                margin: 0;\n                padding: 0;\n                font-size: 12px;\n                font-weight: 600;\n\n            }\n            \n            &.qodef-pag-active {\n                \n                a {\n                    color: $first-main-color;\n                }\n            }\n\n            &.qodef-pag-prev,\n            &.qodef-pag-next,\n            &.qodef-pag-first,\n            &.qodef-pag-last {\n                margin: 0 2px;\n\n                a {\n                    font-size: 24px;\n\n                    span {\n                        display: block;\n                        line-height: inherit;\n\n                        &:before {\n                            display: block;\n                            line-height: inherit;\n                        }\n                    }\n                }\n            }\n    \n            &.qodef-pag-prev,\n            &.qodef-pag-next{\n                position: relative;\n                bottom: 1px;\n            }\n            \n            &.qodef-pag-prev{\n                margin-right: 31px;\n            }\n    \n            &.qodef-pag-next{\n                margin-left: 24px;\n            }\n            \n            @if ($list_type == 'shortcode') {\n                \n                &.qodef-pag-prev {\n                    \n                    a {\n                        opacity: 0;\n                    }\n                }\n\n                &.qodef-pag-next {\n                    \n                    a {\n                        opacity: 1;\n                    }\n                }\n\n            } @else if ($list_type == 'shop') {\n                span {\n                    position: relative;\n                    display: inline-block;\n                    vertical-align: top;\n                    margin: 0;\n                    padding: 0;\n                    color: $first-main-color;\n                }\n\n                a {\n                    \n                    &.next,\n                    &.prev {\n                        font-size: 0;\n                        line-height: 0;\n\n                        &:before {\n                            display: block;\n                            font-family: 'ElegantIcons'; // same icon pack as in our templates for pagination\n                            font-size: 24px;\n                            line-height: 26px;\n                            -webkit-font-smoothing: antialiased;\n                            -moz-osx-font-smoothing: grayscale;\n                        }\n                    }\n\n                    &.prev {\n                        margin-right: 25px;\n                        top: 6px;\n                    }\n\n                    &.next {\n                        margin-left: 25px;\n                        top: 6px;\n                    }\n                }\n            }\n        }\n    }\n}\n\n@mixin qodefButtonDefaultStyle() {\n    position: relative;\n    display: inline-block;\n    vertical-align: middle;\n    width: auto;\n    margin: 0;\n    font-family: inherit;\n    font-size: 12px;\n    line-height: 2em;\n    letter-spacing: 0;\n    font-weight: 600;\n    text-transform: none;\n    outline: none;\n    box-sizing: border-box;\n    @include qodefTransition(.4s cubic-bezier(0.25, 0.46, 0.45, 0.94));\n}\n\n@mixin qodefButtonSize($size: medium) {\n    \n    @if ($size == 'small') {\n        padding: 9px 35px;\n        font-size: 13px;\n\n    } @else if ($size == 'medium') {\n        padding: 13px 42px;\n        font-size: 15px;\n        line-height: 25px;\n\n    } @else if ($size == 'large') {\n        padding: 16px 52px;\n        font-size: 16px;\n        line-height: 26px;\n\n    } @else if ($size == 'huge') {\n        display: block;\n        width: 70%;\n        text-align: center;\n        padding: 19px 58px;\n        font-size: 17px;\n    }\n}\n\n@mixin qodefButtonTransparentColor() {\n    color: $default-text-color;\n    background-color: transparent;\n}\n\n@mixin qodefButtonSolidColor($important: null) {\n    color: #fff $important;\n    background-color: $default-heading-color $important;\n    border: 1px solid transparent $important;\n}\n\n@mixin qodefButtonSolidHoverColor($important: null) {\n    color: $first-main-color $important;\n    background-color: #fff $important;\n    border: 1px solid $first-main-color $important;\n}\n\n@mixin qodefButtonOutlineColor($important: null) {\n    color: $first-main-color $important;\n    background-color: transparent $important;\n    border: 1px solid $first-main-color $important;\n}\n\n@mixin qodefButtonOutlineHoverColor($important: null) {\n    color: #fff $important;\n    background-color: $first-main-color $important;\n    border-color: $first-main-color $important;\n}\n\n@mixin qodefPlaceholder {\n    &::-webkit-input-placeholder {\n        @content\n    }\n\n    &:-moz-placeholder {\n        @content;\n\n        opacity: 1;\n    }\n    &::-moz-placeholder {\n        @content;\n\n        opacity: 1;\n    }\n    &:-ms-input-placeholder {\n        @content\n    }\n}\n\n// common mixins - end\n\n////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////\n\n// mixins styles - start\n\n%input-style {\n    position: relative;\n    width: 100%;\n    margin: 0 0 $input-margin;\n    padding: $input-vertical-padding $input-horizontal-padding;\n    font-family: inherit;\n    font-size: 15px;\n    font-weight: inherit;\n    line-height: calc(#{$input-height} - (#{$input-vertical-padding} * 2) - 2px);\n    color: #626262;\n    background-color: transparent;\n    border: 1px solid $first-main-color;\n    border-radius: 0;\n    outline: 0;\n    cursor: text;\n    -webkit-appearance: none;\n    box-sizing: border-box;\n    @include qodefTransition(border-color 0.2s ease-in-out);\n\n    &:focus {\n        color: $default-heading-color;\n        border-color: $default-text-color;\n    }\n\n    @include qodefPlaceholder {\n        color: inherit;\n    }\n}\n\n// mixins styles - end\n\n////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////\n\n//media query mixins - start\n\n@mixin laptop-landscape-large {\n    @media only screen and (max-width: map-get($breakpoints, laptop-landscape-large)) {\n        @content;\n    }\n}\n\n@mixin laptop-landscape-mac {\n    @media only screen and (max-width: map-get($breakpoints, laptop-landscape-mac)) {\n        @content;\n    }\n}\n\n@mixin laptop-landscape-medium {\n    @media only screen and (max-width: map-get($breakpoints, laptop-landscape-medium)) {\n        @content;\n    }\n}\n\n@mixin laptop-landscape {\n    @media only screen and (max-width: map-get($breakpoints, laptop-landscape)) {\n        @content;\n    }\n}\n\n@mixin ipad-landscape {\n    @media only screen and (max-width: map-get($breakpoints, ipad-landscape)) {\n        @content;\n    }\n}\n\n@mixin ipad-portrait {\n    @media only screen and (max-width: map-get($breakpoints, ipad-portrait)) {\n        @content;\n    }\n}\n\n@mixin phone-landscape {\n    @media only screen and (max-width: map-get($breakpoints, phone-landscape)) {\n        @content;\n    }\n}\n\n@mixin phone-portrait {\n    @media only screen and (max-width: map-get($breakpoints, phone-portrait)) {\n        @content;\n    }\n}\n\n@mixin smaller-phone-portrait {\n    @media only screen and (max-width: map-get($breakpoints, smaller-phone-portrait)) {\n        @content;\n    }\n}\n\n// media query mixins - end\n\n// animation mixin - start\n\n@mixin keyframes($name) {\n    @-webkit-keyframes #{$name} {\n        @content;\n    }\n\n    @keyframes #{$name} {\n        @content;\n    }\n}\n\n@mixin animation($name, $duration, $repeat, $timing, $delay) {\n    -webkit-animation-name: $name;\n    -webkit-animation-duration: $duration;\n    -webkit-animation-iteration-count: $repeat;\n    -webkit-animation-timing-function: $timing;\n    -webkit-animation-delay: $delay;\n    -webkit-animation-fill-mode: forwards; // this prevents the animation from restarting!\n\n    animation-name: $name;\n    animation-duration: $duration;\n    animation-iteration-count: $repeat;\n    animation-timing-function: $timing;\n    animation-delay: $delay;\n    animation-fill-mode: forwards; // this prevents the animation from restarting!\n}\n\n// animation mixin - end\n\n////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////\n\n// heading mixins - start\n\n@mixin qodefDefaultHeadingStyle() {\n    @include qodefHeadingStyle();\n    margin: 25px 0;\n    \n    a {\n        @include qodefTypographyLayout();\n        \n        &:hover {\n            color: $first-main-color;\n        }\n    }\n}\n\n@mixin qodefHeadingStyle($with-heading: null, $with-color: true) {\n    \n    @if ($with-color) {\n        color: $default-heading-color;\n    }\n    \n    @if ($with-heading == 'h1') {\n        @include qodefH1();\n    } @else if ($with-heading == 'h2') {\n        @include qodefH2();\n    } @else if ($with-heading == 'h3') {\n        @include qodefH3();\n    } @else if ($with-heading == 'h4') {\n        @include qodefH4();\n    } @else if ($with-heading == 'h5') {\n        @include qodefH5();\n    } @else if ($with-heading == 'h6') {\n        @include qodefH6();\n    }\n}\n\n@mixin qodefH1() {\n    font-size: 50px;\n    line-height: 1.3em;\n}\n\n@mixin qodefH2() {\n    font-size: 30px;\n    line-height: 1.3em;\n}\n\n@mixin qodefH3() {\n    font-size: 24px;\n    line-height: 1.3em;\n}\n\n@mixin qodefH4() {\n    font-size: 18px;\n    line-height: 1.3em;\n}\n\n@mixin qodefH5() {\n    font-size: 16px;\n    line-height: 1.3em;\n}\n\n@mixin qodefH6() {\n    font-size: 14px;\n    line-height: 1.3em;\n}\n\n// heading mixins - end\n\n////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////","@include laptop-landscape-medium {\n\n    .qodef-instagram-list-holder {\n        $columns_number: ('four', 'five');\n\n        @for $i from 0 to length($columns_number) {\n            &.qodef-il-#{nth($columns_number,$i+1)}-columns {\n                $column_width: 100% / 3;\n\n                .qodef-il-item {\n                    width: $column_width;\n                }\n\n                @media only screen and (min-width: $ipad-landscape-plus-pixel) {\n\n                    .qodef-il-item {\n\n                        &:nth-child(3n+1) {\n                            clear: both;\n                        }\n                    }\n                }\n            }\n        }\n    }\n}\n\n@include ipad-landscape {\n\n    .qodef-instagram-list-holder {\n        $columns_number: ('three', 'four', 'five');\n\n        @for $i from 0 to length($columns_number) {\n            &.qodef-il-#{nth($columns_number,$i+1)}-columns {\n\n                .qodef-il-item {\n                    width: 50%;\n                }\n\n                @media only screen and (min-width: $phone-landscape-plus-pixel) {\n\n                    .qodef-il-item {\n\n                        &:nth-child(2n+1) {\n                            clear: both;\n                        }\n                    }\n                }\n            }\n        }\n    }\n}\n\n@include phone-landscape {\n\n    .qodef-instagram-list-holder {\n        \n        .qodef-il-item {\n            width: 100% !important; // !important is set to override all other stronger selectors\n        }\n    }\n}"]}