@wizishop/angular-components 0.0.186 → 0.0.187
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/angular-components.scss +555 -520
- package/bundles/wizishop-angular-components.umd.js +18 -1
- package/bundles/wizishop-angular-components.umd.js.map +1 -1
- package/bundles/wizishop-angular-components.umd.min.js +1 -1
- package/bundles/wizishop-angular-components.umd.min.js.map +1 -1
- package/esm2015/lib/components/shared-components.module.js +4 -2
- package/esm2015/lib/components/wrapper-multiple-block/wrapper-multiple-block.component.js +14 -0
- package/esm2015/public-api.js +2 -1
- package/fesm2015/wizishop-angular-components.js +16 -2
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/lib/components/wrapper-multiple-block/wrapper-multiple-block.component.d.ts +5 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/wizishop-angular-components-0.0.187.tgz +0 -0
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.186.tgz +0 -0
package/angular-components.scss
CHANGED
|
@@ -142,129 +142,79 @@ $wac-subtitle-color: #7A87A1!default;
|
|
|
142
142
|
.wac-table__head__cell--checkbox .wac-field-checkbox__row {
|
|
143
143
|
transform: translateX(5px);
|
|
144
144
|
}
|
|
145
|
-
.wac-
|
|
146
|
-
|
|
145
|
+
.wac-progressBarContent {
|
|
146
|
+
position: relative;
|
|
147
147
|
width: 100%;
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
position: absolute;
|
|
162
|
-
left: 50%;
|
|
163
|
-
top: 50%;
|
|
164
|
-
transform: translate(-50%, -50%);
|
|
165
|
-
padding: 50px;
|
|
166
|
-
z-index: 3;
|
|
167
|
-
max-height: 90vh;
|
|
168
|
-
display: flex;
|
|
169
|
-
flex-wrap: nowrap;
|
|
170
|
-
flex-direction: column;
|
|
171
|
-
justify-content: center;
|
|
172
|
-
align-items: center;
|
|
173
|
-
width: 100%;
|
|
174
|
-
max-width: 575px;
|
|
175
|
-
overflow: hidden;
|
|
176
|
-
|
|
177
|
-
&__content {
|
|
178
|
-
position: relative;
|
|
179
|
-
overflow: hidden;
|
|
180
|
-
display: flex;
|
|
181
|
-
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
div:not([class]) {
|
|
185
|
-
width: 100%;
|
|
186
|
-
margin: 0 0 20px;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
> * {
|
|
190
|
-
width: 100%;
|
|
148
|
+
display: block;
|
|
149
|
+
.progressBar {
|
|
150
|
+
position: relative;
|
|
151
|
+
width: 88%;
|
|
152
|
+
margin-bottom: 1rem;
|
|
153
|
+
progress {
|
|
154
|
+
&.progress {
|
|
155
|
+
margin-bottom: 0;
|
|
156
|
+
height: rem(2);
|
|
157
|
+
&::-webkit-progress-value {
|
|
158
|
+
transition: width 0.5s ease;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
191
161
|
}
|
|
192
|
-
|
|
193
|
-
&__button-close {
|
|
162
|
+
span {
|
|
194
163
|
position: absolute;
|
|
195
|
-
top:
|
|
196
|
-
|
|
197
|
-
width:
|
|
198
|
-
|
|
164
|
+
top: -4px;
|
|
165
|
+
height: 11px;
|
|
166
|
+
width: 11px;
|
|
167
|
+
background-color: $wac-border-color;
|
|
199
168
|
border-radius: 50%;
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
i {
|
|
206
|
-
color: $wac-second-color;
|
|
207
|
-
font-size: 14px;
|
|
208
|
-
font-weight: 400;
|
|
169
|
+
}
|
|
170
|
+
.is-danger {
|
|
171
|
+
background-color: $wac-primary-button;
|
|
172
|
+
&::-webkit-progress-value {
|
|
173
|
+
background-color: $wac-primary-button;
|
|
209
174
|
}
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
175
|
+
}
|
|
176
|
+
.is-warning {
|
|
177
|
+
background-color: $wac-orange-color;
|
|
178
|
+
&::-webkit-progress-value {
|
|
179
|
+
background-color: $wac-orange-color;
|
|
215
180
|
}
|
|
216
181
|
}
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
182
|
+
.is-success {
|
|
183
|
+
background-color: $wac-green-color;
|
|
184
|
+
&::-webkit-progress-value {
|
|
185
|
+
background-color: $wac-green-color;
|
|
186
|
+
}
|
|
222
187
|
}
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
188
|
+
}
|
|
189
|
+
.size {
|
|
190
|
+
display: inline;
|
|
191
|
+
color: $wac-color-text-grey;
|
|
192
|
+
position: absolute;
|
|
193
|
+
right: 0;
|
|
194
|
+
top: -9px;
|
|
195
|
+
background: $wac-white;
|
|
196
|
+
padding-left: 0.875rem;
|
|
197
|
+
.is-success {
|
|
198
|
+
color: $wac-green-color;
|
|
231
199
|
}
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
font-size: rem(14);
|
|
235
|
-
line-height: rem(25);
|
|
236
|
-
color: $wac-second-color;
|
|
237
|
-
width: 100%;
|
|
238
|
-
text-align: center;
|
|
239
|
-
padding: 0;
|
|
240
|
-
margin: 0;
|
|
200
|
+
.is-warning {
|
|
201
|
+
color: $wac-orange-color;
|
|
241
202
|
}
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
203
|
+
.is-danger {
|
|
204
|
+
color: $wac-primary-button;
|
|
205
|
+
}
|
|
206
|
+
> span {
|
|
207
|
+
font-size: rem(14) !important;
|
|
208
|
+
line-height: 1;
|
|
209
|
+
transform: translateY(-3px);
|
|
210
|
+
display: inline-block;
|
|
211
|
+
letter-spacing: 0;
|
|
212
|
+
strong {
|
|
213
|
+
letter-spacing: 0;
|
|
214
|
+
font-weight: 600;
|
|
252
215
|
}
|
|
253
216
|
}
|
|
254
217
|
}
|
|
255
|
-
&__background {
|
|
256
|
-
z-index: 1;
|
|
257
|
-
position: absolute;
|
|
258
|
-
top: 0;
|
|
259
|
-
left: 0;
|
|
260
|
-
width: 100%;
|
|
261
|
-
height: 100%;
|
|
262
|
-
background-color: transparentize($wac-main-text, .5);
|
|
263
|
-
}
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
.wac-free .ps-content > * {
|
|
267
|
-
padding-right: 15px;
|
|
268
218
|
}
|
|
269
219
|
.wac-radio {
|
|
270
220
|
.is-checkradio[type='radio'] {
|
|
@@ -2986,10 +2936,9 @@ $wac-subtitle-color: #7A87A1!default;
|
|
|
2986
2936
|
}
|
|
2987
2937
|
}
|
|
2988
2938
|
}
|
|
2989
|
-
.wac-
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
height: 40px;
|
|
2939
|
+
.wac-image {
|
|
2940
|
+
width: 60px;
|
|
2941
|
+
height: 60px;
|
|
2993
2942
|
|
|
2994
2943
|
&__wrapper {
|
|
2995
2944
|
@include flexbox();
|
|
@@ -2997,48 +2946,20 @@ $wac-subtitle-color: #7A87A1!default;
|
|
|
2997
2946
|
@include align-items(center);
|
|
2998
2947
|
width: 100%;
|
|
2999
2948
|
height: 100%;
|
|
3000
|
-
|
|
3001
|
-
|
|
3002
|
-
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
color: $wac-second-color;
|
|
3006
|
-
transition: color 0.3s ease-in-out;
|
|
3007
|
-
}
|
|
3008
|
-
|
|
3009
|
-
&__sublevel {
|
|
3010
|
-
position: absolute;
|
|
3011
|
-
width: 350px;
|
|
3012
|
-
top: 13px;
|
|
3013
|
-
left: 100%;
|
|
3014
|
-
z-index: -1;
|
|
3015
|
-
opacity: 0;
|
|
3016
|
-
background-color: $wac-white;
|
|
3017
|
-
border-radius: rem(3);
|
|
3018
|
-
box-shadow: 0px 2px 5px $wac-info-box-shadow;
|
|
3019
|
-
visibility: hidden;
|
|
3020
|
-
transition: opacity 0.15s ease-in-out, z-index 0.15s ease-in-out, visibility 0s linear 0.16s;
|
|
2949
|
+
border-radius: 3px;
|
|
2950
|
+
border: 1px solid $wac-border-light;
|
|
2951
|
+
background-position: center;
|
|
2952
|
+
background-size: contain;
|
|
2953
|
+
background-repeat: no-repeat;
|
|
3021
2954
|
|
|
3022
|
-
|
|
3023
|
-
|
|
3024
|
-
font-size: rem(14);
|
|
3025
|
-
line-height: rem(25);
|
|
3026
|
-
color: $wac-second-color;
|
|
3027
|
-
}
|
|
2955
|
+
&.empty {
|
|
2956
|
+
background-color: $wac-gray-background;
|
|
3028
2957
|
}
|
|
3029
2958
|
|
|
3030
|
-
|
|
3031
|
-
|
|
3032
|
-
|
|
3033
|
-
|
|
3034
|
-
}
|
|
3035
|
-
|
|
3036
|
-
.wac-info__wrapper__sublevel {
|
|
3037
|
-
visibility: visible;
|
|
3038
|
-
opacity: 1;
|
|
3039
|
-
z-index: 2;
|
|
3040
|
-
transition: visibility 0s ease 0s, opacity 0.3s ease-in-out .1s;
|
|
3041
|
-
}
|
|
2959
|
+
i {
|
|
2960
|
+
color: $wac-border-form;
|
|
2961
|
+
font-size: 25px;
|
|
2962
|
+
line-height: 23px;
|
|
3042
2963
|
}
|
|
3043
2964
|
}
|
|
3044
2965
|
}
|
|
@@ -3612,79 +3533,73 @@ span.wac-tooltip {
|
|
|
3612
3533
|
}
|
|
3613
3534
|
}
|
|
3614
3535
|
}
|
|
3615
|
-
.wac-
|
|
3616
|
-
position: relative;
|
|
3536
|
+
.wac-alert {
|
|
3617
3537
|
width: 100%;
|
|
3618
|
-
|
|
3619
|
-
|
|
3620
|
-
|
|
3621
|
-
|
|
3622
|
-
|
|
3623
|
-
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
|
|
3627
|
-
|
|
3628
|
-
|
|
3629
|
-
|
|
3538
|
+
background-color: transparentize($wac-link-color, 0.85);
|
|
3539
|
+
color: $wac-link-color;
|
|
3540
|
+
border-radius: 3px;
|
|
3541
|
+
display: flex;
|
|
3542
|
+
flex-wrap: nowrap;
|
|
3543
|
+
justify-content: space-between;
|
|
3544
|
+
padding: 20px;
|
|
3545
|
+
&.success {
|
|
3546
|
+
background-color: transparentize($wac-green-color, 0.85);
|
|
3547
|
+
p {
|
|
3548
|
+
color: $wac-p-alert-color-success;
|
|
3549
|
+
> * {
|
|
3550
|
+
color: $wac-p-alert-color-success;
|
|
3630
3551
|
}
|
|
3631
3552
|
}
|
|
3632
|
-
|
|
3633
|
-
|
|
3634
|
-
top: -4px;
|
|
3635
|
-
height: 11px;
|
|
3636
|
-
width: 11px;
|
|
3637
|
-
background-color: $wac-border-color;
|
|
3638
|
-
border-radius: 50%;
|
|
3639
|
-
}
|
|
3640
|
-
.is-danger {
|
|
3641
|
-
background-color: $wac-primary-button;
|
|
3642
|
-
&::-webkit-progress-value {
|
|
3643
|
-
background-color: $wac-primary-button;
|
|
3644
|
-
}
|
|
3553
|
+
i {
|
|
3554
|
+
color: $wac-green-color;
|
|
3645
3555
|
}
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3556
|
+
}
|
|
3557
|
+
&.warning {
|
|
3558
|
+
background-color: transparentize($wac-primary-button, 0.85);
|
|
3559
|
+
p {
|
|
3560
|
+
color: $wac-p-alert-color-warning;
|
|
3561
|
+
> * {
|
|
3562
|
+
color: $wac-p-alert-color-warning;
|
|
3650
3563
|
}
|
|
3651
3564
|
}
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
&::-webkit-progress-value {
|
|
3655
|
-
background-color: $wac-green-color;
|
|
3656
|
-
}
|
|
3565
|
+
i {
|
|
3566
|
+
color: $wac-primary-button;
|
|
3657
3567
|
}
|
|
3658
3568
|
}
|
|
3659
|
-
|
|
3660
|
-
|
|
3661
|
-
|
|
3662
|
-
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
padding-left: 0.875rem;
|
|
3667
|
-
.is-success {
|
|
3668
|
-
color: $wac-green-color;
|
|
3569
|
+
&.alert {
|
|
3570
|
+
background-color: transparentize($wac-orange-color, 0.85);
|
|
3571
|
+
p {
|
|
3572
|
+
color: $wac-p-alert-color-alert;
|
|
3573
|
+
> * {
|
|
3574
|
+
color: $wac-p-alert-color-alert;
|
|
3575
|
+
}
|
|
3669
3576
|
}
|
|
3670
|
-
|
|
3577
|
+
i {
|
|
3671
3578
|
color: $wac-orange-color;
|
|
3672
3579
|
}
|
|
3673
|
-
|
|
3674
|
-
|
|
3675
|
-
|
|
3676
|
-
|
|
3677
|
-
|
|
3678
|
-
|
|
3679
|
-
|
|
3680
|
-
|
|
3681
|
-
|
|
3682
|
-
|
|
3683
|
-
letter-spacing: 0;
|
|
3684
|
-
font-weight: 600;
|
|
3685
|
-
}
|
|
3580
|
+
}
|
|
3581
|
+
p {
|
|
3582
|
+
width: 100%;
|
|
3583
|
+
font-size: rem(14);
|
|
3584
|
+
line-height: rem(25);
|
|
3585
|
+
margin: 0;
|
|
3586
|
+
padding: 0;
|
|
3587
|
+
color: $wac-p-alert-color-default;
|
|
3588
|
+
> * {
|
|
3589
|
+
color: $wac-p-alert-color-default;
|
|
3686
3590
|
}
|
|
3687
3591
|
}
|
|
3592
|
+
i {
|
|
3593
|
+
width: auto;
|
|
3594
|
+
margin: 0 10px 0 0;
|
|
3595
|
+
color: inherit;
|
|
3596
|
+
font-size: rem(14);
|
|
3597
|
+
line-height: rem(25);
|
|
3598
|
+
}
|
|
3599
|
+
|
|
3600
|
+
.wac-button i {
|
|
3601
|
+
color: $wac-white;
|
|
3602
|
+
}
|
|
3688
3603
|
}
|
|
3689
3604
|
.wac-upload {
|
|
3690
3605
|
width: auto;
|
|
@@ -4084,62 +3999,38 @@ span.wac-tooltip {
|
|
|
4084
3999
|
}
|
|
4085
4000
|
}
|
|
4086
4001
|
}
|
|
4087
|
-
.wac-wrapper-
|
|
4002
|
+
.wac-wrapper-multiple-block {
|
|
4088
4003
|
width: 100%;
|
|
4089
4004
|
display: flex;
|
|
4090
|
-
|
|
4005
|
+
flex-direction: row-reverse;
|
|
4006
|
+
justify-content: center;
|
|
4007
|
+
align-items: flex-start;
|
|
4091
4008
|
@include media('<desktop') {
|
|
4092
|
-
flex-direction: column;
|
|
4009
|
+
flex-direction: column-reverse;
|
|
4093
4010
|
justify-content: flex-start;
|
|
4094
|
-
align-items: flex-start;
|
|
4095
4011
|
}
|
|
4096
|
-
|
|
4097
|
-
|
|
4098
|
-
flex-direction: row-reverse;
|
|
4099
|
-
|
|
4012
|
+
&__sidebar {
|
|
4013
|
+
width: 100%;
|
|
4100
4014
|
@include media('<desktop') {
|
|
4101
|
-
|
|
4102
|
-
|
|
4103
|
-
|
|
4104
|
-
|
|
4105
|
-
|
|
4106
|
-
|
|
4107
|
-
|
|
4108
|
-
}
|
|
4109
|
-
}
|
|
4015
|
+
margin: 0 0 20px;
|
|
4016
|
+
}
|
|
4017
|
+
@include media('>=desktop') {
|
|
4018
|
+
margin: 0 0 0 30px;
|
|
4019
|
+
}
|
|
4020
|
+
&:empty {
|
|
4021
|
+
display: none;
|
|
4110
4022
|
}
|
|
4111
4023
|
}
|
|
4112
|
-
|
|
4113
|
-
> div {
|
|
4024
|
+
&__content {
|
|
4114
4025
|
width: 100%;
|
|
4115
|
-
|
|
4116
|
-
|
|
4117
|
-
@include media('<tablet') {
|
|
4118
|
-
padding-right: 20px;
|
|
4026
|
+
@include media('>=desktop') {
|
|
4027
|
+
min-width: 680px;
|
|
4119
4028
|
}
|
|
4120
|
-
|
|
4121
|
-
|
|
4122
|
-
background-color: $wac-white;
|
|
4123
|
-
|
|
4124
|
-
@include media('<desktop') {
|
|
4125
|
-
margin: 0 0 20px;
|
|
4126
|
-
}
|
|
4127
|
-
|
|
4128
|
-
@include media('>=desktop') {
|
|
4129
|
-
width: 33%;
|
|
4130
|
-
min-width: 33%;
|
|
4131
|
-
}
|
|
4029
|
+
@include media('>=1400px') {
|
|
4030
|
+
min-width: 880px;
|
|
4132
4031
|
}
|
|
4133
|
-
|
|
4134
|
-
|
|
4135
|
-
background: $wac-grey center center no-repeat;
|
|
4136
|
-
background-size: auto;
|
|
4137
|
-
|
|
4138
|
-
@include media('>=desktop') {
|
|
4139
|
-
width: 67%;
|
|
4140
|
-
min-width: 67%;
|
|
4141
|
-
padding: 80px 30px;
|
|
4142
|
-
}
|
|
4032
|
+
@include media('>=1600px') {
|
|
4033
|
+
min-width: 1080px;
|
|
4143
4034
|
}
|
|
4144
4035
|
}
|
|
4145
4036
|
}
|
|
@@ -4282,29 +4173,63 @@ span.wac-tooltip {
|
|
|
4282
4173
|
.wac-free-popin .ps-content > * {
|
|
4283
4174
|
padding-right: 15px;
|
|
4284
4175
|
}
|
|
4285
|
-
|
|
4286
|
-
|
|
4287
|
-
|
|
4288
|
-
|
|
4289
|
-
color: $wac-main-text;
|
|
4176
|
+
.wac-wrapper-sidebar {
|
|
4177
|
+
width: 100%;
|
|
4178
|
+
display: flex;
|
|
4179
|
+
|
|
4290
4180
|
@include media('<desktop') {
|
|
4291
|
-
|
|
4292
|
-
|
|
4293
|
-
|
|
4294
|
-
&.with-img {
|
|
4295
|
-
display: flex;
|
|
4296
|
-
align-items: center;
|
|
4181
|
+
flex-direction: column;
|
|
4182
|
+
justify-content: flex-start;
|
|
4183
|
+
align-items: flex-start;
|
|
4297
4184
|
}
|
|
4298
|
-
|
|
4299
|
-
|
|
4185
|
+
|
|
4186
|
+
&.reverse {
|
|
4187
|
+
flex-direction: row-reverse;
|
|
4188
|
+
|
|
4189
|
+
@include media('<desktop') {
|
|
4190
|
+
flex-direction: column-reverse;
|
|
4191
|
+
|
|
4192
|
+
> div {
|
|
4193
|
+
&:nth-child(1) {
|
|
4194
|
+
@include media('<desktop') {
|
|
4195
|
+
margin: 20px 0 0;
|
|
4196
|
+
}
|
|
4197
|
+
}
|
|
4198
|
+
}
|
|
4199
|
+
}
|
|
4300
4200
|
}
|
|
4301
4201
|
|
|
4302
|
-
|
|
4303
|
-
|
|
4304
|
-
|
|
4305
|
-
|
|
4306
|
-
|
|
4307
|
-
|
|
4202
|
+
> div {
|
|
4203
|
+
width: 100%;
|
|
4204
|
+
padding-right: 30px;
|
|
4205
|
+
|
|
4206
|
+
@include media('<tablet') {
|
|
4207
|
+
padding-right: 20px;
|
|
4208
|
+
}
|
|
4209
|
+
|
|
4210
|
+
&:nth-child(1) {
|
|
4211
|
+
background-color: $wac-white;
|
|
4212
|
+
|
|
4213
|
+
@include media('<desktop') {
|
|
4214
|
+
margin: 0 0 20px;
|
|
4215
|
+
}
|
|
4216
|
+
|
|
4217
|
+
@include media('>=desktop') {
|
|
4218
|
+
width: 33%;
|
|
4219
|
+
min-width: 33%;
|
|
4220
|
+
}
|
|
4221
|
+
}
|
|
4222
|
+
|
|
4223
|
+
&:nth-child(2) {
|
|
4224
|
+
background: $wac-grey center center no-repeat;
|
|
4225
|
+
background-size: auto;
|
|
4226
|
+
|
|
4227
|
+
@include media('>=desktop') {
|
|
4228
|
+
width: 67%;
|
|
4229
|
+
min-width: 67%;
|
|
4230
|
+
padding: 80px 30px;
|
|
4231
|
+
}
|
|
4232
|
+
}
|
|
4308
4233
|
}
|
|
4309
4234
|
}
|
|
4310
4235
|
.wac-label {
|
|
@@ -4339,12 +4264,32 @@ h1.wac-h1 {
|
|
|
4339
4264
|
}
|
|
4340
4265
|
}
|
|
4341
4266
|
}
|
|
4342
|
-
|
|
4343
|
-
font-size: rem(
|
|
4344
|
-
line-height: rem(
|
|
4267
|
+
h1.wac-h1 {
|
|
4268
|
+
font-size: rem(30);
|
|
4269
|
+
line-height: rem(35);
|
|
4345
4270
|
font-weight: 500;
|
|
4346
4271
|
color: $wac-main-text;
|
|
4347
|
-
|
|
4272
|
+
@include media('<desktop') {
|
|
4273
|
+
font-size: rem(22);
|
|
4274
|
+
line-height: rem(30);
|
|
4275
|
+
}
|
|
4276
|
+
&.with-img {
|
|
4277
|
+
display: flex;
|
|
4278
|
+
align-items: center;
|
|
4279
|
+
}
|
|
4280
|
+
&.center {
|
|
4281
|
+
text-align: center;
|
|
4282
|
+
}
|
|
4283
|
+
|
|
4284
|
+
small {
|
|
4285
|
+
font-size: rem(18);
|
|
4286
|
+
display: inline-block;
|
|
4287
|
+
margin-left: rem(5);
|
|
4288
|
+
font-style: italic;
|
|
4289
|
+
font-weight: normal;
|
|
4290
|
+
}
|
|
4291
|
+
}
|
|
4292
|
+
.wac-mosaic {
|
|
4348
4293
|
height: 450px;
|
|
4349
4294
|
position: relative;
|
|
4350
4295
|
&__loader {
|
|
@@ -4404,86 +4349,138 @@ h2.wac-h2 {
|
|
|
4404
4349
|
}
|
|
4405
4350
|
}
|
|
4406
4351
|
}
|
|
4407
|
-
|
|
4408
|
-
font-size: rem(
|
|
4409
|
-
line-height: rem(
|
|
4352
|
+
h2.wac-h2 {
|
|
4353
|
+
font-size: rem(18);
|
|
4354
|
+
line-height: rem(21);
|
|
4410
4355
|
font-weight: 500;
|
|
4411
4356
|
color: $wac-main-text;
|
|
4412
|
-
|
|
4413
|
-
|
|
4414
|
-
}
|
|
4415
|
-
}
|
|
4416
|
-
.wac-alert {
|
|
4357
|
+
}.wac-free {
|
|
4358
|
+
height: 100%;
|
|
4417
4359
|
width: 100%;
|
|
4418
|
-
|
|
4419
|
-
|
|
4420
|
-
|
|
4421
|
-
|
|
4422
|
-
|
|
4423
|
-
|
|
4424
|
-
|
|
4425
|
-
|
|
4426
|
-
background-color:
|
|
4427
|
-
|
|
4428
|
-
|
|
4429
|
-
|
|
4430
|
-
|
|
4431
|
-
|
|
4360
|
+
width: 100vw;
|
|
4361
|
+
height: 100vh;
|
|
4362
|
+
position: fixed;
|
|
4363
|
+
top: 0;
|
|
4364
|
+
left: 0;
|
|
4365
|
+
z-index: 9999;
|
|
4366
|
+
|
|
4367
|
+
&__wrapper {
|
|
4368
|
+
background-color: white;
|
|
4369
|
+
border: 1px solid $wac-border-color;
|
|
4370
|
+
border-radius: 3px;
|
|
4371
|
+
margin: auto;
|
|
4372
|
+
box-shadow: 0px 10px 40px $wac-free-popin-boxshadow;
|
|
4373
|
+
position: absolute;
|
|
4374
|
+
left: 50%;
|
|
4375
|
+
top: 50%;
|
|
4376
|
+
transform: translate(-50%, -50%);
|
|
4377
|
+
padding: 50px;
|
|
4378
|
+
z-index: 3;
|
|
4379
|
+
max-height: 90vh;
|
|
4380
|
+
display: flex;
|
|
4381
|
+
flex-wrap: nowrap;
|
|
4382
|
+
flex-direction: column;
|
|
4383
|
+
justify-content: center;
|
|
4384
|
+
align-items: center;
|
|
4385
|
+
width: 100%;
|
|
4386
|
+
max-width: 575px;
|
|
4387
|
+
overflow: hidden;
|
|
4388
|
+
|
|
4389
|
+
&__content {
|
|
4390
|
+
position: relative;
|
|
4391
|
+
overflow: hidden;
|
|
4392
|
+
display: flex;
|
|
4393
|
+
|
|
4432
4394
|
}
|
|
4433
|
-
|
|
4434
|
-
|
|
4395
|
+
|
|
4396
|
+
div:not([class]) {
|
|
4397
|
+
width: 100%;
|
|
4398
|
+
margin: 0 0 20px;
|
|
4435
4399
|
}
|
|
4436
|
-
|
|
4437
|
-
|
|
4438
|
-
|
|
4439
|
-
|
|
4440
|
-
|
|
4441
|
-
|
|
4442
|
-
|
|
4400
|
+
|
|
4401
|
+
> * {
|
|
4402
|
+
width: 100%;
|
|
4403
|
+
}
|
|
4404
|
+
|
|
4405
|
+
&__button-close {
|
|
4406
|
+
position: absolute;
|
|
4407
|
+
top: 10px;
|
|
4408
|
+
right: 10px;
|
|
4409
|
+
width: 30px;
|
|
4410
|
+
height: 30px;
|
|
4411
|
+
border-radius: 50%;
|
|
4412
|
+
display: flex;
|
|
4413
|
+
justify-content: center;
|
|
4414
|
+
align-items: center;
|
|
4415
|
+
background-color: $wac-popin-btn-close;
|
|
4416
|
+
transition: .3s ease;
|
|
4417
|
+
i {
|
|
4418
|
+
color: $wac-second-color;
|
|
4419
|
+
font-size: 14px;
|
|
4420
|
+
font-weight: 400;
|
|
4421
|
+
}
|
|
4422
|
+
&:hover, &:focus {
|
|
4423
|
+
background-color: $wac-main-text;
|
|
4424
|
+
i {
|
|
4425
|
+
color: $wac-white;
|
|
4426
|
+
}
|
|
4443
4427
|
}
|
|
4444
4428
|
}
|
|
4445
|
-
|
|
4446
|
-
|
|
4429
|
+
|
|
4430
|
+
img {
|
|
4431
|
+
display: block;
|
|
4432
|
+
max-width: 200px;
|
|
4433
|
+
margin: 0 auto rem(20);
|
|
4447
4434
|
}
|
|
4448
|
-
|
|
4449
|
-
|
|
4450
|
-
|
|
4435
|
+
|
|
4436
|
+
h2 {
|
|
4437
|
+
font-size: rem(20);
|
|
4438
|
+
line-height: rem(25);
|
|
4439
|
+
margin: 0 0 rem(20);
|
|
4440
|
+
font-weight: 500;
|
|
4441
|
+
width: 100%;
|
|
4442
|
+
text-align: center;
|
|
4443
|
+
}
|
|
4444
|
+
|
|
4451
4445
|
p {
|
|
4452
|
-
|
|
4453
|
-
|
|
4454
|
-
|
|
4455
|
-
|
|
4446
|
+
font-size: rem(14);
|
|
4447
|
+
line-height: rem(25);
|
|
4448
|
+
color: $wac-second-color;
|
|
4449
|
+
width: 100%;
|
|
4450
|
+
text-align: center;
|
|
4451
|
+
padding: 0;
|
|
4452
|
+
margin: 0;
|
|
4456
4453
|
}
|
|
4457
|
-
|
|
4458
|
-
|
|
4454
|
+
|
|
4455
|
+
&__buttons {
|
|
4456
|
+
width: 100%;
|
|
4457
|
+
display: flex;
|
|
4458
|
+
flex-direction: column;
|
|
4459
|
+
align-items: center;
|
|
4460
|
+
margin: 30px 0 0;
|
|
4461
|
+
&__button {
|
|
4462
|
+
margin: 10px;
|
|
4463
|
+
width: auto;
|
|
4464
|
+
}
|
|
4459
4465
|
}
|
|
4460
4466
|
}
|
|
4461
|
-
|
|
4467
|
+
&__background {
|
|
4468
|
+
z-index: 1;
|
|
4469
|
+
position: absolute;
|
|
4470
|
+
top: 0;
|
|
4471
|
+
left: 0;
|
|
4462
4472
|
width: 100%;
|
|
4463
|
-
|
|
4464
|
-
|
|
4465
|
-
margin: 0;
|
|
4466
|
-
padding: 0;
|
|
4467
|
-
color: $wac-p-alert-color-default;
|
|
4468
|
-
> * {
|
|
4469
|
-
color: $wac-p-alert-color-default;
|
|
4470
|
-
}
|
|
4471
|
-
}
|
|
4472
|
-
i {
|
|
4473
|
-
width: auto;
|
|
4474
|
-
margin: 0 10px 0 0;
|
|
4475
|
-
color: inherit;
|
|
4476
|
-
font-size: rem(14);
|
|
4477
|
-
line-height: rem(25);
|
|
4473
|
+
height: 100%;
|
|
4474
|
+
background-color: transparentize($wac-main-text, .5);
|
|
4478
4475
|
}
|
|
4476
|
+
}
|
|
4479
4477
|
|
|
4480
|
-
|
|
4481
|
-
|
|
4482
|
-
}
|
|
4478
|
+
.wac-free .ps-content > * {
|
|
4479
|
+
padding-right: 15px;
|
|
4483
4480
|
}
|
|
4484
|
-
|
|
4485
|
-
font-size: rem(
|
|
4486
|
-
line-height: rem(
|
|
4481
|
+
h3.wac-h3 {
|
|
4482
|
+
font-size: rem(16);
|
|
4483
|
+
line-height: rem(19);
|
|
4487
4484
|
font-weight: 500;
|
|
4488
4485
|
color: $wac-main-text;
|
|
4489
4486
|
&.grey {
|
|
@@ -5676,6 +5673,15 @@ h4.wac-h4 {
|
|
|
5676
5673
|
}
|
|
5677
5674
|
}
|
|
5678
5675
|
}
|
|
5676
|
+
h4.wac-h4 {
|
|
5677
|
+
font-size: rem(14);
|
|
5678
|
+
line-height: rem(16);
|
|
5679
|
+
font-weight: 500;
|
|
5680
|
+
color: $wac-main-text;
|
|
5681
|
+
&.grey {
|
|
5682
|
+
color: $wac-second-color;
|
|
5683
|
+
}
|
|
5684
|
+
}
|
|
5679
5685
|
.wac-edit-in-place.nwb-wrapper {
|
|
5680
5686
|
display: inline-block;
|
|
5681
5687
|
position: relative;
|
|
@@ -5845,6 +5851,84 @@ h4.wac-h4 {
|
|
|
5845
5851
|
z-index: 2;
|
|
5846
5852
|
}
|
|
5847
5853
|
}
|
|
5854
|
+
.wac-loader {
|
|
5855
|
+
&.is-small {
|
|
5856
|
+
position: absolute;
|
|
5857
|
+
right: 0;
|
|
5858
|
+
left: 0;
|
|
5859
|
+
top: -70px;
|
|
5860
|
+
transform: scale(0.6);
|
|
5861
|
+
}
|
|
5862
|
+
margin-bottom: rem(80);
|
|
5863
|
+
|
|
5864
|
+
@keyframes rotate {
|
|
5865
|
+
0% {
|
|
5866
|
+
transform: rotate(0deg);
|
|
5867
|
+
}
|
|
5868
|
+
50% {
|
|
5869
|
+
transform: rotate(180deg);
|
|
5870
|
+
}
|
|
5871
|
+
100% {
|
|
5872
|
+
transform: rotate(360deg);
|
|
5873
|
+
}
|
|
5874
|
+
}
|
|
5875
|
+
|
|
5876
|
+
@keyframes rotate2 {
|
|
5877
|
+
0% {
|
|
5878
|
+
transform: rotate(0deg);
|
|
5879
|
+
border-top-color: $wac-color-loader;
|
|
5880
|
+
}
|
|
5881
|
+
50% {
|
|
5882
|
+
transform: rotate(180deg);
|
|
5883
|
+
border-top-color: $wac-color-loader2;
|
|
5884
|
+
}
|
|
5885
|
+
100% {
|
|
5886
|
+
transform: rotate(360deg);
|
|
5887
|
+
border-top-color: $wac-color-loader;
|
|
5888
|
+
}
|
|
5889
|
+
}
|
|
5890
|
+
|
|
5891
|
+
@mixin loaderDivMixin {
|
|
5892
|
+
border-radius: 50%;
|
|
5893
|
+
padding: rem(8);
|
|
5894
|
+
border: rem(2) solid transparent;
|
|
5895
|
+
animation: rotate linear 3.5s infinite;
|
|
5896
|
+
}
|
|
5897
|
+
|
|
5898
|
+
.loader {
|
|
5899
|
+
position: relative;
|
|
5900
|
+
margin: rem(75) auto;
|
|
5901
|
+
width: rem(150);
|
|
5902
|
+
height: rem(150);
|
|
5903
|
+
display: block;
|
|
5904
|
+
overflow: hidden;
|
|
5905
|
+
div {
|
|
5906
|
+
height: 100%;
|
|
5907
|
+
}
|
|
5908
|
+
}
|
|
5909
|
+
|
|
5910
|
+
/* loader 1 */
|
|
5911
|
+
.loader1,
|
|
5912
|
+
.loader1 div {
|
|
5913
|
+
@include loaderDivMixin;
|
|
5914
|
+
border-top-color: $wac-color-loader;
|
|
5915
|
+
border-bottom-color: $wac-color-loader2;
|
|
5916
|
+
}
|
|
5917
|
+
|
|
5918
|
+
div:hover {
|
|
5919
|
+
animation-play-state: paused;
|
|
5920
|
+
}
|
|
5921
|
+
|
|
5922
|
+
.loader,
|
|
5923
|
+
.loader * {
|
|
5924
|
+
will-change: transform;
|
|
5925
|
+
}
|
|
5926
|
+
|
|
5927
|
+
p {
|
|
5928
|
+
margin-top: -50px;
|
|
5929
|
+
font-weight: 500;
|
|
5930
|
+
}
|
|
5931
|
+
}
|
|
5848
5932
|
|
|
5849
5933
|
|
|
5850
5934
|
.wac {
|
|
@@ -6807,117 +6891,7 @@ div.wac-field-input-search {
|
|
|
6807
6891
|
}
|
|
6808
6892
|
}
|
|
6809
6893
|
}
|
|
6810
|
-
.wac-
|
|
6811
|
-
width: 60px;
|
|
6812
|
-
height: 60px;
|
|
6813
|
-
|
|
6814
|
-
&__wrapper {
|
|
6815
|
-
@include flexbox();
|
|
6816
|
-
@include justify-content(center);
|
|
6817
|
-
@include align-items(center);
|
|
6818
|
-
width: 100%;
|
|
6819
|
-
height: 100%;
|
|
6820
|
-
border-radius: 3px;
|
|
6821
|
-
border: 1px solid $wac-border-light;
|
|
6822
|
-
background-position: center;
|
|
6823
|
-
background-size: contain;
|
|
6824
|
-
background-repeat: no-repeat;
|
|
6825
|
-
|
|
6826
|
-
&.empty {
|
|
6827
|
-
background-color: $wac-gray-background;
|
|
6828
|
-
}
|
|
6829
|
-
|
|
6830
|
-
i {
|
|
6831
|
-
color: $wac-border-form;
|
|
6832
|
-
font-size: 25px;
|
|
6833
|
-
line-height: 23px;
|
|
6834
|
-
}
|
|
6835
|
-
}
|
|
6836
|
-
}
|
|
6837
|
-
.wac-confirm-delete {
|
|
6838
|
-
position: absolute;
|
|
6839
|
-
right: 0;
|
|
6840
|
-
top: 0;
|
|
6841
|
-
height: 100%;
|
|
6842
|
-
z-index: 999;
|
|
6843
|
-
width: auto;
|
|
6844
|
-
display: flex;
|
|
6845
|
-
flex-wrap: nowrap;
|
|
6846
|
-
align-items: stretch;
|
|
6847
|
-
background-color: $wac-white;
|
|
6848
|
-
opacity: 0;
|
|
6849
|
-
visibility: hidden;
|
|
6850
|
-
transform: translateX(100%);
|
|
6851
|
-
transition: 0s visibility .35s, opacity .3s ease 0s, transform .3s ease 0s;
|
|
6852
|
-
&.is-open {
|
|
6853
|
-
opacity: 1;
|
|
6854
|
-
visibility: visible;
|
|
6855
|
-
transform: translateX(0);
|
|
6856
|
-
transition: 0s visibility, opacity .3s ease .05s, transform .3s ease .05s;
|
|
6857
|
-
}
|
|
6858
|
-
> div {
|
|
6859
|
-
width: auto;
|
|
6860
|
-
display: flex;
|
|
6861
|
-
align-items: center;
|
|
6862
|
-
margin: 0!important;
|
|
6863
|
-
&:first-child {
|
|
6864
|
-
position: relative;
|
|
6865
|
-
margin: 0 20px 0 0;
|
|
6866
|
-
padding: 0 0 0 30px;
|
|
6867
|
-
&:before {
|
|
6868
|
-
content: '';
|
|
6869
|
-
display: block;
|
|
6870
|
-
position: absolute;
|
|
6871
|
-
top: 0;
|
|
6872
|
-
left: 10px;
|
|
6873
|
-
width: 1px;
|
|
6874
|
-
height: 100%;
|
|
6875
|
-
background-color: $wac-border-form;
|
|
6876
|
-
}
|
|
6877
|
-
span {
|
|
6878
|
-
font-size: rem(16);
|
|
6879
|
-
line-height: 1.4;
|
|
6880
|
-
color: $wac-second-color;
|
|
6881
|
-
}
|
|
6882
|
-
}
|
|
6883
|
-
&:last-child {
|
|
6884
|
-
> div {
|
|
6885
|
-
width: auto;
|
|
6886
|
-
&:first-child {
|
|
6887
|
-
margin: 0 10px 0 0;
|
|
6888
|
-
}
|
|
6889
|
-
}
|
|
6890
|
-
}
|
|
6891
|
-
}
|
|
6892
|
-
}
|
|
6893
|
-
.wac-back {
|
|
6894
|
-
width: 40px;
|
|
6895
|
-
height: 40px;
|
|
6896
|
-
|
|
6897
|
-
&__wrapper {
|
|
6898
|
-
@include flexbox();
|
|
6899
|
-
@include justify-content(center);
|
|
6900
|
-
@include align-items(center);
|
|
6901
|
-
width: 100%;
|
|
6902
|
-
height: 100%;
|
|
6903
|
-
border-radius: 3px;
|
|
6904
|
-
border: 1px solid $wac-border-light;
|
|
6905
|
-
background-color: transparent;
|
|
6906
|
-
transition: border-color 0.3s ease-in-out;
|
|
6907
|
-
|
|
6908
|
-
i {
|
|
6909
|
-
color: $wac-second-color;
|
|
6910
|
-
font-size: 11px;
|
|
6911
|
-
line-height: 14px;
|
|
6912
|
-
}
|
|
6913
|
-
|
|
6914
|
-
&:hover {
|
|
6915
|
-
border-color: $wac-back-border-hover;
|
|
6916
|
-
transition: border-color 0.3s ease-in-out;
|
|
6917
|
-
}
|
|
6918
|
-
}
|
|
6919
|
-
}
|
|
6920
|
-
.wac-multiple-search-plus {
|
|
6894
|
+
.wac-multiple-search-plus {
|
|
6921
6895
|
|
|
6922
6896
|
&__wrapper {
|
|
6923
6897
|
margin: rem(14) 0;
|
|
@@ -7231,81 +7205,142 @@ div.wac-field-input-search {
|
|
|
7231
7205
|
border-radius: 3px;
|
|
7232
7206
|
}
|
|
7233
7207
|
}
|
|
7234
|
-
.wac-
|
|
7235
|
-
|
|
7236
|
-
|
|
7237
|
-
|
|
7238
|
-
left: 0;
|
|
7239
|
-
top: -70px;
|
|
7240
|
-
transform: scale(0.6);
|
|
7241
|
-
}
|
|
7242
|
-
margin-bottom: rem(80);
|
|
7208
|
+
.wac-info {
|
|
7209
|
+
display: inline-block;
|
|
7210
|
+
width: 40px;
|
|
7211
|
+
height: 40px;
|
|
7243
7212
|
|
|
7244
|
-
|
|
7245
|
-
|
|
7246
|
-
|
|
7247
|
-
|
|
7248
|
-
|
|
7249
|
-
|
|
7250
|
-
|
|
7251
|
-
100% {
|
|
7252
|
-
transform: rotate(360deg);
|
|
7253
|
-
}
|
|
7254
|
-
}
|
|
7213
|
+
&__wrapper {
|
|
7214
|
+
@include flexbox();
|
|
7215
|
+
@include justify-content(center);
|
|
7216
|
+
@include align-items(center);
|
|
7217
|
+
width: 100%;
|
|
7218
|
+
height: 100%;
|
|
7219
|
+
position: relative;
|
|
7255
7220
|
|
|
7256
|
-
|
|
7257
|
-
|
|
7258
|
-
|
|
7259
|
-
|
|
7260
|
-
|
|
7261
|
-
50% {
|
|
7262
|
-
transform: rotate(180deg);
|
|
7263
|
-
border-top-color: $wac-color-loader2;
|
|
7221
|
+
i {
|
|
7222
|
+
font-size: 14px;
|
|
7223
|
+
line-height: 25px;
|
|
7224
|
+
color: $wac-second-color;
|
|
7225
|
+
transition: color 0.3s ease-in-out;
|
|
7264
7226
|
}
|
|
7265
|
-
|
|
7266
|
-
|
|
7267
|
-
|
|
7227
|
+
|
|
7228
|
+
&__sublevel {
|
|
7229
|
+
position: absolute;
|
|
7230
|
+
width: 350px;
|
|
7231
|
+
top: 13px;
|
|
7232
|
+
left: 100%;
|
|
7233
|
+
z-index: -1;
|
|
7234
|
+
opacity: 0;
|
|
7235
|
+
background-color: $wac-white;
|
|
7236
|
+
border-radius: rem(3);
|
|
7237
|
+
box-shadow: 0px 2px 5px $wac-info-box-shadow;
|
|
7238
|
+
visibility: hidden;
|
|
7239
|
+
transition: opacity 0.15s ease-in-out, z-index 0.15s ease-in-out, visibility 0s linear 0.16s;
|
|
7240
|
+
|
|
7241
|
+
&__container {
|
|
7242
|
+
padding: 15px 20px;
|
|
7243
|
+
font-size: rem(14);
|
|
7244
|
+
line-height: rem(25);
|
|
7245
|
+
color: $wac-second-color;
|
|
7246
|
+
}
|
|
7268
7247
|
}
|
|
7269
|
-
}
|
|
7270
7248
|
|
|
7271
|
-
|
|
7272
|
-
|
|
7273
|
-
|
|
7274
|
-
|
|
7275
|
-
|
|
7276
|
-
}
|
|
7249
|
+
&:hover {
|
|
7250
|
+
i {
|
|
7251
|
+
color: $wac-input-active-color;
|
|
7252
|
+
transition: color 0.3s ease-in-out;
|
|
7253
|
+
}
|
|
7277
7254
|
|
|
7278
|
-
|
|
7279
|
-
|
|
7280
|
-
|
|
7281
|
-
|
|
7282
|
-
|
|
7283
|
-
|
|
7284
|
-
overflow: hidden;
|
|
7285
|
-
div {
|
|
7286
|
-
height: 100%;
|
|
7255
|
+
.wac-info__wrapper__sublevel {
|
|
7256
|
+
visibility: visible;
|
|
7257
|
+
opacity: 1;
|
|
7258
|
+
z-index: 2;
|
|
7259
|
+
transition: visibility 0s ease 0s, opacity 0.3s ease-in-out .1s;
|
|
7260
|
+
}
|
|
7287
7261
|
}
|
|
7288
7262
|
}
|
|
7289
|
-
|
|
7290
|
-
|
|
7291
|
-
|
|
7292
|
-
|
|
7293
|
-
|
|
7294
|
-
|
|
7295
|
-
|
|
7263
|
+
}
|
|
7264
|
+
.wac-confirm-delete {
|
|
7265
|
+
position: absolute;
|
|
7266
|
+
right: 0;
|
|
7267
|
+
top: 0;
|
|
7268
|
+
height: 100%;
|
|
7269
|
+
z-index: 999;
|
|
7270
|
+
width: auto;
|
|
7271
|
+
display: flex;
|
|
7272
|
+
flex-wrap: nowrap;
|
|
7273
|
+
align-items: stretch;
|
|
7274
|
+
background-color: $wac-white;
|
|
7275
|
+
opacity: 0;
|
|
7276
|
+
visibility: hidden;
|
|
7277
|
+
transform: translateX(100%);
|
|
7278
|
+
transition: 0s visibility .35s, opacity .3s ease 0s, transform .3s ease 0s;
|
|
7279
|
+
&.is-open {
|
|
7280
|
+
opacity: 1;
|
|
7281
|
+
visibility: visible;
|
|
7282
|
+
transform: translateX(0);
|
|
7283
|
+
transition: 0s visibility, opacity .3s ease .05s, transform .3s ease .05s;
|
|
7296
7284
|
}
|
|
7297
|
-
|
|
7298
|
-
|
|
7299
|
-
|
|
7285
|
+
> div {
|
|
7286
|
+
width: auto;
|
|
7287
|
+
display: flex;
|
|
7288
|
+
align-items: center;
|
|
7289
|
+
margin: 0!important;
|
|
7290
|
+
&:first-child {
|
|
7291
|
+
position: relative;
|
|
7292
|
+
margin: 0 20px 0 0;
|
|
7293
|
+
padding: 0 0 0 30px;
|
|
7294
|
+
&:before {
|
|
7295
|
+
content: '';
|
|
7296
|
+
display: block;
|
|
7297
|
+
position: absolute;
|
|
7298
|
+
top: 0;
|
|
7299
|
+
left: 10px;
|
|
7300
|
+
width: 1px;
|
|
7301
|
+
height: 100%;
|
|
7302
|
+
background-color: $wac-border-form;
|
|
7303
|
+
}
|
|
7304
|
+
span {
|
|
7305
|
+
font-size: rem(16);
|
|
7306
|
+
line-height: 1.4;
|
|
7307
|
+
color: $wac-second-color;
|
|
7308
|
+
}
|
|
7309
|
+
}
|
|
7310
|
+
&:last-child {
|
|
7311
|
+
> div {
|
|
7312
|
+
width: auto;
|
|
7313
|
+
&:first-child {
|
|
7314
|
+
margin: 0 10px 0 0;
|
|
7315
|
+
}
|
|
7316
|
+
}
|
|
7317
|
+
}
|
|
7300
7318
|
}
|
|
7319
|
+
}
|
|
7320
|
+
.wac-back {
|
|
7321
|
+
width: 40px;
|
|
7322
|
+
height: 40px;
|
|
7301
7323
|
|
|
7302
|
-
|
|
7303
|
-
|
|
7304
|
-
|
|
7305
|
-
|
|
7324
|
+
&__wrapper {
|
|
7325
|
+
@include flexbox();
|
|
7326
|
+
@include justify-content(center);
|
|
7327
|
+
@include align-items(center);
|
|
7328
|
+
width: 100%;
|
|
7329
|
+
height: 100%;
|
|
7330
|
+
border-radius: 3px;
|
|
7331
|
+
border: 1px solid $wac-border-light;
|
|
7332
|
+
background-color: transparent;
|
|
7333
|
+
transition: border-color 0.3s ease-in-out;
|
|
7306
7334
|
|
|
7307
|
-
|
|
7308
|
-
|
|
7309
|
-
|
|
7335
|
+
i {
|
|
7336
|
+
color: $wac-second-color;
|
|
7337
|
+
font-size: 11px;
|
|
7338
|
+
line-height: 14px;
|
|
7339
|
+
}
|
|
7340
|
+
|
|
7341
|
+
&:hover {
|
|
7342
|
+
border-color: $wac-back-border-hover;
|
|
7343
|
+
transition: border-color 0.3s ease-in-out;
|
|
7344
|
+
}
|
|
7310
7345
|
}
|
|
7311
7346
|
}
|