iobroker.javascript 5.2.13 → 5.2.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/consts.js CHANGED
@@ -60,7 +60,7 @@ const monthShort = {
60
60
  'it': ['Gen', 'Feb', 'Mar', 'Apr', 'Mag', 'Giu', 'Lug', 'Ago', 'Set', 'Ott', 'Nov', 'Dic'],
61
61
  'zh-cn': ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'],
62
62
  };
63
- const astroList = ['sunrise', 'sunset', 'sunriseEnd', 'sunsetStart', 'dawn', 'dusk', 'nauticalDawn', 'nauticalDusk', 'nadir', 'nightEnd', 'night', 'goldenHourEnd', 'goldenHour'];
63
+ const astroList = ['sunrise', 'sunset', 'sunriseEnd', 'sunsetStart', 'dawn', 'dusk', 'nauticalDawn', 'nauticalDusk', 'nadir', 'nightEnd', 'night', 'goldenHourEnd', 'goldenHour', 'solarNoon'];
64
64
  const astroListLow = astroList.map(str => str.toLowerCase());
65
65
 
66
66
  module.exports = {
@@ -334,8 +334,8 @@ declare global {
334
334
 
335
335
  /** Configures this state as an alias for another state */
336
336
  alias?: {
337
- /** The target state id */
338
- id: string;
337
+ /** The target state id or two target states used for reading and writing values */
338
+ id: string | { read: string; write: string };
339
339
  /** An optional conversion function when reading, e.g. `"(val − 32) * 5/9"` */
340
340
  read?: string;
341
341
  /** An optional conversion function when reading, e.g. `"(val * 9/5) + 32"` */
package/lib/sandbox.js CHANGED
@@ -409,16 +409,11 @@ function sandBox(script, name, verbose, debug, context) {
409
409
  return mods[md];
410
410
  } else {
411
411
  try {
412
- mods[md] = require(`${__dirname}/../node_modules/${md}`);
412
+ mods[md] = require(md);
413
413
  return mods[md];
414
414
  } catch (e) {
415
- try {
416
- mods[md] = require(`${__dirname}/../../${md}`);
417
- return mods[md];
418
- } catch (e) {
419
- adapter.setState('scriptProblem.' + name.substring('script.js.'.length), true, true);
420
- context.logError(name, e, 6);
421
- }
415
+ adapter.setState('scriptProblem.' + name.substring('script.js.'.length), true, true);
416
+ context.logError(name, e, 6);
422
417
  }
423
418
  }
424
419
  },
package/lib/scheduler.js CHANGED
@@ -109,18 +109,18 @@ class Scheduler {
109
109
 
110
110
  checkSchedule(context, schedule) {
111
111
  if (schedule.valid) {
112
- if (schedule.valid.from && !this.isPast(schedule.valid.from) && !this.isToday(schedule.valid.from)) {
112
+ if (schedule.valid.from && !this.isPast(context, schedule.valid.from) && !this.isToday(context, schedule.valid.from)) {
113
113
  return;
114
114
  }
115
115
  // "to" this.Date is in the past => delete it from list
116
- if (schedule.valid.to && this.isPast(schedule.valid.to)) {
116
+ if (schedule.valid.to && this.isPast(context, schedule.valid.to)) {
117
117
  delete this.list[schedule.id];
118
118
  return;
119
119
  }
120
120
  }
121
121
  if (schedule.period) {
122
- if (schedule.period.once && !this.isToday(schedule.period.once)) {
123
- if (this.isPast(schedule.period.once)) {
122
+ if (schedule.period.once && !this.isToday(context, schedule.period.once)) {
123
+ if (this.isPast(context, schedule.period.once)) {
124
124
  delete this.list[schedule.id];
125
125
  }
126
126
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.javascript",
3
- "version": "5.2.13",
3
+ "version": "5.2.14",
4
4
  "description": "Rules Engine for ioBroker",
5
5
  "author": "bluefox <dogafox@gmail.com>",
6
6
  "contributors": [
@@ -30,7 +30,7 @@
30
30
  },
31
31
  "dependencies": {
32
32
  "@iobroker/adapter-core": "^2.5.1",
33
- "@types/node": "^12.20.25",
33
+ "@types/node": "^12.20.37",
34
34
  "@types/request": "^2.48.7",
35
35
  "coffee-compiler": "^0.3.2",
36
36
  "coffee-script": "^1.12.7",
@@ -40,27 +40,39 @@
40
40
  "request": "^2.88.2",
41
41
  "semver": "^7.3.5",
42
42
  "suncalc2": "^1.8.1",
43
- "typescript": "^4.4.2",
43
+ "typescript": "^4.5.2",
44
44
  "virtual-tsc": "^0.6.1",
45
45
  "wake_on_lan": "^1.0.0"
46
46
  },
47
47
  "devDependencies": {
48
- "@alcalzone/release-script": "^2.2.1",
48
+ "@alcalzone/release-script": "^3.4.1",
49
+ "@alcalzone/release-script-plugin-iobroker": "^3.4.1",
50
+ "@alcalzone/release-script-plugin-license": "^3.4.1",
49
51
  "@types/iobroker": "^3.3.4",
50
- "alcalzone-shared": "^4.0.0",
52
+ "alcalzone-shared": "^4.0.1",
51
53
  "chai": "^4.3.4",
52
54
  "del": "^6.0.0",
53
55
  "eslint": "^7.32.0",
54
56
  "gulp": "^4.0.2",
55
57
  "gulp-rename": "^2.0.0",
56
58
  "gulp-replace": "^1.1.3",
57
- "mocha": "^9.1.1",
59
+ "mocha": "^9.1.3",
58
60
  "timekeeper": "^2.2.0"
59
61
  },
60
62
  "bugs": {
61
63
  "url": "https://github.com/ioBroker/ioBroker.javascript/issues"
62
64
  },
63
65
  "main": "main.js",
66
+ "files": [
67
+ "admin/",
68
+ "lib/",
69
+ "docs/",
70
+ "install/",
71
+ "lib/",
72
+ "io-package.json",
73
+ "LICENSE",
74
+ "main.js"
75
+ ],
64
76
  "scripts": {
65
77
  "test:declarations": "tsc -p test/lib/TS/tsconfig.json && tsc -p test/lib/JS/tsconfig.json",
66
78
  "test:javascript": "node node_modules/mocha/bin/mocha --exit",
@@ -68,6 +80,9 @@
68
80
  "postinstall": "node ./install/installTypings.js",
69
81
  "prepublishOnly": "node node_modules/gulp/bin/gulp.js",
70
82
  "build": "node node_modules/gulp/bin/gulp.js",
71
- "release": "release-script"
83
+ "release": "release-script",
84
+ "release-patch": "release-script patch --yes",
85
+ "release-minor": "release-script minor --yes",
86
+ "release-major": "release-script major --yes"
72
87
  }
73
88
  }
@@ -1,2 +0,0 @@
1
- .splitter-layout{position:absolute;display:flex;flex-direction:row;width:100%;height:100%;overflow:hidden}.splitter-layout .layout-pane{position:relative;flex:0 0 auto;overflow:auto}.splitter-layout .layout-pane.layout-pane-primary{flex:1 1 auto}.splitter-layout>.layout-splitter{flex:0 0 auto;width:4px;height:100%;cursor:col-resize;background-color:#ccc}.splitter-layout .layout-splitter:hover{background-color:#bbb}.splitter-layout.layout-changing{cursor:col-resize}.splitter-layout.layout-changing>.layout-splitter{background-color:#aaa}.splitter-layout.splitter-layout-vertical{flex-direction:column}.splitter-layout.splitter-layout-vertical.layout-changing{cursor:row-resize}.splitter-layout.splitter-layout-vertical>.layout-splitter{width:100%;height:4px;cursor:row-resize}.logo-background-colored,.logo-background-light{background:#fff}.logo-background-blue,.logo-background-dark{background:#000}.logo-div{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);overflow:hidden;z-index:2}.logo-border,.logo-div{position:absolute;border-radius:50%}.logo-border{border-color:#39c #164477 #164477;border-style:solid;box-sizing:border-box;width:100%;height:100%}.logo-top{position:absolute;width:4.5%;height:16%;top:0;z-index:2}.logo-i{height:60%;top:20%}.logo-i,.logo-i-top{position:absolute;width:14.5%;left:42%;background:#39c}.logo-i-top{height:4%;border-radius:100%}.logo-back{width:100%;height:100%;z-index:0;overflow:hidden}@-webkit-keyframes logo-grow{0%{width:230px;height:230px;-webkit-transform:translate(-50%,-50%) scale(1);transform:translate(-50%,-50%) scale(1);opacity:1}99%{width:230px;height:230px;-webkit-transform:translate(-50%,-50%) scale(10);transform:translate(-50%,-50%) scale(10);opacity:0}to{width:0;height:0;opacity:0}}@keyframes logo-grow{0%{width:230px;height:230px;-webkit-transform:translate(-50%,-50%) scale(1);transform:translate(-50%,-50%) scale(1);opacity:1}99%{width:230px;height:230px;-webkit-transform:translate(-50%,-50%) scale(10);transform:translate(-50%,-50%) scale(10);opacity:0}to{width:0;height:0;opacity:0}}@-webkit-keyframes logo-spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes logo-spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@-webkit-keyframes logo-color-inside-light{0%{background:#fefefe}to{background:#39c}}@keyframes logo-color-inside-light{0%{background:#fefefe}to{background:#39c}}@-webkit-keyframes logo-color-inside-dark{0%{background:#030303}to{background:#39c}}@keyframes logo-color-inside-dark{0%{background:#030303}to{background:#39c}}@-webkit-keyframes logo-color-inside-colored{0%{background:#fefefe}to{background:#39c}}@keyframes logo-color-inside-colored{0%{background:#fefefe}to{background:#39c}}@-webkit-keyframes logo-color-inside-blue{0%{background:#030303}to{background:#39c}}@keyframes logo-color-inside-blue{0%{background:#030303}to{background:#39c}}@-webkit-keyframes logo-color-outside-light{0%{border-color:#fefefe}to{border-color:#39c #164477 #164477}}@keyframes logo-color-outside-light{0%{border-color:#fefefe}to{border-color:#39c #164477 #164477}}@-webkit-keyframes logo-color-outside-dark{0%{border-color:#040404}to{border-color:#39c #164477 #164477}}@keyframes logo-color-outside-dark{0%{border-color:#040404}to{border-color:#39c #164477 #164477}}@-webkit-keyframes logo-color-outside-colored{0%{border-color:#fefefe}to{border-color:#39c #164477 #164477}}@keyframes logo-color-outside-colored{0%{border-color:#fefefe}to{border-color:#39c #164477 #164477}}@-webkit-keyframes logo-color-outside-blue{0%{border-color:#040404}to{border-color:#39c #164477 #164477}}@keyframes logo-color-outside-blue{0%{border-color:#040404}to{border-color:#39c #164477 #164477}}.logo-animate-wait{-webkit-animation:logo-color-outside 1.5s,logo-spin 1.5s linear infinite;animation:logo-color-outside 1.5s,logo-spin 1.5s linear infinite}.logo-animate-grow-light{background:#ddd}.logo-animate-grow-dark{background:#1d1d1d}.logo-animate-grow-colored{background:#ddd}.logo-animate-grow-blue{background:#1d1d1d}.logo-animate-grow{display:inline-block;text-align:center;z-index:1;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:245px;height:245px;border-radius:50%;position:absolute;-webkit-animation:logo-grow 1s ease 1 forwards;animation:logo-grow 1s ease 1 forwards}.logo-animate-color-inside-light{-webkit-animation:logo-color-inside-light 2.5s;animation:logo-color-inside-light 2.5s}.logo-animate-color-inside-dark{-webkit-animation:logo-color-inside-dark 2.5s;animation:logo-color-inside-dark 2.5s}.logo-animate-color-inside-colored{-webkit-animation:logo-color-inside-colored 2.5s;animation:logo-color-inside-colored 2.5s}.logo-animate-color-inside-blue{-webkit-animation:logo-color-inside-blue 2.5s;animation:logo-color-inside-blue 2.5s}.logo-animate-color-outside-light{-webkit-animation:logo-color-outside-light 1.5s;animation:logo-color-outside-light 1.5s}.logo-animate-color-outside-dark{-webkit-animation:logo-color-outside-dark 1.5s;animation:logo-color-outside-dark 1.5s}.logo-animate-color-outside-colored{-webkit-animation:logo-color-outside-colored 1.5s;animation:logo-color-outside-colored 1.5s}.logo-animate-color-outside-blue{-webkit-animation:logo-color-outside-blue 1.5s;animation:logo-color-outside-blue 1.5s}body,html{height:100%}body{margin:0;padding:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:100%;overflow:hidden}::-webkit-scrollbar-track{background-color:#ccc;border-radius:5px}::-webkit-scrollbar{width:5px;height:5px;background-color:#ccc}::-webkit-scrollbar-thumb{background-color:#575757;border-radius:5px}#root,.App{height:100%}@-webkit-keyframes glow{0%{background-color:initial}to{background-color:#58c458}}@keyframes glow{0%{background-color:initial}to{background-color:#58c458}}
2
- /*# sourceMappingURL=2.a442f2b4.chunk.css.map */
@@ -1 +0,0 @@
1
- {"version":3,"sources":["webpack://node_modules/react-splitter-layout/lib/index.css","webpack://node_modules/@iobroker/adapter-react/Components/loader.css","webpack://node_modules/@iobroker/adapter-react/index.css"],"names":[],"mappings":"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","file":"2.a442f2b4.chunk.css","sourcesContent":[".splitter-layout {\n position: absolute;\n display: flex;\n flex-direction: row;\n width: 100%;\n height: 100%;\n overflow: hidden;\n}\n\n.splitter-layout .layout-pane {\n position: relative;\n flex: 0 0 auto;\n overflow: auto;\n}\n\n.splitter-layout .layout-pane.layout-pane-primary {\n flex: 1 1 auto;\n}\n\n.splitter-layout > .layout-splitter {\n flex: 0 0 auto;\n width: 4px;\n height: 100%;\n cursor: col-resize;\n background-color: #ccc;\n}\n\n.splitter-layout .layout-splitter:hover {\n background-color: #bbb;\n}\n\n.splitter-layout.layout-changing {\n cursor: col-resize;\n}\n\n.splitter-layout.layout-changing > .layout-splitter {\n background-color: #aaa;\n}\n\n.splitter-layout.splitter-layout-vertical {\n flex-direction: column;\n}\n\n.splitter-layout.splitter-layout-vertical.layout-changing {\n cursor: row-resize;\n}\n\n.splitter-layout.splitter-layout-vertical > .layout-splitter {\n width: 100%;\n height: 4px;\n cursor: row-resize;\n}\n","/**\n * Copyright 2018-2021 bluefox <dogafox@gmail.com>\n *\n * MIT License\n *\n **/\n\n.logo-background-light, .logo-background-colored {\n background: white;\n}\n.logo-background-dark, .logo-background-blue {\n background: black;\n}\n.logo-div {\n position: absolute;\n top: 50%;\n left: 50%;\n -ms-transform: translateX(-50%) translateY(-50%);\n -webkit-transform: translate(-50%,-50%);\n transform: translate(-50%,-50%);\n overflow: hidden;\n border-radius: 50%;\n z-index: 2;\n}\n.logo-border {\n /*border-color: #164477;*/\n border-top-color: #3399CC;\n border-left-color: #164477;\n border-bottom-color: #164477;\n border-right-color: #164477;\n border-radius: 50%;\n border-style: solid;\n box-sizing: border-box;\n width: 100%;\n height: 100%;\n position: absolute;\n}\n.logo-top {\n position: absolute;\n width: 4.5%;\n height: 16%;\n top: 0;\n z-index: 2;\n}\n.logo-i {\n position: absolute;\n width: 14.5%;\n height: 60%;\n top: 20%;\n left: 42%;\n background: #3399CC;\n}\n.logo-i-top {\n position: absolute;\n width: 14.5%;\n height: 4%;\n left: 42%;\n background: #3399CC;\n border-radius: 100%;\n}\n.logo-back {\n width: 100%;\n height: 100%;\n z-index: 0;\n overflow: hidden;\n}\n@keyframes logo-grow {\n 0% {\n width: 230px;\n height: 230px;\n transform: translate(-50%,-50%) scale(1);\n opacity: 1\n }\n 99% {\n width: 230px;\n height: 230px;\n transform: translate(-50%,-50%) scale(10);\n opacity: 0;\n }\n 100% {\n width: 0;\n height: 0;\n opacity: 0;\n }\n}\n@keyframes logo-spin { 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } }\n@keyframes logo-color-inside-light {\n 0% {\n background: #FEFEFE;\n }\n 100% {\n background: #3399CC;\n }\n}\n@keyframes logo-color-inside-dark {\n 0% {\n background: #030303;\n }\n 100% {\n background: #3399CC;\n }\n}\n@keyframes logo-color-inside-colored {\n 0% {\n background: #FEFEFE;\n }\n 100% {\n background: #3399CC;\n }\n}\n@keyframes logo-color-inside-blue {\n 0% {\n background: #030303;\n }\n 100% {\n background: #3399CC;\n }\n}\n\n@keyframes logo-color-outside-light {\n 0% {\n border-color: #FEFEFE;\n }\n 100% {\n border-top-color: #3399CC;\n border-left-color: #164477;\n border-bottom-color: #164477;\n border-right-color: #164477;\n }\n}\n@keyframes logo-color-outside-dark {\n 0% {\n border-color: #040404;\n }\n 100% {\n border-top-color: #3399CC;\n border-left-color: #164477;\n border-bottom-color: #164477;\n border-right-color: #164477;\n }\n}\n@keyframes logo-color-outside-colored {\n 0% {\n border-color: #FEFEFE;\n }\n 100% {\n border-top-color: #3399CC;\n border-left-color: #164477;\n border-bottom-color: #164477;\n border-right-color: #164477;\n }\n}\n@keyframes logo-color-outside-blue {\n 0% {\n border-color: #040404;\n }\n 100% {\n border-top-color: #3399CC;\n border-left-color: #164477;\n border-bottom-color: #164477;\n border-right-color: #164477;\n }\n}\n\n.logo-animate-wait {\n animation: logo-color-outside 1.5s, logo-spin 1.5s linear infinite;\n}\n\n.logo-animate-grow-light {\n background: #DDD;\n}\n.logo-animate-grow-dark {\n background: #1d1d1d;\n}\n.logo-animate-grow-colored {\n background: #DDD;\n}\n.logo-animate-grow-blue {\n background: #1d1d1d;\n}\n\n.logo-animate-grow {\n display: inline-block;\n text-align: center;\n z-index: 1;\n top: 50%;\n left: 50%;\n -ms-transform: translateX(-50%) translateY(-50%);\n -webkit-transform: translate(-50%,-50%);\n transform: translate(-50%,-50%);\n width: 245px;\n height: 245px;\n border-radius: 50%;\n position: absolute;\n animation: logo-grow 1s 1 ease forwards;\n}\n\n.logo-animate-color-inside-light {\n animation: logo-color-inside-light 2.5s;\n}\n.logo-animate-color-inside-dark {\n animation: logo-color-inside-dark 2.5s;\n}\n.logo-animate-color-inside-colored {\n animation: logo-color-inside-colored 2.5s;\n}\n.logo-animate-color-inside-blue {\n animation: logo-color-inside-blue 2.5s;\n}\n\n.logo-animate-color-outside-light {\n animation: logo-color-outside-light 1.5s;\n}\n.logo-animate-color-outside-dark {\n animation: logo-color-outside-dark 1.5s;\n}\n.logo-animate-color-outside-colored {\n animation: logo-color-outside-colored 1.5s;\n}\n.logo-animate-color-outside-blue {\n animation: logo-color-outside-blue 1.5s;\n}","/**\n * Copyright 2018-2020 bluefox <dogafox@gmail.com>\n *\n * MIT License\n *\n **/\n\nhtml {\n height: 100%;\n}\n\nbody {\n margin: 0;\n padding: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n width: 100%;\n height: 100%;\n overflow: hidden;\n}\n\n/* scrollbar */\n::-webkit-scrollbar-track {\n background-color: #ccc;\n border-radius: 5px;\n}\n\n::-webkit-scrollbar {\n width: 5px;\n height: 5px;\n background-color: #ccc;\n}\n\n::-webkit-scrollbar-thumb {\n background-color: #575757;\n border-radius: 5px;\n}\n\n#root {\n height: 100%;\n}\n\n.App {\n height: 100%;\n}\n\n@keyframes glow {\n from {\n background-color: initial;\n }\n to {\n background-color: #58c458;\n }\n}"]}
@@ -1,2 +0,0 @@
1
- body,html{width:100%;height:100%}body{overflow:hidden;margin:0;padding:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#root{width:100%;height:100%}#___reactour>div:first-of-type{opacity:.4}.layout-pane-primary{height:100%}.blocklyToolboxDiv{left:0!important;width:180px;top:0!important;height:100%!important}.no-underline:before{border-bottom:0!important}.monaco-aria-container{top:0}.iobVerticalSplitter .layout-pane-primary{overflow:hidden}.monacoCurrentLine{background:#59fd8c}.monacoCurrentLineDark{background:#165b2c}.monacoCurrentFullLine{background:#cbffdc;opacity:.7}.monacoCurrentFullLineDark{background:#0e3b1f;opacity:.7}.monacoBreakPointDark{background:maroon}.monacoBreakPoint,.monacoBreakPointDark{border-radius:50%;width:16px!important;height:16px!important;margin-left:4px}.monacoBreakPoint{background:#d71a1a}.style_wrapperRules__sVEP2{background:linear-gradient(0deg,var(--backgroundGlobalColor),var(--backgroundGlobalColor)),url(https://klike.net/uploads/posts/2020-04/1586763579_24.jpg);background-repeat:no-repeat;background-size:cover;height:100%;display:flex}.style_rootWrapper__L853S{display:flex;width:100%}.style_addClass__3BRnT{flex-direction:column;height:auto;overflow:auto}@media screen and (max-width:835px){.style_rootWrapper__L853S{flex-direction:column;height:auto;overflow:auto}}.style_switchesItem__2h0hK{max-width:200px;width:auto;display:flex;margin:5px 0;padding:12px 0;align-items:center;border:1px solid hsla(0,0%,100%,0);transition:all .7s;color:var(--colorInput)}.style_switchesItem__2h0hK span{overflow:hidden;text-overflow:ellipsis;width:100%;margin-left:15px;color:var(--lineColorActive);white-space:nowrap}.style_switchesItem__2h0hK:hover,.style_switchesItemActive__2MxKs{border:1px solid var(--lineColor);color:var(--lineColorHover);border-radius:6px;background:var(--backgroundColor);cursor:pointer}.style_iconTheme__36obM{width:30px!important;height:30px!important;margin-left:5px}.style_iconTheme__36obM *{color:var(--lineColorActive)!important}.style_cardStyle__2FqBU{cursor:pointer;position:relative;min-width:200px;width:calc(100% - 72px);height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;min-height:70px;display:flex;padding:10px;margin:23px 12px 4px;align-items:center;background:hsla(0,0%,100%,.4196078431372549);border-radius:4px;box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12)}.style_cardStyleActive__206Gb{width:300px;z-index:100}.style_controlMenu__9gHcU{display:flex;position:absolute;right:-31px;width:30px;height:100%;transition:opacity .5s}.style_closeBtn__Mhw4C{width:20px;height:20px;border-radius:20px;position:relative;z-index:1;margin:5px auto;cursor:pointer}.style_closeBtn__Mhw4C:before{content:"+";color:rgba(247,6,6,.5176470588235295);z-index:2;-webkit-transform:rotate(45deg);transform:rotate(45deg);font-size:30px;line-height:1;top:-6px;left:2px}.style_closeBtn__Mhw4C:after,.style_closeBtn__Mhw4C:before{position:absolute;transition:all .3s cubic-bezier(.77,0,.2,.85)}.style_closeBtn__Mhw4C:after{content:"";top:0;left:0;width:100%;height:100%;border-radius:100%;background:var(--backgroundColorHumburger);z-index:1;-webkit-transform:scale(.01);transform:scale(.01)}.style_closeBtn__Mhw4C:hover:after{-webkit-transform:scale(1);transform:scale(1)}.style_closeBtn__Mhw4C:hover:before{-webkit-transform:scale(.8) rotate(45deg);transform:scale(.8) rotate(45deg);color:#fff}.style_isDelete__1Hlpz{height:0;min-height:0;overflow:hidden;padding:0 10px;margin:0 12px;transition:all .25s;background:#fff;opacity:.8;box-shadow:0 0 10px #6accff}@media screen and (max-width:835px){.style_controlMenu__9gHcU{opacity:1!important}}.style_drag_mobile__-t97_{display:none}@media screen and (max-width:600px){.style_drag_mobile__-t97_{display:flex;width:30px;height:20px;background:repeating-linear-gradient(180deg,var(--lineColorActive),var(--lineColorActive) 4px,var(--backgroundColorHumburger) 0,var(--backgroundColorHumburger) 8px);border:1px solid var(--lineColorActive);border-radius:5px 0 0 0;position:absolute;top:0;left:0;cursor:pointer}}@-webkit-keyframes style_fadeIn__1Agdt{0%{opacity:0}1%{opacity:0}to{opacity:1}}@keyframes style_fadeIn__1Agdt{0%{opacity:0}1%{opacity:0}to{opacity:1}}.style_cardStyle__1Wrgh{cursor:pointer;position:relative;min-width:200px;width:calc(100% - 72px);height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;min-height:70px;display:flex;padding:10px;margin:23px 12px 4px;align-items:center;background:var(--backgroundBlock);border-radius:4px;box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12)}.style_nameCard__2uqAj{margin-top:0;font-size:19px;color:var(--colorBlock);font-weight:500}.style_cardStyleActive__1zo7h{width:300px;z-index:100}.style_iconThemCard__1CmFx{width:40px!important;height:40px!important;margin-left:5px}.style_iconThemCard__1CmFx *{color:var(--colorBlock)!important}.style_iconThemCardSelectable__2n4ez{cursor:pointer}.style_iconHelp__1rXyl{color:var(--colorBlock)!important;position:absolute!important;top:0;right:5px}.style_inputCard__2enAx{margin-top:10px!important}.style_blockName__PJas8{margin-left:10px;width:100%;display:flex;flex-direction:column;position:relative}.style_controlMenu__239QJ{display:flex;position:absolute;right:-31px;width:30px;height:100%;transition:opacity .5s}.style_closeBtn__2_yyI{width:20px;height:20px;border-radius:20px;position:relative;z-index:1;margin:5px auto;cursor:pointer}.style_closeBtn__2_yyI:before{content:"+";color:rgba(247,6,6,.5176470588235295);z-index:2;-webkit-transform:rotate(45deg);transform:rotate(45deg);font-size:30px;line-height:1;top:-6px;left:2px}.style_closeBtn__2_yyI:after,.style_closeBtn__2_yyI:before{position:absolute;transition:all .3s cubic-bezier(.77,0,.2,.85)}.style_closeBtn__2_yyI:after{content:"";top:0;left:0;width:100%;height:100%;border-radius:100%;background:rgba(153,78,158,.49019607843137253);z-index:1;-webkit-transform:scale(.01);transform:scale(.01)}.style_closeBtn__2_yyI:hover:after{-webkit-transform:scale(1);transform:scale(1)}.style_closeBtn__2_yyI:hover:before{-webkit-transform:scale(.8) rotate(45deg);transform:scale(.8) rotate(45deg);color:#fff}.style_controlMenuTop__3qElw{display:flex;position:absolute;left:0;width:100%;overflow:hidden;transition:opacity .5s,height .5s,top .5s}.style_debugInfo__VJzN5{font-size:12px;font-style:italic;color:var(--debugColor);position:absolute;display:flex;opacity:0;-webkit-animation:style_fadeIn__1Agdt .3s ease-out;animation:style_fadeIn__1Agdt .3s ease-out}.style_tagCard__2Wdiv{text-align:center;color:var(--lineColorActive);min-width:100px;height:22px;background:var(--backgroundColorHumburger);border-radius:5px 5px 0 0;position:relative;margin-left:auto;margin-right:8px;cursor:pointer;border-top:1px solid var(--lineColor);border-left:1px solid var(--lineColor);border-right:1px solid var(--lineColor);font-size:12px;padding:2px 2px 0}.style_displayFlex__DCxGG{display:flex;align-items:center}.style_blockMarginTop__3pUp3,.style_nameBlock__2grew{margin-top:7px}.style_frontText__2G8z3{margin-right:7px;min-width:80px;display:inline-table}.style_backText__2z9z-{margin-left:7px}.style_iconTag__2whZd{font-size:40px;color:var(--colorBlock);display:flex;align-items:center;min-width:40px;margin-bottom:10px;margin-left:12px}.style_displayItalic__15dOd{font-style:italic;font-size:11px;margin-top:0}.style_root__2A4bJ{color:var(--colorBlock)!important;border-color:var(--colorBlock)!important}.style_root__2A4bJ:hover{border-color:var(--colorBlockHover)!important;color:var(--colorBlockHover)!important;background-color:inherit!important}.style_square__9zSNd{min-width:auto!important;padding:6px 16px!important}.style_icon__hYogR{width:24px;height:24px}.style_root__3aMtm *{color:var(--colorBlock)!important}.style_root__30jKO{background:var(--backgroundColorHumburger);border-radius:5px;margin-top:0!important;margin-bottom:0!important}.style_root__30jKO *{color:var(--colorInput)!important}.style_root__30jKO [class*=MuiInputLabel-shrink]{color:var(--colorBlock)!important}.style_root__30jKO [class*=MuiInput-underline] :after{border-bottom-color:var(--lineColor)!important}.style_root__30jKO:hover [class*=MuiOutlinedInput-notchedOutline],.style_root__30jKO [class*=MuiOutlinedInput-notchedOutline],.style_root__30jKO [class*=MuiOutlinedInput-notchedOutline]:hover,.style_root__30jKO [class*=MuiOutlinedInput-notchedOutline] [class*=Mui-disabled],.style_root__30jKO [class*=MuiOutlinedInput-notchedOutline] [class*=Mui-focused]{border-color:var(--lineColor)!important}.style_modalContentWrapper__1RGJ8{margin:20px 0;padding:0 35px;overflow-x:hidden;min-width:320px}.style_modalButtonBlock__2C9UN{display:flex;justify-content:flex-end;margin-top:20px;flex-flow:wrap;border-color:var(--lineColorActive);border-top:1px solid var(--lineColorActive);background:var(--backgroundColorHumburger);border-radius:3}.style_modalButtonBlock__2C9UN button{color:var(--lineColorActive)!important;flex:1 1}.style_modalButtonBlockTwo__ZIOzv{justify-content:space-around;flex-flow:wrap-reverse;position:sticky;bottom:0}.style_modalButtonBlockTwo__ZIOzv button{margin:5px}.style_modalWrapper__3mJLW{position:relative}.style_modalWrapper__3mJLW [class*="MuiPaper-root MuiDialog-paper MuiPaper-elevation24 MuiDialog-paperScrollPaper MuiDialog-paperWidthXl MuiPaper-elevation24 MuiPaper-rounded"]{background-color:#f6f6f6}.style_modalDialog__3ISKq{min-width:400px}.style_close__uuE9r{position:absolute;right:-14px;top:-16px;width:32px;height:32px;opacity:.9;cursor:pointer;transition:all .6s ease}.style_close__uuE9r:hover{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.style_close__uuE9r:before{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.style_close__uuE9r:after,.style_close__uuE9r:before{position:absolute;left:15px;content:"";height:33px;width:4px;background-color:#ff4f4f}.style_close__uuE9r:after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}@media screen and (max-width:460px){.style_modalContentWrapper__1RGJ8{min-width:auto}}.style_root__2pluA{margin-top:0!important;margin-bottom:0!important;max-width:440px}.style_root__2pluA *,.style_root__2pluA [class*=MuiInputLabel-shrink]{color:var(--colorBlock)!important}.style_root__2pluA [class*=MuiInput-underline]:after,.style_root__2pluA [class*=MuiInput-underline]:before,.style_root__2pluA [class*=MuiInput-underline]:hover:before{border-bottom-color:var(--lineColor)!important}.style_root__4R7TB{color:var(--lineColorActive)!important;height:8px!important}.style_root__4R7TB [class*=MuiSlider-rail],.style_root__4R7TB [class*=MuiSlider-track]{height:8px!important;border-radius:4px}.style_root__4R7TB [class*=MuiSlider-valueLabel]{left:calc(-50% + 4px)}.style_root__4R7TB [class*=MuiSlider-thumb]{height:24px;width:24px;background-color:var(--colorBlock);border:2px solid;margin-top:-8px;margin-left:-12px}.style_root__4R7TB [class*=MuiSlider-thumb]:focus,.style_root__4R7TB [class*=MuiSlider-thumb]:hover,.style_root__4R7TB [class*=MuiSlider-thumb][class*=MuiSlider-active]{box-shadow:inherit!important}.style_root__4R7TB .style_mark__11YGO{background-color:transparent!important}.style_root__1YR91 *{color:var(--colorBlock)!important}.style_root__1YR91 [class*=Mui-checked]{color:var(--lineColor)!important}.style_root__1YR91 [class*=Mui-checked]+[class*=MuiSwitch-track]{background-color:var(--lineColor)!important}.style_root__2OJ3P{margin-top:0!important;margin-bottom:0!important}.style_root__2OJ3P *,.style_root__2OJ3P [class*=MuiInputLabel-shrink]{color:var(--colorBlock)!important}.style_root__2OJ3P [class*=MuiInput-underline]:after,.style_root__2OJ3P [class*=MuiInput-underline]:before,.style_root__2OJ3P [class*=MuiInput-underline]:hover:before{border-bottom-color:var(--lineColor)!important}.style_root__2VeWD{margin-top:0!important;margin-bottom:0!important}.style_root__2VeWD *,.style_root__2VeWD [class*=MuiInputLabel-shrink]{color:var(--colorBlock)!important}.style_root__2VeWD [class*=MuiInput-underline]:after,.style_root__2VeWD [class*=MuiInput-underline]:before,.style_root__2VeWD [class*=MuiInput-underline]:hover:before{border-bottom-color:var(--lineColor)!important}.style_border__qu_lo{border-left:1px solid var(--lineColor);border-right:1px solid var(--lineColor)}.style_emptyBlockStyle__2zeBd{cursor:pointer;width:auto;background:hsla(0,0%,100%,.12156862745098039);display:flex;margin:10px 40px 10px 10px;align-items:center;border-radius:4px}.style_emptyBlock__1w7XB{padding:10px;margin-top:10px;-webkit-animation:style_marginTop__1a3o- .12s;animation:style_marginTop__1a3o- .12s}.style_selectOnChange__28ShR{margin-left:12px;color:var(--lineColor)!important;width:calc(100% - 42px)}.style_selectOnChangeHelp__2x5b9{color:var(--lineColor);vertical-align:middle;cursor:pointer}.style_selectOnChangeHelpIcon__9KUqr{color:var(--lineColor)}@-webkit-keyframes style_marginTop__1a3o-{0%{padding:0;margin-top:70px;height:0}to{padding:10px;margin-top:10px}}@keyframes style_marginTop__1a3o-{0%{padding:0;margin-top:70px;height:0}to{padding:10px;margin-top:10px}}.style_emptyBlockNone__2MlEP{height:0;-webkit-animation:none;animation:none;transition:height .02s}.style_mainBlockItemRules__3R_h3{display:flex;flex:1 3;flex-direction:column;transition:all .5s;z-index:9;overflow:auto}.style_mainBlockItemRules__3R_h3 .style_nameBlockItems__2381u{color:var(--lineColor);margin-top:10px;width:100%;display:flex;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;justify-content:center;align-items:center}.style_contentBlockItem__35DrZ{height:100%;display:flex;flex-direction:column;overflow:auto;transition:height .3s,background .5s}.style_wrapperMargin__2cgmH{margin:auto 0;display:flex;flex-direction:column}.style_contentHeightOn__2Wa9E{-webkit-animation:style_heightBlock__1N27D .3s;animation:style_heightBlock__1N27D .3s}@-webkit-keyframes style_heightBlock__1N27D{0%{height:0}to{height:100%}}@keyframes style_heightBlock__1N27D{0%{height:0}to{height:100%}}.style_contentHeightOff__V5Nur{height:0;overflow:hidden;-webkit-animation:none;animation:none}.style_cardAdd__34m12{display:flex;align-items:center;text-align:center;margin:0 10px;width:100%;color:var(--lineColor)}.style_cardAdd__34m12:after,.style_cardAdd__34m12:before{content:"";flex:1 1;border-bottom:1px solid}.style_cardAdd__34m12:after{margin-left:.25em}.style_cardAdd__34m12:before{margin-right:.25em}.style_blockCardAdd__2bIUa{display:flex;padding:0 10px 6px;align-items:center;color:#fff;cursor:pointer}.style_blockCardAdd__2bIUa *{color:hsla(0,0%,100%,.7019607843137254)}.style_addClassOverflow__25dVh{overflow:initial}.style_addClassHeight__ShDZ1{min-height:300px}@media screen and (max-width:835px){.style_mainBlockItemRules__3R_h3{overflow:initial}.style_contentBlockItem__35DrZ{min-height:300px}.style_contentHeightOff__V5Nur{min-height:0;transition:min-height .3s}.style_contentHeightOn__2Wa9E{transition:min-height .3s}.style_border__qu_lo{border-left:initial;border-right:initial}}.style_drag__2OV0V{width:32px;height:22px;position:absolute;top:23px;left:12px;z-index:1;cursor:pointer}.style_root__1hb5D{position:relative}.style_menuRules__4ggtB{width:200px;display:flex;flex-direction:column;background:var(--backgroundColor);border-right:1px solid var(--lineColor);padding:10px;opacity:1;overflow-x:hidden;transition:width .5s,opacity .2s,padding .5s,background .2s,border-right .2s}.style_switchesRenderWrapper__VIgiB{overflow-x:hidden;overflow-y:auto;direction:rtl}.style_switchesRenderWrapper__VIgiB span{direction:ltr}.style_menuOff__1VSEU{width:0;opacity:0;padding:0}.style_menuTitle__2l_P9{display:flex;align-items:center;text-align:center;color:var(--lineColor);white-space:nowrap;transition:color .2s}.style_menuTitle__2l_P9:after,.style_menuTitle__2l_P9:before{content:"";flex:1 1;border-bottom:1px solid}.style_marginAuto__3mSSs{margin-top:auto;margin-bottom:20px}.style_inputWidth__1OEeq{margin-top:0!important;margin-bottom:5px!important}.style_menuWrapper__d9Hwl{display:flex;height:100%}.style_hamburgerWrapper__1rLfl{position:absolute;width:32px;height:26px;background:var(--backgroundColorHumburger);border-radius:0 5px 5px 0;display:flex;justify-content:center;padding-top:10px;left:221px;top:30px;border:1px solid var(--lineColor);cursor:pointer;transition:left .5s,border-radius .7s,width .7s,height .7s,background .2s,border .2s;z-index:10}.style_hamburgerOff__3a8CV{left:20px;padding-top:12px;border-radius:20px;width:40px;height:28px}.style_nothingFound__2MnKx{color:var(--lineColor);margin:16px;font-size:21px;transition:color .2s}.style_resetSearch__123ZC{font-weight:700;color:var(--lineColor);cursor:pointer;margin:10px 0;transition:color .3s,font-size .3s}.style_resetSearch__123ZC:hover{color:var(--lineColorHover);font-size:22px}.style_controlPanel__4ZUlZ{display:flex;align-items:center;width:200px}.style_controlPanel__4ZUlZ button{width:33.3333333333%;min-width:auto;color:var(--lineColor);transition:color .2s}.style_controlPanel__4ZUlZ .style_controlPanelAppBar__2axOZ{background:none;box-shadow:none}.style_controlPanel__4ZUlZ [class*=Mui-selected]{color:var(--lineColorActive)!important}.style_controlPanel__4ZUlZ [class*=MuiTabs-indicator]{background-color:var(--lineColorActive)}.style_controlPanel__4ZUlZ [class*=Mui-disabled]{color:rgba(33,0,37,.8)!important}.style_addClassMenu__M1GVU{position:absolute;z-index:12;top:0}.style_addClassBackground__1lRy2{background:var(--backgroundMobile)}.style_addClassPosition__104dS{position:sticky;top:0;left:0;z-index:2222}@media screen and (max-width:1035px){.style_menuWrapper__d9Hwl{position:absolute;z-index:12;top:0}.style_menuRules__4ggtB{background:var(--backgroundMobile)}}@media screen and (max-width:835px){.style_menuRules__4ggtB{position:sticky;top:0;left:0;z-index:2222}}.hamburgerMenu_menu_wrapper__1ptCg{outline:0;outline-offset:0;margin-top:12px;cursor:pointer}.hamburgerMenu_hamburgerMenu__2cxXi,.hamburgerMenu_hamburgerMenu__2cxXi:after,.hamburgerMenu_hamburgerMenu__2cxXi:before{width:20px;height:2px}.hamburgerMenu_hamburgerMenu__2cxXi{position:relative;-webkit-transform:translateY(7px);transform:translateY(7px);background:var(--lineColorActive);transition:all 0ms .3s}.hamburgerMenu_hamburgerMenu__2cxXi.hamburgerMenu_animate__2W8Ju{background:rgba(223,189,236,0)}.hamburgerMenu_hamburgerMenu__2cxXi:before{content:"";position:absolute;left:0;bottom:7px;background:var(--lineColorActive);transition:bottom .3s cubic-bezier(.23,1,.32,1) .3s,-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:bottom .3s cubic-bezier(.23,1,.32,1) .3s,transform .3s cubic-bezier(.23,1,.32,1);transition:bottom .3s cubic-bezier(.23,1,.32,1) .3s,transform .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1)}.hamburgerMenu_hamburgerMenu__2cxXi:after{content:"";position:absolute;left:0;top:7px;background:var(--lineColorActive);transition:top .3s cubic-bezier(.23,1,.32,1) .3s,-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:top .3s cubic-bezier(.23,1,.32,1) .3s,transform .3s cubic-bezier(.23,1,.32,1);transition:top .3s cubic-bezier(.23,1,.32,1) .3s,transform .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1)}.hamburgerMenu_hamburgerMenu__2cxXi.hamburgerMenu_animate__2W8Ju:after{top:0;-webkit-transform:rotate(45deg);transform:rotate(45deg);transition:top .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1) .3s;transition:top .3s cubic-bezier(.23,1,.32,1),transform .3s cubic-bezier(.23,1,.32,1) .3s;transition:top .3s cubic-bezier(.23,1,.32,1),transform .3s cubic-bezier(.23,1,.32,1) .3s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .3s}.hamburgerMenu_hamburgerMenu__2cxXi.hamburgerMenu_animate__2W8Ju:before{bottom:0;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);transition:bottom .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1) .3s;transition:bottom .3s cubic-bezier(.23,1,.32,1),transform .3s cubic-bezier(.23,1,.32,1) .3s;transition:bottom .3s cubic-bezier(.23,1,.32,1),transform .3s cubic-bezier(.23,1,.32,1) .3s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .3s}.hamburgerMenu_menu_conatiner_wrapper__2xDC-{display:none}:root.blue,:root.colored{--backgroundColor:rgba(48,82,129,0.23137254901960785);--lineColor:rgba(76,170,244,0.49019607843137253);--lineColorHover:#ccceff;--lineColorActive:#4caaf4;--backgroundColorHumburger:rgba(67,106,147,0.7215686274509804);--colorBlock:#02124b;--colorBlockHover:rgba(2,18,75,0.5490196078431373);--colorInput:#02124b;--backgroundBlock:rgba(201,231,255,0.6705882352941176);--backgroundGlobalColor:hsla(0,0%,100%,0);--backgroundMobile:rgba(4,28,53,0.8313725490196079);--debugColor:#c6511b}:root.dark{--backgroundColor:rgba(31,31,31,0.23);--lineColor:hsla(0,0%,95.3%,0.49019607843137253);--lineColorActive:#dedede;--backgroundColorHumburger:rgba(62,62,62,0.7215686274509804);--colorBlock:#080808;--colorBlockHover:rgba(8,8,8,0.5490196078431373);--colorInput:#ddd;--backgroundBlock:hsla(0,0%,75.7%,0.6705882352941176);--backgroundGlobalColor:rgba(28,28,28,0.93);--backgroundMobile:rgba(4,3,3,0.9215686274509803)}:root.dark,:root.light{--lineColorHover:#a0a0a0;--debugColor:#c6511b}:root.light{--backgroundColor:rgba(49,49,49,0.23137254901960785);--lineColor:rgba(0,1,37,0.49019607843137253);--lineColorActive:#07002f;--backgroundColorHumburger:rgba(51,53,66,0.6392156862745098);--colorBlock:#090929;--colorBlockHover:rgba(199,198,198,0.5490196078431373);--colorInput:#090929;--backgroundBlock:#000;--backgroundGlobalColor:hsla(0,0%,100%,0.25098039215686274);--backgroundMobile:rgba(180,178,199,0.7490196078431373)}
2
- /*# sourceMappingURL=main.90c24dba.chunk.css.map */
@@ -1 +0,0 @@
1
- {"version":3,"sources":["webpack://src/index.css","webpack://src/Components/RulesEditor/style.module.scss","webpack://src/Components/RulesEditor/components/CardMenu/style.module.scss","webpack://src/Components/RulesEditor/components/CurrentItem/style.module.scss","webpack://src/Components/RulesEditor/components/GenericBlock/style.module.scss","webpack://src/Components/RulesEditor/components/CustomButton/style.module.scss","webpack://src/Components/RulesEditor/components/CustomCheckbox/style.module.scss","webpack://src/Components/RulesEditor/components/CustomInput/style.module.scss","webpack://src/Components/RulesEditor/components/CustomModal/style.module.scss","webpack://src/Components/RulesEditor/components/CustomSelect/style.module.scss","webpack://src/Components/RulesEditor/components/CustomSlider/style.module.scss","webpack://src/Components/RulesEditor/components/CustomSwitch/style.module.scss","webpack://src/Components/RulesEditor/components/CustomTime/style.module.scss","webpack://src/Components/RulesEditor/components/CustomDate/style.module.scss","webpack://src/Components/RulesEditor/components/ContentBlockItems/style.module.scss","webpack://src/Components/RulesEditor/components/DragWrapper/style.module.scss","webpack://src/Components/RulesEditor/components/Menu/style.module.scss","webpack://src/Components/RulesEditor/components/HamburgerMenu/hamburgerMenu.module.scss","webpack://src/Components/RulesEditor/helpers/stylesVariables.scss"],"names":[],"mappings":"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","file":"main.90c24dba.chunk.css","sourcesContent":["html {\n width: 100%;\n height: 100%;\n}\n\nbody {\n overflow: hidden;\n margin: 0;\n padding: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Roboto\", \"Oxygen\",\n \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\",\n sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n width: 100%;\n height: 100%;\n}\n\n#root {\n width: 100%;\n height: 100%;\n}\n#___reactour > div:first-of-type {\n opacity: 0.4;\n}\n.layout-pane-primary {\n height: 100%\n}\n\n.blocklyToolboxDiv {\n /*left: -180px !important;*/\n left: 0 !important;\n width: 180px;\n top: 0 !important;\n height: 100% !important;\n}\n\n.no-underline:before {\n border-bottom: 0 !important;\n}\n.monaco-aria-container {\n top: 0;\n}\n\n.iobVerticalSplitter .layout-pane-primary {\n overflow: hidden;\n}\n\n.monacoCurrentLine {\n background: #59fd8c;\n}\n.monacoCurrentLineDark {\n background: #165b2c;\n}\n.monacoCurrentFullLine {\n background: #cbffdc;\n opacity: 0.7;\n}\n.monacoCurrentFullLineDark {\n background: #0e3b1f;\n opacity: 0.7;\n}\n.monacoBreakPointDark {\n background: #800000;\n border-radius: 50%;\n width: 16px !important;\n height: 16px !important;\n margin-left: 4px;\n}\n.monacoBreakPoint {\n background: #d71a1a;\n border-radius: 50%;\n width: 16px !important;\n height: 16px !important;\n margin-left: 4px;\n}",".wrapperRules {\n background: linear-gradient(0deg, var(--backgroundGlobalColor), var(--backgroundGlobalColor)),\n url(\"https://klike.net/uploads/posts/2020-04/1586763579_24.jpg\");\n background-repeat: no-repeat;\n background-size: cover;\n height: 100%;\n display: flex;\n}\n.rootWrapper {\n display: flex;\n width: 100%;\n}\n.addClass {\n flex-direction: column;\n height: auto;\n overflow: auto;\n}\n@media screen and (max-width: 835px) {\n .rootWrapper {\n flex-direction: column;\n height: auto;\n overflow: auto;\n }\n}\n",".switchesItem {\n max-width: 200px;\n width: auto;\n display: flex;\n margin: 5px 0;\n padding: 12px 0;\n align-items: center;\n border: 1px solid rgba(255, 255, 255, 0);\n transition: all 0.7s;\n color: var(--colorInput);\n span {\n overflow: hidden;\n text-overflow: ellipsis;\n width: 100%;\n margin-left: 15px;\n color: var(--lineColorActive);\n white-space: nowrap;\n }\n &:hover {\n border: 1px solid var(--lineColor);\n color: var(--lineColorHover);\n border-radius: 6px;\n background: var(--backgroundColor);\n cursor: pointer;\n }\n}\n.switchesItemActive {\n border: 1px solid var(--lineColor);\n color: var(--lineColorHover);\n border-radius: 6px;\n background: var(--backgroundColor);\n cursor: pointer;\n}\n.iconTheme {\n width: 30px !important;\n height: 30px !important;\n margin-left: 5px;\n * {\n color: var(--lineColorActive) !important;\n }\n}\n",".cardStyle {\n cursor: pointer;\n position: relative;\n min-width: 200px;\n width: calc(100% - 72px);\n height: fit-content;\n min-height: 70px;\n display: flex;\n padding: 10px;\n margin: 23px 12px 4px 12px;\n align-items: center;\n background: #ffffff6b;\n border-radius: 4px;\n box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);\n}\n.cardStyleActive {\n width: 300px;\n z-index: 100;\n}\n.controlMenu {\n display: flex;\n position: absolute;\n right: -31px;\n width: 30px;\n height: 100%;\n transition: opacity 0.5s;\n}\n.closeBtn {\n width: 20px;\n height: 20px;\n border-radius: 20px;\n position: relative;\n z-index: 1;\n margin: 5px auto;\n cursor: pointer;\n &:before {\n content: \"+\";\n color: #f7060684;\n position: absolute;\n z-index: 2;\n transform: rotate(45deg);\n font-size: 30px;\n line-height: 1;\n top: -6px;\n left: 2px;\n transition: all 0.3s cubic-bezier(0.77, 0, 0.2, 0.85);\n }\n &:after {\n content: \"\";\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n border-radius: 100%;\n background: var(--backgroundColorHumburger);\n z-index: 1;\n transition: all 0.3s cubic-bezier(0.77, 0, 0.2, 0.85);\n transform: scale(0.01);\n }\n &:hover:after {\n transform: scale(1);\n }\n &:hover:before {\n transform: scale(0.8) rotate(45deg);\n color: #fff;\n }\n}\n.isDelete {\n height: 0;\n min-height: 0;\n overflow: hidden;\n padding: 0 10px;\n margin: 0 12px 0 12px;\n transition: all 0.25s;\n background: rgb(255, 255, 255);\n opacity: 0.8;\n box-shadow: 0 0 10px rgb(106 204 255);\n}\n@media screen and (max-width: 835px) {\n .controlMenu {\n opacity: 1 !important;\n }\n}\n.drag_mobile {\n display: none;\n}\n@media screen and (max-width: 600px) {\n .drag_mobile {\n display: flex;\n width: 30px;\n height: 20px;\n background: repeating-linear-gradient(\n 180deg,\n var(--lineColorActive),\n var(--lineColorActive) 4px,\n var(--backgroundColorHumburger) 4px,\n var(--backgroundColorHumburger) 8px\n );\n border: 1px solid var(--lineColorActive);\n border-radius: 5px 0 0 0;\n position: absolute;\n top: 0;\n left: 0;\n cursor: pointer;\n }\n}\n","@keyframes fadeIn {\n 0% {\n opacity: 0;\n }\n\n 1% {\n opacity: 0;\n }\n\n 100% {\n opacity: 1;\n }\n}\n\n\n.cardStyle {\n cursor: pointer;\n position: relative;\n min-width: 200px;\n width: calc(100% - 72px);\n height: fit-content;\n min-height: 70px;\n display: flex;\n padding: 10px;\n margin: 23px 12px 4px 12px;\n align-items: center;\n background: var(--backgroundBlock);\n border-radius: 4px;\n box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14),\n 0 1px 3px 0 rgba(0, 0, 0, 0.12);\n}\n.nameCard {\n margin-top: 0;\n font-size: 19px;\n color: var(--colorBlock);\n font-weight: 500;\n}\n.cardStyleActive {\n width: 300px;\n z-index: 100;\n}\n.iconThemCard {\n width: 40px !important;\n height: 40px !important;\n margin-left: 5px;\n * {\n color: var(--colorBlock) !important;\n }\n}\n.iconThemCardSelectable {\n cursor: pointer;\n}\n.iconHelp {\n color: var(--colorBlock) !important;\n position: absolute !important;\n top: 0;\n right: 5px;\n}\n.inputCard {\n margin-top: 10px !important;\n}\n.blockName {\n margin-left: 10px;\n width: 100%;\n display: flex;\n flex-direction: column;\n position: relative;\n}\n.controlMenu {\n display: flex;\n position: absolute;\n right: -31px;\n width: 30px;\n height: 100%;\n transition: opacity 0.5s;\n}\n.closeBtn {\n width: 20px;\n height: 20px;\n border-radius: 20px;\n position: relative;\n z-index: 1;\n margin: 5px auto;\n cursor: pointer;\n &:before {\n content: \"+\";\n color: #f7060684;\n position: absolute;\n z-index: 2;\n transform: rotate(45deg);\n font-size: 30px;\n line-height: 1;\n top: -6px;\n left: 2px;\n transition: all 0.3s cubic-bezier(0.77, 0, 0.2, 0.85);\n }\n &:after {\n content: \"\";\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n border-radius: 100%;\n background: #994e9e7d;\n z-index: 1;\n transition: all 0.3s cubic-bezier(0.77, 0, 0.2, 0.85);\n transform: scale(0.01);\n }\n &:hover:after {\n transform: scale(1);\n }\n &:hover:before {\n transform: scale(0.8) rotate(45deg);\n color: #fff;\n }\n}\n.controlMenuTop {\n display: flex;\n position: absolute;\n left: 0;\n width: 100%;\n overflow: hidden;\n transition: opacity 0.5s, height 0.5s, top 0.5s;\n}\n.debugInfo {\n font-size: 12px;\n font-style: italic;\n color: var(--debugColor);\n position: absolute;\n display: flex;\n opacity: 0;\n animation: fadeIn 0.3s ease-out;\n}\n.tagCard {\n text-align: center;\n color: var(--lineColorActive);\n min-width: 100px;\n padding: 0 2px;\n height: 22px;\n background: var(--backgroundColorHumburger);\n border-radius: 5px 5px 0 0;\n position: relative;\n margin-left: auto;\n margin-right: 8px;\n cursor: pointer;\n border-top: 1px solid var(--lineColor);\n border-left: 1px solid var(--lineColor);\n border-right: 1px solid var(--lineColor);\n font-size: 12px;\n padding-top: 2px;\n}\n.displayFlex {\n display: flex;\n align-items: center;\n}\n.blockMarginTop,\n.nameBlock {\n margin-top: 7px;\n}\n.frontText {\n margin-right: 7px;\n min-width: 80px;\n display: inline-table;\n}\n.backText {\n margin-left: 7px;\n}\n.iconTag {\n font-size: 40px;\n color: var(--colorBlock);\n display: flex;\n align-items: center;\n min-width: 40px;\n margin-bottom: 10px;\n margin-left: 12px;\n}\n.displayItalic {\n font-style: italic;\n font-size: 11px;\n margin-top: 0;\n}\n",".root {\n color: var(--colorBlock) !important;\n border-color: var(--colorBlock) !important;\n &:hover {\n border-color: var(--colorBlockHover) !important;\n color: var(--colorBlockHover) !important;\n background-color: inherit !important;\n }\n}\n.square{\n min-width: auto !important;\n padding: 6px 16px !important;\n}\n.icon {\n width: 24px;\n height: 24px;\n}",".root {\n * {\n color: var(--colorBlock) !important;\n }\n}\n",".root {\n background: var(--backgroundColorHumburger);\n border-radius: 5px;\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n * {\n color: var(--colorInput) !important;\n }\n [class*=\"MuiInputLabel-shrink\"] {\n color: var(--colorBlock) !important;\n }\n [class*=\"MuiInput-underline\"] {\n :after {\n border-bottom-color: var(--lineColor) !important;\n }\n }\n &:hover {\n [class*=\"MuiOutlinedInput-notchedOutline\"] {\n border-color: var(--lineColor) !important;\n }\n }\n [class*=\"MuiOutlinedInput-notchedOutline\"] {\n border-color: var(--lineColor) !important;\n &:hover {\n border-color: var(--lineColor) !important;\n }\n [class*=\"Mui-focused\"] {\n border-color: var(--lineColor) !important;\n }\n [class*=\"Mui-disabled\"] {\n border-color: var(--lineColor) !important;\n }\n }\n}\n\n.icon {\n\n}\n",".modalContentWrapper {\n margin: 20px 0;\n padding: 0 35px;\n overflow-x: hidden;\n min-width: 320px;\n}\n.modalButtonBlock {\n display: flex;\n justify-content: flex-end;\n margin-top: 20px;\n flex-flow: wrap;\n border-top: 1px solid var(--lineColorActive);\n border-color: var(--lineColorActive);\n background: var(--backgroundColorHumburger);\n border-radius: 3;\n & button {\n color: var(--lineColorActive) !important;\n flex: 1;\n }\n}\n.modalButtonBlockTwo {\n justify-content: space-around;\n flex-flow: wrap-reverse;\n position: sticky;\n bottom: 0;\n & button {\n margin: 5px;\n }\n}\n.modalWrapper {\n position: relative;\n [class*=\"MuiPaper-root MuiDialog-paper MuiPaper-elevation24 MuiDialog-paperScrollPaper MuiDialog-paperWidthXl MuiPaper-elevation24 MuiPaper-rounded\"] {\n background-color: #f6f6f6;\n }\n}\n.modalDialog {\n min-width: 400px;\n}\n.close {\n position: absolute;\n right: -14px;\n top: -16px;\n width: 32px;\n height: 32px;\n opacity: 0.9;\n cursor: pointer;\n transition: all 0.6s ease;\n &:hover {\n transform: rotate(90deg);\n }\n &:before {\n position: absolute;\n left: 15px;\n content: \"\";\n height: 33px;\n width: 4px;\n background-color: #ff4f4f;\n transform: rotate(45deg);\n }\n &:after {\n position: absolute;\n left: 15px;\n content: \"\";\n height: 33px;\n width: 4px;\n background-color: #ff4f4f;\n transform: rotate(-45deg);\n }\n}\n@media screen and (max-width: 460px) {\n .modalContentWrapper {\n min-width: auto;\n }\n}\n",".root {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n max-width: 440px;\n * {\n color: var(--colorBlock) !important;\n }\n [class*=\"MuiInputLabel-shrink\"] {\n color: var(--colorBlock) !important;\n }\n [class*=\"MuiInput-underline\"] {\n &:after {\n border-bottom-color: var(--lineColor) !important;\n }\n &:before {\n border-bottom-color: var(--lineColor) !important;\n }\n &:hover {\n &:before {\n border-bottom-color: var(--lineColor) !important;\n }\n }\n }\n}\n",".root {\n color: var(--lineColorActive) !important;\n height: 8px !important;\n [class*=\"MuiSlider-rail\"] {\n height: 8px !important;\n border-radius: 4px;\n }\n [class*=\"MuiSlider-track\"] {\n height: 8px !important;\n border-radius: 4px;\n }\n [class*=\"MuiSlider-valueLabel\"] {\n left: calc(-50% + 4px);\n }\n [class*=\"MuiSlider-thumb\"] {\n height: 24px;\n width: 24px;\n background-color: var(--colorBlock);\n border: 2px solid currentColor;\n margin-top: -8px;\n margin-left: -12px;\n &:focus,\n &:hover,\n &[class*=\"MuiSlider-active\"] {\n box-shadow: inherit !important;\n }\n }\n .mark {\n background-color: #00000000 !important;\n }\n}\n\n",".root {\n * {\n color: var(--colorBlock) !important;\n }\n [class*=\"Mui-checked\"] {\n color: var(--lineColor) !important;\n }\n [class*=\"Mui-checked\"] + [class*=\"MuiSwitch-track\"] {\n background-color: var(--lineColor) !important;\n }\n}\n",".root {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n * {\n color: var(--colorBlock) !important;\n }\n [class*=\"MuiInputLabel-shrink\"] {\n color: var(--colorBlock) !important;\n }\n [class*=\"MuiInput-underline\"] {\n &:after {\n border-bottom-color: var(--lineColor) !important;\n }\n &:before {\n border-bottom-color: var(--lineColor) !important;\n }\n &:hover {\n &:before {\n border-bottom-color: var(--lineColor) !important;\n }\n }\n }\n}\n",".root {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n * {\n color: var(--colorBlock) !important;\n }\n [class*=\"MuiInputLabel-shrink\"] {\n color: var(--colorBlock) !important;\n }\n [class*=\"MuiInput-underline\"] {\n &:after {\n border-bottom-color: var(--lineColor) !important;\n }\n &:before {\n border-bottom-color: var(--lineColor) !important;\n }\n &:hover {\n &:before {\n border-bottom-color: var(--lineColor) !important;\n }\n }\n }\n}\n",".border {\n border-left: 1px solid var(--lineColor);\n border-right: 1px solid var(--lineColor);\n}\n.emptyBlockStyle {\n cursor: pointer;\n width: auto;\n background: #ffffff1f;\n display: flex;\n // padding: 10px;\n margin: 10px 40px 10px 10px;\n align-items: center;\n border-radius: 4px;\n // transition: height 0.2s;\n}\n.emptyBlock {\n padding: 10px;\n // height: 76px;\n margin-top: 10px;\n animation: marginTop 0.12s;\n // transition: margin-top 0.1s;\n}\n.selectOnChange {\n margin-left: 12px;\n color: var(--lineColor) !important;\n width: calc(100% - 42px);\n}\n.selectOnChangeHelp {\n color: var(--lineColor);\n vertical-align: middle;\n cursor: pointer;\n}\n.selectOnChangeHelpIcon {\n color: var(--lineColor);\n}\n@keyframes marginTop {\n 0% {\n padding: 0;\n margin-top: 70px;\n height: 0;\n }\n 100% {\n padding: 10px;\n margin-top: 10px;\n // height: 100%;\n }\n}\n.emptyBlockNone {\n height: 0;\n animation: none;\n transition: height 0.02s;\n}\n\n.mainBlockItemRules {\n display: flex;\n flex: 1 3;\n flex-direction: column;\n transition: all 0.5s;\n z-index: 9;\n overflow: auto;\n .nameBlockItems {\n color: var(--lineColor);\n margin-top: 10px;\n width: 100%;\n display: flex;\n height: fit-content;\n justify-content: center;\n align-items: center;\n }\n}\n.contentBlockItem {\n height: 100%;\n display: flex;\n flex-direction: column;\n overflow: auto;\n transition: height 0.3s, background 0.5s;\n}\n\n.wrapperMargin {\n margin: auto 0;\n display: flex;\n flex-direction: column;\n}\n.contentHeightOn {\n animation: heightBlock 0.3s;\n}\n@keyframes heightBlock {\n 0% {\n height: 0;\n }\n 100% {\n height: 100%;\n }\n}\n.contentHeightOff {\n height: 0;\n overflow: hidden;\n animation: none;\n}\n.cardAdd {\n display: flex;\n align-items: center;\n text-align: center;\n margin: 0 10px;\n width: 100%;\n color: var(--lineColor);\n &::after,\n &::before {\n content: \"\";\n flex: 1;\n border-bottom: 1px solid;\n }\n &::after {\n margin-left: 0.25em;\n }\n &::before {\n margin-right: 0.25em;\n }\n}\n.blockCardAdd {\n display: flex;\n padding: 0 10px 6px 10px;\n align-items: center;\n color: white;\n cursor: pointer;\n * {\n color: #ffffffb3;\n }\n}\n.addClassOverflow {\n overflow: initial;\n}\n.addClassHeight {\n min-height: 300px;\n}\n@media screen and (max-width: 835px) {\n .mainBlockItemRules {\n overflow: initial;\n }\n .contentBlockItem {\n min-height: 300px;\n }\n .contentHeightOff {\n min-height: 0;\n transition: min-height 0.3s;\n }\n .contentHeightOn {\n transition: min-height 0.3s;\n }\n .border {\n border-left: initial;\n border-right: initial;\n }\n}\n",".drag {\n width: 32px;\n height: 22px;\n position: absolute;\n top: 23px;\n left: 12px;\n z-index: 1;\n cursor: pointer;\n}\n.root {\n position: relative;\n}\n",".menuRules {\n width: 200px;\n display: flex;\n flex-direction: column;\n background: var(--backgroundColor);\n border-right: 1px solid var(--lineColor);\n padding: 10px;\n opacity: 1;\n overflow-x: hidden;\n transition: width 0.5s, opacity 0.2s, padding 0.5s, background 0.2s, border-right 0.2s;\n}\n.switchesRenderWrapper {\n overflow-x: hidden;\n overflow-y: auto;\n direction: rtl;\n span {\n direction: ltr;\n }\n}\n.menuOff {\n width: 0;\n opacity: 0;\n padding: 0;\n}\n.menuTitle {\n display: flex;\n align-items: center;\n text-align: center;\n color: var(--lineColor);\n white-space: nowrap;\n transition: color 0.2s;\n &::after,\n &::before {\n content: \"\";\n flex: 1;\n border-bottom: 1px solid;\n }\n}\n.marginAuto {\n margin-top: auto;\n margin-bottom: 20px;\n}\n.inputWidth {\n margin-top: 0 !important;\n margin-bottom: 5px !important;\n}\n.menuWrapper {\n display: flex;\n height: 100%;\n}\n.hamburgerWrapper {\n position: absolute;\n width: 32px;\n height: 26px;\n background: var(--backgroundColorHumburger);\n border-radius: 0 5px 5px 0;\n display: flex;\n justify-content: center;\n padding-top: 10px;\n left: 221px;\n top: 30px;\n border: 1px solid var(--lineColor);\n cursor: pointer;\n transition: left 0.5s, border-radius 0.7s, width 0.7s, height 0.7s, background 0.2s, border 0.2s;\n z-index: 10;\n}\n.hamburgerOff {\n left: 20px;\n padding-top: 12px;\n border-radius: 20px;\n width: 40px;\n height: 28px;\n}\n.nothingFound {\n color: var(--lineColor);\n margin: 16px;\n font-size: 21px;\n transition: color 0.2s;\n}\n.resetSearch {\n font-weight: bold;\n color: var(--lineColor);\n cursor: pointer;\n margin: 10px 0;\n transition: color 0.3s, font-size 0.3s;\n &:hover {\n color: var(--lineColorHover);\n font-size: 22px;\n }\n}\n.controlPanel {\n display: flex;\n align-items: center;\n width: 200px;\n button {\n width: calc(100% / 3);\n min-width: auto;\n color: var(--lineColor);\n transition: color 0.2s;\n }\n .controlPanelAppBar {\n background: none;\n box-shadow: none;\n }\n [class*=\"Mui-selected\"] {\n color: var(--lineColorActive) !important;\n }\n [class*=\"MuiTabs-indicator\"] {\n background-color: var(--lineColorActive);\n }\n [class*=\"Mui-disabled\"] {\n color: #210025cc !important;\n }\n}\n.addClassMenu {\n position: absolute;\n z-index: 12;\n top: 0;\n}\n.addClassBackground {\n background: var(--backgroundMobile);\n}\n.addClassPosition {\n position: sticky;\n top: 0;\n left: 0;\n z-index: 2222;\n}\n@media screen and (max-width: 1035px) {\n .menuWrapper {\n position: absolute;\n z-index: 12;\n top: 0;\n }\n .menuRules {\n background: var(--backgroundMobile);\n }\n}\n@media screen and (max-width: 835px) {\n .menuRules {\n position: sticky;\n top: 0;\n left: 0;\n z-index: 2222;\n }\n}\n","$bar-width: 20px;\n$bar-height: 2px;\n$bar-spacing: 7px;\n\n.menu_wrapper {\n outline: 0;\n outline-offset: 0;\n margin-top: 12px;\n\tcursor: pointer;\n}\n\n.hamburgerMenu,\n.hamburgerMenu:after,\n.hamburgerMenu:before {\n width: $bar-width;\n\theight: $bar-height;\n}\n\n.hamburgerMenu {\n\tposition: relative;\n\ttransform: translateY($bar-spacing);\n\tbackground: var(--lineColorActive);\n\ttransition: all 0ms 300ms;\n \n &.animate {\n background: #dfbdec00; \n }\n}\n\n.hamburgerMenu:before {\n\tcontent: \"\";\n\tposition: absolute;\n\tleft: 0;\n\tbottom: $bar-spacing;\n\tbackground: var(--lineColorActive);\n\ttransition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);\n}\n\n.hamburgerMenu:after {\n\tcontent: \"\";\n\tposition: absolute;\n\tleft: 0;\n\ttop: $bar-spacing;\n\tbackground: var(--lineColorActive);\n\ttransition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);\n}\n\n.hamburgerMenu.animate:after {\n\ttop: 0;\n\ttransform: rotate(45deg);\n\ttransition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);;\n}\n\n.hamburgerMenu.animate:before {\n\tbottom: 0;\n\ttransform: rotate(-45deg);\n\ttransition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);;\n}\n.menu_conatiner_wrapper{\n display: none;\n}\n","$themeStandard: (\n --backgroundColor: #3052813b,\n --lineColor: #4caaf47d,\n --lineColorHover: #ccceff,\n --lineColorActive: #4caaf4,\n --backgroundColorHumburger: #436a93b8,\n --colorBlock: #02124b,\n --colorBlockHover: #02124b8c,\n --colorInput: #02124b,\n --backgroundBlock: #c9e7ffab,\n --backgroundGlobalColor: #ffffff00,\n --backgroundMobile: #041c35d4,\n --debugColor: #c6511b\n);\n$themeGreen: (\n --backgroundColor: #3081333b,\n --lineColor: #4cf4577d,\n --lineColorHover: #cdffcc,\n --lineColorActive: #4ff44c,\n --backgroundColorHumburger: #439346b8,\n --colorBlock: #024b04,\n --colorBlockHover: #024b048c,\n --colorInput: #024b04,\n --backgroundBlock: #c9ffcfab,\n --backgroundGlobalColor: #51ff001b,\n --backgroundMobile: #3081333b,\n --debugColor: #c6511b\n);\n$themeSilver: (\n --backgroundColor: rgba(31, 31, 31, 0.23),\n --lineColor: #f3f3f37d,\n --lineColorHover: #a0a0a0,\n --lineColorActive: #dedede,\n --backgroundColorHumburger: #3e3e3eb8,\n --colorBlock: #080808,\n --colorBlockHover: #0808088c,\n --colorInput: #ddd,\n --backgroundBlock: #c1c1c1ab,\n --backgroundGlobalColor: rgba(28, 28, 28, 0.93),\n --backgroundMobile: #040303eb,\n --debugColor: #c6511b\n);\n$themeLight: (\n --backgroundColor: #3131313b,\n --lineColor: #0001257d,\n --lineColorHover: #a0a0a0,\n --lineColorActive: #07002f,\n --backgroundColorHumburger: #333542a3,\n --colorBlock: #090929,\n --colorBlockHover: #c7c6c68c,\n --colorInput: #090929,\n --backgroundBlock: #000000,\n --backgroundGlobalColor: #ffffff40,\n --backgroundMobile: #b4b2c7bf,\n --debugColor: #c6511b\n);\n@mixin spread-map($map: ()) {\n @each $key, $value in $map {\n #{$key}: $value;\n }\n}\n:root.blue {\n @include spread-map($themeStandard);\n}\n:root.colored {\n @include spread-map($themeStandard);\n}\n:root.dark {\n @include spread-map($themeSilver);\n}\n:root.light {\n @include spread-map($themeLight);\n}"]}