@saooti/octopus-sdk 30.0.5 → 30.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/README.md +5 -0
  2. package/index.ts +13 -2
  3. package/package.json +1 -1
  4. package/src/assets/bootstrap-diff.scss +17 -25
  5. package/src/assets/form.scss +7 -52
  6. package/src/assets/general.scss +56 -170
  7. package/src/assets/live.scss +39 -0
  8. package/src/assets/modal.scss +14 -18
  9. package/src/assets/multiselect.scss +30 -77
  10. package/src/assets/octopus-library.scss +1 -0
  11. package/src/assets/share.scss +149 -267
  12. package/src/assets/transition.scss +95 -1
  13. package/src/components/display/categories/CategoryChooser.vue +1 -1
  14. package/src/components/display/categories/CategoryList.vue +2 -4
  15. package/src/components/display/comments/CommentInput.vue +2 -2
  16. package/src/components/display/comments/CommentItem.vue +7 -6
  17. package/src/components/display/comments/CommentParentInfo.vue +1 -1
  18. package/src/components/display/comments/CommentPlayer.vue +1 -1
  19. package/src/components/display/edit/EditCommentBox.vue +8 -16
  20. package/src/components/display/emission/EmissionChooser.vue +1 -3
  21. package/src/components/display/emission/EmissionInlineList.vue +12 -3
  22. package/src/components/display/emission/EmissionItem.vue +22 -64
  23. package/src/components/display/emission/EmissionList.vue +59 -68
  24. package/src/components/display/emission/EmissionPlayerItem.vue +10 -9
  25. package/src/components/display/filter/AdvancedSearch.vue +50 -150
  26. package/src/components/display/filter/CategoryFilter.vue +9 -13
  27. package/src/components/display/filter/MonetizableFilter.vue +3 -5
  28. package/src/components/display/filter/ProductorSearch.vue +20 -40
  29. package/src/components/display/filter/RubriqueChoice.vue +6 -8
  30. package/src/components/display/filter/RubriqueFilter.vue +8 -13
  31. package/src/components/display/live/CountDown.vue +4 -2
  32. package/src/components/display/live/LiveHorizontalList.vue +1 -1
  33. package/src/components/display/live/LiveItem.vue +4 -4
  34. package/src/components/display/live/LiveList.vue +84 -214
  35. package/src/components/display/organisation/OrganisationChooser.vue +5 -23
  36. package/src/components/display/organisation/OrganisationChooserLight.vue +8 -2
  37. package/src/components/display/participant/ParticipantItem.vue +7 -19
  38. package/src/components/display/participant/ParticipantList.vue +39 -52
  39. package/src/components/display/playlist/PlaylistItem.vue +2 -2
  40. package/src/components/display/playlist/PlaylistList.vue +8 -14
  41. package/src/components/display/playlist/PodcastList.vue +21 -40
  42. package/src/components/display/podcasts/AnimatorsItem.vue +0 -1
  43. package/src/components/display/podcasts/ParticipantDescription.vue +5 -16
  44. package/src/components/display/podcasts/PodcastFilterList.vue +20 -63
  45. package/src/components/display/podcasts/PodcastImage.vue +27 -84
  46. package/src/components/display/podcasts/PodcastInlineList.vue +14 -36
  47. package/src/components/display/podcasts/PodcastItem.vue +5 -5
  48. package/src/components/display/podcasts/PodcastList.vue +7 -14
  49. package/src/components/display/podcasts/PodcastModuleBox.vue +9 -28
  50. package/src/components/display/podcasts/TagList.vue +2 -3
  51. package/src/components/display/rubriques/RubriqueChooser.vue +2 -2
  52. package/src/components/display/rubriques/RubriqueList.vue +5 -25
  53. package/src/components/display/sharing/PlayerParameters.vue +30 -71
  54. package/src/components/display/sharing/ShareButtons.vue +22 -46
  55. package/src/components/display/sharing/ShareDistribution.vue +1 -7
  56. package/src/components/display/sharing/SharePlayer.vue +10 -19
  57. package/src/components/display/sharing/SharePlayerColors.vue +4 -8
  58. package/src/components/display/sharing/SharePlayerTypes.vue +1 -2
  59. package/src/components/display/sharing/SubscribeButtons.vue +2 -4
  60. package/src/components/form/ClassicCheckbox.vue +61 -0
  61. package/src/components/form/ClassicLoading.vue +28 -0
  62. package/src/components/form/ClassicRadio.vue +61 -0
  63. package/src/components/form/ClassicSearch.vue +82 -0
  64. package/src/components/misc/ErrorMessage.vue +4 -1
  65. package/src/components/misc/Footer.vue +26 -35
  66. package/src/components/misc/HomeDropdown.vue +42 -91
  67. package/src/components/misc/LeftMenu.vue +108 -141
  68. package/src/components/misc/Player.vue +15 -29
  69. package/src/components/misc/PlayerButtons.vue +14 -37
  70. package/src/components/misc/PlayerClockAndTimeline.vue +1 -1
  71. package/src/components/misc/PlayerProgressBar.vue +15 -50
  72. package/src/components/misc/Popover.vue +8 -2
  73. package/src/components/misc/TopBar.vue +140 -222
  74. package/src/components/misc/modal/NewsletterModal.vue +13 -27
  75. package/src/components/pages/Category.vue +3 -8
  76. package/src/components/pages/Emission.vue +12 -24
  77. package/src/components/pages/Emissions.vue +8 -17
  78. package/src/components/pages/Home.vue +1 -3
  79. package/src/components/pages/Lives.vue +1 -4
  80. package/src/components/pages/Participant.vue +19 -27
  81. package/src/components/pages/Participants.vue +7 -15
  82. package/src/components/pages/Playlist.vue +16 -29
  83. package/src/components/pages/Playlists.vue +1 -11
  84. package/src/components/pages/Podcast.vue +16 -30
  85. package/src/components/pages/Podcasts.vue +9 -23
  86. package/src/components/pages/Search.vue +26 -64
  87. package/src/sass/_variables.scss +0 -1
  88. package/src/store/class/general/media.ts +1 -1
@@ -1,23 +1,10 @@
1
1
  /* Added styles */
2
2
  @import '../sass/_variables.scss';
3
3
  .octopus-app{
4
- .saooti-arrow_down-margin {
5
- margin: 3px 0 0;
6
- }
4
+
7
5
  .default-multiselect-width {
8
- width: 100%;
9
- }
10
- .default-multiselect-width .basic-select {
11
6
  width: auto;
12
- -webkit-appearance: none;
13
- -moz-appearance: none;
14
- text-indent: 1px;
15
- text-overflow: '';
16
7
  font-size: 1rem;
17
- @media (max-width: 450px) {
18
- background: #eee !important;
19
- width: 98%;
20
- }
21
8
  }
22
9
  .multiselect-transparent{
23
10
  .multiselect__tags, .multiselect__input, .multiselect__single{
@@ -28,47 +15,39 @@
28
15
  padding-left: 0;
29
16
  }
30
17
  }
31
- .multiselect-hide-arrow {
32
- .multiselect__tags {
33
- background: none;
34
- border: none;
35
- }
36
- .multiselect__spinner {
37
- background: none;
38
- }
39
- .multiselect__select::before {
40
- display: none;
18
+
19
+ .multiselect.light-multiselect {
20
+
21
+ .multiselect__single {
22
+ margin-bottom: 0;
41
23
  }
42
24
  }
43
25
 
44
26
  .light-multiselect{
27
+ min-height: auto;
45
28
  .multiselect__tags {
46
- border-radius: 0.3rem;
47
- padding: 10px 40px 5px 0;
29
+ padding: 0 40px 0 0;
30
+ min-height: auto;
31
+ }
32
+ .multiselect__single {
33
+ margin-bottom: 0;
34
+ }
35
+ .multiselect__input,
36
+ .multiselect__single,
37
+ .multiselect__tags,
38
+ .multiselect--active .multiselect__select,
39
+ .multiselect__spinner {
48
40
  background: transparent;
49
- border-color: $octopus-background;
50
-
51
41
  }
52
-
53
-
54
- .multiselect__input,
55
- .multiselect__single {
56
- background: none;
57
- }
58
- .multiselect--active .multiselect__select {
59
- transform: unset;
60
- background: none;
61
- }
62
- .multiselect__spinner {
63
- background: none;
64
- }
65
- .option__image {
66
- display: none;
67
- }
68
- .option__title {
69
- padding-left: 0 !important;
70
- font-weight: bold;
71
- }
42
+ .multiselect--active .multiselect__select {
43
+ transform: unset;
44
+ }
45
+ .option__title {
46
+ font-weight: bold;
47
+ }
48
+ .octopus-arrow-down {
49
+ top: 2px;
50
+ }
72
51
  }
73
52
 
74
53
  .multiselect-octopus-proposition{
@@ -76,7 +55,6 @@
76
55
  align-items: center;
77
56
  overflow: hidden;
78
57
  text-overflow: ellipsis;
79
-
80
58
  .option__image {
81
59
  height: 32px;
82
60
  width: 32px;
@@ -98,8 +76,7 @@
98
76
  margin: 0.2rem;
99
77
  }
100
78
 
101
- .octopus-arrow-down,
102
- .octopus-arrow-down-2
79
+ .octopus-arrow-down
103
80
  {
104
81
  height: 1.2rem;
105
82
  width: 1.2rem;
@@ -107,23 +84,14 @@
107
84
  cursor: pointer;
108
85
  position: absolute;
109
86
  right: 10px;
110
- top: 12px;
87
+ top: 11px;
111
88
  margin: 0;
112
89
  background-color: #ccc;
113
90
  border-radius: 50%;
114
-
115
91
  &:before{
116
92
  position: relative;
117
93
  top:2px;
118
94
  }
119
- }
120
- .classic-select.octopus-arrow-down-2{
121
- pointer-events: none;
122
- }
123
-
124
- .octopus-arrow-down-2{
125
- right: 10px;
126
- top: 11px;
127
95
  @media (max-width: 450px) {
128
96
  top: 14px;
129
97
  }
@@ -200,22 +168,7 @@
200
168
  color: #35495e;
201
169
  }
202
170
 
203
- .multiselect.light-multiselect {
204
- .multiselect__tags {
205
- padding: 0 40px 0 0;
206
- min-height: auto;
207
- }
208
- .multiselect__single {
209
- margin-bottom: 0;
210
- }
211
- .octopus-arrow-down-2 {
212
- top: 2px;
213
- }
214
- display: flex;
215
- align-items: center;
216
- min-height: auto;
217
- top: 0;
218
- }
171
+
219
172
 
220
173
  .multiselect * {
221
174
  box-sizing: border-box;
@@ -14,6 +14,7 @@ $breadcrumb-border-radius: 2rem !default;
14
14
  @import './bootstrap-diff.scss';
15
15
  /* @import 'node_modules/bootstrap-vue-3/dist/bootstrap-vue-3.css'; */
16
16
  @import './general.scss';
17
+ @import './live.scss';
17
18
  @import './form.scss';
18
19
  @import './multiselect.scss';
19
20
  @import './transition.scss';
@@ -1,49 +1,44 @@
1
1
  @import '../sass/_variables.scss';
2
2
  .octopus-app{
3
- .search-icon-container {
4
- position: absolute;
5
- top: 0;
6
- bottom: 0;
7
- right: 0;
8
- display: flex;
9
- align-items: center;
10
- }
11
- .share-container {
12
- @media (max-width: 960px) {
13
- flex-grow: 1;
14
- }
3
+ .saooti-help {
4
+ font-size: 1.5rem;
5
+ border-radius: 50%;
6
+ margin: 0 auto;
7
+ align-items: center;
8
+ width: 2rem;
9
+ height: 2rem;
10
+ vertical-align: middle;
11
+ cursor: pointer;
12
+ font-weight: bold;
13
+ background: transparent;
14
+ display: flex;
15
+ justify-self: center;
16
+ justify-content: center;
17
+ &:hover {
18
+ border: 0;
19
+ background: #f3f3f3;
20
+ }
21
+ @media (max-width: 450px) {
22
+ margin: 0.5rem auto 0;
23
+ }
24
+ }
25
+ .category-rubrique-item-plus {
26
+ display: flex;
27
+ height: 1.8rem;
28
+ width: 1.8rem;
29
+ align-items: center;
30
+ justify-content: center;
31
+ font-size: 0.5rem;
15
32
  }
16
33
  .icon-caution {
17
34
  margin-right: 5px;
18
35
  margin-bottom: 2px;
19
36
  height: 25px;
20
37
  }
21
- .flex-no-grow {
22
- flex-grow: 0 !important;
23
- }
24
- .custom-radio .custom-control-label {
25
- cursor: pointer;
26
- }
27
- .input-share-player {
28
- border: 1px solid #ddd;
29
- border-radius: 50px;
30
- &#number-input {
31
- margin: 0 1rem;
32
- width: 60px;
33
- }
34
- }
35
- .vue-swatches__swatch--selected {
36
- border: 2px #40a372 solid !important;
37
- box-shadow: unset !important;
38
- -webkit-box-shadow: unset !important;
39
- }
38
+
40
39
  .vue-swatches__trigger{
41
40
  border: solid 1px black;
42
41
  }
43
- .share-button-title {
44
- height: 2rem;
45
- }
46
-
47
42
  .podcast-list {
48
43
  align-self: stretch;
49
44
  flex-grow: 1;
@@ -57,263 +52,146 @@
57
52
  grid-template-columns: repeat(auto-fill, 13rem); /* 2 */
58
53
  grid-gap: 1rem; /* 3 */
59
54
  justify-content: space-between; /* 4 */
60
- }
61
- /** PHONES*/
62
- @media (max-width: 960px) {
63
- .podcast-list {
64
- align-self: auto;
65
- justify-items: center;
66
- display: flex;
67
- justify-content: space-around;
55
+ @media (max-width: 960px) {
56
+ align-self: auto;
57
+ justify-items: center;
58
+ display: flex;
59
+ justify-content: space-around;
68
60
  }
69
61
  }
70
- .list-episode {
71
- padding: 2rem 0rem 1rem !important;
72
- @media (max-width: 450px) {
73
- padding: 0.5rem 0rem 1rem !important;
74
- }
75
- h2 {
76
- margin-bottom: 1rem;
62
+
63
+ .element-list-inline {
64
+ margin: 0;
65
+ padding: 0;
66
+ display: flex;
67
+ flex-wrap: nowrap;
68
+ justify-content: space-between;
69
+ @media (max-width: 960px) {
70
+ overflow-y: scroll;
71
+ -webkit-overflow-scrolling: touch;
72
+ scroll-behavior: smooth;
73
+ padding-bottom: 1rem;
74
+ width: 100%;
75
+ .item-phone-margin {
76
+ margin: 0 0.5rem !important;
77
77
  }
78
+ }
78
79
  }
79
- .podcast-list-inline {
80
- align-self: stretch;
81
- flex-grow: 1;
82
- margin: 0;
83
- padding: 0;
84
- display: flex;
85
- flex-wrap: nowrap;
86
- justify-content: space-between;
87
- display: grid;
88
- grid-auto-flow: column;
89
- grid-gap: 1rem;
90
- grid-row: 1;
80
+
81
+ .emission-list {
82
+ align-self: stretch;
83
+ flex-grow: 1;
84
+ margin: 0;
85
+ padding: 0;
86
+ /*For ie11 */
87
+ display: flex;
88
+ flex-wrap: wrap;
89
+ /* end */
90
+ display: grid; /* 1 */
91
+ grid-gap: 1rem; /* 3 */
92
+ justify-content: space-between; /* 4 */
93
+ &.two-emissions {
94
+ grid-template-columns: repeat(auto-fill, 49%); /* 2 */
91
95
  }
92
- .out-left-enter-active,
93
- .out-left-leave-active,
94
- .out-right-enter-active,
95
- .out-right-leave-active {
96
- transition: all 0.3s ease;
96
+ &.three-emissions {
97
+ grid-template-columns: repeat(auto-fill, 32%); /* 2 */
97
98
  }
98
-
99
- .out-left-leave-to,
100
- .out-right-enter {
101
- transform: translateX(-110%);
102
- opacity: 0;
99
+ @media (max-width: 1200px) {
100
+ grid-template-columns: auto !important;
103
101
  }
102
+ }
104
103
 
105
- .out-left-enter,
106
- .out-right-leave-to {
107
- transform: translateX(110%);
108
- opacity: 0;
104
+ .emission-item-container {
105
+ list-style: none;
106
+ background: #fff;
107
+ border-radius: 2rem;
108
+ display: flex;
109
+ .img-box {
110
+ border-radius: 2rem !important;
109
111
  }
110
-
111
- .out-left-leave-to,
112
- .out-right-leave-to {
113
- position: absolute;
112
+ @media (max-width: 680px) {
113
+ justify-content: center;
114
114
  }
115
- .out-right-leave-to {
116
- right: 5rem;
117
- z-index: -1;
115
+ }
116
+
117
+ .emission-item-text {
118
+ padding: 1rem;
119
+ display: flex;
120
+ flex-direction: column;
121
+ max-height: 13rem;
122
+ @media (max-width: 450px) {
123
+ padding: 0.5rem 0;
124
+ text-align: center;
118
125
  }
119
- /** PHONES*/
120
- @media (max-width: 960px) {
121
- .podcast-list-inline {
122
- display: flex;
123
- flex-wrap: nowrap;
124
- overflow-y: scroll;
125
- -webkit-overflow-scrolling: touch;
126
- scroll-behavior: smooth;
127
- padding-bottom: 1rem;
126
+ .emission-name {
127
+ font-size: 0.9rem;
128
+ font-weight: 600;
129
+ overflow: hidden;
130
+ display: -webkit-box;
131
+ -webkit-line-clamp: 2;
132
+ -webkit-box-orient: vertical;
133
+ word-break: break-word;
134
+ }
135
+ .emission-description {
136
+ overflow: hidden;
137
+ margin-top: 0.5em;
138
+ word-break: break-word;
139
+ max-height: 7rem;
140
+ position: relative;
141
+ &.after-emission-description:after {
142
+ content: '...';
143
+ position: absolute;
144
+ padding-left: 1rem;
145
+ right: 0;
146
+ bottom: 0;
128
147
  width: 100%;
129
- .item-phone-margin {
130
- margin: 0 0.5rem !important;
131
- }
148
+ font-size: 1rem;
149
+ font-weight: bolder;
150
+ text-align: center;
151
+ background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 40%);
132
152
  }
133
153
  }
134
-
135
- .arrow-transform {
136
- transform: rotate(180deg);
137
- }
138
- .no-border-round {
139
- border-radius: 0;
140
- }
141
- .text-ellipsis {
142
- white-space: nowrap;
143
- overflow: hidden;
144
- text-overflow: ellipsis;
154
+ .emission-producer {
155
+ font-weight: 300;
156
+ font-size: 0.6rem;
157
+ }
145
158
  }
146
- .emission-list {
147
- align-self: stretch;
148
- flex-grow: 1;
149
- margin: 0;
159
+ .comment-item-container {
160
+ .btn-comment-edit {
161
+ width: 32px;
162
+ height: 32px;
163
+ background: $octopus-secondary-color;
150
164
  padding: 0;
151
- /*For ie11 */
152
- display: flex;
153
- flex-wrap: wrap;
154
- /* end */
155
-
156
- display: grid; /* 1 */
157
- grid-gap: 1rem; /* 3 */
158
- justify-content: space-between; /* 4 */
159
- }
160
- .twoEmissions {
161
- grid-template-columns: repeat(auto-fill, 49%); /* 2 */
162
- }
163
-
164
- .threeEmissions {
165
- grid-template-columns: repeat(auto-fill, 32%); /* 2 */
166
- }
167
-
168
- /** PHONES*/
169
- @media (max-width: 1200px) {
170
- .emission-list {
171
- grid-template-columns: auto;
172
- }
173
- }
174
- .emission-item-container {
175
- list-style: none;
176
- background: #fff;
177
- border-radius: 2rem;
178
165
  display: flex;
179
- width: 100%;
180
- margin: 1rem 0;
181
- .img-box {
182
- border-radius: 2rem !important;
183
- }
166
+ align-items: center;
167
+ justify-content: center;
168
+ color: $octopus-primary-color;
169
+ margin-right: 0.25rem;
184
170
  }
185
- .emission-light-max-size {
186
- width: 300px;
187
- border-bottom: 1px solid #ddd;
171
+ .status-Pending {
172
+ background: #eb7d22;
188
173
  }
189
- .emission-light-title {
190
- color: #333 !important;
191
- align-self: flex-end;
192
- text-transform: none;
193
- font-size: 1.5em;
194
- font-weight: normal;
195
- white-space: nowrap;
196
- overflow: hidden;
197
- text-overflow: ellipsis;
174
+ .status-Invalid {
175
+ background: #d40303;
198
176
  }
199
-
200
- .emission-item-text {
201
- padding: 1rem;
202
- display: flex;
203
- flex-direction: column;
204
- max-height: 13rem;
205
-
206
- .emission-name {
207
- font-size: 0.9rem;
208
- font-weight: 600;
209
- overflow: hidden;
210
- display: -webkit-box;
211
- -webkit-line-clamp: 2;
212
- -webkit-box-orient: vertical;
213
- word-break: break-word;
214
- }
215
-
216
- .emission-description {
217
- overflow: hidden;
218
- margin-top: 0.5em;
219
- word-break: break-word;
220
- max-height: 7rem;
221
- position: relative;
222
- &.after-emission-description:after {
223
- content: '...';
224
- position: absolute;
225
- padding-left: 1rem;
226
- right: 0;
227
- bottom: 0;
228
- width: 100%;
229
- font-size: 1rem;
230
- font-weight: bolder;
231
- text-align: center;
232
- background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 40%);
233
- }
234
- }
235
-
236
- .emission-small-description {
237
- -webkit-line-clamp: 2;
238
- border-top: 1px solid #ddd;
239
- word-break: break-word;
240
- }
241
-
242
- .emission-producer {
243
- font-weight: 300;
244
- font-size: 0.6rem;
245
- }
177
+ .status-Valid {
178
+ background: $octopus-primary-color;
246
179
  }
247
-
248
- button.btn.btn-primary.share-btn.m-3 {
249
- font-size: 1rem;
250
- width: 2.5rem;
251
- height: 2.5rem !important;
252
- margin: 0 0.8rem 0 0 !important;
180
+ .status-Valid, .status-Invalid, .status-Pending {
181
+ width: 14px;
182
+ height: 14px;
183
+ border-radius: 50%;
253
184
  }
254
- /** PHONES*/
255
- @media (max-width: 680px) {
256
- .emission-item-container {
257
- flex-wrap: wrap;
258
- width: auto;
259
- margin: 0;
260
- padding: 1rem;
261
- justify-content: center;
262
- }
185
+ .icon-certified {
186
+ height: 15px;
187
+ margin-right: 0.5rem;
263
188
  }
264
-
265
- @media (max-width: 450px) {
266
- .emission-item-text {
267
- padding: 0.5rem 0;
268
- text-align: center;
269
- }
189
+ .collapsed > .when-opened,
190
+ :not(.collapsed) > .when-closed {
191
+ display: none !important;
270
192
  }
271
-
272
- .comment-item-container {
273
- .btn-circle {
274
- width: 32px;
275
- height: 32px;
276
- background: $octopus-secondary-color;
277
- padding: 0;
278
- display: flex;
279
- align-items: center;
280
- justify-content: center;
281
- }
282
- .status-Pending {
283
- background: #eb7d22;
284
- }
285
- .status-Invalid {
286
- background: #d40303;
287
- }
288
- .status-Valid {
289
- background: $octopus-primary-color;
290
- }
291
-
292
- .status-Valid, .status-Invalid, .status-Pending {
293
- width: 14px;
294
- height: 14px;
295
- border-radius: 50%;
296
- }
297
- .icon-certified {
298
- height: 15px;
299
- margin-right: 0.5rem;
300
- }
301
- .btn-answer {
302
- padding: 0.1rem 0.75rem;
303
- }
304
- .collapsed > .when-opened,
305
- :not(.collapsed) > .when-closed {
306
- display: none !important;
307
- }
308
193
  }
309
- .live-image-status {
310
- text-align: center;
311
- width: 100%;
312
- font-size: 0.6rem;
313
- padding: 0.2rem 0;
314
- color: white;
315
- text-transform: uppercase;
316
- }
194
+
317
195
 
318
196
  .saooti-stitcher-logo,
319
197
  .saooti-google-podcasts,
@@ -325,6 +203,10 @@
325
203
  right: 0;
326
204
  }
327
205
  }
206
+ .saooti-Whatsapp{
207
+ width: 25px;
208
+ height: 25px;
209
+ }
328
210
  .saooti-stitcher-logo,.saooti-amazon {
329
211
  font-size: 1.7rem !important;
330
212
  div {