@megafon/ui-shared 9.3.0 → 9.4.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.
- package/dist/es/components/BenefitCards/BenefitCard/BenefitCard.css +1 -1
- package/dist/es/components/Card/Card.css +1 -1
- package/dist/es/components/Container/Container.css +1 -1
- package/dist/es/components/Container/Container.d.ts +13 -0
- package/dist/es/components/Container/Container.js +20 -6
- package/dist/es/components/ImageBanner/ImageBanner.css +1 -1
- package/dist/es/components/ImageBanner/ImageBanner.js +2 -4
- package/dist/es/components/Instructions/Instructions.css +1 -1
- package/dist/es/components/Instructions/Instructions.js +16 -10
- package/dist/lib/components/BenefitCards/BenefitCard/BenefitCard.css +1 -1
- package/dist/lib/components/Card/Card.css +1 -1
- package/dist/lib/components/Container/Container.css +1 -1
- package/dist/lib/components/Container/Container.d.ts +13 -0
- package/dist/lib/components/Container/Container.js +21 -6
- package/dist/lib/components/ImageBanner/ImageBanner.css +1 -1
- package/dist/lib/components/ImageBanner/ImageBanner.js +2 -4
- package/dist/lib/components/Instructions/Instructions.css +1 -1
- package/dist/lib/components/Instructions/Instructions.js +16 -10
- package/package.json +5 -5
|
@@ -9,7 +9,12 @@ export declare const BackgroundColors: {
|
|
|
9
9
|
readonly GREEN: "green";
|
|
10
10
|
readonly PURPLE: "purple";
|
|
11
11
|
};
|
|
12
|
+
export declare const PaddingSize: {
|
|
13
|
+
readonly DEFAULT: "default";
|
|
14
|
+
readonly MEDIUM: "medium";
|
|
15
|
+
};
|
|
12
16
|
type BackgroundColorType = (typeof BackgroundColors)[keyof typeof BackgroundColors];
|
|
17
|
+
type PaddingSizeType = (typeof PaddingSize)[keyof typeof PaddingSize];
|
|
13
18
|
type Props = {
|
|
14
19
|
/** Атрибут корневого тега */
|
|
15
20
|
id?: string;
|
|
@@ -22,6 +27,11 @@ type Props = {
|
|
|
22
27
|
root?: string;
|
|
23
28
|
inner?: string;
|
|
24
29
|
};
|
|
30
|
+
/** Дополнительные data атрибуты к внутренним элементам */
|
|
31
|
+
dataAttrs?: {
|
|
32
|
+
root?: Record<string, string>;
|
|
33
|
+
inner?: Record<string, string>;
|
|
34
|
+
};
|
|
25
35
|
/** Цвет фона */
|
|
26
36
|
backgroundColor?: BackgroundColorType;
|
|
27
37
|
/** Отключить отступ сверху */
|
|
@@ -38,6 +48,9 @@ type Props = {
|
|
|
38
48
|
bottomShadow?: boolean;
|
|
39
49
|
/** Предотвратить прохождение верхнего отступа дочернего компонента через верхнюю границу контейнера */
|
|
40
50
|
preventMarginTopCollapse?: boolean;
|
|
51
|
+
paddingTopSize?: PaddingSizeType;
|
|
52
|
+
paddingBottomSize?: PaddingSizeType;
|
|
53
|
+
enableMobileRadius?: boolean;
|
|
41
54
|
/** Дочерние элементы */
|
|
42
55
|
children?: React.ReactNode;
|
|
43
56
|
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import _extends from "@babel/runtime/helpers/extends";
|
|
1
2
|
import * as React from 'react';
|
|
2
3
|
import { ContentArea } from '@megafon/ui-core';
|
|
3
|
-
import { cnCreate } from '@megafon/ui-helpers';
|
|
4
|
+
import { cnCreate, filterDataAttrs } from '@megafon/ui-helpers';
|
|
4
5
|
import "./Container.css";
|
|
5
6
|
export var BackgroundColors = {
|
|
6
7
|
DEFAULT: 'default',
|
|
@@ -9,6 +10,10 @@ export var BackgroundColors = {
|
|
|
9
10
|
GREEN: 'green',
|
|
10
11
|
PURPLE: 'purple'
|
|
11
12
|
};
|
|
13
|
+
export var PaddingSize = {
|
|
14
|
+
DEFAULT: 'default',
|
|
15
|
+
MEDIUM: 'medium'
|
|
16
|
+
};
|
|
12
17
|
var cn = cnCreate('mfui-9-container');
|
|
13
18
|
var Container = function Container(_ref) {
|
|
14
19
|
var _ref$backgroundColor = _ref.backgroundColor,
|
|
@@ -17,6 +22,7 @@ var Container = function Container(_ref) {
|
|
|
17
22
|
id = _ref.id,
|
|
18
23
|
className = _ref.className,
|
|
19
24
|
classes = _ref.classes,
|
|
25
|
+
dataAttrs = _ref.dataAttrs,
|
|
20
26
|
children = _ref.children,
|
|
21
27
|
disablePaddingTop = _ref.disablePaddingTop,
|
|
22
28
|
disablePaddingBottom = _ref.disablePaddingBottom,
|
|
@@ -26,8 +32,13 @@ var Container = function Container(_ref) {
|
|
|
26
32
|
_ref$bottomShadow = _ref.bottomShadow,
|
|
27
33
|
bottomShadow = _ref$bottomShadow === void 0 ? false : _ref$bottomShadow,
|
|
28
34
|
_ref$preventMarginTop = _ref.preventMarginTopCollapse,
|
|
29
|
-
preventMarginTopCollapse = _ref$preventMarginTop === void 0 ? false : _ref$preventMarginTop
|
|
30
|
-
|
|
35
|
+
preventMarginTopCollapse = _ref$preventMarginTop === void 0 ? false : _ref$preventMarginTop,
|
|
36
|
+
_ref$paddingTopSize = _ref.paddingTopSize,
|
|
37
|
+
paddingTopSize = _ref$paddingTopSize === void 0 ? 'default' : _ref$paddingTopSize,
|
|
38
|
+
_ref$paddingBottomSiz = _ref.paddingBottomSize,
|
|
39
|
+
paddingBottomSize = _ref$paddingBottomSiz === void 0 ? 'default' : _ref$paddingBottomSiz,
|
|
40
|
+
enableMobileRadius = _ref.enableMobileRadius;
|
|
41
|
+
return /*#__PURE__*/React.createElement("div", _extends({}, filterDataAttrs(dataAttrs === null || dataAttrs === void 0 ? void 0 : dataAttrs.root), {
|
|
31
42
|
className: cn({
|
|
32
43
|
'bg-color': backgroundColor,
|
|
33
44
|
'bottom-shadow': bottomShadow,
|
|
@@ -38,11 +49,14 @@ var Container = function Container(_ref) {
|
|
|
38
49
|
}, [className, classes === null || classes === void 0 ? void 0 : classes.root]),
|
|
39
50
|
ref: rootRef,
|
|
40
51
|
id: id
|
|
41
|
-
}, /*#__PURE__*/React.createElement("div", {
|
|
52
|
+
}), /*#__PURE__*/React.createElement("div", _extends({}, filterDataAttrs(dataAttrs === null || dataAttrs === void 0 ? void 0 : dataAttrs.inner), {
|
|
42
53
|
className: cn('inner', {
|
|
43
|
-
prevent: preventMarginTopCollapse
|
|
54
|
+
prevent: preventMarginTopCollapse,
|
|
55
|
+
'padding-top-size': paddingTopSize,
|
|
56
|
+
'padding-bottom-size': paddingBottomSize,
|
|
57
|
+
'enable-mobile-radius': enableMobileRadius
|
|
44
58
|
}, [className, classes === null || classes === void 0 ? void 0 : classes.inner])
|
|
45
|
-
}, /*#__PURE__*/React.createElement(ContentArea, {
|
|
59
|
+
}), /*#__PURE__*/React.createElement(ContentArea, {
|
|
46
60
|
disableIndents: disableHorizontalIndents
|
|
47
61
|
}, children)));
|
|
48
62
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
h1,h2,h3,h4,h5{margin:0}.mfui-9-image-banner{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;overflow:hidden}@media screen and (min-width:1024px){.mfui-9-image-banner{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:420px}}.mfui-9-image-banner__picture{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-negative:0;flex-shrink:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@media screen and (min-width:1024px){.mfui-9-image-banner__picture{height:100%;max-width:672px;width:50%}}.mfui-9-image-banner__picture_v-align_top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.mfui-9-image-banner__picture_v-align_center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.mfui-9-image-banner__picture_v-align_bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.mfui-9-image-banner__image{display:block;max-height:150px;max-width:100%}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-image-banner__image{max-height:230px}}@media screen and (min-width:1024px){.mfui-9-image-banner__image{max-height:100%;-o-object-fit:contain;object-fit:contain}}.mfui-9-image-banner__content{z-index:1;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}@media screen and (max-width:1023px){.mfui-9-image-banner__content{padding:24px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-image-banner__content{text-align:center}}@media screen and (min-width:1024px){.mfui-9-image-banner__content{padding:0 80px;width:50%}}.mfui-9-image-banner__description{
|
|
1
|
+
h1,h2,h3,h4,h5{margin:0}.mfui-9-image-banner{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;overflow:hidden}@media screen and (min-width:1024px){.mfui-9-image-banner{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:420px}}.mfui-9-image-banner__picture{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-negative:0;flex-shrink:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@media screen and (min-width:1024px){.mfui-9-image-banner__picture{height:100%;max-width:672px;width:50%}}.mfui-9-image-banner__picture_v-align_top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.mfui-9-image-banner__picture_v-align_center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.mfui-9-image-banner__picture_v-align_bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.mfui-9-image-banner__image{display:block;max-height:150px;max-width:100%}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-image-banner__image{max-height:230px}}@media screen and (min-width:1024px){.mfui-9-image-banner__image{max-height:100%;-o-object-fit:contain;object-fit:contain}}.mfui-9-image-banner__content{z-index:1;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}@media screen and (max-width:1023px){.mfui-9-image-banner__content{padding:24px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-image-banner__content{text-align:center}}@media screen and (min-width:1024px){.mfui-9-image-banner__content{padding:0 80px;width:50%}}.mfui-9-image-banner__description{white-space:pre-wrap}.mfui-9-image-banner__cost,.mfui-9-image-banner__description{font-size:15px;font-weight:500;line-height:24px;margin-top:16px}.mfui-9-image-banner__value{display:inline;margin:0 4px}@media screen and (max-width:1023px),screen and (min-width:1024px) and (max-width:1279px){.mfui-9-image-banner__value{line-height:21px}}.mfui-9-image-banner__text,.mfui-9-image-banner__title{white-space:pre-wrap}.mfui-9-image-banner__children{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:16px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:32px}@media screen and (max-width:767px){.mfui-9-image-banner__children{-webkit-box-align:center;-ms-flex-align:center;align-items:center}}@media screen and (min-width:768px){.mfui-9-image-banner__children{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}@media screen and (min-width:1024px){.mfui-9-image-banner__children{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}@media screen and (max-width:1023px){.mfui-9-image-banner__badges-container{display:-webkit-box;display:-ms-flexbox;display:flex;gap:8px}}.mfui-9-image-banner__badges{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:8px;margin-bottom:16px}.mfui-9-image-banner__ad-block{margin:0 0 16px auto}@media screen and (min-width:1024px){.mfui-9-image-banner__ad-block{position:absolute;right:24px;top:24px}}.mfui-9-image-banner_margin-top{margin-top:24px}.mfui-9-image-banner_radius_rounded{border-radius:24px}@media screen and (max-width:1023px){.mfui-9-image-banner_full-height-on-mobile{height:100%}}@media screen and (min-width:1024px){.mfui-9-image-banner_auto-height .mfui-9-image-banner__content{padding:48px 80px}.mfui-9-image-banner_auto-height{height:auto}.mfui-9-image-banner_has-image .mfui-9-image-banner__content{padding-right:0}.mfui-9-image-banner_full-width .mfui-9-image-banner__image{bottom:0;display:block;max-width:unset;position:absolute;right:0}.mfui-9-image-banner_full-width.mfui-9-image-banner_auto-height .mfui-9-image-banner__image{height:100%;-o-object-fit:cover;object-fit:cover;width:100%}}.mfui-9-image-banner_background-color_green{background-color:var(--brandGreen)}.mfui-9-image-banner_background-color_purple{background-color:var(--brandPurple)}.mfui-9-image-banner_background-color_gradient{background:-webkit-gradient(linear,right top,left top,from(#ada6ba),to(#f6f2f9));background:linear-gradient(270deg,#ada6ba,#f6f2f9)}.mfui-9-image-banner_background-color_light{background-color:#f6f2f9}.mfui-9-image-banner_background-color_spbSky0{background-color:var(--spbSky0)}.mfui-9-image-banner_text-color_light .mfui-9-image-banner__content{color:var(--stcWhite)}.mfui-9-image-banner_text-color_dark .mfui-9-image-banner__content{color:var(--stcBlack)}
|
|
@@ -125,10 +125,8 @@ var ImageBanner = function ImageBanner(_ref2) {
|
|
|
125
125
|
color: "inherit",
|
|
126
126
|
as: isMobile ? headerLevelMobile : headerLevel,
|
|
127
127
|
tag: headerTag
|
|
128
|
-
}, typeof title === 'string' ? convert(title, titleConvertConfig) : title), !!description && /*#__PURE__*/React.createElement(
|
|
129
|
-
className: cn('description', [classes.description])
|
|
130
|
-
as: "h5",
|
|
131
|
-
color: "inherit"
|
|
128
|
+
}, typeof title === 'string' ? convert(title, titleConvertConfig) : title), !!description && /*#__PURE__*/React.createElement("div", {
|
|
129
|
+
className: cn('description', [classes.description])
|
|
132
130
|
}, typeof description === 'string' ? convert(description, titleConvertConfig) : description), !!cost && /*#__PURE__*/React.createElement("div", {
|
|
133
131
|
className: cn('cost', [classes.cost])
|
|
134
132
|
}, convert(cost, typographyConfig)), !!children && !!React.Children.count(children) && /*#__PURE__*/React.createElement("div", {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
h1,h2,h3,h4,h5{margin:0}.mfui-9-instructions__title_resolution_mobile{margin-bottom:32px;text-align:center}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions__title_resolution_mobile{margin-bottom:40px}}@media screen and (min-width:1024px){.mfui-9-instructions__title_resolution_mobile{display:none}}.mfui-9-instructions__title_resolution_desktop{margin-bottom:40px}@media screen and (max-width:1023px){.mfui-9-instructions__title_resolution_desktop{display:none}}.mfui-9-instructions .swiper-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}@media screen and (min-width:1024px){.mfui-9-instructions__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.mfui-9-instructions__wrapper_vertical-align_top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.mfui-9-instructions__wrapper_vertical-align_unset{-webkit-box-align:unset;-ms-flex-align:unset;align-items:unset}}.mfui-9-instructions .mfui-9-instructions__text{margin-top:32px}@media screen and (max-width:1023px){.mfui-9-instructions .mfui-9-instructions__text{margin-top:40px;text-align:center}}.mfui-9-instructions .mfui-9-instructions__button{display:block;margin-top:32px;max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content}@media screen and (max-width:1023px){.mfui-9-instructions .mfui-9-instructions__button{margin-left:auto;margin-right:auto}}@media screen and (min-width:768px){.mfui-9-instructions .mfui-9-instructions__button{margin-top:40px}}.mfui-9-instructions__picture{max-height:490px;max-width:530px;overflow:hidden;position:relative}@media screen and (max-width:1023px){.mfui-9-instructions__picture{margin:0 auto}}@media screen and (min-width:1024px){.mfui-9-instructions__picture{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;width:50%}.mfui-9-instructions__picture_align_left{-webkit-box-ordinal-group:1;-ms-flex-order:0;margin-right:40px;order:0}}.mfui-9-instructions_mask_none .mfui-9-instructions__slide{display:-webkit-box;display:-ms-flexbox;display:flex}.mfui-9-instructions_mask_none .mfui-9-instructions__swiper-img,.mfui-9-instructions_mask_none .mfui-9-instructions__swiper-img_video{border-radius:24px}.mfui-9-instructions_mask_none.mfui-9-instructions_size_big .swiper-wrapper{height:100%}.mfui-9-instructions_mask_none.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:529px;max-width:832px;width:100%}@media screen and (min-width:1280px) and (max-width:1439px){.mfui-9-instructions_mask_none.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:410px;max-width:645px}}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-instructions_mask_none.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:422px;max-width:663px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_mask_none.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:427px;max-width:672px}}@media screen and (max-width:767px){.mfui-9-instructions_mask_none.mfui-9-instructions_size_big .mfui-9-instructions__picture{height:auto;max-height:none}}.mfui-9-instructions_mask_none.mfui-9-instructions_size_big .mfui-9-instructions__swiper{height:529px}@media screen and (min-width:1280px) and (max-width:1439px){.mfui-9-instructions_mask_none.mfui-9-instructions_size_big .mfui-9-instructions__swiper{height:410px}}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-instructions_mask_none.mfui-9-instructions_size_big .mfui-9-instructions__swiper{height:422px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_mask_none.mfui-9-instructions_size_big .mfui-9-instructions__swiper{height:427px}}@media screen and (max-width:767px){.mfui-9-instructions_mask_none.mfui-9-instructions_size_big .mfui-9-instructions__swiper{height:auto}}.mfui-9-instructions__swiper-img{border-radius:0;height:100%;width:100%}.mfui-9-instructions__swiper-img_video{border-radius:0;-webkit-filter:brightness(108.5%);filter:brightness(108.5%)}.mfui-9-instructions__img-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;height:490px;position:relative}@media screen and (max-width:1023px){.mfui-9-instructions__img-wrapper:before{background:var(--spbSky2);bottom:0;content:"";display:block;height:1px;left:0;margin:0 auto;position:absolute;right:0;width:324px;z-index:2}}.mfui-9-instructions__device-screen{overflow:hidden;pointer-events:none}.mfui-9-instructions_mask_android .mfui-9-instructions__img-wrapper,.mfui-9-instructions_mask_iphone .mfui-9-instructions__img-wrapper{height:487px}@media screen and (max-width:1023px){.mfui-9-instructions_mask_android .mfui-9-instructions__img-wrapper:before,.mfui-9-instructions_mask_iphone .mfui-9-instructions__img-wrapper:before{display:none}}.mfui-9-instructions_mask_android .mfui-9-instructions__device-screen,.mfui-9-instructions_mask_iphone .mfui-9-instructions__device-screen{background:50% no-repeat;background-size:contain;height:100%;margin:auto;position:relative;width:100%;z-index:2}.mfui-9-instructions_mask_android .mfui-9-instructions__swiper,.mfui-9-instructions_mask_iphone .mfui-9-instructions__swiper{border-radius:20px;height:468px;left:0;margin:auto;overflow:hidden;position:absolute;right:0;top:10px;width:217px;z-index:1}.mfui-9-instructions_mask_android .mfui-9-instructions__qr-code,.mfui-9-instructions_mask_iphone .mfui-9-instructions__qr-code{left:61.2%;top:16px}.mfui-9-instructions_mask_android .mfui-9-instructions__device-screen{background-image:url(img/android.png)}.mfui-9-instructions_mask_android.mfui-9-instructions_size_big .mfui-9-instructions__picture,.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:529px;max-width:530px;width:100%}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-instructions_mask_android.mfui-9-instructions_size_big .mfui-9-instructions__picture,.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:513px;max-width:514px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_mask_android.mfui-9-instructions_size_big .mfui-9-instructions__picture,.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:529px;max-width:530px}}.mfui-9-instructions_mask_android.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper,.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper{height:529px}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-instructions_mask_android.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper,.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper{height:513px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_mask_android.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper,.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper{height:529px}}@media screen and (max-width:767px){.mfui-9-instructions_mask_android.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper,.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper{height:427px}}.mfui-9-instructions_mask_android.mfui-9-instructions_size_big .mfui-9-instructions__device-screen,.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__device-screen{height:100%}.mfui-9-instructions_mask_android.mfui-9-instructions_size_big .mfui-9-instructions__swiper,.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__swiper{height:529px;top:0;width:240px}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-instructions_mask_android.mfui-9-instructions_size_big .mfui-9-instructions__swiper,.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__swiper{height:513px;width:232px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_mask_android.mfui-9-instructions_size_big .mfui-9-instructions__swiper,.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__swiper{height:529px;width:240px}}@media screen and (max-width:767px){.mfui-9-instructions_mask_android.mfui-9-instructions_size_big .mfui-9-instructions__swiper,.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__swiper{height:426px;width:196px}}.mfui-9-instructions_mask_android-cropped .mfui-9-instructions__img-wrapper,.mfui-9-instructions_mask_iphone-cropped .mfui-9-instructions__img-wrapper{height:420px;min-height:420px}.mfui-9-instructions_mask_android-cropped .mfui-9-instructions__img-wrapper:before,.mfui-9-instructions_mask_iphone-cropped .mfui-9-instructions__img-wrapper:before{background:var(--spbSky2);bottom:0;content:"";display:block;height:1px;left:0;margin:0 auto;position:absolute;right:0;width:324px;z-index:2}.mfui-9-instructions_mask_android-cropped .mfui-9-instructions__device-screen,.mfui-9-instructions_mask_iphone-cropped .mfui-9-instructions__device-screen{background:50% no-repeat;background-size:contain;height:490px;margin-top:20px;position:relative;width:100%;z-index:1}.mfui-9-instructions_mask_android-cropped .mfui-9-instructions__swiper,.mfui-9-instructions_mask_iphone-cropped .mfui-9-instructions__swiper{left:0;margin:auto;overflow:hidden;position:absolute;right:0;top:28px;width:218px}.mfui-9-instructions_mask_android-cropped .mfui-9-instructions__qr-code,.mfui-9-instructions_mask_iphone-cropped .mfui-9-instructions__qr-code{left:61.2%;top:8px}.mfui-9-instructions_mask_android-cropped .mfui-9-instructions__device-screen{background-image:url(img/android.png)}.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__picture,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:659px;max-width:832px;width:100%}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__picture,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:511px;max-width:645px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__picture,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:532px;max-width:672px}}@media screen and (max-width:767px){.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__picture,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:490px;max-width:530px}}.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper{height:659px;min-height:659px}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper{height:511px;min-height:511px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper{height:532px;min-height:532px}}@media screen and (max-width:767px){.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper{height:420px;min-height:420px}}.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper:before,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper:before{width:380px}.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__device-screen,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__device-screen{background-size:384px 759px;height:759px;margin-top:31px}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__device-screen,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__device-screen{background-size:298px 576px;height:576px;margin-top:25px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__device-screen,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__device-screen{background-size:310px 621px;height:621px;margin-top:25px}}@media screen and (max-width:767px){.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__device-screen,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__device-screen{background-size:241px 490px;height:490px;margin-top:20px}}.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__swiper,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__swiper{top:45px;width:348px}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__swiper,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__swiper{top:37px;width:276px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__swiper,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__swiper{top:38px;width:282px}}@media screen and (max-width:767px){.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__swiper,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__swiper{top:28px;width:218px}}.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__qr-code,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__qr-code{left:66%}.mfui-9-instructions_mask_iphone .mfui-9-instructions__device-screen{background-image:url(img/iphone.png)}.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__swiper{border-radius:40px}.mfui-9-instructions_mask_iphone-cropped .mfui-9-instructions__device-screen{background-image:url(img/iphone.png)}.mfui-9-instructions_mask_iphone-cropped .mfui-9-instructions__swiper{border-radius:24px}@media screen and (max-width:1023px){.mfui-9-instructions_mask_laptop .mfui-9-instructions__img-wrapper{background:url(img/laptop.png) 50% 0 no-repeat;background-size:100%;height:0;padding-bottom:58.9%}}.mfui-9-instructions_mask_laptop .mfui-9-instructions__img-wrapper:before{display:none}.mfui-9-instructions_mask_laptop .mfui-9-instructions__device-screen{background:url(img/laptop.png) 50% 0 no-repeat;background-size:100%;height:100%;margin:auto;position:relative;width:100%}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_mask_laptop .mfui-9-instructions__device-screen{width:530px}}@media screen and (min-width:480px) and (max-width:767px){.mfui-9-instructions_mask_laptop .mfui-9-instructions__device-screen{width:450px}}@media screen and (max-width:479px){.mfui-9-instructions_mask_laptop .mfui-9-instructions__device-screen{width:270px}}@media screen and (min-width:1024px){.mfui-9-instructions_mask_laptop .mfui-9-instructions__device-screen{background:url(img/laptop.png) 50% no-repeat;background-size:contain}}.mfui-9-instructions_mask_laptop .mfui-9-instructions__swiper{left:50%;margin:auto;overflow:hidden;position:absolute;right:0;top:4px;-webkit-transform:translate(-49.5%);transform:translate(-49.5%);width:78%}@media screen and (min-width:480px) and (max-width:767px){.mfui-9-instructions_mask_laptop .mfui-9-instructions__swiper{max-width:415px;top:7px}}@media screen and (max-width:479px){.mfui-9-instructions_mask_laptop .mfui-9-instructions__swiper{max-width:302px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_mask_laptop .mfui-9-instructions__swiper{top:12px}}@media screen and (min-width:1024px){.mfui-9-instructions_mask_laptop .mfui-9-instructions__swiper{top:50%;-webkit-transform:translate(-49.5%,-55%);transform:translate(-49.5%,-55%)}}.mfui-9-instructions_mask_laptop.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:487px;max-width:832px;width:100%}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-instructions_mask_laptop.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-width:100%;min-width:514px;width:66%}}@media screen and (max-width:1023px){.mfui-9-instructions_mask_laptop.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:393px;max-width:672px}}.mfui-9-instructions_mask_laptop.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper{height:487px}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_mask_laptop.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper{height:393px;padding-bottom:393px}}@media screen and (max-width:767px){.mfui-9-instructions_mask_laptop.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper{height:0}}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-instructions_mask_laptop.mfui-9-instructions_size_big .mfui-9-instructions__swiper{max-width:514px}}@media screen and (max-width:1023px){.mfui-9-instructions_mask_laptop.mfui-9-instructions_size_big .mfui-9-instructions__swiper{max-width:672px}}.mfui-9-instructions__slide{-ms-flex-negative:0;flex-shrink:0;height:100%}@media screen and (max-width:767px){.mfui-9-instructions__articles{margin-top:24px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions__articles{margin-top:32px}}@media screen and (min-width:1024px){.mfui-9-instructions__articles{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:50%}.mfui-9-instructions__articles_align_right{margin-right:40px}}.mfui-9-instructions__articles-list{list-style-type:none;margin:0;padding:0}@media screen and (min-width:1024px){.mfui-9-instructions__articles-list_mobile{display:none}}@media screen and (max-width:1023px){.mfui-9-instructions__articles-list_desktop{display:none}}.mfui-9-instructions__articles-item{min-height:40px;opacity:.5;position:relative}@media screen and (min-width:1024px){.mfui-9-instructions__articles-item{margin-bottom:24px}}.mfui-9-instructions__articles-item:hover,.mfui-9-instructions__articles-item_active{opacity:1}.mfui-9-instructions__articles-item:hover .mfui-9-instructions__articles-item-dot,.mfui-9-instructions__articles-item_active .mfui-9-instructions__articles-item-dot{color:var(--stcWhite)}.mfui-9-instructions__articles-item:hover .mfui-9-instructions__articles-item-dot:before,.mfui-9-instructions__articles-item_active .mfui-9-instructions__articles-item-dot:before{background:var(--brandGreen);bottom:0;left:0;right:0;top:0}@media screen and (min-width:1024px){.mfui-9-instructions__articles-item:last-child{margin-bottom:0}}.mfui-9-instructions__articles-item-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:none;border-radius:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;cursor:pointer;font-family:inherit;font-size:inherit;line-height:inherit;margin:0;outline:none;padding:0;text-decoration:none;-webkit-tap-highlight-color:rgba(0,0,0,0);border-radius:12px;display:-webkit-box;display:-ms-flexbox;display:flex;min-height:40px;position:relative;text-align:start;width:100%}.mfui-9-instructions__articles-item-button:focus-visible{-webkit-animation:focus-outline-shrink .3s linear forwards;animation:focus-outline-shrink .3s linear forwards;outline-offset:2px}@-webkit-keyframes focus-outline-shrink{0%{outline:0 solid var(--137C)}to{outline:4px solid var(--137C)}}@keyframes focus-outline-shrink{0%{outline:0 solid var(--137C)}to{outline:4px solid var(--137C)}}.mfui-9-instructions__articles-item-button:focus{outline:none}.mfui-9-instructions__articles-item-button:disabled{color:inherit;cursor:auto}.mfui-9-instructions__articles-item-dot{border-radius:12px;-webkit-box-shadow:inset 0 0 0 1px var(--spbSky3);box-shadow:inset 0 0 0 1px var(--spbSky3);cursor:pointer;display:inline-block;font-size:15px;font-weight:500;height:40px;line-height:40px;position:absolute;text-align:center;width:40px}@media screen and (max-width:479px){.mfui-9-instructions__articles-item-dot{min-width:40px}}.mfui-9-instructions__articles-item-dot:before{border-radius:12px;bottom:50%;content:"";left:50%;position:absolute;right:50%;top:50%;-webkit-transition:all .3s ease;transition:all .3s ease}.mfui-9-instructions__articles-item-dot-number{position:relative}.mfui-9-instructions__articles-item-title{cursor:pointer;display:inline-block;font-size:15px;font-weight:400;line-height:24px}@media screen and (min-width:1024px){.mfui-9-instructions__articles-item-title{padding:8px 0 0 56px}}.mfui-9-instructions__articles-dots{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;list-style-type:none;margin:0;padding:0}@media screen and (max-width:767px){.mfui-9-instructions__articles-dots{margin-top:16px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions__articles-dots{margin-top:24px}}@media screen and (min-width:1024px){.mfui-9-instructions__articles-dots{display:none}}.mfui-9-instructions__articles-dots_text-after{margin-bottom:48px}.mfui-9-instructions__articles-dot{background:var(--spbSky2);border-radius:4px;cursor:pointer;display:inline-block;height:8px;margin-right:12px;position:relative;width:8px}.mfui-9-instructions__articles-dot:hover,.mfui-9-instructions__articles-dot_active{background:var(--brandGreen)}.mfui-9-instructions__articles-dot_active{width:20px}.mfui-9-instructions__articles-dot:last-child{margin-right:0}.mfui-9-instructions__articles-title-block{margin:0 auto;text-align:center}@media screen and (max-width:767px){.mfui-9-instructions__articles-title-block{width:55%}}@media screen and (max-width:479px){.mfui-9-instructions__articles-title-block{width:100%}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions__articles-title-block{max-width:530px;width:100%}}.mfui-9-instructions__articles-title-block_with-numeration{text-align:left}.mfui-9-instructions__articles-title{font-weight:400;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.mfui-9-instructions__articles-num,.mfui-9-instructions__articles-title{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:15px;line-height:24px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.mfui-9-instructions__articles-num{font-weight:500;-ms-flex-negative:0;flex-shrink:0;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:var(--brandGreen);border-radius:50%;color:var(--stcWhite);height:40px;margin-right:16px;width:40px}@media screen and (min-width:1024px){.mfui-9-instructions__articles-num{display:none}}.mfui-9-instructions__picture_background_base,.mfui-9-instructions__picture_background_spbSky0,.mfui-9-instructions__picture_background_spbSky1,.mfui-9-instructions__picture_background_transparent,.mfui-9-instructions__picture_background_violet{border-radius:24px}.mfui-9-instructions__picture_background_base .mfui-9-instructions__img-wrapper:before,.mfui-9-instructions__picture_background_spbSky0 .mfui-9-instructions__img-wrapper:before,.mfui-9-instructions__picture_background_spbSky1 .mfui-9-instructions__img-wrapper:before,.mfui-9-instructions__picture_background_transparent .mfui-9-instructions__img-wrapper:before,.mfui-9-instructions__picture_background_violet .mfui-9-instructions__img-wrapper:before{display:none}.mfui-9-instructions__picture_background_spbSky0{background-color:var(--spbSky0)}.mfui-9-instructions__picture_background_spbSky1{background-color:var(--spbSky1)}.mfui-9-instructions__picture_background_base{background-color:var(--base)}.mfui-9-instructions__picture_background_violet{background-color:#e1dcea}.mfui-9-instructions__picture_background_transparent{background-color:transparent}.mfui-9-instructions__picture_overlay_logo-base,.mfui-9-instructions__picture_overlay_logo-cropped-base-with-opacity,.mfui-9-instructions__picture_overlay_logo-cropped-spb-sky-3,.mfui-9-instructions__picture_overlay_logo-spb-sky-0{background-position:50%;background-repeat:no-repeat;background-size:contain}.mfui-9-instructions__picture_overlay_logo-base{background-image:url(img/logo-base.png)}.mfui-9-instructions__picture_overlay_logo-spb-sky-0{background-image:url(img/logo-spb-sky-0.png)}.mfui-9-instructions__picture_overlay_logo-cropped-base-with-opacity{background-image:url(img/logo-cropped-base-with-opacity.png)}.mfui-9-instructions__picture_overlay_logo-cropped-spb-sky-3{background-image:url(img/logo-cropped-spb-sky-3.png)}.mfui-9-instructions__arrow{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);z-index:2}@media screen and (max-width:767px){.mfui-9-instructions__arrow{display:none}}.mfui-9-instructions__arrow_prev{left:24px}.mfui-9-instructions__arrow_next{right:24px}.mfui-9-instructions__qr-code{-webkit-box-sizing:border-box;box-sizing:border-box;display:none;padding:12px;position:absolute;right:64px;top:12px;width:126px;z-index:3}@media screen and (min-width:768px){.mfui-9-instructions__qr-code{display:block}}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-instructions__qr-code{right:44px}}.mfui-9-instructions__qr-code-image{display:block;height:auto;width:100%}.mfui-9-instructions__qr-code-text{font-size:12px;font-weight:500;line-height:12px;margin-bottom:12px;text-align:center}.mfui-9-instructions_reversed .mfui-9-instructions__title_resolution_mobile{margin-bottom:16px}@media screen and (max-width:1023px){.mfui-9-instructions_reversed .mfui-9-instructions__picture{margin-bottom:0;max-height:100%}.mfui-9-instructions_reversed .mfui-9-instructions__articles{display:none}}@media screen and (max-width:767px){.mfui-9-instructions_reversed .mfui-9-instructions__articles-title-block{margin-bottom:32px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_reversed .mfui-9-instructions__articles-title-block{margin-bottom:40px}}.mfui-9-instructions_reversed.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:100%}
|
|
1
|
+
h1,h2,h3,h4,h5{margin:0}.mfui-9-instructions__title_resolution_mobile{margin-bottom:32px;text-align:center}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions__title_resolution_mobile{margin-bottom:40px}}.mfui-9-instructions__title_resolution_desktop{margin-bottom:40px}.mfui-9-instructions .swiper-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}@media screen and (min-width:1024px){.mfui-9-instructions__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.mfui-9-instructions__wrapper_vertical-align_top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.mfui-9-instructions__wrapper_vertical-align_unset{-webkit-box-align:unset;-ms-flex-align:unset;align-items:unset}}.mfui-9-instructions .mfui-9-instructions__text{margin-top:32px}@media screen and (max-width:1023px){.mfui-9-instructions .mfui-9-instructions__text{margin-top:40px;text-align:center}}.mfui-9-instructions .mfui-9-instructions__button{display:block;margin-top:32px;max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content}@media screen and (max-width:1023px){.mfui-9-instructions .mfui-9-instructions__button{margin-left:auto;margin-right:auto}}@media screen and (min-width:768px){.mfui-9-instructions .mfui-9-instructions__button{margin-top:40px}}.mfui-9-instructions__picture{max-height:490px;max-width:530px;overflow:hidden;position:relative}@media screen and (max-width:1023px){.mfui-9-instructions__picture{margin:0 auto}}@media screen and (min-width:1024px){.mfui-9-instructions__picture{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;width:50%}.mfui-9-instructions__picture_align_left{-webkit-box-ordinal-group:1;-ms-flex-order:0;margin-right:40px;order:0}}.mfui-9-instructions_mask_none .mfui-9-instructions__slide{display:-webkit-box;display:-ms-flexbox;display:flex}.mfui-9-instructions_mask_none .mfui-9-instructions__swiper-img,.mfui-9-instructions_mask_none .mfui-9-instructions__swiper-img_video{border-radius:24px}.mfui-9-instructions_mask_none.mfui-9-instructions_size_big .swiper-wrapper{height:100%}.mfui-9-instructions_mask_none.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:529px;max-width:832px;width:100%}@media screen and (min-width:1280px) and (max-width:1439px){.mfui-9-instructions_mask_none.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:410px;max-width:645px}}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-instructions_mask_none.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:422px;max-width:663px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_mask_none.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:427px;max-width:672px}}@media screen and (max-width:767px){.mfui-9-instructions_mask_none.mfui-9-instructions_size_big .mfui-9-instructions__picture{height:auto;max-height:none}}.mfui-9-instructions_mask_none.mfui-9-instructions_size_big .mfui-9-instructions__swiper{height:529px}@media screen and (min-width:1280px) and (max-width:1439px){.mfui-9-instructions_mask_none.mfui-9-instructions_size_big .mfui-9-instructions__swiper{height:410px}}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-instructions_mask_none.mfui-9-instructions_size_big .mfui-9-instructions__swiper{height:422px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_mask_none.mfui-9-instructions_size_big .mfui-9-instructions__swiper{height:427px}}@media screen and (max-width:767px){.mfui-9-instructions_mask_none.mfui-9-instructions_size_big .mfui-9-instructions__swiper{height:auto}}.mfui-9-instructions__swiper-img{border-radius:0;height:100%;width:100%}.mfui-9-instructions__swiper-img_video{border-radius:0;-webkit-filter:brightness(108.5%);filter:brightness(108.5%)}.mfui-9-instructions__img-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;height:490px;position:relative}@media screen and (max-width:1023px){.mfui-9-instructions__img-wrapper:before{background:var(--spbSky2);bottom:0;content:"";display:block;height:1px;left:0;margin:0 auto;position:absolute;right:0;width:324px;z-index:2}}.mfui-9-instructions__device-screen{overflow:hidden;pointer-events:none}.mfui-9-instructions_mask_android .mfui-9-instructions__img-wrapper,.mfui-9-instructions_mask_iphone .mfui-9-instructions__img-wrapper{height:487px}@media screen and (max-width:1023px){.mfui-9-instructions_mask_android .mfui-9-instructions__img-wrapper:before,.mfui-9-instructions_mask_iphone .mfui-9-instructions__img-wrapper:before{display:none}}.mfui-9-instructions_mask_android .mfui-9-instructions__device-screen,.mfui-9-instructions_mask_iphone .mfui-9-instructions__device-screen{background:50% no-repeat;background-size:contain;height:100%;margin:auto;position:relative;width:100%;z-index:2}.mfui-9-instructions_mask_android .mfui-9-instructions__swiper,.mfui-9-instructions_mask_iphone .mfui-9-instructions__swiper{border-radius:20px;height:468px;left:0;margin:auto;overflow:hidden;position:absolute;right:0;top:10px;width:217px;z-index:1}.mfui-9-instructions_mask_android .mfui-9-instructions__qr-code,.mfui-9-instructions_mask_iphone .mfui-9-instructions__qr-code{left:61.2%;top:16px}.mfui-9-instructions_mask_android .mfui-9-instructions__device-screen{background-image:url(img/android.png)}.mfui-9-instructions_mask_android.mfui-9-instructions_size_big .mfui-9-instructions__picture,.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:529px;max-width:530px;width:100%}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-instructions_mask_android.mfui-9-instructions_size_big .mfui-9-instructions__picture,.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:513px;max-width:514px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_mask_android.mfui-9-instructions_size_big .mfui-9-instructions__picture,.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:529px;max-width:530px}}.mfui-9-instructions_mask_android.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper,.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper{height:529px}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-instructions_mask_android.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper,.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper{height:513px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_mask_android.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper,.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper{height:529px}}@media screen and (max-width:767px){.mfui-9-instructions_mask_android.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper,.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper{height:427px}}.mfui-9-instructions_mask_android.mfui-9-instructions_size_big .mfui-9-instructions__device-screen,.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__device-screen{height:100%}.mfui-9-instructions_mask_android.mfui-9-instructions_size_big .mfui-9-instructions__swiper,.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__swiper{height:529px;top:0;width:240px}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-instructions_mask_android.mfui-9-instructions_size_big .mfui-9-instructions__swiper,.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__swiper{height:513px;width:232px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_mask_android.mfui-9-instructions_size_big .mfui-9-instructions__swiper,.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__swiper{height:529px;width:240px}}@media screen and (max-width:767px){.mfui-9-instructions_mask_android.mfui-9-instructions_size_big .mfui-9-instructions__swiper,.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__swiper{height:426px;width:196px}}.mfui-9-instructions_mask_android-cropped .mfui-9-instructions__img-wrapper,.mfui-9-instructions_mask_iphone-cropped .mfui-9-instructions__img-wrapper{height:420px;min-height:420px}.mfui-9-instructions_mask_android-cropped .mfui-9-instructions__img-wrapper:before,.mfui-9-instructions_mask_iphone-cropped .mfui-9-instructions__img-wrapper:before{background:var(--spbSky2);bottom:0;content:"";display:block;height:1px;left:0;margin:0 auto;position:absolute;right:0;width:324px;z-index:2}.mfui-9-instructions_mask_android-cropped .mfui-9-instructions__device-screen,.mfui-9-instructions_mask_iphone-cropped .mfui-9-instructions__device-screen{background:50% no-repeat;background-size:contain;height:490px;margin-top:20px;position:relative;width:100%;z-index:1}.mfui-9-instructions_mask_android-cropped .mfui-9-instructions__swiper,.mfui-9-instructions_mask_iphone-cropped .mfui-9-instructions__swiper{left:0;margin:auto;overflow:hidden;position:absolute;right:0;top:28px;width:218px}.mfui-9-instructions_mask_android-cropped .mfui-9-instructions__qr-code,.mfui-9-instructions_mask_iphone-cropped .mfui-9-instructions__qr-code{left:61.2%;top:8px}.mfui-9-instructions_mask_android-cropped .mfui-9-instructions__device-screen{background-image:url(img/android.png)}.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__picture,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:659px;max-width:832px;width:100%}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__picture,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:511px;max-width:645px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__picture,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:532px;max-width:672px}}@media screen and (max-width:767px){.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__picture,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:490px;max-width:530px}}.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper{height:659px;min-height:659px}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper{height:511px;min-height:511px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper{height:532px;min-height:532px}}@media screen and (max-width:767px){.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper{height:420px;min-height:420px}}.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper:before,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper:before{width:380px}.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__device-screen,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__device-screen{background-size:384px 759px;height:759px;margin-top:31px}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__device-screen,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__device-screen{background-size:298px 576px;height:576px;margin-top:25px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__device-screen,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__device-screen{background-size:310px 621px;height:621px;margin-top:25px}}@media screen and (max-width:767px){.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__device-screen,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__device-screen{background-size:241px 490px;height:490px;margin-top:20px}}.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__swiper,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__swiper{top:45px;width:348px}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__swiper,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__swiper{top:37px;width:276px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__swiper,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__swiper{top:38px;width:282px}}@media screen and (max-width:767px){.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__swiper,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__swiper{top:28px;width:218px}}.mfui-9-instructions_mask_android-cropped.mfui-9-instructions_size_big .mfui-9-instructions__qr-code,.mfui-9-instructions_mask_iphone-cropped.mfui-9-instructions_size_big .mfui-9-instructions__qr-code{left:66%}.mfui-9-instructions_mask_iphone .mfui-9-instructions__device-screen{background-image:url(img/iphone.png)}.mfui-9-instructions_mask_iphone.mfui-9-instructions_size_big .mfui-9-instructions__swiper{border-radius:40px}.mfui-9-instructions_mask_iphone-cropped .mfui-9-instructions__device-screen{background-image:url(img/iphone.png)}.mfui-9-instructions_mask_iphone-cropped .mfui-9-instructions__swiper{border-radius:24px}@media screen and (max-width:1023px){.mfui-9-instructions_mask_laptop .mfui-9-instructions__img-wrapper{background:url(img/laptop.png) 50% 0 no-repeat;background-size:100%;height:0;padding-bottom:58.9%}}.mfui-9-instructions_mask_laptop .mfui-9-instructions__img-wrapper:before{display:none}.mfui-9-instructions_mask_laptop .mfui-9-instructions__device-screen{background:url(img/laptop.png) 50% 0 no-repeat;background-size:100%;height:100%;margin:auto;position:relative;width:100%}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_mask_laptop .mfui-9-instructions__device-screen{width:530px}}@media screen and (min-width:480px) and (max-width:767px){.mfui-9-instructions_mask_laptop .mfui-9-instructions__device-screen{width:450px}}@media screen and (max-width:479px){.mfui-9-instructions_mask_laptop .mfui-9-instructions__device-screen{width:270px}}@media screen and (min-width:1024px){.mfui-9-instructions_mask_laptop .mfui-9-instructions__device-screen{background:url(img/laptop.png) 50% no-repeat;background-size:contain}}.mfui-9-instructions_mask_laptop .mfui-9-instructions__swiper{left:50%;margin:auto;overflow:hidden;position:absolute;right:0;top:4px;-webkit-transform:translate(-49.5%);transform:translate(-49.5%);width:78%}@media screen and (min-width:480px) and (max-width:767px){.mfui-9-instructions_mask_laptop .mfui-9-instructions__swiper{max-width:415px;top:7px}}@media screen and (max-width:479px){.mfui-9-instructions_mask_laptop .mfui-9-instructions__swiper{max-width:302px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_mask_laptop .mfui-9-instructions__swiper{top:12px}}@media screen and (min-width:1024px){.mfui-9-instructions_mask_laptop .mfui-9-instructions__swiper{top:50%;-webkit-transform:translate(-49.5%,-55%);transform:translate(-49.5%,-55%)}}.mfui-9-instructions_mask_laptop.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:487px;max-width:832px;width:100%}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-instructions_mask_laptop.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-width:100%;min-width:514px;width:66%}}@media screen and (max-width:1023px){.mfui-9-instructions_mask_laptop.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:393px;max-width:672px}}.mfui-9-instructions_mask_laptop.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper{height:487px}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_mask_laptop.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper{height:393px;padding-bottom:393px}}@media screen and (max-width:767px){.mfui-9-instructions_mask_laptop.mfui-9-instructions_size_big .mfui-9-instructions__img-wrapper{height:0}}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-instructions_mask_laptop.mfui-9-instructions_size_big .mfui-9-instructions__swiper{max-width:514px}}@media screen and (max-width:1023px){.mfui-9-instructions_mask_laptop.mfui-9-instructions_size_big .mfui-9-instructions__swiper{max-width:672px}}.mfui-9-instructions__slide{-ms-flex-negative:0;flex-shrink:0;height:100%}@media screen and (max-width:767px){.mfui-9-instructions__articles{margin-top:24px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions__articles{margin-top:32px}}@media screen and (min-width:1024px){.mfui-9-instructions__articles{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:50%}.mfui-9-instructions__articles_align_right{margin-right:40px}}.mfui-9-instructions__articles-list{list-style-type:none;margin:0;padding:0}.mfui-9-instructions__articles-item{min-height:40px;opacity:.5;position:relative}@media screen and (min-width:1024px){.mfui-9-instructions__articles-item{margin-bottom:24px}}.mfui-9-instructions__articles-item:hover,.mfui-9-instructions__articles-item_active{opacity:1}.mfui-9-instructions__articles-item:hover .mfui-9-instructions__articles-item-dot,.mfui-9-instructions__articles-item_active .mfui-9-instructions__articles-item-dot{color:var(--stcWhite)}.mfui-9-instructions__articles-item:hover .mfui-9-instructions__articles-item-dot:before,.mfui-9-instructions__articles-item_active .mfui-9-instructions__articles-item-dot:before{background:var(--brandGreen);bottom:0;left:0;right:0;top:0}@media screen and (min-width:1024px){.mfui-9-instructions__articles-item:last-child{margin-bottom:0}}.mfui-9-instructions__articles-item-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:none;border-radius:0;-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;cursor:pointer;font-family:inherit;font-size:inherit;line-height:inherit;margin:0;outline:none;padding:0;text-decoration:none;-webkit-tap-highlight-color:rgba(0,0,0,0);border-radius:12px;display:-webkit-box;display:-ms-flexbox;display:flex;min-height:40px;position:relative;text-align:start;width:100%}.mfui-9-instructions__articles-item-button:focus-visible{-webkit-animation:focus-outline-shrink .3s linear forwards;animation:focus-outline-shrink .3s linear forwards;outline-offset:2px}@-webkit-keyframes focus-outline-shrink{0%{outline:0 solid var(--137C)}to{outline:4px solid var(--137C)}}@keyframes focus-outline-shrink{0%{outline:0 solid var(--137C)}to{outline:4px solid var(--137C)}}.mfui-9-instructions__articles-item-button:focus{outline:none}.mfui-9-instructions__articles-item-button:disabled{color:inherit;cursor:auto}.mfui-9-instructions__articles-item-dot{border-radius:12px;-webkit-box-shadow:inset 0 0 0 1px var(--spbSky3);box-shadow:inset 0 0 0 1px var(--spbSky3);cursor:pointer;display:inline-block;font-size:15px;font-weight:500;height:40px;line-height:40px;position:absolute;text-align:center;width:40px}@media screen and (max-width:479px){.mfui-9-instructions__articles-item-dot{min-width:40px}}.mfui-9-instructions__articles-item-dot:before{border-radius:12px;bottom:50%;content:"";left:50%;position:absolute;right:50%;top:50%;-webkit-transition:all .3s ease;transition:all .3s ease}.mfui-9-instructions__articles-item-dot-number{position:relative}.mfui-9-instructions__articles-item-title{cursor:pointer;display:inline-block;font-size:15px;font-weight:400;line-height:24px}@media screen and (min-width:1024px){.mfui-9-instructions__articles-item-title{padding:8px 0 0 56px}}.mfui-9-instructions__articles-dots{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;list-style-type:none;margin:0;padding:0}@media screen and (max-width:767px){.mfui-9-instructions__articles-dots{margin-top:16px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions__articles-dots{margin-top:24px}}.mfui-9-instructions__articles-dots_text-after{margin-bottom:48px}.mfui-9-instructions__articles-dot{background:var(--spbSky2);border-radius:4px;cursor:pointer;display:inline-block;height:8px;margin-right:12px;position:relative;width:8px}.mfui-9-instructions__articles-dot:hover,.mfui-9-instructions__articles-dot_active{background:var(--brandGreen)}.mfui-9-instructions__articles-dot_active{width:20px}.mfui-9-instructions__articles-dot:last-child{margin-right:0}.mfui-9-instructions__articles-title-block{margin:0 auto;text-align:center}@media screen and (max-width:767px){.mfui-9-instructions__articles-title-block{width:55%}}@media screen and (max-width:479px){.mfui-9-instructions__articles-title-block{width:100%}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions__articles-title-block{max-width:530px;width:100%}}.mfui-9-instructions__articles-title-block_with-numeration{text-align:left}.mfui-9-instructions__articles-title{font-weight:400;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.mfui-9-instructions__articles-num,.mfui-9-instructions__articles-title{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:15px;line-height:24px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.mfui-9-instructions__articles-num{font-weight:500;-ms-flex-negative:0;flex-shrink:0;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:var(--brandGreen);border-radius:50%;color:var(--stcWhite);height:40px;margin-right:16px;width:40px}@media screen and (min-width:1024px){.mfui-9-instructions__articles-num{display:none}}.mfui-9-instructions__picture_background_base,.mfui-9-instructions__picture_background_spbSky0,.mfui-9-instructions__picture_background_spbSky1,.mfui-9-instructions__picture_background_transparent,.mfui-9-instructions__picture_background_violet{border-radius:24px}.mfui-9-instructions__picture_background_base .mfui-9-instructions__img-wrapper:before,.mfui-9-instructions__picture_background_spbSky0 .mfui-9-instructions__img-wrapper:before,.mfui-9-instructions__picture_background_spbSky1 .mfui-9-instructions__img-wrapper:before,.mfui-9-instructions__picture_background_transparent .mfui-9-instructions__img-wrapper:before,.mfui-9-instructions__picture_background_violet .mfui-9-instructions__img-wrapper:before{display:none}.mfui-9-instructions__picture_background_spbSky0{background-color:var(--spbSky0)}.mfui-9-instructions__picture_background_spbSky1{background-color:var(--spbSky1)}.mfui-9-instructions__picture_background_base{background-color:var(--base)}.mfui-9-instructions__picture_background_violet{background-color:#e1dcea}.mfui-9-instructions__picture_background_transparent{background-color:transparent}.mfui-9-instructions__picture_overlay_logo-base,.mfui-9-instructions__picture_overlay_logo-cropped-base-with-opacity,.mfui-9-instructions__picture_overlay_logo-cropped-spb-sky-3,.mfui-9-instructions__picture_overlay_logo-spb-sky-0{background-position:50%;background-repeat:no-repeat;background-size:contain}.mfui-9-instructions__picture_overlay_logo-base{background-image:url(img/logo-base.png)}.mfui-9-instructions__picture_overlay_logo-spb-sky-0{background-image:url(img/logo-spb-sky-0.png)}.mfui-9-instructions__picture_overlay_logo-cropped-base-with-opacity{background-image:url(img/logo-cropped-base-with-opacity.png)}.mfui-9-instructions__picture_overlay_logo-cropped-spb-sky-3{background-image:url(img/logo-cropped-spb-sky-3.png)}.mfui-9-instructions__arrow{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);z-index:2}@media screen and (max-width:767px){.mfui-9-instructions__arrow{display:none}}.mfui-9-instructions__arrow_prev{left:24px}.mfui-9-instructions__arrow_next{right:24px}.mfui-9-instructions__qr-code{-webkit-box-sizing:border-box;box-sizing:border-box;display:none;padding:12px;position:absolute;right:64px;top:12px;width:126px;z-index:3}@media screen and (min-width:768px){.mfui-9-instructions__qr-code{display:block}}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-instructions__qr-code{right:44px}}.mfui-9-instructions__qr-code-image{display:block;height:auto;width:100%}.mfui-9-instructions__qr-code-text{font-size:12px;font-weight:500;line-height:12px;margin-bottom:12px;text-align:center}.mfui-9-instructions_reversed .mfui-9-instructions__title_resolution_mobile{margin-bottom:16px}@media screen and (max-width:1023px){.mfui-9-instructions_reversed .mfui-9-instructions__picture{margin-bottom:0;max-height:100%}.mfui-9-instructions_reversed .mfui-9-instructions__articles{display:none}}@media screen and (max-width:767px){.mfui-9-instructions_reversed .mfui-9-instructions__articles-title-block{margin-bottom:32px}}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-instructions_reversed .mfui-9-instructions__articles-title-block{margin-bottom:40px}}.mfui-9-instructions_reversed.mfui-9-instructions_size_big .mfui-9-instructions__picture{max-height:100%}
|
|
@@ -7,6 +7,7 @@ import * as React from 'react';
|
|
|
7
7
|
import { Button, Grid, GridColumn, Header, NavArrow, Paragraph, Tile } from '@megafon/ui-core';
|
|
8
8
|
import { cnCreate, filterDataAttrs, titleConvertConfig, convert, textConvertConfig } from '@megafon/ui-helpers';
|
|
9
9
|
import { setRelAttribute } from "../../helpers/setRelAttribute";
|
|
10
|
+
import useResolutions from "../../hooks/useResolutions";
|
|
10
11
|
import "./Instructions.css";
|
|
11
12
|
var Swiper = null;
|
|
12
13
|
var SwiperSlide = null;
|
|
@@ -114,6 +115,8 @@ var Instructions = function Instructions(_ref) {
|
|
|
114
115
|
_React$useState4 = _slicedToArray(_React$useState3, 2),
|
|
115
116
|
slideIndex = _React$useState4[0],
|
|
116
117
|
setSlideIndex = _React$useState4[1];
|
|
118
|
+
var _useResolutions = useResolutions(),
|
|
119
|
+
isDesktop = _useResolutions.isDesktop;
|
|
117
120
|
var showButton = button === null || button === void 0 ? void 0 : button.title;
|
|
118
121
|
var isMobileReversed = elementOrder === 'reversed';
|
|
119
122
|
var getSwiperInstance = React.useCallback(function (swiper) {
|
|
@@ -247,10 +250,12 @@ var Instructions = function Instructions(_ref) {
|
|
|
247
250
|
}), renderSlider());
|
|
248
251
|
}, [pictureMask, renderSlider]);
|
|
249
252
|
var renderDesktopArticles = React.useCallback(function () {
|
|
253
|
+
if (!isDesktop) {
|
|
254
|
+
return null;
|
|
255
|
+
}
|
|
250
256
|
return /*#__PURE__*/React.createElement("ul", {
|
|
251
257
|
className: cn('articles-list', {
|
|
252
|
-
'text-after': !!text
|
|
253
|
-
desktop: true
|
|
258
|
+
'text-after': !!text
|
|
254
259
|
}),
|
|
255
260
|
"data-testid": "".concat(testIdPrefix, "-articles-list-desktop")
|
|
256
261
|
}, instructionItems.map(function (_ref5, i) {
|
|
@@ -273,12 +278,13 @@ var Instructions = function Instructions(_ref) {
|
|
|
273
278
|
className: cn('articles-item-title', [desktopItemTitle])
|
|
274
279
|
}, itemTitle)));
|
|
275
280
|
}));
|
|
276
|
-
}, [
|
|
281
|
+
}, [isDesktop, text, instructionItems, dataAttrs === null || dataAttrs === void 0 ? void 0 : dataAttrs.item, slideIndex, getActiveCustomClass, instructionItem, desktopInstructionItem, handleArticleClick, desktopItemTitle]);
|
|
277
282
|
var renderMobileArticles = React.useCallback(function () {
|
|
283
|
+
if (isDesktop) {
|
|
284
|
+
return null;
|
|
285
|
+
}
|
|
278
286
|
return /*#__PURE__*/React.createElement("div", {
|
|
279
|
-
className: cn('articles-list',
|
|
280
|
-
mobile: true
|
|
281
|
-
}),
|
|
287
|
+
className: cn('articles-list'),
|
|
282
288
|
"data-testid": "".concat(testIdPrefix, "-articles-list-mobile")
|
|
283
289
|
}, /*#__PURE__*/React.createElement("div", {
|
|
284
290
|
className: cn('articles-title-block', {
|
|
@@ -297,7 +303,7 @@ var Instructions = function Instructions(_ref) {
|
|
|
297
303
|
className: cn('articles-title-text', [mobileItemTitle])
|
|
298
304
|
}), itemTitle));
|
|
299
305
|
})));
|
|
300
|
-
}, [dataAttrs === null || dataAttrs === void 0 ? void 0 : dataAttrs.mobileItemText,
|
|
306
|
+
}, [isDesktop, isMobileReversed, showMobileNumeration, instructionItems, slideIndex, dataAttrs === null || dataAttrs === void 0 ? void 0 : dataAttrs.mobileItemText, mobileItemTitle]);
|
|
301
307
|
var renderArrows = React.useCallback(function () {
|
|
302
308
|
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(NavArrow, {
|
|
303
309
|
dataAttrs: {
|
|
@@ -356,7 +362,7 @@ var Instructions = function Instructions(_ref) {
|
|
|
356
362
|
hAlign: "center"
|
|
357
363
|
}, /*#__PURE__*/React.createElement(GridColumn, {
|
|
358
364
|
all: "12"
|
|
359
|
-
}, !!title && renderTitle('mobile'), /*#__PURE__*/React.createElement("div", _extends({
|
|
365
|
+
}, !!title && !isDesktop && renderTitle('mobile'), /*#__PURE__*/React.createElement("div", _extends({
|
|
360
366
|
className: cn('wrapper', {
|
|
361
367
|
'vertical-align': pictureVerticalAlign
|
|
362
368
|
})
|
|
@@ -367,10 +373,10 @@ var Instructions = function Instructions(_ref) {
|
|
|
367
373
|
overlay: pictureOverlay
|
|
368
374
|
}),
|
|
369
375
|
"data-testid": "".concat(testIdPrefix, "-picture")
|
|
370
|
-
}, isMobileReversed && renderMobileArticles(), renderPicture(), !!showArrows && renderArrows(), renderQrCode()), renderMobileDots(), /*#__PURE__*/React.createElement("div", {
|
|
376
|
+
}, isMobileReversed && renderMobileArticles(), renderPicture(), !!showArrows && renderArrows(), renderQrCode()), !isDesktop && renderMobileDots(), /*#__PURE__*/React.createElement("div", {
|
|
371
377
|
className: cn('articles', {
|
|
372
378
|
align: pictureAlign
|
|
373
379
|
})
|
|
374
|
-
}, !!title && renderTitle('desktop'), !isMobileReversed && renderMobileArticles(), renderDesktopArticles(), text && renderText(), showButton && renderButton(), children)))));
|
|
380
|
+
}, !!title && isDesktop && renderTitle('desktop'), !isMobileReversed && renderMobileArticles(), renderDesktopArticles(), text && renderText(), showButton && renderButton(), children)))));
|
|
375
381
|
};
|
|
376
382
|
export default Instructions;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
h1,h2,h3,h4,h5{margin:0}.mfui-9-benefit-card{border:none;border-radius:24px;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--content);display:-webkit-box;display:-ms-flexbox;display:flex;font-size:15px;line-height:24px;min-height:100%;overflow:hidden;padding:
|
|
1
|
+
h1,h2,h3,h4,h5{margin:0}.mfui-9-benefit-card{border:none;border-radius:24px;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--content);display:-webkit-box;display:-ms-flexbox;display:flex;font-size:15px;line-height:24px;min-height:100%;overflow:hidden;padding:24px;position:relative;-webkit-transition:.3s;transition:.3s;width:100%}.mfui-9-benefit-card:focus-visible{-webkit-animation:focus-outline-shrink .3s linear forwards;animation:focus-outline-shrink .3s linear forwards;outline-offset:2px}@-webkit-keyframes focus-outline-shrink{0%{outline:0 solid var(--137C)}to{outline:4px solid var(--137C)}}@keyframes focus-outline-shrink{0%{outline:0 solid var(--137C)}to{outline:4px solid var(--137C)}}.mfui-9-benefit-card:focus{outline:none}.mfui-9-benefit-card:after{background:var(--stcWhite5);border-radius:24px;content:"";inset:0;opacity:0;pointer-events:none;position:absolute;-webkit-transition:opacity .3s;transition:opacity .3s}.mfui-9-benefit-card:hover{text-decoration:none}.mfui-9-benefit-card_interactive:hover:after{opacity:1}.mfui-9-benefit-card_interactive{cursor:pointer}.mfui-9-benefit-card_background_gray{background-color:var(--spbSky0)}.mfui-9-benefit-card_background_white{background-color:var(--base)}.mfui-9-benefit-card_background_outline{background-color:var(--base);border:1px solid var(--spbSky2)}.mfui-9-benefit-card_background_soft-purple{background-color:var(--brandPurple20);border:none}.mfui-9-benefit-card_background_soft-green{background-color:var(--brandGreen20);border:none}.mfui-9-benefit-card_background_soft-night{background-color:var(--night20);border:none}.mfui-9-benefit-card_background_soft-sky{background-color:var(--sky20);border:none}.mfui-9-benefit-card_background_soft-flamingo{background-color:var(--flamingo20);border:none}.mfui-9-benefit-card_background_soft-berry{background-color:var(--berry20);border:none}.mfui-9-benefit-card_background_gradient-berry1{background:var(--gradientBerry1);border:none}.mfui-9-benefit-card_background_gradient-berry2{background:var(--gradientBerry2);border:none}.mfui-9-benefit-card_background_gradient-purple1{background:var(--gradientPurple1);border:none}.mfui-9-benefit-card_background_gradient-purple2{background:var(--gradientPurple2);border:none}.mfui-9-benefit-card_background_gradient-purple3{background:var(--gradientPurple3);border:none}.mfui-9-benefit-card_background_gray.mfui-9-benefit-card_interactive:hover,.mfui-9-benefit-card_background_outline.mfui-9-benefit-card_interactive:hover,.mfui-9-benefit-card_background_white.mfui-9-benefit-card_interactive:hover{-webkit-box-shadow:0 0 0 1px var(--spbSky3);box-shadow:0 0 0 1px var(--spbSky3)}.mfui-9-benefit-card_background_soft-green.mfui-9-benefit-card_interactive:hover{-webkit-box-shadow:0 0 0 1px var(--brandGreen80);box-shadow:0 0 0 1px var(--brandGreen80)}.mfui-9-benefit-card_background_soft-purple.mfui-9-benefit-card_interactive:hover{-webkit-box-shadow:0 0 0 1px var(--brandPurple80);box-shadow:0 0 0 1px var(--brandPurple80)}.mfui-9-benefit-card_background_soft-night.mfui-9-benefit-card_interactive:hover{-webkit-box-shadow:0 0 0 1px var(--night80);box-shadow:0 0 0 1px var(--night80)}.mfui-9-benefit-card_background_soft-berry.mfui-9-benefit-card_interactive:hover{-webkit-box-shadow:0 0 0 1px var(--berry80);box-shadow:0 0 0 1px var(--berry80)}.mfui-9-benefit-card_background_soft-flamingo.mfui-9-benefit-card_interactive:hover{-webkit-box-shadow:0 0 0 1px var(--flamingo80);box-shadow:0 0 0 1px var(--flamingo80)}.mfui-9-benefit-card_background_soft-sky.mfui-9-benefit-card_interactive:hover{-webkit-box-shadow:0 0 0 1px var(--sky80);box-shadow:0 0 0 1px var(--sky80)}.mfui-9-benefit-card_background_gradient-berry1.mfui-9-benefit-card_interactive:hover,.mfui-9-benefit-card_background_gradient-berry2.mfui-9-benefit-card_interactive:hover,.mfui-9-benefit-card_background_gradient-purple1.mfui-9-benefit-card_interactive:hover,.mfui-9-benefit-card_background_gradient-purple2.mfui-9-benefit-card_interactive:hover,.mfui-9-benefit-card_background_gradient-purple3.mfui-9-benefit-card_interactive:hover{-webkit-box-shadow:0 0 0 1px var(--berry);box-shadow:0 0 0 1px var(--berry)}.mfui-9-benefit-card_background_outline.mfui-9-benefit-card_interactive:hover:after,.mfui-9-benefit-card_background_white.mfui-9-benefit-card_interactive:hover:after{opacity:0}.mfui-9-benefit-card_gradient{color:var(--stcWhite)}.mfui-9-benefit-card__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:16px;margin-right:86px}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-benefit-card__content{margin-right:64px}}@media screen and (min-width:1280px){.mfui-9-benefit-card__content{margin-right:136px}}.mfui-9-benefit-card__content b{font-weight:500}.mfui-9-benefit-card__image{bottom:0;height:85px;-o-object-fit:contain;object-fit:contain;-o-object-position:right bottom;object-position:right bottom;position:absolute;right:0;width:110px}@media screen and (min-width:1024px) and (max-width:1279px){.mfui-9-benefit-card__image{height:68px;width:88px}}@media screen and (min-width:1280px){.mfui-9-benefit-card__image{height:116px;width:150px}}.mfui-9-benefit-card__pseudo-link{color:var(--systemBlue);text-decoration:none}.mfui-9-benefit-card_gradient .mfui-9-benefit-card__pseudo-link{color:var(--stcWhite);font-weight:500}.mfui-9-benefit-card_interactive:hover .mfui-9-benefit-card__pseudo-link{text-decoration:underline}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
h1,h2,h3,h4,h5{margin:0}.mfui-9-card{display:-webkit-box;display:-ms-flexbox;display:flex;font-family:inherit;font-size:15px;font-weight:400;line-height:24px;-webkit-box-orient:vertical;-webkit-box-direction:normal;background-color:var(--base);border-radius:24px;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--content);-ms-flex-direction:column;flex-direction:column;padding:32px 24px;text-decoration:none!important;-webkit-transition:background-color .3s,.3s,-webkit-box-shadow;transition:background-color .3s,.3s,-webkit-box-shadow;transition:background-color .3s,box-shadow,.3s;transition:background-color .3s,box-shadow,.3s,-webkit-box-shadow}.mfui-9-card:focus-visible{-webkit-animation:focus-outline-shrink .3s linear forwards;animation:focus-outline-shrink .3s linear forwards;outline-offset:2px}@-webkit-keyframes focus-outline-shrink{0%{outline:0 solid var(--137C)}to{outline:4px solid var(--137C)}}@keyframes focus-outline-shrink{0%{outline:0 solid var(--137C)}to{outline:4px solid var(--137C)}}.mfui-9-card:focus{outline:none}.mfui-9-card_full-height{height:100%}.mfui-9-card_link{cursor:pointer}.mfui-9-card_view_shadow{-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.mfui-9-card_link.mfui-9-card_view_hover-shadow:hover,.mfui-9-card_link.mfui-9-card_view_shadow:hover{-webkit-box-shadow:0 8px 28px 0 rgba(0,0,0,.1);box-shadow:0 8px 28px 0 rgba(0,0,0,.1)}.mfui-9-card_view_stroke{background-color:inherit;border:1px solid var(--spbSky2)}.mfui-9-card_link.mfui-9-card_view_stroke:hover{border:1px solid var(--brandGreen)}.mfui-9-card_view_background{background-color:var(--spbSky0)}.mfui-9-card_link.mfui-9-card_view_background:
|
|
1
|
+
h1,h2,h3,h4,h5{margin:0}.mfui-9-card{display:-webkit-box;display:-ms-flexbox;display:flex;font-family:inherit;font-size:15px;font-weight:400;line-height:24px;-webkit-box-orient:vertical;-webkit-box-direction:normal;background-color:var(--base);border-radius:24px;-webkit-box-sizing:border-box;box-sizing:border-box;color:var(--content);-ms-flex-direction:column;flex-direction:column;padding:32px 24px;text-decoration:none!important;-webkit-transition:background-color .3s,.3s,-webkit-box-shadow;transition:background-color .3s,.3s,-webkit-box-shadow;transition:background-color .3s,box-shadow,.3s;transition:background-color .3s,box-shadow,.3s,-webkit-box-shadow}.mfui-9-card:focus-visible{-webkit-animation:focus-outline-shrink .3s linear forwards;animation:focus-outline-shrink .3s linear forwards;outline-offset:2px}@-webkit-keyframes focus-outline-shrink{0%{outline:0 solid var(--137C)}to{outline:4px solid var(--137C)}}@keyframes focus-outline-shrink{0%{outline:0 solid var(--137C)}to{outline:4px solid var(--137C)}}.mfui-9-card:focus{outline:none}.mfui-9-card_full-height{height:100%}.mfui-9-card_link{cursor:pointer;-webkit-transition:-webkit-transform .2s ease-out;transition:-webkit-transform .2s ease-out;transition:transform .2s ease-out;transition:transform .2s ease-out,-webkit-transform .2s ease-out}.mfui-9-card_view_shadow{-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.mfui-9-card_link.mfui-9-card_view_hover-shadow:hover,.mfui-9-card_link.mfui-9-card_view_shadow:hover{-webkit-box-shadow:0 8px 28px 0 rgba(0,0,0,.1);box-shadow:0 8px 28px 0 rgba(0,0,0,.1)}.mfui-9-card_view_stroke{background-color:inherit;border:1px solid var(--spbSky2)}.mfui-9-card_link.mfui-9-card_view_stroke:hover{border:1px solid var(--brandGreen)}.mfui-9-card_view_background{background-color:var(--spbSky0)}.mfui-9-card_link.mfui-9-card_view_background{overflow:hidden;position:relative}.mfui-9-card_link.mfui-9-card_view_background:before{background-color:#3e2a78;content:"";height:100%;left:0;opacity:0;pointer-events:none;position:absolute;top:0;-webkit-transition:opacity .2s ease-out;transition:opacity .2s ease-out;width:100%;z-index:-1}.mfui-9-card_link.mfui-9-card_view_background:hover:before{opacity:.02}.mfui-9-card_only-title{padding:24px}@media screen and (min-width:1280px){.mfui-9-card_only-title{padding:32px}}.mfui-9-card__header{display:-webkit-box;display:-ms-flexbox;display:flex;gap:12px;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.mfui-9-card__icon{height:40px;margin-bottom:32px;width:40px}.mfui-9-card__img-box{border-radius:24px;margin-bottom:32px;margin-left:-12px;margin-right:-12px;overflow:hidden;padding-bottom:56.25%;position:relative}.mfui-9-card__img-box_position_top{margin-top:-20px}.mfui-9-card__img-box_position_bottom{margin-top:20px}.mfui-9-card__img-box_position_bottom:last-child{margin-bottom:-20px}.mfui-9-card__img{height:100%;-o-object-fit:cover;object-fit:cover;position:absolute;width:100%}.mfui-9-card_link:hover{-webkit-transform:scale(1.03);transform:scale(1.03)}.mfui-9-card__marker-list{list-style-type:none;margin:16px 0 0;padding:0}.mfui-9-card__marker-item{padding-left:20px;position:relative}.mfui-9-card__marker-item:not(:last-child){margin-bottom:12px}.mfui-9-card__marker-item:before{background-color:var(--spbSky2);border-radius:50%;content:"";height:6px;left:0;opacity:.8;position:absolute;top:7px;width:6px}.mfui-9-card__marker-note{display:block;font-weight:500;margin:4px 0 0;padding:0}.mfui-9-card__texts{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:12px;margin-top:16px}.mfui-9-card__texts ol,.mfui-9-card__texts ul{margin:0;padding-left:24px}.mfui-9-card__texts ol{list-style-type:decimal}.mfui-9-card__texts ul{list-style-type:disc}.mfui-9-card__texts-item_center .mfui-9-card__texts-desc,.mfui-9-card__texts-item_center .mfui-9-card__texts-title{text-align:center}.mfui-9-card__texts-title{font-weight:500}.mfui-9-card__features{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:12px;margin-top:16px;overflow:hidden}.mfui-9-card__features-list{list-style:none;margin:0;padding:0}.mfui-9-card__features-item{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.mfui-9-card__features-item:before{background-image:radial-gradient(circle,var(--spbSky3) 1px,transparent 1px);background-size:6px 2px;bottom:.4em;content:"";height:2px;position:absolute;width:100%}.mfui-9-card__features-item-value{-ms-flex-negative:0;flex-shrink:0;text-align:end}.mfui-9-card__features-item-text{background-color:var(--base);position:relative;-webkit-transition:background-color .3s;transition:background-color .3s;z-index:1}.mfui-9-card_view_background .mfui-9-card__features-item-text{background-color:var(--spbSky0)}.mfui-9-card_link.mfui-9-card_view_background .mfui-9-card__features-item-text{position:relative}.mfui-9-card_link.mfui-9-card_view_background .mfui-9-card__features-item-text:after{background-color:#3e2a78;content:"";height:100%;left:0;opacity:0;pointer-events:none;position:absolute;top:0;-webkit-transition:opacity .2s ease-out;transition:opacity .2s ease-out;width:100%}.mfui-9-card_link.mfui-9-card_view_background:hover .mfui-9-card__features-item-text:after{opacity:.02}.mfui-9-card__features-item-title .mfui-9-card__features-item-text{padding-right:4px}.mfui-9-card__features-item-value .mfui-9-card__features-item-text{padding-left:4px}.mfui-9-card__icons{margin-top:16px}.mfui-9-card__icons-desc{margin-bottom:12px}.mfui-9-card__icons-list{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:12px}.mfui-9-card__icons-item,.mfui-9-card__icons-list{display:-webkit-box;display:-ms-flexbox;display:flex}.mfui-9-card__icons-item-icon{-ms-flex-negative:0;flex-shrink:0;height:32px;margin-right:8px;width:32px}.mfui-9-card__icons-item-text{margin-top:4px}.mfui-9-card__price{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:8px;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline;-webkit-box-pack:center;-ms-flex-pack:center;border-top:1px solid var(--spbSky1);justify-content:center;margin-top:24px;padding-top:24px}@media screen and (min-width:1280px){.mfui-9-card__price{margin-top:32px}}.mfui-9-card__img-box+.mfui-9-card__price{border:none;padding-top:0}.mfui-9-card__price-old-value{color:var(--spbSky3);position:relative}.mfui-9-card__price-old-value:before{background-color:var(--fury);content:"";height:1px;left:-1px;position:absolute;right:-1px;top:50%}.mfui-9-card__price-value{font-size:22px;font-weight:600;letter-spacing:.5px;line-height:28px}@media screen and (min-width:768px) and (max-width:1023px){.mfui-9-card__price-value{font-size:26px;line-height:32px}}@media screen and (min-width:1024px){.mfui-9-card__price-value{font-size:28px;line-height:36px}}@media screen and (min-width:1280px){.mfui-9-card__price-value{font-size:32px;line-height:40px}}.mfui-9-card__buttons{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:16px;margin-bottom:-8px;margin-top:32px}.mfui-9-card__price+.mfui-9-card__buttons{margin-top:24px}.mfui-9-card__button{-ms-flex-preferred-size:190px;flex-basis:190px;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1}.mfui-9-card__footer{margin-top:auto}
|