{"version":3,"sources":["foopeople.customizer.css","foopeople.customizer.scss"],"names":[],"mappings":"AACA,sDAEQ,mBAAmB,ECsErB,YAAQ,EAAA;;ADxEd,4DCwEM,YAAQ,EAAA;;ADrEd,oCAsEE,wBAAwB,EACxB,cAA2B,EAC3B,WArCgB,EAsChB,uBAAuB,EAAA;;AAvEzB,0CA0EI,UAAU,EAAA;;AAxEd,yEA2EM,iBAA4C,EAAA;;AAzElD,0DA6EM,iBA5Da,EAAA;;AAfnB,0DA+EM,iBAA4C,EAAA;;AA7ElD,mEAyCE,eAAe,EACf,WAhBgB,EAiBhB,gCAAwB,EAAxB,wBAAwB,EACxB,WAnBgB,EAYhB,yEAA6G,EAA7G,iEAA6G,EA+C3G,iBAvEe,EAwEf,yBAtDwB,EAuDxB,kBArDc,EAAA;;AA/BlB,0DAmCE,yEAA6G,EAA7G,iEAA6G,EAY7G,mBCUY,EDTZ,6BA3B8B,EA4B9B,mBAnCiB,EAoCjB,eAAe,EACf,YApCiB,EAqCjB,WApCgB,EAyEd,wBAAwB,EACxB,gBAAkF,EAAA;;AAxFtF,sDAqCE,eAAe,EACf,WAhBgB,EAiBhB,6BAAwB,EAAxB,wBAAwB,EACxB,WAnBgB,EAYhB,iEAA6G,EA6D3G,iBArFe,EAsFf,yBApEwB,EAqExB,kBAnEc,EAAA;;AA3BlB,sDA+BE,iEAA6G,EAY7G,mBCUY,EDTZ,6BA3B8B,EA4B9B,mBAnCiB,EAoCjB,eAAe,EACf,YApCiB,EAqCjB,WApCgB,EAAA;;AAVlB,+CAiCE,eAAe,EACf,WAhBgB,EAiBhB,4BAAwB,EAAxB,wBAAwB,EACxB,WAnBgB,EAoFd,uBAAuB,EACvB,yBAAyB,EACzB,oBAAmC,EACnC,kBAAkB,EAAA;;AAtGtB,oDA2BE,iEAA6G,EAgF3G,mBAA2C,EAC3C,yBAvFwB,EAwFxB,kBAAgC,EAAA;;AA3GpC,oDAyBE,iEAA6G,EAuF3G,iBA/Ge,EAgHf,yBA9FwB,EA+FxB,kBAAgC,EAAA;;AAhHpC,+CAuBE,iEAA6G,EAY7G,mBCUY,EDTZ,6BA3B8B,EA4B9B,mBAnCiB,EAoCjB,eAAe,EACf,YApCiB,EAqCjB,WApCgB,EAiHd,aAAa,EAAA;;AAnHjB,y+IAAy+I","file":"../foopeople.customizer.css","sourcesContent":[null,"// Parent Level\r\n#accordion-panel-ppl_panel {\r\n    .accordion-section-title {\r\n        background: #0085ba;\r\n        color: white;\r\n        &:after {\r\n            color: white;\r\n        }\r\n    }\r\n}\r\n\r\n\r\n// Sub Levels\r\n#sub-accordion-panel-ppl_panel {\r\n    .accordion-section-title {\r\n        \r\n    }\r\n}\r\n\r\n\r\n\r\n// Styling Cross-Browser Compatible Range Inputs with Sass\r\n// Github: https://github.com/darlanrod/input-range-sass\r\n// Author: Darlan Rod https://github.com/darlanrod\r\n// Version 1.4.1\r\n// MIT License\r\n\r\n$track-color: white !default;\r\n$thumb-color: #0085ba !default;\r\n\r\n$thumb-radius: 20px !default;\r\n$thumb-height: 20px !default;\r\n$thumb-width: 20px !default;\r\n$thumb-shadow-size: 0 !default;\r\n$thumb-shadow-blur: 0 !default;\r\n$thumb-shadow-color: rgba(0, 0, 0, .2) !default;\r\n$thumb-border-width: 2px !default;\r\n$thumb-border-color: transparent !default;\r\n\r\n$track-width: 100% !default;\r\n$track-height: 6px !default;\r\n$track-shadow-size: 0 !default;\r\n$track-shadow-blur: 0 !default;\r\n$track-shadow-color: rgba(0, 0, 0, .2) !default;\r\n$track-border-width: 1px !default;\r\n$track-border-color: #b4b9be !default;\r\n\r\n$track-radius: 2px !default;\r\n$contrast: 5% !default;\r\n\r\n@mixin shadow($shadow-size, $shadow-blur, $shadow-color) {\r\n  box-shadow: $shadow-size $shadow-size $shadow-blur $shadow-color, 0 0 $shadow-size lighten($shadow-color, 5%);\r\n}\r\n\r\n@mixin track {\r\n  cursor: pointer;\r\n  height: $track-height;\r\n  transition: all .2s ease;\r\n  width: $track-width;\r\n}\r\n\r\n@mixin thumb {\r\n  @include shadow($thumb-shadow-size, $thumb-shadow-blur, $thumb-shadow-color);\r\n  background: $thumb-color;\r\n  border: $thumb-border-width solid $thumb-border-color;\r\n  border-radius: $thumb-radius;\r\n  cursor: pointer;\r\n  height: $thumb-height;\r\n  width: $thumb-width;\r\n}\r\n\r\n\r\n\r\n[type='range'].ppl__range-control {\r\n  -webkit-appearance: none;\r\n  margin: $thumb-height / 2 0;\r\n  width: $track-width;\r\n  background: transparent;\r\n\r\n  &:focus {\r\n    outline: 0;\r\n\r\n    &::-webkit-slider-runnable-track {\r\n      background: lighten($track-color, $contrast);\r\n    }\r\n\r\n    &::-ms-fill-lower {\r\n      background: $track-color;\r\n    }\r\n\r\n    &::-ms-fill-upper {\r\n      background: lighten($track-color, $contrast);\r\n    }\r\n  }\r\n\r\n  &::-webkit-slider-runnable-track {\r\n    @include track;\r\n    @include shadow($track-shadow-size, $track-shadow-blur, $track-shadow-color);\r\n    background: $track-color;\r\n    border: $track-border-width solid $track-border-color;\r\n    border-radius: $track-radius;\r\n  }\r\n\r\n  &::-webkit-slider-thumb {\r\n    @include thumb;\r\n    -webkit-appearance: none;\r\n    margin-top: ((-$track-border-width * 2 + $track-height) / 2) - ($thumb-height / 2);\r\n  }\r\n\r\n  &::-moz-range-track {\r\n    @include track;\r\n    @include shadow($track-shadow-size, $track-shadow-blur, $track-shadow-color);\r\n    background: $track-color;\r\n    border: $track-border-width solid $track-border-color;\r\n    border-radius: $track-radius;\r\n  }\r\n\r\n  &::-moz-range-thumb {\r\n    @include thumb;\r\n  }\r\n\r\n  &::-ms-track {\r\n    @include track;\r\n    background: transparent;\r\n    border-color: transparent;\r\n    border-width: ($thumb-height / 2) 0;\r\n    color: transparent;\r\n  }\r\n\r\n  &::-ms-fill-lower {\r\n    @include shadow($track-shadow-size, $track-shadow-blur, $track-shadow-color);\r\n    background: darken($track-color, $contrast);\r\n    border: $track-border-width solid $track-border-color;\r\n    border-radius: $track-radius * 2;\r\n  }\r\n\r\n  &::-ms-fill-upper {\r\n    @include shadow($track-shadow-size, $track-shadow-blur, $track-shadow-color);\r\n    background: $track-color;\r\n    border: $track-border-width solid $track-border-color;\r\n    border-radius: $track-radius * 2;\r\n  }\r\n\r\n  &::-ms-thumb {\r\n    @include thumb;\r\n    margin-top: 0;\r\n  }\r\n}"]}