@omnic/widget-locations 1.0.0

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.
Files changed (79) hide show
  1. package/README.md +47 -0
  2. package/dist/lib/src/api/client.d.ts +1 -0
  3. package/dist/lib/src/components/Aside/Aside.d.ts +9 -0
  4. package/dist/lib/src/components/Aside/index.d.ts +1 -0
  5. package/dist/lib/src/components/AsyncSelect/AsyncSelect.d.ts +9 -0
  6. package/dist/lib/src/components/AsyncSelect/index.d.ts +1 -0
  7. package/dist/lib/src/components/Balloon/Balloon.d.ts +9 -0
  8. package/dist/lib/src/components/Balloon/index.d.ts +1 -0
  9. package/dist/lib/src/components/Button/Button.d.ts +13 -0
  10. package/dist/lib/src/components/Button/index.d.ts +1 -0
  11. package/dist/lib/src/components/Checkbox/Checkbox.d.ts +2 -0
  12. package/dist/lib/src/components/Checkbox/index.d.ts +1 -0
  13. package/dist/lib/src/components/CheckboxGroup/CheckboxGroup.d.ts +9 -0
  14. package/dist/lib/src/components/CheckboxGroup/index.d.ts +1 -0
  15. package/dist/lib/src/components/CurrentLocation/CurrentLocation.d.ts +6 -0
  16. package/dist/lib/src/components/CurrentLocation/index.d.ts +1 -0
  17. package/dist/lib/src/components/Header/Header.d.ts +6 -0
  18. package/dist/lib/src/components/Header/index.d.ts +1 -0
  19. package/dist/lib/src/components/Hr/Hr.d.ts +4 -0
  20. package/dist/lib/src/components/Hr/index.d.ts +1 -0
  21. package/dist/lib/src/components/Layout/Layout.d.ts +6 -0
  22. package/dist/lib/src/components/Layout/index.d.ts +1 -0
  23. package/dist/lib/src/components/LocationAside/LocationAside.d.ts +1 -0
  24. package/dist/lib/src/components/LocationAside/index.d.ts +1 -0
  25. package/dist/lib/src/components/LocationDetailsModal/LocationDetailsModal.d.ts +10 -0
  26. package/dist/lib/src/components/LocationDetailsModal/index.d.ts +1 -0
  27. package/dist/lib/src/components/LocationSelector/LocationSelector.d.ts +9 -0
  28. package/dist/lib/src/components/LocationSelector/index.d.ts +1 -0
  29. package/dist/lib/src/components/MapGoogle/MapGoogle.constants.d.ts +4 -0
  30. package/dist/lib/src/components/MapGoogle/MapGoogle.d.ts +5 -0
  31. package/dist/lib/src/components/MapGoogle/index.d.ts +1 -0
  32. package/dist/lib/src/components/MapYandex/MapYandex.constants.d.ts +12 -0
  33. package/dist/lib/src/components/MapYandex/MapYandex.d.ts +4 -0
  34. package/dist/lib/src/components/MapYandex/MapYandex.utils.d.ts +23 -0
  35. package/dist/lib/src/components/MapYandex/index.d.ts +1 -0
  36. package/dist/lib/src/components/Overlay/Overlay.d.ts +7 -0
  37. package/dist/lib/src/components/Overlay/index.d.ts +1 -0
  38. package/dist/lib/src/components/Radio/Radio.d.ts +8 -0
  39. package/dist/lib/src/components/Radio/index.d.ts +1 -0
  40. package/dist/lib/src/components/Sidebar/Sidebar.d.ts +6 -0
  41. package/dist/lib/src/components/Sidebar/index.d.ts +1 -0
  42. package/dist/lib/src/components/Spinner/Spinner.d.ts +1 -0
  43. package/dist/lib/src/components/Spinner/index.d.ts +1 -0
  44. package/dist/lib/src/components/TypeFilter/TypeFilter.d.ts +9 -0
  45. package/dist/lib/src/components/TypeFilter/index.d.ts +1 -0
  46. package/dist/lib/src/constants/global.d.ts +1 -0
  47. package/dist/lib/src/constants/limits.d.ts +1 -0
  48. package/dist/lib/src/constants/map.d.ts +3 -0
  49. package/dist/lib/src/context/config.d.ts +3 -0
  50. package/dist/lib/src/context/filter.d.ts +9 -0
  51. package/dist/lib/src/context/location.d.ts +13 -0
  52. package/dist/lib/src/context/points.d.ts +11 -0
  53. package/dist/lib/src/hooks/index.d.ts +7 -0
  54. package/dist/lib/src/hooks/useConfig.d.ts +2 -0
  55. package/dist/lib/src/hooks/useFilters.d.ts +5 -0
  56. package/dist/lib/src/hooks/useInitializeAxios.d.ts +2 -0
  57. package/dist/lib/src/hooks/useLocation.d.ts +8 -0
  58. package/dist/lib/src/hooks/useLocationAside.d.ts +4 -0
  59. package/dist/lib/src/hooks/useMapFactory.d.ts +2 -0
  60. package/dist/lib/src/hooks/usePoints.d.ts +16 -0
  61. package/dist/lib/src/i18n.d.ts +127 -0
  62. package/dist/lib/src/index.d.ts +1 -0
  63. package/dist/lib/src/services/cities.d.ts +17 -0
  64. package/dist/lib/src/services/countries.d.ts +12 -0
  65. package/dist/lib/src/services/points.d.ts +11 -0
  66. package/dist/lib/src/types/cities.d.ts +11 -0
  67. package/dist/lib/src/types/config.d.ts +21 -0
  68. package/dist/lib/src/types/countries.d.ts +5 -0
  69. package/dist/lib/src/types/filters.d.ts +34 -0
  70. package/dist/lib/src/types/i18n.d.ts +2 -0
  71. package/dist/lib/src/types/map.d.ts +6 -0
  72. package/dist/lib/src/types/points.d.ts +56 -0
  73. package/dist/lib/src/types/regions.d.ts +5 -0
  74. package/dist/lib/src/views/Widget/Widget.d.ts +7 -0
  75. package/dist/lib/src/views/Widget/index.d.ts +1 -0
  76. package/dist/lib/style.css +1 -0
  77. package/dist/lib/widget.es.js +13334 -0
  78. package/dist/lib/widget.umd.js +76 -0
  79. package/package.json +66 -0
@@ -0,0 +1,21 @@
1
+ import { Locale } from "./i18n";
2
+ import { LocationPoint } from "./points";
3
+ type HexColor = `#${string}`;
4
+ export type MapProvider = "yandex" | "google";
5
+ interface Palette {
6
+ primary: HexColor;
7
+ "primary-dark": HexColor;
8
+ }
9
+ interface MapConfig {
10
+ provider: MapProvider;
11
+ }
12
+ export interface WidgetConfig {
13
+ font?: string;
14
+ locale?: Locale;
15
+ radius?: number;
16
+ map?: MapConfig;
17
+ palette?: Palette;
18
+ INN: number | string;
19
+ onPointClick: (point: LocationPoint) => void;
20
+ }
21
+ export {};
@@ -0,0 +1,5 @@
1
+ export interface Country {
2
+ uid: string;
3
+ name: string;
4
+ abbreviation: string;
5
+ }
@@ -0,0 +1,34 @@
1
+ export declare enum ETypeFilter {
2
+ All = 0,
3
+ PickPoint = 20,
4
+ PostOffice = 30
5
+ }
6
+ export type Hour = "00" | "01" | "02" | "03" | "04" | "05" | "06" | "07" | "08" | "09" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "23";
7
+ export type Minute = "00" | "01" | "02" | "03" | "04" | "05" | "06" | "07" | "08" | "09" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "23" | "24" | "25" | "26" | "27" | "28" | "29" | "30" | "31" | "32" | "33" | "34" | "35" | "36" | "37" | "38" | "39" | "40" | "41" | "42" | "43" | "44" | "45" | "46" | "47" | "48" | "49" | "50" | "51" | "52" | "53" | "54" | "55" | "56" | "57" | "58" | "59";
8
+ export type HoursMinutes = `${Hour}:${Minute}`;
9
+ export type WorkingHours = [HoursMinutes, HoursMinutes];
10
+ export declare enum EReceiveFilter {
11
+ PayByCash = 0,
12
+ DressingRoom = 1,
13
+ CheckOrder = 2
14
+ }
15
+ export declare enum ESendFilter {
16
+ Return = 0,
17
+ Payment = 1,
18
+ Shipping = 2
19
+ }
20
+ export interface Filter {
21
+ query: string;
22
+ type: ETypeFilter;
23
+ hours: WorkingHours;
24
+ send: {
25
+ [ESendFilter.Return]: boolean;
26
+ [ESendFilter.Payment]: boolean;
27
+ [ESendFilter.Shipping]: boolean;
28
+ };
29
+ receive: {
30
+ [EReceiveFilter.PayByCash]: boolean;
31
+ [EReceiveFilter.DressingRoom]: boolean;
32
+ [EReceiveFilter.CheckOrder]: boolean;
33
+ };
34
+ }
@@ -0,0 +1,2 @@
1
+ export type Namespaces = "common";
2
+ export type Locale = "en" | "ru";
@@ -0,0 +1,6 @@
1
+ import { LocationPoint } from "./points";
2
+ export interface MapProps {
3
+ loading?: boolean;
4
+ className?: string;
5
+ points: LocationPoint[];
6
+ }
@@ -0,0 +1,56 @@
1
+ import { City } from "./cities";
2
+ import { Region } from "./regions";
3
+ import { Country } from "./countries";
4
+ export interface PointsList {
5
+ next: string;
6
+ count: number;
7
+ num_pages: number;
8
+ current_page: number;
9
+ results: LocationPoint[];
10
+ }
11
+ export interface LocationPoint {
12
+ uid: string;
13
+ type: number;
14
+ code: string;
15
+ name: string;
16
+ brand: string;
17
+ status: number;
18
+ images: string[];
19
+ location: Location;
20
+ is_pickup: boolean;
21
+ max_weight: number;
22
+ max_length: number;
23
+ description: string;
24
+ schedule: Schedule[];
25
+ is_delivery: boolean;
26
+ pay_by_card: boolean;
27
+ pay_by_cash: boolean;
28
+ is_favorite: boolean;
29
+ near_station?: string;
30
+ location_name?: string;
31
+ is_check_order: boolean;
32
+ round_the_clock: boolean;
33
+ is_dressing_room: boolean;
34
+ near_metro_station?: string;
35
+ }
36
+ export interface Schedule {
37
+ end: string;
38
+ day: number;
39
+ start: string;
40
+ time?: string;
41
+ work_day?: boolean;
42
+ }
43
+ export interface Location {
44
+ city: City;
45
+ house: string;
46
+ block: string;
47
+ street: string;
48
+ office: string;
49
+ region: Region;
50
+ floor: unknown;
51
+ latitude: number;
52
+ country: Country;
53
+ longitude: number;
54
+ postal_index: string;
55
+ full_address: string;
56
+ }
@@ -0,0 +1,5 @@
1
+ export interface Region {
2
+ uid: string;
3
+ name: string;
4
+ national_id: string;
5
+ }
@@ -0,0 +1,7 @@
1
+ import { FC } from "react";
2
+ import { WidgetConfig } from '../../types/config';
3
+ interface WidgetProps {
4
+ config?: WidgetConfig;
5
+ }
6
+ export declare const Widget: FC<WidgetProps>;
7
+ export {};
@@ -0,0 +1 @@
1
+ export * from "./Widget";
@@ -0,0 +1 @@
1
+ #omnic-widget{--color-primary: #1760ee;--color-primary-dark: #194fb8;--color-secondary: #dfe1e5;--color-text-dark: #000000;--color-text-light: #ffffff;--color-text-disabled: #929db2;--color-border: #d3d7de;--radius: 8px;--font: "Roboto", sans-serif}html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;box-sizing:border-box}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:"";content:none}table{border-collapse:collapse;border-spacing:0}#omnic-widget{isolation:isolate;position:relative;font-family:var(--font);width:100%;height:100%}#_omnic-widget_dmd5b_1{--color-primary: #1760ee;--color-primary-dark: #194fb8;--color-secondary: #dfe1e5;--color-text-dark: #000000;--color-text-light: #ffffff;--color-text-disabled: #929db2;--color-border: #d3d7de;--radius: 8px;--font: "Roboto", sans-serif}._root_dmd5b_13{border:none;font-size:16px;font-weight:600;line-height:20px;cursor:pointer;transition:color .2s ease,background-color .2s ease}._root_dmd5b_13:disabled{cursor:default;pointer-events:none;color:var(--color-text-disabled)}button._root_dmd5b_13{padding-block:12px;min-width:240px;border-radius:var(--radius)}button._primary_dmd5b_33{color:var(--color-text-light);background-color:var(--color-primary)}button._primary_dmd5b_33:hover{background-color:var(--color-primary-dark)}button._secondary_dmd5b_41{color:var(--color-primary);background-color:var(--color-secondary)}a._root_dmd5b_13{text-decoration:none}a._primary_dmd5b_33{color:var(--color-primary)}a._primary_dmd5b_33:hover{color:var(--color-primary-dark)}a._secondary_dmd5b_41{color:var(--color-text-disabled)}a._secondary_dmd5b_41:hover{color:var(--color-text-dark)}#_omnic-widget_1et4q_1{--color-primary: #1760ee;--color-primary-dark: #194fb8;--color-secondary: #dfe1e5;--color-text-dark: #000000;--color-text-light: #ffffff;--color-text-disabled: #929db2;--color-border: #d3d7de;--radius: 8px;--font: "Roboto", sans-serif}._root_1et4q_13{display:flex;gap:10px;align-items:center;cursor:pointer}._text_1et4q_20{font-size:16px;line-height:19px}#_omnic-widget_19s9y_1{--color-primary: #1760ee;--color-primary-dark: #194fb8;--color-secondary: #dfe1e5;--color-text-dark: #000000;--color-text-light: #ffffff;--color-text-disabled: #929db2;--color-border: #d3d7de;--radius: 8px;--font: "Roboto", sans-serif}._root_19s9y_13{display:flex;align-items:center;gap:10px}@media (min-width: 1280px){._root_19s9y_13{justify-content:space-between}}@media (max-width: 1279px){._root_19s9y_13{flex-direction:column;align-items:flex-start}}._nav_19s9y_30{display:flex;align-items:center;gap:40px}@media (max-width: 1279px){._nav_19s9y_30{width:100%;gap:20px;justify-content:space-between}}._navItem_19s9y_43{text-align:center}@media (max-width: 1279px){._navItem_19s9y_43{font-size:14px}}@media (max-width: 1279px){._currentLocation_19s9y_53{width:100%;justify-content:flex-end}}#_omnic-widget_18jy5_1{--color-primary: #1760ee;--color-primary-dark: #194fb8;--color-secondary: #dfe1e5;--color-text-dark: #000000;--color-text-light: #ffffff;--color-text-disabled: #929db2;--color-border: #d3d7de;--radius: 8px;--font: "Roboto", sans-serif}._root_18jy5_13{margin-block:24px;border:none;height:1px;background-color:var(--color-secondary);border-radius:1px}#_omnic-widget_hjr45_1{--color-primary: #1760ee;--color-primary-dark: #194fb8;--color-secondary: #dfe1e5;--color-text-dark: #000000;--color-text-light: #ffffff;--color-text-disabled: #929db2;--color-border: #d3d7de;--radius: 8px;--font: "Roboto", sans-serif}._root_hjr45_13{appearance:none;background-color:var(--color-text-light);margin:0}._root_hjr45_13:before{content:"";display:inline-block;width:16px;height:16px;border-radius:50%;border:1px solid var(--color-border);background-color:var(--color-secondary);vertical-align:middle;transition:background-color .2s ease,border-color .2s ease}._root_hjr45_13:checked:before{background-color:var(--color-primary);border-color:var(--color-primary-dark)}._root_hjr45_13:disabled{border-color:var(--color-text-disabled);background-color:var(--color-text-disabled)}._root_hjr45_13:not(:disabled){cursor:pointer}._label_hjr45_43{display:flex;align-items:center;gap:8px;padding-block:8px;transition:color .2s ease;font-size:14px;font-weight:600;line-height:16px}._label_hjr45_43:has(._root_hjr45_13:checked){color:var(--color-primary)}._label_hjr45_43:has(._root_hjr45_13:not(:disabled)){cursor:pointer}#_omnic-widget_elqb6_1{--color-primary: #1760ee;--color-primary-dark: #194fb8;--color-secondary: #dfe1e5;--color-text-dark: #000000;--color-text-light: #ffffff;--color-text-disabled: #929db2;--color-border: #d3d7de;--radius: 8px;--font: "Roboto", sans-serif}._root_elqb6_13{display:flex;flex-direction:column;gap:10px}#_omnic-widget_jm75r_1{--color-primary: #1760ee;--color-primary-dark: #194fb8;--color-secondary: #dfe1e5;--color-text-dark: #000000;--color-text-light: #ffffff;--color-text-disabled: #929db2;--color-border: #d3d7de;--radius: 8px;--font: "Roboto", sans-serif}._root_jm75r_13{display:flex;flex-direction:column;gap:8px}._body_jm75r_19{display:flex;flex-direction:column}._legend_jm75r_24{font-size:16px;font-weight:600;line-height:22px}#_omnic-widget_16k69_1{--color-primary: #1760ee;--color-primary-dark: #194fb8;--color-secondary: #dfe1e5;--color-text-dark: #000000;--color-text-light: #ffffff;--color-text-disabled: #929db2;--color-border: #d3d7de;--radius: 8px;--font: "Roboto", sans-serif}._logo_16k69_13{margin-bottom:20px}._typeFilter_16k69_17{margin-bottom:44px}._separator_16k69_21{margin-top:48px}#_omnic-widget_duq29_1{--color-primary: #1760ee;--color-primary-dark: #194fb8;--color-secondary: #dfe1e5;--color-text-dark: #000000;--color-text-light: #ffffff;--color-text-disabled: #929db2;--color-border: #d3d7de;--radius: 8px;--font: "Roboto", sans-serif}._root_duq29_13{position:fixed;inset:0;opacity:0;transition:opacity .2s ease;isolation:isolate;pointer-events:none;backdrop-filter:blur(5px)}._root_duq29_13._open_duq29_22{opacity:1;pointer-events:all}._overlay_duq29_27{position:absolute;inset:0;width:200%;background-color:#1d366566;z-index:0}._container_duq29_35{position:absolute;top:0;right:0;bottom:0;z-index:1;width:580px;background-color:var(--color-text-light);transition:transform .2s ease;transform:translate(100%)}._root_duq29_13._open_duq29_22 ._container_duq29_35{transform:translate(0)}._header_duq29_50{display:grid;padding:20px;grid-template-areas:". close";grid-template-columns:1fr auto;margin-bottom:20px}._close_duq29_58{grid-area:close;cursor:pointer}._body_duq29_63{padding:0 30px 30px}#_omnic-widget_vt803_1{--color-primary: #1760ee;--color-primary-dark: #194fb8;--color-secondary: #dfe1e5;--color-text-dark: #000000;--color-text-light: #ffffff;--color-text-disabled: #929db2;--color-border: #d3d7de;--radius: 8px;--font: "Roboto", sans-serif}._root_vt803_13{display:flex;flex-direction:column;gap:8px}._root_vt803_13 ._control_vt803_18{min-height:56px;border-color:var(--color-border);border-radius:var(--radius)}._root_vt803_13 ._singleValue_vt803_23{color:var(--color-primary);font-weight:600;font-size:16px;line-height:20px}._root_vt803_13 ._indicatorSeparator_vt803_29{display:none}._root_vt803_13 ._option_vt803_32{padding:16px;font-size:16px;font-weight:600;line-height:20px}._root_vt803_13 ._option_vt803_32:not(:last-child){border-bottom:1px solid var(--color-border)}._root_vt803_13 ._menu_vt803_41{border-radius:var(--radius);border-color:var(--color-border)}._root_vt803_13 ._clearIndicator_vt803_45{cursor:pointer;transition:color .2s ease;color:var(--color-text-disabled)}._root_vt803_13 ._clearIndicator_vt803_45:hover{color:var(--color-primary)}._root_vt803_13 ._dropdownIndicator_vt803_53{cursor:pointer;color:var(--color-text-disabled);transition:color .2s ease}._root_vt803_13 ._dropdownIndicator_vt803_53:hover,._root_vt803_13 ._dropdownIndicatorFocused_vt803_61{color:var(--color-primary)}._root_vt803_13 ._indicatorsContainer_vt803_64{padding-inline:20px;gap:10px}._root_vt803_13 ._valueContainer_vt803_68{padding-left:20px}._label_vt803_72{font-size:16px;font-weight:600;line-height:22px}#_omnic-widget_igbh9_1{--color-primary: #1760ee;--color-primary-dark: #194fb8;--color-secondary: #dfe1e5;--color-text-dark: #000000;--color-text-light: #ffffff;--color-text-disabled: #929db2;--color-border: #d3d7de;--radius: 8px;--font: "Roboto", sans-serif}._submit_igbh9_13{margin-top:20px;width:100%}._option_igbh9_18{display:flex;align-items:center;justify-content:space-between}._selector_igbh9_24+._selector_igbh9_24{margin-top:40px}#_omnic-widget_nrmku_1{--color-primary: #1760ee;--color-primary-dark: #194fb8;--color-secondary: #dfe1e5;--color-text-dark: #000000;--color-text-light: #ffffff;--color-text-disabled: #929db2;--color-border: #d3d7de;--radius: 8px;--font: "Roboto", sans-serif}._root_nrmku_13{display:flex;flex-direction:column;gap:16px}._root_nrmku_13 ._submit_nrmku_18{min-width:unset;padding-inline:32px;border-radius:100vw}._header_nrmku_24{display:flex;align-items:center;gap:8px;padding-bottom:16px;border-bottom:1px solid var(--color-border)}._title_nrmku_32{font-size:16px;line-height:22px;font-weight:600}._description_nrmku_38{font-size:14px;font-weight:400;line-height:20px}._actions_nrmku_44{display:flex;gap:16px;align-items:center}#_omnic-widget_7at7t_1{--color-primary: #1760ee;--color-primary-dark: #194fb8;--color-secondary: #dfe1e5;--color-text-dark: #000000;--color-text-light: #ffffff;--color-text-disabled: #929db2;--color-border: #d3d7de;--radius: 8px;--font: "Roboto", sans-serif}._option_7at7t_13{display:grid;gap:12px;grid-template-columns:auto 1fr auto;align-items:center}#_omnic-widget_o4viw_1{--color-primary: #1760ee;--color-primary-dark: #194fb8;--color-secondary: #dfe1e5;--color-text-dark: #000000;--color-text-light: #ffffff;--color-text-disabled: #929db2;--color-border: #d3d7de;--radius: 8px;--font: "Roboto", sans-serif}._root_o4viw_13{position:absolute;background-color:var(--color-text-light);box-shadow:0 4px 16px #929db233;border:1px solid var(--color-border);border-radius:calc(var(--radius) * 2);overflow:hidden}._root_o4viw_13 ._submit_o4viw_21{width:100%;border-radius:100vw}._close_o4viw_26{position:absolute;top:16px;right:16px;color:var(--color-primary);cursor:pointer}._close_o4viw_26:hover{color:var(--color-primary-dark)}._title_o4viw_37{display:flex;align-items:center;gap:12px;font-size:16px;font-weight:600;line-height:20px}._title_o4viw_37 svg{width:50px;height:50px}._header_o4viw_50{padding:24px 16px 16px;border-bottom:1px solid var(--color-border)}._content_o4viw_55{display:flex;flex-direction:column;gap:24px;padding:16px;font-size:14px;line-height:20px;height:calc(100% - 175px);overflow-y:auto}._section_o4viw_66{display:flex;flex-direction:column;gap:4px}._section_o4viw_66 label{font-weight:600}._chips_o4viw_75{display:flex;gap:8px}._chip_o4viw_75{background-color:var(--color-secondary);border-radius:100vw;padding:8px 16px}._services_o4viw_86{display:flex;flex-direction:column;gap:4px}._images_o4viw_92{display:flex;gap:20px;max-width:100%;overflow-x:auto;scroll-snap-type:x mandatory;min-height:165px}._image_o4viw_92{flex-shrink:0;width:220px;aspect-ratio:220/140;scroll-snap-align:start;border-radius:var(--radius);object-fit:cover}._actions_o4viw_110{padding:16px 16px 24px}#_omnic-widget_13i4r_1{--color-primary: #1760ee;--color-primary-dark: #194fb8;--color-secondary: #dfe1e5;--color-text-dark: #000000;--color-text-light: #ffffff;--color-text-disabled: #929db2;--color-border: #d3d7de;--radius: 8px;--font: "Roboto", sans-serif}._root_13i4r_13{width:100%;height:100%;border:1px solid var(--color-border);border-radius:var(--radius);position:relative;isolation:isolate}._balloon_13i4r_22{max-width:400px}._details_13i4r_26{--offset: 20px;z-index:20;top:var(--offset);right:var(--offset);bottom:var(--offset);width:calc(50% - var(--offset))}@media (max-width: 1279px){._details_13i4r_26{left:var(--offset);width:calc(100% - var(--offset) * 2)}}._selector_13i4r_41{--offset: 10px;--geolocation-button-width: 28px;position:absolute;top:var(--offset);right:var(--offset);z-index:10;width:calc(50% - var(--offset))}@media (max-width: 1279px){._selector_13i4r_41{left:calc(var(--offset) * 2 + var(--geolocation-button-width));width:calc(100% - var(--offset) * 3 - var(--geolocation-button-width))}}#_omnic-widget_t2tu5_1{--color-primary: #1760ee;--color-primary-dark: #194fb8;--color-secondary: #dfe1e5;--color-text-dark: #000000;--color-text-light: #ffffff;--color-text-disabled: #929db2;--color-border: #d3d7de;--radius: 8px;--font: "Roboto", sans-serif}._loader_t2tu5_13,._loader_t2tu5_13:after{border-radius:50%;width:10em;height:10em}._loader_t2tu5_13{margin:60px auto;font-size:10px;position:relative;text-indent:-9999em;border-top:1.1em solid var(--color-text-disabled);border-right:1.1em solid var(--color-text-disabled);border-bottom:1.1em solid var(--color-text-disabled);border-left:1.1em solid var(--color-primary);transform:translateZ(0);animation:_loader_t2tu5_13 1.1s infinite linear}@-webkit-keyframes _loader_t2tu5_13{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes _loader_t2tu5_13{0%{transform:rotate(0)}to{transform:rotate(360deg)}}#_omnic-widget_ca5w9_1{--color-primary: #1760ee;--color-primary-dark: #194fb8;--color-secondary: #dfe1e5;--color-text-dark: #000000;--color-text-light: #ffffff;--color-text-disabled: #929db2;--color-border: #d3d7de;--radius: 8px;--font: "Roboto", sans-serif}._root_ca5w9_13{top:0;left:0;width:100%;height:100%;z-index:var(--z-index-overlay);background-color:var(--color-text-light);display:flex;justify-content:center;align-items:center;overflow:hidden}#_omnic-widget_vktz5_1{--color-primary: #1760ee;--color-primary-dark: #194fb8;--color-secondary: #dfe1e5;--color-text-dark: #000000;--color-text-light: #ffffff;--color-text-disabled: #929db2;--color-border: #d3d7de;--radius: 8px;--font: "Roboto", sans-serif}._root_vktz5_13{overflow:hidden;border:1px solid var(--color-border);border-radius:var(--radius);position:relative;isolation:isolate}._root_vktz5_13 .ymaps-2-1-79-balloon__close{position:absolute;color:var(--color-primary);top:0;right:0}._root_vktz5_13 .ymaps-2-1-79-balloon__close+.ymaps-2-1-79-balloon__content{margin-right:0;padding:16px;border-radius:var(--radius)}._root_vktz5_13 .ymaps-2-1-79-balloon{box-shadow:0 4px 16px #929db233;border-radius:var(--radius)}._overlay_vktz5_36{position:absolute;background-color:#fffc;backdrop-filter:blur(5px)}._selector_vktz5_42{--offset: 10px;--geolocation-button-width: 28px;position:absolute;top:var(--offset);right:var(--offset);z-index:10;width:calc(50% - var(--offset))}@media (max-width: 1279px){._selector_vktz5_42{left:calc(var(--offset) * 2 + var(--geolocation-button-width));width:calc(100% - var(--offset) * 3 - var(--geolocation-button-width))}}._details_vktz5_58{--offset: 20px;z-index:20;top:var(--offset);right:var(--offset);bottom:var(--offset);width:calc(50% - var(--offset))}@media (max-width: 1279px){._details_vktz5_58{left:var(--offset);width:calc(100% - var(--offset) * 2)}}#_omnic-widget_1d42u_1{--color-primary: #1760ee;--color-primary-dark: #194fb8;--color-secondary: #dfe1e5;--color-text-dark: #000000;--color-text-light: #ffffff;--color-text-disabled: #929db2;--color-border: #d3d7de;--radius: 8px;--font: "Roboto", sans-serif}._root_1d42u_13{width:100%;min-height:100%;display:grid;grid-template-areas:"sidebar header header" "sidebar map map" "sidebar map map";grid-template-columns:320px 1fr 1fr;grid-template-rows:80px 1fr 1fr;padding-inline:40px;padding-bottom:40px}@media (max-width: 1279px){._root_1d42u_13{grid-template-areas:"header" "sidebar" "map" "map";grid-template-columns:1fr;grid-template-rows:80px 1fr 1fr;padding-inline:20px;padding-block:20px;gap:20px}}#_omnic-widget_1nfdy_1{--color-primary: #1760ee;--color-primary-dark: #194fb8;--color-secondary: #dfe1e5;--color-text-dark: #000000;--color-text-light: #ffffff;--color-text-disabled: #929db2;--color-border: #d3d7de;--radius: 8px;--font: "Roboto", sans-serif}._map_1nfdy_13{grid-area:map}._sidebar_1nfdy_17{grid-area:sidebar;margin-top:24px;margin-right:40px}@media (max-width: 1279px){._sidebar_1nfdy_17{margin-top:0;margin-right:0}}._header_1nfdy_29{grid-area:header}