{"version":3,"sources":["envira-gallery/assets/scss/license.scss","envira-gallery/assets/scss/_mixins.scss","envira-gallery/assets/scss/_vars.scss"],"names":[],"mappings":"AAEA,sBACC,aACA,uBACA,mBACA,sBACA,gBACA,iBACA,eACA,gBACA,MACA,SACA,OACA,QACA,YACA,YACA,eACA,kBACA,wHACA,6BACC,kBACA,SACA,WAED,yBACC,SACA,UACA,eACA,mBAED,wBACC,SACA,UACA,eACA,mBAED,mCACC,kBAED,8BCCW,wFDCV,kBACA,YACA,iBACA,qBACA,iBACA,gBACA,wBACA,gBACA,sBACA,iBAMA,6CACC,WE3CK,QF4CL,aE5CK,QF6CL,wBACA,gBACA,MElDK,KFoDL,mDACC,WEjDQ,QFkDR,aElDQ,QFmDR,MEvDI,KF0DN,6CACC,sBACA,ME1DK","file":"license.css","sourcesContent":["@import '_vars';\n@import '_mixins';\n#envira-license-check{\n\tdisplay: flex;\n\tjustify-content: center;\n\talign-items: center;\n\tflex-direction: column;\n\tbackground: rgb(255,255,255);\n\tz-index: 14000050;\n\tposition: fixed;\n\toverflow: hidden;\n\ttop: 0;\n\tbottom: 0;\n\tleft: 0;\n\tright: 0;\n\theight: 100%;\n\tmin-width: 0;\n\tcursor: default;\n\ttext-align: center;\n\tfont-family: -apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;\n\t.close {\n\t\tposition: absolute;\n\t\ttop: 10px;\n\t\tright: 10px;\n\t}\n\th3 {\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\tfont-size: 22px;\n\t\tmargin-bottom: 10px;\n\t}\n\tp {\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\tfont-size: 18px;\n\t\tmargin-bottom: 30px;\n\t}\n\t.envira-logo {\n\t\ttext-align: center;\n\t}\n\t.button {\n\t\t@include borderRadius(2px);\n\t\tpadding: 16px 20px;\n\t\theight: 33px;\n\t\tline-height: 30px;\n\t\ttext-decoration: none;\n\t\ttext-shadow: none;\n\t\tfont-weight: 600;\n\t\t-webkit-box-shadow: none;\n\t\tbox-shadow: none;\n\t\tbox-sizing: border-box;\n\t\tborder: 2px solid;\n\n\t\t/**\n\t\t* Green Button\n\t\t* - Replaces WordPress' default primary button style\n\t\t*/\n\t\t&.button-primary {\n\t\t\tbackground: $primary_button_color;\n\t\t\tborder-color: $primary_button_color;\n\t\t\t-webkit-box-shadow: none;\n\t\t\tbox-shadow: none;\n\t\t\tcolor: $white;\n\n\t\t\t&:hover{\n\t\t\t\tbackground: $primary_button_color_hover;\n\t\t\t\tborder-color: $primary_button_color_hover;\n\t\t\t\tcolor: $white;\n\t\t\t}\n\t\t}\n\t\t&.button-outline {\n\t\t\tborder: 2px solid $black;\n\t\t\tcolor: $black;\n\t\t}\n\n\t}\n}","/* ==========================================================================\n   Mixins\n   ========================================================================== */\n/**\n* Media Query\n*/\n\n@mixin mq($breakpoint) {\n\n  $mq-xxs: \"(max-width: 599px)\";\n  $mq-xs: \"(min-width: 600px) and (max-width: 767px)\";\n  $mq-sm: \"(min-width: 768px) and (max-width: 991px)\";\n  $mq-md: \"(min-width: 992px) and (max-width: 1199px)\";\n  $mq-lg: \"(min-width: 1200px)\";\n\n  @if $breakpoint == xxs {\n    @media #{$mq-xxs} { @content; }\n  }\n  @if $breakpoint == xs {\n    @media #{$mq-xs} { @content; }\n  }\n  @else if $breakpoint == sm {\n    @media #{$mq-sm} { @content; }\n  }\n  @else if $breakpoint == md {\n    @media #{$mq-md}  { @content; }\n  }\n  @else if $breakpoint == lg {\n    @media #{$mq-lg}  { @content; }\n  }\n}\n\n/**\n* Border-Radius\n*/\n\n$prefixes: -webkit-, -moz-, -o-, \"\";\n\n@mixin borderRadius($size...) {\n    @if length($size) == 1 {\n        @each $prefix in $prefixes {\n            #{$prefix}border-radius: $size;\n        }\n    } @else {\n        @include customBorderRadius($size...);\n    }\n}\n\n@mixin customBorderRadius($topLeft: 0, $topRight: 0, $bottomRight: 0, $bottomLeft: 0) {\n    @each $prefix in $prefixes {\n        @if $prefix == \"-moz-\" {\n            @if $topLeft != 0 { -moz-border-radius-topleft: $topLeft; }\n            @if $topRight != 0 { -moz-border-radius-topright: $topRight; }\n            @if $bottomRight != 0 { -moz-border-radius-bottomright: $bottomRight; }\n            @if $bottomLeft != 0 { -moz-border-radius-bottomleft: $bottomLeft; }\n        } @else {\n            @if $topLeft != 0 { #{$prefix}border-top-left-radius: $topLeft; }\n            @if $topRight != 0 { #{$prefix}border-top-right-radius: $topRight; }\n            @if $bottomRight != 0 { #{$prefix}border-bottom-right-radius: $bottomRight; }\n            @if $bottomLeft != 0 { #{$prefix}border-bottom-left-radius: $bottomLeft; }\n        }\n    }\n}","/* ==========================================================================\n   Variables SCSS\n   ========================================================================== */\n\n$font__main: sans-serif;\n$font__code: Monaco, Consolas, \"Andale Mono\", \"DejaVu Sans Mono\", monospace;\n$font__pre: \"Courier 10 Pitch\", Courier, monospace;\n$font__line-height-body: 1.5;\n$font__line-height-pre: 1.6;\n\n$font_size_tab: 13px;\n\n$white: #ffffff;\n$beige_light: #f7f7f7;\n$black: #000000;\n$green: #7cc048;\n$green_alt: #95dc5e;\n$light-grey: rgb( 221,221,221);\n$grey: #666666;\n$grey_dark: #6b6e72;\n$grey_dark_2: #dddddd;\n$red: #e02626;\n$red_alt: #f85959;\n\n$primary_color: $green;\n$primary_button_color: $primary_color;\n$primary_button_color_hover: $green_alt;\n\n$danger_button_color: $red;\n$danger_button_color_hover: $red_alt;\n\n$color_bg: #f1f1f1;\n\n$header-height: 120px;\n$navbar-height: 50px;\n$input-height: 35px;\n\n$border-radius: 3px;"]}