mautourco-components 0.2.163 → 0.2.165
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/components/atoms/CardServiceAccom/CardServiceAccom.css +8 -8
- package/dist/components/atoms/Radio/Radio.css +52 -0
- package/dist/components/atoms/Radio/Radio.d.ts +7 -0
- package/dist/components/atoms/Radio/Radio.js +8 -0
- package/dist/components/molecules/ActionDropdown/ActionDropdown.css +12 -21
- package/dist/components/molecules/BookingPax/BookingPaxClient/BookingPaxClient.css +2 -6
- package/dist/components/molecules/BookingResume/BookingResumeLayout/BookingResumeLayout.css +13 -7
- package/dist/components/molecules/BookingResume/ResumeAccom/ResumeAccom.css +11 -15
- package/dist/components/molecules/BookingResume/ResumeExcursion/ResumeExcursion.css +2 -4
- package/dist/components/molecules/Breadcrumbs/Breadcrumbs.css +10 -14
- package/dist/components/molecules/DetailsInfo/DetailsClient/DetailsClient.css +5 -17
- package/dist/components/molecules/DialogContentPolicy/CancellationLayout/CancellationLayout.css +18 -39
- package/dist/components/molecules/FeatureRow/FeatureRow.css +14 -6
- package/dist/components/molecules/LanguageSelector/LanguageSelector.css +7 -8
- package/dist/components/molecules/PaxDisplay/PaxDisplay.css +8 -13
- package/dist/components/molecules/ServiceInfo/ServiceInfo.css +7 -5
- package/dist/components/molecules/ServiceTitle/ServiceTitle.css +4 -7
- package/dist/components/molecules/StepperTimeline/StepperTimeline.css +4 -7
- package/dist/components/molecules/TextWithBorderBottom/TextWithBorderBottom.css +4 -15
- package/dist/components/molecules/TimelineItem/TimelineHeader.css +7 -29
- package/dist/components/molecules/TimelineItem/TimelineItem.css +2 -6
- package/dist/components/organisms/Booking/BookingDocket/BookingDocket.css +28 -15
- package/dist/components/organisms/Booking/BookingStep/BookingStep.css +6 -5
- package/dist/components/organisms/CarBookingCard/CarBookingCard.css +9 -4
- package/dist/components/organisms/DialogBookNow/DialogBookNow.css +55 -0
- package/dist/components/organisms/DialogBookNow/DialogBookNow.d.ts +17 -0
- package/dist/components/organisms/DialogBookNow/DialogBookNow.js +22 -0
- package/dist/components/organisms/DialogCancelService/CancelBooking/CancelBooking.css +3 -2
- package/dist/components/organisms/DialogCancelService/ConfirmDelete/ConfirmDelete.css +4 -3
- package/dist/components/organisms/DialogComparison/DialogComparison.css +3 -2
- package/dist/components/organisms/DialogDeleteConfirm/DialogDeleteConfirmMultiple/DialogDeleteConfirmMultiple.css +10 -13
- package/dist/components/organisms/QuoteHeader/QuoteHeader.css +27 -62
- package/dist/components/organisms/TabCancellationPolicy/PolicyAccom/PolicyAccom.css +8 -3
- package/dist/components/organisms/TabCancellationPolicy/TabCancellationPolicyLayout/TabCancellationPolicyLayout.css +16 -21
- package/dist/components/organisms/TabServiceDetails/TabServiceDetailsLayout/TabServiceDetailsLayout.css +38 -20
- package/dist/components/organisms/Table/Table.css +75 -92
- package/package.json +1 -1
- package/src/components/atoms/Radio/Radio.css +38 -0
- package/src/components/atoms/Radio/Radio.tsx +27 -0
- package/src/components/organisms/DialogBookNow/DialogBookNow.css +29 -0
- package/src/components/organisms/DialogBookNow/DialogBookNow.tsx +83 -0
- package/src/components/organisms/TabCancellationPolicy/PolicyAccom/PolicyAccom.css +3 -0
|
@@ -12,13 +12,15 @@
|
|
|
12
12
|
background-color: var(--card-color-background-default);
|
|
13
13
|
overflow: hidden;
|
|
14
14
|
min-height: 267px;
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.card-service-accom.card-service-accom--border-left {
|
|
18
|
+
position: relative;
|
|
19
19
|
border-top-left-radius: var(--border-radius-rounded-xl);
|
|
20
20
|
border-bottom-left-radius: var(--border-radius-rounded-xl);
|
|
21
|
-
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.card-service-accom.card-service-accom--border-left::before {
|
|
22
24
|
content: '';
|
|
23
25
|
position: absolute;
|
|
24
26
|
left: 0;
|
|
@@ -26,6 +28,4 @@
|
|
|
26
28
|
width: 9px;
|
|
27
29
|
height: 100%;
|
|
28
30
|
background-color: var(--color-elevation-brand-default);
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly, this file was auto-generated.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
.mtc-radio {
|
|
6
|
+
display: flex;
|
|
7
|
+
align-items: center;
|
|
8
|
+
column-gap: 0.5rem;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.mtc-radio input {
|
|
12
|
+
display: none;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.mtc-radio input:checked + .mtc-radio__btn {
|
|
16
|
+
border-color: var(--radio-button-color-radio-border-selected-default);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.mtc-radio input:checked + .mtc-radio__btn::after {
|
|
20
|
+
opacity: 1;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.mtc-radio__btn {
|
|
24
|
+
position: relative;
|
|
25
|
+
display: inline-block;
|
|
26
|
+
height: 1.25rem;
|
|
27
|
+
width: 1.25rem;
|
|
28
|
+
cursor: pointer;
|
|
29
|
+
flex: 0 0 20px;
|
|
30
|
+
border: 1px solid var(--radio-button-color-radio-border-default-default);
|
|
31
|
+
border-radius: 50%;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.mtc-radio__btn::after {
|
|
35
|
+
content: '';
|
|
36
|
+
position: absolute;
|
|
37
|
+
inset: 4px;
|
|
38
|
+
background-color: var(--radio-button-color-radio-selected-default, #0f7173);
|
|
39
|
+
border-radius: 50%;
|
|
40
|
+
opacity: 0;
|
|
41
|
+
transition: opacity 0.2s ease;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.mtc-radio__text {
|
|
45
|
+
cursor: pointer;
|
|
46
|
+
font-size: var(--font-size-text-sm, 14px);
|
|
47
|
+
font-weight: var(--font-weight-font-medium, 500);
|
|
48
|
+
line-height: var(--font-leading-leading-sm, 20px);
|
|
49
|
+
font-family:
|
|
50
|
+
var(--font-font-family-body, 'Satoshi'), 'Satoshi', 'Inter', 'Segoe UI', 'system-ui',
|
|
51
|
+
sans-serif;
|
|
52
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { useId } from 'react';
|
|
3
|
+
import './Radio.css';
|
|
4
|
+
export default function Radio(props) {
|
|
5
|
+
var checked = props.checked, label = props.label, onChange = props.onChange;
|
|
6
|
+
var id = useId();
|
|
7
|
+
return (_jsxs("label", { htmlFor: id, className: "mtc-radio", children: [_jsx("input", { type: "radio", id: id, checked: checked, onChange: function (e) { return onChange(e.target.checked); } }), _jsx("span", { className: "mtc-radio__btn" }), label && _jsx("span", { className: "mtc-radio__text", children: label })] }));
|
|
8
|
+
}
|
|
@@ -8,32 +8,23 @@
|
|
|
8
8
|
background-color: #fff;
|
|
9
9
|
padding: var(--spacing-padding-px-4);
|
|
10
10
|
border-radius: var(--border-radius-rounded-xl);
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
button {
|
|
21
|
-
transition-property: all;
|
|
22
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
23
|
-
transition-duration: 150ms;
|
|
24
|
-
}
|
|
25
|
-
button {
|
|
26
|
-
transition-duration: 200ms;
|
|
27
|
-
}
|
|
28
|
-
button {
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.mtc-action-dropdown button {
|
|
14
|
+
display: flex;
|
|
15
|
+
width: 100%;
|
|
16
|
+
align-items: center;
|
|
17
|
+
transition-property: all;
|
|
18
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
19
|
+
transition-duration: 200ms;
|
|
29
20
|
height: 36px;
|
|
30
21
|
border-radius: var(--border-radius-rounded-md);
|
|
31
22
|
padding-inline: var(--spacing-padding-px-2);
|
|
32
|
-
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.mtc-action-dropdown button:hover {
|
|
33
26
|
background-color: var(--color-neutral-100);
|
|
34
27
|
}
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
28
|
|
|
38
29
|
.mtc-action-dropdown-trigger {
|
|
39
30
|
display: flex;
|
|
@@ -8,26 +8,32 @@
|
|
|
8
8
|
margin-bottom: calc(1rem * var(--tw-space-y-reverse));
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
+
@media (min-width: 1280px) {
|
|
12
|
+
|
|
11
13
|
.booking-resume-layout__flex {
|
|
12
|
-
@media (min-width: 1280px) {
|
|
13
14
|
display: flex;
|
|
14
|
-
gap: 16px
|
|
15
|
-
}
|
|
15
|
+
gap: 16px
|
|
16
16
|
}
|
|
17
|
+
}
|
|
17
18
|
|
|
18
19
|
.booking-resume-layout__image {
|
|
19
20
|
height: 200px;
|
|
20
21
|
border-radius: var(--border-radius-rounded-xl);
|
|
21
22
|
overflow: hidden;
|
|
22
23
|
margin-bottom: 16px;
|
|
23
|
-
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
@media (min-width: 1280px) {
|
|
27
|
+
|
|
28
|
+
.booking-resume-layout__image {
|
|
24
29
|
margin-bottom: 0;
|
|
25
|
-
flex: 0 0 250px
|
|
30
|
+
flex: 0 0 250px
|
|
31
|
+
}
|
|
26
32
|
}
|
|
27
|
-
|
|
33
|
+
|
|
34
|
+
.booking-resume-layout__image img {
|
|
28
35
|
width: 100%;
|
|
29
36
|
}
|
|
30
|
-
}
|
|
31
37
|
|
|
32
38
|
.booking-resume-layout__content {
|
|
33
39
|
flex-grow: 1;
|
|
@@ -2,20 +2,16 @@
|
|
|
2
2
|
* Do not edit directly, this file was auto-generated.
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
-
.resume-accom {
|
|
6
|
-
|
|
7
|
-
padding-right: 0.5rem;
|
|
8
|
-
}
|
|
9
|
-
.service-info__item-label {
|
|
5
|
+
.resume-accom .service-info__item-label {
|
|
6
|
+
padding-right: 0.5rem;
|
|
10
7
|
flex: 0 0 auto;
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.resume-accom .service-info__item-content {
|
|
11
|
+
padding-left: 0.5rem;
|
|
12
|
+
padding-right: 0.5rem;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.resume-accom .service-info__item-content::before {
|
|
18
16
|
background-color: var(--color-border-medium);
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
}
|
|
17
|
+
}
|
|
@@ -6,19 +6,15 @@
|
|
|
6
6
|
display: flex;
|
|
7
7
|
align-items: center;
|
|
8
8
|
column-gap: 0.5rem;
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
padding-left: 0.5rem;
|
|
20
|
-
}
|
|
21
|
-
li:not(:first-child) {
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.breadcrumbs li {
|
|
12
|
+
display: flex;
|
|
13
|
+
align-items: center;
|
|
14
|
+
column-gap: 0.5rem;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.breadcrumbs li:not(:first-child) {
|
|
18
|
+
padding-left: 0.5rem;
|
|
22
19
|
border-left: solid 1px var(--divider-color-default);
|
|
23
|
-
}
|
|
24
20
|
}
|
|
@@ -8,25 +8,13 @@
|
|
|
8
8
|
margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
.details-client {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
.fi {
|
|
17
|
-
width: 1rem;
|
|
18
|
-
}
|
|
19
|
-
.fi {
|
|
20
|
-
overflow: hidden;
|
|
21
|
-
}
|
|
22
|
-
.fi {
|
|
23
|
-
border-radius: 9999px;
|
|
24
|
-
}
|
|
25
|
-
.fi {
|
|
11
|
+
.details-client .chip__label .fi {
|
|
12
|
+
height: 1rem;
|
|
13
|
+
width: 1rem;
|
|
14
|
+
overflow: hidden;
|
|
15
|
+
border-radius: 9999px;
|
|
26
16
|
flex: 0 0 16px;
|
|
27
17
|
background-size: cover;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
18
|
}
|
|
31
19
|
|
|
32
20
|
.details-client__item > :not([hidden]) ~ :not([hidden]) {
|
package/dist/components/molecules/DialogContentPolicy/CancellationLayout/CancellationLayout.css
CHANGED
|
@@ -15,22 +15,14 @@
|
|
|
15
15
|
.cancellation-layout {
|
|
16
16
|
padding-top: 1.5rem;
|
|
17
17
|
padding-bottom: 1.5rem;
|
|
18
|
-
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.cancellation-layout::after {
|
|
19
21
|
content: '';
|
|
20
|
-
}
|
|
21
|
-
&::after {
|
|
22
22
|
position: absolute;
|
|
23
|
-
}
|
|
24
|
-
&::after {
|
|
25
23
|
bottom: 0px;
|
|
26
|
-
}
|
|
27
|
-
&::after {
|
|
28
24
|
left: 0px;
|
|
29
|
-
}
|
|
30
|
-
&::after {
|
|
31
25
|
right: 0px;
|
|
32
|
-
}
|
|
33
|
-
&::after {
|
|
34
26
|
height: 1px;
|
|
35
27
|
background-color: transparent;
|
|
36
28
|
background-image: repeating-linear-gradient(
|
|
@@ -41,14 +33,13 @@
|
|
|
41
33
|
transparent 16px
|
|
42
34
|
);
|
|
43
35
|
}
|
|
44
|
-
|
|
45
|
-
|
|
36
|
+
|
|
37
|
+
.cancellation-layout:last-child::after {
|
|
46
38
|
display: none;
|
|
47
39
|
}
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
}
|
|
40
|
+
|
|
41
|
+
.cancellation-layout .chip__label {
|
|
42
|
+
column-gap: 1rem;
|
|
52
43
|
}
|
|
53
44
|
|
|
54
45
|
.cancellation-layout__fee {
|
|
@@ -58,28 +49,15 @@
|
|
|
58
49
|
justify-content: space-between;
|
|
59
50
|
padding-top: 0.75rem;
|
|
60
51
|
padding-bottom: 0.75rem;
|
|
61
|
-
|
|
62
|
-
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.cancellation-layout__fee::before,
|
|
55
|
+
.cancellation-layout__fee::after {
|
|
63
56
|
content: '';
|
|
64
|
-
}
|
|
65
|
-
&::before,
|
|
66
|
-
&::after {
|
|
67
57
|
position: absolute;
|
|
68
|
-
}
|
|
69
|
-
&::before,
|
|
70
|
-
&::after {
|
|
71
58
|
top: 0px;
|
|
72
|
-
}
|
|
73
|
-
&::before,
|
|
74
|
-
&::after {
|
|
75
59
|
left: 0px;
|
|
76
|
-
}
|
|
77
|
-
&::before,
|
|
78
|
-
&::after {
|
|
79
60
|
right: 0px;
|
|
80
|
-
}
|
|
81
|
-
&::before,
|
|
82
|
-
&::after {
|
|
83
61
|
height: 1px;
|
|
84
62
|
background-color: transparent;
|
|
85
63
|
background-image: repeating-linear-gradient(
|
|
@@ -90,11 +68,11 @@
|
|
|
90
68
|
transparent 8px
|
|
91
69
|
);
|
|
92
70
|
}
|
|
93
|
-
|
|
71
|
+
|
|
72
|
+
.cancellation-layout__fee::after {
|
|
94
73
|
top: initial;
|
|
95
74
|
bottom: 0;
|
|
96
75
|
}
|
|
97
|
-
}
|
|
98
76
|
|
|
99
77
|
.cancellation-layout__content {
|
|
100
78
|
display: flex;
|
|
@@ -110,8 +88,9 @@
|
|
|
110
88
|
overflow: hidden;
|
|
111
89
|
max-width: 150px;
|
|
112
90
|
border-radius: var(--border-radius-rounded-2xl);
|
|
113
|
-
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.cancellation-layout__content-right img {
|
|
114
94
|
object-fit: cover;
|
|
115
95
|
height: 200px;
|
|
116
|
-
}
|
|
117
|
-
}
|
|
96
|
+
}
|
|
@@ -7,12 +7,16 @@
|
|
|
7
7
|
flex-direction: column;
|
|
8
8
|
gap: var(--spacing-gap-gap-1, 4px);
|
|
9
9
|
padding: var(--spacing-padding-py-0, 0px) var(--spacing-padding-px-0, 0px);
|
|
10
|
-
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
@media (width >= 1536px) {
|
|
13
|
+
|
|
14
|
+
.feature-row {
|
|
11
15
|
flex-direction: row;
|
|
12
16
|
align-items: center;
|
|
13
|
-
gap: var(--spacing-gap-gap-3, 12px)
|
|
14
|
-
}
|
|
17
|
+
gap: var(--spacing-gap-gap-3, 12px)
|
|
15
18
|
}
|
|
19
|
+
}
|
|
16
20
|
|
|
17
21
|
.feature-row__label {
|
|
18
22
|
display: flex;
|
|
@@ -36,13 +40,17 @@
|
|
|
36
40
|
|
|
37
41
|
.feature-row__divider {
|
|
38
42
|
display: none;
|
|
39
|
-
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
@media (width >= 1536px) {
|
|
46
|
+
|
|
47
|
+
.feature-row__divider {
|
|
40
48
|
display: block;
|
|
41
49
|
flex-shrink: 0;
|
|
42
50
|
height: 17px;
|
|
43
|
-
width: var(--divider-border-width-default, 1px)
|
|
44
|
-
}
|
|
51
|
+
width: var(--divider-border-width-default, 1px)
|
|
45
52
|
}
|
|
53
|
+
}
|
|
46
54
|
|
|
47
55
|
.feature-row__value {
|
|
48
56
|
display: flex;
|
|
@@ -15,14 +15,14 @@
|
|
|
15
15
|
border: solid 1px var(--color-tuna-500);
|
|
16
16
|
border-radius: 12px;
|
|
17
17
|
transition: all 0.5s ease;
|
|
18
|
-
|
|
18
|
+
}
|
|
19
|
+
.language-selector__trigger:hover {
|
|
19
20
|
border-color: #262626;
|
|
20
21
|
}
|
|
21
|
-
|
|
22
|
+
.language-selector__trigger.language-selector__trigger--with-text {
|
|
22
23
|
border-color: #262626;
|
|
23
24
|
color: #262626;
|
|
24
25
|
}
|
|
25
|
-
}
|
|
26
26
|
|
|
27
27
|
.language-selector__label {
|
|
28
28
|
margin-bottom: 0.5rem;
|
|
@@ -116,10 +116,9 @@
|
|
|
116
116
|
flex-basis: 1rem;
|
|
117
117
|
overflow: hidden;
|
|
118
118
|
border-radius: 9999px;
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.language-selector__flag .fi {
|
|
122
|
+
width: 1rem;
|
|
123
123
|
flex: 0 0 1.333333em;
|
|
124
|
-
}
|
|
125
124
|
}
|
|
@@ -8,16 +8,13 @@
|
|
|
8
8
|
margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
.pax-display__item {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
}
|
|
19
|
-
&:not(:first-child) {
|
|
20
|
-
&::before {
|
|
11
|
+
.pax-display__item:not(:first-child) {
|
|
12
|
+
position: relative;
|
|
13
|
+
padding-left: 0.5rem;
|
|
14
|
+
padding-right: 0.5rem;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.pax-display__item:not(:first-child)::before {
|
|
21
18
|
content: '';
|
|
22
19
|
position: absolute;
|
|
23
20
|
left: 0;
|
|
@@ -26,6 +23,4 @@
|
|
|
26
23
|
width: 1px;
|
|
27
24
|
height: 16px;
|
|
28
25
|
background-color: var(--color-border-medium);
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
}
|
|
26
|
+
}
|
|
@@ -11,15 +11,18 @@
|
|
|
11
11
|
display: flex;
|
|
12
12
|
align-items: center;
|
|
13
13
|
column-gap: 0.5rem;
|
|
14
|
-
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.service-info__item-label:not(.label-full) {
|
|
15
17
|
flex: 0 0 118px;
|
|
16
18
|
}
|
|
17
|
-
}
|
|
18
19
|
|
|
19
20
|
.service-info__item-content {
|
|
20
21
|
position: relative;
|
|
21
22
|
padding-left: var(--spacing-gap-gap-9);
|
|
22
|
-
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.service-info__item-content::before {
|
|
23
26
|
content: '';
|
|
24
27
|
position: absolute;
|
|
25
28
|
left: 0;
|
|
@@ -28,5 +31,4 @@
|
|
|
28
31
|
height: 14px;
|
|
29
32
|
width: 1px;
|
|
30
33
|
background-color: var(--color-neutral-800);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
34
|
+
}
|
|
@@ -8,17 +8,14 @@
|
|
|
8
8
|
align-items: center;
|
|
9
9
|
column-gap: 0.5rem;
|
|
10
10
|
padding-left: 10px;
|
|
11
|
-
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.service-title::before {
|
|
12
14
|
content: '';
|
|
13
|
-
}
|
|
14
|
-
&::before {
|
|
15
15
|
position: absolute;
|
|
16
|
-
}
|
|
17
|
-
&::before {
|
|
18
16
|
width: 2px;
|
|
19
17
|
left: 0;
|
|
20
18
|
top: 4px;
|
|
21
19
|
bottom: 4px;
|
|
22
20
|
background-color: var(--color-elevation-brand-subtle);
|
|
23
|
-
}
|
|
24
|
-
}
|
|
21
|
+
}
|
|
@@ -61,18 +61,15 @@
|
|
|
61
61
|
height: 6px;
|
|
62
62
|
margin-top: -3px;
|
|
63
63
|
background-color: var(--color-gray-200);
|
|
64
|
-
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.stepper-timeline__line::before {
|
|
65
67
|
content: '';
|
|
66
|
-
}
|
|
67
|
-
&::before {
|
|
68
68
|
position: absolute;
|
|
69
|
-
}
|
|
70
|
-
&::before {
|
|
71
69
|
top: 0;
|
|
72
70
|
left: 0;
|
|
73
71
|
width: var(--progress-width);
|
|
74
72
|
height: 100%;
|
|
75
73
|
background-color: var(--color-atoll-green-800);
|
|
76
74
|
transition: width 0.5s ease-in-out;
|
|
77
|
-
}
|
|
78
|
-
}
|
|
75
|
+
}
|
|
@@ -5,26 +5,15 @@
|
|
|
5
5
|
.text-border-bottom {
|
|
6
6
|
position: relative;
|
|
7
7
|
display: inline-flex;
|
|
8
|
-
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.text-border-bottom::after {
|
|
9
11
|
content: '';
|
|
10
|
-
}
|
|
11
|
-
&::after {
|
|
12
12
|
position: absolute;
|
|
13
|
-
}
|
|
14
|
-
&::after {
|
|
15
13
|
bottom: 3px;
|
|
16
|
-
}
|
|
17
|
-
&::after {
|
|
18
14
|
left: 0px;
|
|
19
|
-
}
|
|
20
|
-
&::after {
|
|
21
15
|
right: 0px;
|
|
22
|
-
}
|
|
23
|
-
&::after {
|
|
24
16
|
height: 0.5rem;
|
|
25
|
-
}
|
|
26
|
-
&::after {
|
|
27
17
|
background-color: var(--color-orange-200);
|
|
28
18
|
z-index: -1;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
19
|
+
}
|