{"version":3,"sources":["webpack://_N_E/node_modules/react-querybuilder/dist/query-builder.scss"],"names":[],"mappings":"AAsBA,WAIE,aAzBY,CA4BZ,oBAxBkB,CAyBlB,wBAxBiB,CAyBjB,4BA7BqB,CA+BrB,sCAVA,YAAA,CACA,qBAAA,CACA,SAxBY,CAqCV,iCACE,YAAA,CAIJ,8CAEE,YAAA,CACA,SA7CU,CA8CV,kBAAA,CAIA,wDACE,YAAA,CACA,SApDQ,CAqDR,oBAAA,CAUF,4GAIE,6BA3D8B,CA4D9B,oBApEQ,CAsER,4HACE,wBA9DiC,CAqErC,yOAME,6BA5E8B,CA6E9B,oBArFQ,CAuFR,yQACE,wBA/EiC,CAwFvC,yCACE,UAAA,CAGF,mEACE,WAAA,CAOF,uCACE,yBAAA,CAGF,0EAEE,iBAAA,CAEA,8KAEE,UAAA,CACA,WAxHQ,CAyHR,uBAAA,CACA,oBAxHa,CAyHb,kBAxHa,CAyHb,eAAA,CACA,iBAAA,CAGF,wFACE,UAAA,CACA,wBAAA,CACA,wBAAA,CAGF,8GACE,gCAnIc,CAsIhB,sFACE,OAAA,CACA,UAAA,CACA,sBAAA,CAGF,4GACE,YAAA,CAKF,uGAEE,6BAAA,CAGF,oDACE,sBAAA,CACA,8BAAA,CAGF,mDACE,sBAAA,CAIJ,qCACE,iBAAA,CAEA,4CACE,UAAA,CACA,WA1KQ,CA2KR,uBAAA,CAGA,eAAA,CACA,iBAAA,CACA,UAAA,CACA,yBAAA,CACA,oBAAA,CAAA,sBAAA","file":"static/css/cae0992219dd1a50.css","sourcesContent":["// Basic\n$rqb-spacing: 0.5rem !default;\n$rqb-background-color: rgba(0, 75, 183, 0.2) !default;\n$rqb-border-color: #8081a2 !default;\n$rqb-border-style: solid !default;\n$rqb-border-radius: 0.25rem !default;\n$rqb-border-width: 1px !default;\n\n// Drag-and-drop\n$rqb-dnd-hover-border-bottom-color: rebeccapurple !default;\n$rqb-dnd-hover-copy-border-bottom-color: #669933 !default;\n$rqb-dnd-hover-border-bottom-style: dashed !default;\n$rqb-dnd-hover-border-bottom-width: 2px !default;\n\n// Branches\n$rqb-branch-indent: $rqb-spacing !default;\n$rqb-branch-color: $rqb-border-color !default;\n$rqb-branch-width: $rqb-border-width !default;\n$rqb-branch-radius: $rqb-border-radius !default;\n$rqb-branch-style: $rqb-border-style !default;\n\n// Default styles\n.ruleGroup {\n  display: flex;\n  flex-direction: column;\n  gap: $rqb-spacing;\n  padding: $rqb-spacing;\n  border-color: $rqb-border-color;\n  border-style: $rqb-border-style;\n  border-radius: $rqb-border-radius;\n  border-width: $rqb-border-width;\n  background: $rqb-background-color;\n\n  .ruleGroup-body {\n    display: flex;\n    flex-direction: column;\n    gap: $rqb-spacing;\n\n    &:empty {\n      display: none;\n    }\n  }\n\n  .ruleGroup-header,\n  .rule {\n    display: flex;\n    gap: $rqb-spacing;\n    align-items: center;\n  }\n\n  .rule {\n    .rule-value:has(.rule-value-list-item) {\n      display: flex;\n      gap: $rqb-spacing;\n      align-items: baseline;\n    }\n  }\n}\n\n// #region Drag-and-drop\n\n// Hover styles\n[data-inlinecombinators='disabled'] {\n  .dndOver {\n    &.rule,\n    &.ruleGroup-header {\n      border-bottom-width: $rqb-dnd-hover-border-bottom-width;\n      border-bottom-style: $rqb-dnd-hover-border-bottom-style;\n      border-bottom-color: $rqb-dnd-hover-border-bottom-color;\n      padding-bottom: $rqb-spacing;\n\n      &.dndCopy {\n        border-bottom-color: $rqb-dnd-hover-copy-border-bottom-color;\n      }\n    }\n  }\n}\n[data-inlinecombinators='enabled'] {\n  .dndOver {\n    &.rule:last-child,\n    &.ruleGroup-header,\n    &.rule + .betweenRules,\n    &.betweenRules {\n      border-bottom-width: $rqb-dnd-hover-border-bottom-width;\n      border-bottom-style: $rqb-dnd-hover-border-bottom-style;\n      border-bottom-color: $rqb-dnd-hover-border-bottom-color;\n      padding-bottom: $rqb-spacing;\n\n      &.dndCopy {\n        border-bottom-color: $rqb-dnd-hover-copy-border-bottom-color;\n      }\n    }\n  }\n}\n\n// Drag styles\n.ruleGroup,\n.rule {\n  &.dndDragging {\n    opacity: 0.5;\n  }\n\n  .queryBuilder-dragHandle {\n    cursor: move;\n  }\n}\n// #endregion\n\n// #region Branches\n.queryBuilder-branches {\n  .ruleGroup-body {\n    margin-left: calc(2 * #{$rqb-branch-indent});\n  }\n\n  .rule,\n  .ruleGroup .ruleGroup {\n    position: relative;\n\n    &::before,\n    &::after {\n      content: '';\n      width: $rqb-branch-indent;\n      left: calc(-#{$rqb-branch-indent} - #{$rqb-branch-width});\n      border-color: $rqb-branch-color;\n      border-style: $rqb-branch-style;\n      border-radius: 0;\n      position: absolute;\n    }\n\n    &::before {\n      top: -$rqb-spacing;\n      height: calc(50% + #{$rqb-spacing});\n      border-width: 0 0 $rqb-branch-width $rqb-branch-width;\n    }\n\n    &:last-child::before {\n      border-bottom-left-radius: $rqb-branch-radius;\n    }\n\n    &::after {\n      top: 50%;\n      height: 50%;\n      border-width: 0 0 0 $rqb-branch-width;\n    }\n\n    &:last-child::after {\n      display: none;\n    }\n  }\n\n  .ruleGroup .ruleGroup {\n    &::before,\n    &::after {\n      left: calc(calc(-#{$rqb-branch-indent} - #{$rqb-branch-width}) - #{$rqb-border-width});\n    }\n\n    &::before {\n      top: calc(-#{$rqb-spacing} - #{$rqb-border-width});\n      height: calc(50% + #{$rqb-spacing} + #{$rqb-border-width});\n    }\n\n    &::after {\n      height: calc(50% + #{$rqb-border-width});\n    }\n  }\n\n  .betweenRules {\n    position: relative;\n\n    &::before {\n      content: '';\n      width: $rqb-branch-indent;\n      left: calc(-#{$rqb-branch-indent} - #{$rqb-branch-width});\n      border-color: $rqb-branch-color;\n      border-style: $rqb-branch-style;\n      border-radius: 0;\n      position: absolute;\n      top: -$rqb-spacing;\n      height: calc(100% + #{$rqb-spacing});\n      border-width: 0 0 0 $rqb-branch-width;\n    }\n  }\n}\n// #endregion\n"],"sourceRoot":"","ignoreList":[0]}