{"version":3,"file":"../../../assets/css/scss/qode-restaurant-responsive.css","sources":["qode-restaurant-responsive.scss","../../../../../themes/bridge/css/scss/_variables.scss","../../../../../themes/bridge/css/scss/_mixins.scss","../../../post-types/restaurant-menu/assets/css/scss/responsive/shortcodes/_restaurant-menu-list-responsive.scss","../../../modules/shortcodes/reservation-form/assets/css/scss/responsive/_reservation-form-responsive.scss","../../../modules/shortcodes/restaurant-timeline/assets/css/scss/responsive/_restaurant-timeline-responsive.scss"],"sourcesContent":["/* ==========================================================================\r\n   Global partials\r\n   ========================================================================== */\r\n@import '../../../../../themes/bridge/css/scss/variables';\r\n@import '../../../../../themes/bridge/css/scss/mixins';\r\n\r\n/* ==========================================================================\r\n   Custom Post Types responsive styles\r\n   ========================================================================== */\r\n@import \"D:/projects/bridge/wp-content/plugins/qode-restaurant/post-types/restaurant-menu/assets/css/scss/responsive/shortcodes/_restaurant-menu-list-responsive.scss\";\r\n\r\n/* ==========================================================================\r\n   Shortcodes responsive styles\r\n   ========================================================================== */\r\n@import \"D:/projects/bridge/wp-content/plugins/qode-restaurant/modules/shortcodes/reservation-form/assets/css/scss/responsive/_reservation-form-responsive.scss\";\n@import \"D:/projects/bridge/wp-content/plugins/qode-restaurant/modules/shortcodes/restaurant-timeline/assets/css/scss/responsive/_restaurant-timeline-responsive.scss\";","$grid-width: 1100px;\n$grid-width-laptop-landscape: 950px;\n$grid-width-ipad-landscape: 768px;\n$grid-width-ipad-portrait: 600px;\n$grid-width-phone-landscape: 420px;\n$grid-width-phone-portrait: 300px;\n$grid-width-smaller-phone-portrait: 95%;\n\n$grid-width-boxed: 1150px;\n$grid-width-laptop-landscape-boxed: 1000px;\n$grid-width-ipad-landscape-boxed: 818px;\n$grid-width-ipad-portrait-boxed: 650px;\n$grid-width-phone-landscape-boxed: 470px;\n$grid-width-phone-portrait-boxed: 350px;\n$grid-width-smaller-phone-portrait-boxed: 96%;\n\n$grid-width-1300: 1300px;\n$grid-width-1200: 1200px;\n$grid-width-1000: 1000px;\n$grid-width-800: 800px;\n\n$first-main-color: #1abc9c;\n\n$type1-gradient-first-color: #31c8a2;\n$type1-gradient-second-color: #ae66fd;\n\n$default-text-color: #818181;\n$header-light-color: #fff;\n$header-dark-color: #000;\n\n//Listing start\n$grey-color: #d6d6d6;\n$default-green-color: #7dc50f;\n$default-heading-color: #353535;\n$additional-heading-color: #2a2a2a;\n$default-background-color: #fff;\n$default-border-color: #dbdbdb;\n$additional-border-color: #f4f4f4;\n$additional-gray-color: #fafafa;\n$additional-text-color: #999;\n$light-color: #fff;\n$header-light-hover-color: rgba($header-light-color, .8);\n$header-dark-hover-color: rgba($header-dark-color, .8);\n$dark-color: #000;\n$light-grey-color: #adadad;\n//responsive breakpoints\n$laptop-landscape-large-plus-pixel: 1441px;\n$laptop-landscape-medium-plus-pixel: 1281px;\n$laptop-landscape-plus-pixel: 1201px;\n$ipad-landscape-plus-pixel: 1025px;\n$ipad-portrait-plus-pixel: 769px;\n$phone-landscape-plus-pixel: 681px;\n$phone-portrait-plus-pixel: 481px;\n$smaller-phone-portrait-plus-pixel: 321px;\n$first-main-font: 'Montserrat', sans-serif;\n\n$breakpoints: (\n\tlaptop-landscape-large-plus-pixel: 1441px,\n\tlaptop-landscape-large: 1400px,\n\tlaptop-landscape-medium: 1280px,\n\tlaptop-landscape: 1200px,\n\tipad-landscape: 1024px,\n\tipad-portrait: 768px,\n\tphone-landscape: 680px,\n\tphone-portrait: 480px,\n\tsmaller-phone-portrait: 320px\n);\n\n//Listing end\n\n//responsive breakpoints\n$laptop-big-landscape: 1400px;\n$laptop-landscape: 1200px;\n$ipad-landscape: 1024px;\n$ipad-portrait: 768px;\n$phone-landscape: 600px;\n$phone-portrait: 480px;\n$smaller-phone-portrait: 320px;\n\n//responsive breakpoints for vertical menu\n$vertical-menu-laptop-landscape: 1490px;\n$vertical-menu-ipad-landscape: 1314px;\n\n$vertical-menu-width: 290px;\n\n// easings\n$primary-easing: cubic-bezier(0.785, 0.135, 0.15, 0.86);\n$aux-easing-1: cubic-bezier(0.19, 0.65, 0.02, 0.93);\n$aux-easing-2: cubic-bezier(0.18, 1.35, 0.2, 1.04);","@import 'variables';\n\n//layout mixins - start\n\n@mixin qodeTableLayout(){\n    position: relative;\n    display: table;\n    table-layout: fixed;\n    height: 100%;\n    width: 100%;\n}\n\n@mixin qodeTableCellLayout(){\n    position: relative;\n    display: table-cell;\n    height: 100%;\n    width: 100%;\n    vertical-align: middle;\n    text-align: center;\n}\n\n@mixin qodeRelativeHolderLayout() {\n    position: relative;\n    display: inline-block;\n    width: 100%;\n    vertical-align: middle;\n}\n\n@mixin qodeAbsoluteHolderLayout() {\n    position: absolute;\n    display: block;\n    width: 100%;\n    height: 100%;\n    top: 0;\n    left: 0;\n}\n\n@mixin qodeTypographyLayout(){\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//transition mixins - start\n\n@mixin qodeTransition($transition-param...) {\n    -webkit-transition: $transition-param;\n    -moz-transition: $transition-param;\n    transition: $transition-param;\n}\n\n@mixin qodeTransform($transform-param...) {\n    -webkit-transform: $transform-param;\n    -moz-transform: $transform-param;\n    transform: $transform-param;\n}\n\n@mixin qodeAnimation($animation-param...) {\n\t-webkit-animation: $animation-param;\n    -moz-animation: $animation-param;\n\tanimation: $animation-param;\n}\n\n@mixin qodeTransformOrigin($animation-param...) {\n\t-webkit-transform-origin: $animation-param;\n    -moz-transform-origin: $animation-param;\n    transform-origin: $animation-param;\n}\n\n@mixin qodeBoxShadow($shadow-property...) {\n    -webkit-box-shadow: $shadow-property;\n    -moz-box-shadow: $shadow-property;\n    box-shadow: $shadow-property;\n}\n\n@mixin qodeBorderRadius($border-radius...) {\n    -webkit-border-radius: $border-radius;\n    -moz-border-radius: $border-radius;\n    border-radius: $border-radius;\n}\n\n@mixin qodeBoxSizing($box-sizing) {\n    -webkit-box-sizing: $box-sizing;\n    -moz-box-sizing: $box-sizing;\n    box-sizing: $box-sizing;\n}\n//transition mixins - end\n\n//media query mixins - start\n\n@mixin laptop-big-landscape {\n    @media only screen and (max-width: $laptop-big-landscape) {\n        @content;\n    }\n}\n\n@mixin laptop-landscape {\n    @media only screen and (max-width: $laptop-landscape) {\n        @content;\n    }\n}\n\n@mixin ipad-landscape {\n    @media only screen and (max-width: $ipad-landscape) {\n        @content;\n    }\n}\n\n@mixin ipad-landscape-min {\n    @media only screen and (min-width: $ipad-landscape) {\n        @content;\n    }\n}\n\n@mixin ipad-portrait {\n    @media only screen and (max-width: $ipad-portrait) {\n        @content;\n    }\n}\n\n@mixin phone-landscape {\n    @media only screen and (max-width: $phone-landscape) {\n        @content;\n    }\n}\n\n@mixin phone-portrait {\n    @media only screen and (max-width: $phone-portrait) {\n        @content;\n    }\n}\n\n@mixin smaller-phone-portrait {\n    @media only screen and (max-width: $smaller-phone-portrait) {\n        @content;\n    }\n}\n\n//media query mixins - end\n\n@mixin vertical-menu-laptop-landscape {\n    @media only screen and (min-width: $vertical-menu-ipad-landscape) and (max-width: $vertical-menu-laptop-landscape) {\n        @content;\n    }\n}\n\n@mixin vertical-menu-ipad-landscape {\n    @media only screen and (min-width: $ipad-landscape) and (max-width: $vertical-menu-ipad-landscape) {\n        @content;\n    }\n}\n\n//Listing start\n\n@mixin laptop-landscape-large-plus-pixel {\n\t@media only screen and (max-width: map-get($breakpoints, laptop-landscape-large-plus-pixel)) {\n\t\t@content;\n\t}\n}\n\n@mixin laptop-landscape-large {\n\t@media only screen and (max-width: map-get($breakpoints, laptop-landscape-large)) {\n\t\t@content;\n\t}\n}\n\n@mixin laptop-landscape-medium {\n\t@media only screen and (max-width: map-get($breakpoints, laptop-landscape-medium)) {\n\t\t@content;\n\t}\n}\n@mixin qodeStarsStyle(){\n\tcontent: '\\f005 \\f005 \\f005 \\f005 \\f005 ';\n\tdisplay: inline-block;\n\tfont-family: 'FontAwesome';\n\tletter-spacing: 3px;\n\tfont-size: 10px;\n\toverflow: hidden;\n\tposition: relative;\n\tvertical-align: middle;\n\ttext-align: left;\n}\n@mixin qodePlaceholder {\n\t&::-webkit-input-placeholder {\n\t\t@content\n\t}\n\t&:-moz-placeholder {\n\t\t@content\n\t}\n\t&::-moz-placeholder {\n\t\t@content\n\t}\n\t&:-ms-input-placeholder {\n\t\t@content\n\t}\n}\n@mixin qodeBckImageStyle(){\n\tbackground-size: cover;\n\tbackground-repeat: no-repeat;\n\tbackground-position: center center;\n}\n%checkbox-style{\n\tinput[type=checkbox]{\n\t\twidth: 17px;\n\t\theight: 17px;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tmargin: 0 0 16px;\n\t}\n\tinput[type=checkbox] + label{\n\t\tvertical-align: top;\n\t\tdisplay: inline-block;\n\t\tpointer-events: none;\n\t\tcursor: pointer;\n\t\tline-height: 1.5em;\n\t\ttext-transform: uppercase;\n\t\tfont-size: 12px;\n\t\tfont-weight: 500;\n\t}\n\tinput[type=checkbox] + label span.qode-label-text {\n\t\tpadding-left: 8px;\n\t}\n\tinput[type=checkbox] + label .qode-label-view{\n\t\twidth: 15px;\n\t\theight: 15px;\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tcursor: pointer;\n\t\tborder: 1px solid $default-border-color;\n\t\tbackground-color: $default-background-color;\n\t\tborder-radius: 100%;\n\t\t&:hover{\n\t\t\tcursor: pointer;\n\t\t}\n\t}\n\tinput[type=checkbox] + label .qode-label-view:after{\n\t\tcontent: 'N';\n\t\twidth: 16px;\n\t\theight: 16px;\n\t\tposition: absolute;\n\t\ttop: -1px;\n\t\tleft: 2px;\n\t\tcolor: #1abc9c;\n\t\tfont-family: ElegantIcons;\n\t\topacity: 0;\n\t\tfont-size: 10px;\n\t\t@include qodeTransition(opacity 0.3s ease-in-out);\n\t}\n\n\tinput[type=checkbox]:checked + label .qode-label-view:after{\n\t\topacity: 1;\n\t}\n}\n//Listing end\n\n\n//animation mixin - start\n\n@mixin keyframes($name) {\n    @-webkit-keyframes #{$name} { @content };\n    @keyframes #{$name} { @content };\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//gradient mixins - start\n\n@mixin qodeType1LeftToRightGradient() {\n    background: -webkit-linear-gradient(left, $type1-gradient-first-color, $type1-gradient-second-color);\n    background: -o-linear-gradient(right, $type1-gradient-first-color, $type1-gradient-second-color);\n    background: -moz-linear-gradient(right, $type1-gradient-first-color, $type1-gradient-second-color);\n    background: linear-gradient(to right, $type1-gradient-first-color, $type1-gradient-second-color);\n}\n\n@mixin qodeType1BotomToTopGradient($webkit) {\n    @if $webkit == 'true' {\n        background: -webkit-linear-gradient(bottom, $type1-gradient-first-color, $type1-gradient-second-color);\n    } @else {\n        background: -webkit-linear-gradient(bottom, $type1-gradient-first-color, $type1-gradient-second-color);\n        background: -o-linear-gradient(top, $type1-gradient-first-color, $type1-gradient-second-color);\n        background: -moz-linear-gradient(top, $type1-gradient-first-color, $type1-gradient-second-color);\n        background: linear-gradient(to top, $type1-gradient-first-color, $type1-gradient-second-color);\n    }\n}\n\n@mixin qodeType1LeftBottomToRightTopGradient($webkit) {\n    @if $webkit == 'true' {\n        background: -webkit-linear-gradient(right top, $type1-gradient-second-color, $type1-gradient-first-color );\n    } @else {\n        background: -webkit-linear-gradient(right top, $type1-gradient-second-color, $type1-gradient-first-color);\n        background: -o-linear-gradient(right top, $type1-gradient-first-color, $type1-gradient-second-color);\n        background: -moz-linear-gradient(right top, $type1-gradient-first-color, $type1-gradient-second-color);\n        background: linear-gradient(to right top, $type1-gradient-first-color, $type1-gradient-second-color);\n    }\n}\n\n@mixin qodeType1LeftToRightGradient2x() {\n    background: -webkit-linear-gradient(left, $type1-gradient-first-color 0%, $type1-gradient-second-color 50%, $type1-gradient-first-color 100%);\n    background: -o-linear-gradient(right, $type1-gradient-first-color 0%, $type1-gradient-second-color 50%, $type1-gradient-first-color 100%);\n    background: -moz-linear-gradient(right, $type1-gradient-first-color 0%, $type1-gradient-second-color 50%, $type1-gradient-first-color 100%);\n    background: linear-gradient(to right, $type1-gradient-first-color 0%, $type1-gradient-second-color 50%, $type1-gradient-first-color 100%);\n}\n\n//gradient mixins - end","/* ==========================================================================\n# Restaurant Menu List responsive style - begin\n========================================================================== */\n.qode-restaurant-menu-list {\n\n\t@include phone-landscape {\n\t\t.qode-rml-line {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t.qode-rml-price-holder {\n\t\t\ttext-align: right;\n\t\t}\n\n\t\t.qode-rml-label-holder {\n\t\t\tfloat: none;\n\t\t\ttext-align: left;\n\t\t\twidth: 80%;\n\t\t\ttop: 10px;\n\t\t}\n\n\t\t.qode-rml-title-holder {\n\t\t\twidth: 80%;\n\t\t\twhite-space: normal;\n\t\t}\n\n\t\t.qode-rml-bottom-holder {\n\t\t\tmargin-bottom: 25px;\n    \t\tmargin-top: 3px;\n\t\t}\n\t}\n\n\t&.qode-rml-with-featured-image {\n\t\t@include phone-landscape {\n\t\t\t.qode-rml-item-image {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.qode-rml-item-content {\n\t\t\t    padding-left: 0px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/* ==========================================================================\n# Restaurant Menu List responsive style - end\n========================================================================== */","@media screen and (max-width: 1200px) and (min-width: $ipad-portrait) {\n\t.qode-rf-holder {\n\t\t.qode-btn {\n\t\t\tfont-size: 13px;\n\t\t}\n\n\t\t.qode-btn.qode-btn-medium.qode-btn-icon .qode-btn-text {\n\t\t\tpadding-left: 0;\n\t\t\tpadding-right: 19px;\n\t\t}\n\t}\n}\n\n@include ipad-portrait {\n\t.qode-rf-holder {\n\t\t.qode-rf-row {\n\t\t\tmargin-left: -15px;\n\t\t\tmargin-right: -15px;\n\t\t\twidth: auto;\n\t\t}\n\n\t\t.qode-rf-col-holder,\n\t\t.qode-rf-col-holder.qode-rf-btn-holder,\n\t\t.qode-rf-col-holder.qode-rf-time-col {\n\t\t\tfloat: left;\n\t\t\twidth: 50%;\n\t\t\tpadding: 0 15px;\n\t\t\tmargin-bottom: 30px;\n\n\t\t\t@include qodeBoxSizing(border-box);\n\n\t\t\t.qode-rf-field-holder {\n\t\t\t\twidth: 100%;\n\t\t\t}\n\t\t}\n\n\t\t.qode-rf-label {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n}\n\n@include phone-landscape {\n\t.qode-rf-holder {\n\t\t.qode-rf-col-holder,\n\t\t.qode-rf-col-holder.qode-rf-btn-holder,\n\t\t.qode-rf-col-holder.qode-rf-time-col {\n\t\t\twidth: 100%;\n\t\t}\n\n\t}\n}","@include ipad-portrait {\n\n    .qode-restaurant-timeline {\n\n        .qode-restaurant-timeline-inner {\n            padding-top: 0;\n        }\n\n        .qode-rt-item {\n            width: 100%;\n            padding: 0 0 50px;\n\n            &:nth-of-type(odd) {\n                top: 0;\n                margin: 0;\n            }\n        }\n    }\n}"],"names":[],"mappings":"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"}