framework7rails 0.9.7 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (230) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +17 -0
  3. data/Framework7-0.9.6/.gitignore +5 -0
  4. data/Framework7-0.9.6/.jshintrc +33 -0
  5. data/Framework7-0.9.6/.travis.yml +5 -0
  6. data/Framework7-0.9.6/CHANGELOG.md +342 -0
  7. data/Framework7-0.9.6/Gruntfile.js +560 -0
  8. data/Framework7-0.9.6/LICENSE +20 -0
  9. data/Framework7-0.9.6/README.md +113 -0
  10. data/Framework7-0.9.6/apps/todo7/css/todo7.css +208 -0
  11. data/Framework7-0.9.6/apps/todo7/img/Icon-152.png +0 -0
  12. data/Framework7-0.9.6/apps/todo7/img/bg.jpg +0 -0
  13. data/Framework7-0.9.6/apps/todo7/img/icon-114.png +0 -0
  14. data/Framework7-0.9.6/apps/todo7/img/icon-120.png +0 -0
  15. data/Framework7-0.9.6/apps/todo7/img/icon-144.png +0 -0
  16. data/Framework7-0.9.6/apps/todo7/img/icon-57.png +0 -0
  17. data/Framework7-0.9.6/apps/todo7/img/icon-72.png +0 -0
  18. data/Framework7-0.9.6/apps/todo7/img/icon-76.png +0 -0
  19. data/Framework7-0.9.6/apps/todo7/index.html +112 -0
  20. data/Framework7-0.9.6/apps/todo7/jade/index.jade +99 -0
  21. data/Framework7-0.9.6/apps/todo7/js/todo7.js +102 -0
  22. data/Framework7-0.9.6/apps/todo7/less/todo7.less +221 -0
  23. data/Framework7-0.9.6/apps/todo7/manifest.php +27 -0
  24. data/Framework7-0.9.6/apps/weather7/css/weather7.css +291 -0
  25. data/Framework7-0.9.6/apps/weather7/img/bg.jpg +0 -0
  26. data/Framework7-0.9.6/apps/weather7/img/icon-114.png +0 -0
  27. data/Framework7-0.9.6/apps/weather7/img/icon-120.png +0 -0
  28. data/Framework7-0.9.6/apps/weather7/img/icon-144.png +0 -0
  29. data/Framework7-0.9.6/apps/weather7/img/icon-152.png +0 -0
  30. data/Framework7-0.9.6/apps/weather7/img/icon-57.png +0 -0
  31. data/Framework7-0.9.6/apps/weather7/img/icon-72.png +0 -0
  32. data/Framework7-0.9.6/apps/weather7/img/icon-76.png +0 -0
  33. data/Framework7-0.9.6/apps/weather7/img/logo.png +0 -0
  34. data/Framework7-0.9.6/apps/weather7/img/yahoo-logo.png +0 -0
  35. data/Framework7-0.9.6/apps/weather7/index.html +127 -0
  36. data/Framework7-0.9.6/apps/weather7/jade/index.jade +113 -0
  37. data/Framework7-0.9.6/apps/weather7/js/weather7.js +213 -0
  38. data/Framework7-0.9.6/apps/weather7/less/weather7.less +294 -0
  39. data/Framework7-0.9.6/apps/weather7/manifest.php +29 -0
  40. data/Framework7-0.9.6/bower.json +30 -0
  41. data/Framework7-0.9.6/dist/about.html +28 -0
  42. data/Framework7-0.9.6/dist/css/framework7.css +4922 -0
  43. data/Framework7-0.9.6/dist/css/framework7.min.css +15 -0
  44. data/Framework7-0.9.6/dist/css/framework7.rtl.css +427 -0
  45. data/Framework7-0.9.6/dist/css/framework7.rtl.min.css +1 -0
  46. data/Framework7-0.9.6/dist/css/framework7.themes.css +279 -0
  47. data/Framework7-0.9.6/dist/css/framework7.themes.min.css +1 -0
  48. data/Framework7-0.9.6/dist/css/my-app.css +0 -0
  49. data/Framework7-0.9.6/dist/form.html +229 -0
  50. data/Framework7-0.9.6/dist/img/i-f7.png +0 -0
  51. data/Framework7-0.9.6/dist/img/i-form-calendar.png +0 -0
  52. data/Framework7-0.9.6/dist/img/i-form-comment.png +0 -0
  53. data/Framework7-0.9.6/dist/img/i-form-email.png +0 -0
  54. data/Framework7-0.9.6/dist/img/i-form-gender.png +0 -0
  55. data/Framework7-0.9.6/dist/img/i-form-name.png +0 -0
  56. data/Framework7-0.9.6/dist/img/i-form-password.png +0 -0
  57. data/Framework7-0.9.6/dist/img/i-form-settings.png +0 -0
  58. data/Framework7-0.9.6/dist/img/i-form-tel.png +0 -0
  59. data/Framework7-0.9.6/dist/img/i-form-toggle.png +0 -0
  60. data/Framework7-0.9.6/dist/img/i-form-url.png +0 -0
  61. data/Framework7-0.9.6/dist/index.html +102 -0
  62. data/Framework7-0.9.6/dist/js/framework7.js +7479 -0
  63. data/Framework7-0.9.6/dist/js/framework7.min.js +18 -0
  64. data/Framework7-0.9.6/dist/js/my-app.js +48 -0
  65. data/Framework7-0.9.6/dist/services.html +28 -0
  66. data/Framework7-0.9.6/examples/split-view/about.html +19 -0
  67. data/Framework7-0.9.6/examples/split-view/css/my-app.css +23 -0
  68. data/Framework7-0.9.6/examples/split-view/index.html +135 -0
  69. data/Framework7-0.9.6/examples/split-view/jade/about.jade +15 -0
  70. data/Framework7-0.9.6/examples/split-view/jade/index.jade +107 -0
  71. data/Framework7-0.9.6/examples/split-view/jade/left-page-1.jade +15 -0
  72. data/Framework7-0.9.6/examples/split-view/jade/left-page-2.jade +15 -0
  73. data/Framework7-0.9.6/examples/split-view/jade/services.jade +15 -0
  74. data/Framework7-0.9.6/examples/split-view/js/my-app.js +15 -0
  75. data/Framework7-0.9.6/examples/split-view/left-page-1.html +19 -0
  76. data/Framework7-0.9.6/examples/split-view/left-page-2.html +19 -0
  77. data/Framework7-0.9.6/examples/split-view/less/my-app.less +23 -0
  78. data/Framework7-0.9.6/examples/split-view/services.html +19 -0
  79. data/Framework7-0.9.6/examples/split-view-panel/about.html +20 -0
  80. data/Framework7-0.9.6/examples/split-view-panel/css/my-app.css +56 -0
  81. data/Framework7-0.9.6/examples/split-view-panel/index.html +135 -0
  82. data/Framework7-0.9.6/examples/split-view-panel/jade/about.jade +18 -0
  83. data/Framework7-0.9.6/examples/split-view-panel/jade/index.jade +107 -0
  84. data/Framework7-0.9.6/examples/split-view-panel/jade/left-page-1.jade +15 -0
  85. data/Framework7-0.9.6/examples/split-view-panel/jade/left-page-2.jade +15 -0
  86. data/Framework7-0.9.6/examples/split-view-panel/jade/services.jade +18 -0
  87. data/Framework7-0.9.6/examples/split-view-panel/js/my-app.js +15 -0
  88. data/Framework7-0.9.6/examples/split-view-panel/left-page-1.html +19 -0
  89. data/Framework7-0.9.6/examples/split-view-panel/left-page-2.html +19 -0
  90. data/Framework7-0.9.6/examples/split-view-panel/less/my-app.less +62 -0
  91. data/Framework7-0.9.6/examples/split-view-panel/services.html +20 -0
  92. data/Framework7-0.9.6/examples/tab-bar/about.html +19 -0
  93. data/Framework7-0.9.6/examples/tab-bar/css/my-app.css +34 -0
  94. data/Framework7-0.9.6/examples/tab-bar/index.html +238 -0
  95. data/Framework7-0.9.6/examples/tab-bar/jade/about.jade +15 -0
  96. data/Framework7-0.9.6/examples/tab-bar/jade/index.jade +189 -0
  97. data/Framework7-0.9.6/examples/tab-bar/jade/services.jade +15 -0
  98. data/Framework7-0.9.6/examples/tab-bar/js/my-app.js +15 -0
  99. data/Framework7-0.9.6/examples/tab-bar/less/my-app.less +35 -0
  100. data/Framework7-0.9.6/examples/tab-bar/services.html +19 -0
  101. data/Framework7-0.9.6/kitchen-sink/about.html +22 -0
  102. data/Framework7-0.9.6/kitchen-sink/accordion.html +171 -0
  103. data/Framework7-0.9.6/kitchen-sink/color-themes.html +42 -0
  104. data/Framework7-0.9.6/kitchen-sink/contacts.html +190 -0
  105. data/Framework7-0.9.6/kitchen-sink/core-features.html +70 -0
  106. data/Framework7-0.9.6/kitchen-sink/css/kitchen-sink.css +233 -0
  107. data/Framework7-0.9.6/kitchen-sink/deep-2.html +22 -0
  108. data/Framework7-0.9.6/kitchen-sink/deep-navbar-2.html +19 -0
  109. data/Framework7-0.9.6/kitchen-sink/deep-navbar-3.html +19 -0
  110. data/Framework7-0.9.6/kitchen-sink/deep-navbar.html +18 -0
  111. data/Framework7-0.9.6/kitchen-sink/forms-buttons.html +64 -0
  112. data/Framework7-0.9.6/kitchen-sink/forms-checkboxes.html +200 -0
  113. data/Framework7-0.9.6/kitchen-sink/forms-elements.html +359 -0
  114. data/Framework7-0.9.6/kitchen-sink/forms-selects.html +72 -0
  115. data/Framework7-0.9.6/kitchen-sink/forms-storage.html +181 -0
  116. data/Framework7-0.9.6/kitchen-sink/forms.html +56 -0
  117. data/Framework7-0.9.6/kitchen-sink/grid.html +140 -0
  118. data/Framework7-0.9.6/kitchen-sink/hide-navbar-toolbar.html +42 -0
  119. data/Framework7-0.9.6/kitchen-sink/img/beach.jpg +0 -0
  120. data/Framework7-0.9.6/kitchen-sink/img/lock.jpg +0 -0
  121. data/Framework7-0.9.6/kitchen-sink/img/monkey.jpg +0 -0
  122. data/Framework7-0.9.6/kitchen-sink/img/mountains.jpg +0 -0
  123. data/Framework7-0.9.6/kitchen-sink/index.html +466 -0
  124. data/Framework7-0.9.6/kitchen-sink/infinite-scroll-load.php +19 -0
  125. data/Framework7-0.9.6/kitchen-sink/infinite-scroll.html +119 -0
  126. data/Framework7-0.9.6/kitchen-sink/jade/about.jade +19 -0
  127. data/Framework7-0.9.6/kitchen-sink/jade/accordion.jade +133 -0
  128. data/Framework7-0.9.6/kitchen-sink/jade/color-themes.jade +37 -0
  129. data/Framework7-0.9.6/kitchen-sink/jade/contacts.jade +115 -0
  130. data/Framework7-0.9.6/kitchen-sink/jade/core-features.jade +74 -0
  131. data/Framework7-0.9.6/kitchen-sink/jade/deep-navbar-2.jade +15 -0
  132. data/Framework7-0.9.6/kitchen-sink/jade/deep-navbar-3.jade +15 -0
  133. data/Framework7-0.9.6/kitchen-sink/jade/deep-navbar.jade +15 -0
  134. data/Framework7-0.9.6/kitchen-sink/jade/forms-buttons.jade +71 -0
  135. data/Framework7-0.9.6/kitchen-sink/jade/forms-checkboxes.jade +152 -0
  136. data/Framework7-0.9.6/kitchen-sink/jade/forms-elements.jade +239 -0
  137. data/Framework7-0.9.6/kitchen-sink/jade/forms-selects.jade +60 -0
  138. data/Framework7-0.9.6/kitchen-sink/jade/forms-storage.jade +134 -0
  139. data/Framework7-0.9.6/kitchen-sink/jade/forms.jade +52 -0
  140. data/Framework7-0.9.6/kitchen-sink/jade/grid.jade +110 -0
  141. data/Framework7-0.9.6/kitchen-sink/jade/hide-navbar-toolbar.jade +38 -0
  142. data/Framework7-0.9.6/kitchen-sink/jade/index.jade +427 -0
  143. data/Framework7-0.9.6/kitchen-sink/jade/infinite-scroll.jade +20 -0
  144. data/Framework7-0.9.6/kitchen-sink/jade/list-view.jade +266 -0
  145. data/Framework7-0.9.6/kitchen-sink/jade/login-screen-embedded.jade +22 -0
  146. data/Framework7-0.9.6/kitchen-sink/jade/login-screen.jade +20 -0
  147. data/Framework7-0.9.6/kitchen-sink/jade/media-lists.jade +170 -0
  148. data/Framework7-0.9.6/kitchen-sink/jade/messages.jade +71 -0
  149. data/Framework7-0.9.6/kitchen-sink/jade/modals.jade +36 -0
  150. data/Framework7-0.9.6/kitchen-sink/jade/navbars-toolbars.jade +43 -0
  151. data/Framework7-0.9.6/kitchen-sink/jade/no-navbar-toolbar.jade +7 -0
  152. data/Framework7-0.9.6/kitchen-sink/jade/no-navbar.jade +7 -0
  153. data/Framework7-0.9.6/kitchen-sink/jade/no-toolbar.jade +17 -0
  154. data/Framework7-0.9.6/kitchen-sink/jade/notifications.jade +23 -0
  155. data/Framework7-0.9.6/kitchen-sink/jade/panels.jade +21 -0
  156. data/Framework7-0.9.6/kitchen-sink/jade/photo-browser.jade +36 -0
  157. data/Framework7-0.9.6/kitchen-sink/jade/popover.jade +21 -0
  158. data/Framework7-0.9.6/kitchen-sink/jade/preloader.jade +31 -0
  159. data/Framework7-0.9.6/kitchen-sink/jade/pull-to-refresh.jade +44 -0
  160. data/Framework7-0.9.6/kitchen-sink/jade/searchbar.jade +146 -0
  161. data/Framework7-0.9.6/kitchen-sink/jade/slider-custom.jade +23 -0
  162. data/Framework7-0.9.6/kitchen-sink/jade/slider-horizontal.jade +18 -0
  163. data/Framework7-0.9.6/kitchen-sink/jade/slider-multiple.jade +48 -0
  164. data/Framework7-0.9.6/kitchen-sink/jade/slider-nested.jade +26 -0
  165. data/Framework7-0.9.6/kitchen-sink/jade/slider-space-between.jade +18 -0
  166. data/Framework7-0.9.6/kitchen-sink/jade/slider-vertical.jade +18 -0
  167. data/Framework7-0.9.6/kitchen-sink/jade/slider.jade +57 -0
  168. data/Framework7-0.9.6/kitchen-sink/jade/sortable-list.jade +107 -0
  169. data/Framework7-0.9.6/kitchen-sink/jade/swipe-delete.jade +195 -0
  170. data/Framework7-0.9.6/kitchen-sink/jade/tabbar-labels.jade +54 -0
  171. data/Framework7-0.9.6/kitchen-sink/jade/tabbar.jade +50 -0
  172. data/Framework7-0.9.6/kitchen-sink/jade/tabs.jade +34 -0
  173. data/Framework7-0.9.6/kitchen-sink/jade/transitions.jade +27 -0
  174. data/Framework7-0.9.6/kitchen-sink/js/kitchen-sink.js +442 -0
  175. data/Framework7-0.9.6/kitchen-sink/less/kitchen-sink.less +245 -0
  176. data/Framework7-0.9.6/kitchen-sink/list-view.html +318 -0
  177. data/Framework7-0.9.6/kitchen-sink/login-screen-embedded.html +36 -0
  178. data/Framework7-0.9.6/kitchen-sink/login-screen.html +21 -0
  179. data/Framework7-0.9.6/kitchen-sink/media-lists.html +173 -0
  180. data/Framework7-0.9.6/kitchen-sink/messages.html +84 -0
  181. data/Framework7-0.9.6/kitchen-sink/modals.html +33 -0
  182. data/Framework7-0.9.6/kitchen-sink/navbars-toolbars.html +46 -0
  183. data/Framework7-0.9.6/kitchen-sink/no-navbar-toolbar.html +11 -0
  184. data/Framework7-0.9.6/kitchen-sink/no-navbar.html +11 -0
  185. data/Framework7-0.9.6/kitchen-sink/no-toolbar.html +18 -0
  186. data/Framework7-0.9.6/kitchen-sink/notifications.html +21 -0
  187. data/Framework7-0.9.6/kitchen-sink/panel-right2.html +16 -0
  188. data/Framework7-0.9.6/kitchen-sink/panel-right3.html +16 -0
  189. data/Framework7-0.9.6/kitchen-sink/panels.html +23 -0
  190. data/Framework7-0.9.6/kitchen-sink/photo-browser.html +36 -0
  191. data/Framework7-0.9.6/kitchen-sink/popover.html +21 -0
  192. data/Framework7-0.9.6/kitchen-sink/preloader.html +28 -0
  193. data/Framework7-0.9.6/kitchen-sink/pull-to-refresh.html +52 -0
  194. data/Framework7-0.9.6/kitchen-sink/searchbar.html +233 -0
  195. data/Framework7-0.9.6/kitchen-sink/slider-custom.html +28 -0
  196. data/Framework7-0.9.6/kitchen-sink/slider-horizontal.html +29 -0
  197. data/Framework7-0.9.6/kitchen-sink/slider-multiple.html +89 -0
  198. data/Framework7-0.9.6/kitchen-sink/slider-nested.html +32 -0
  199. data/Framework7-0.9.6/kitchen-sink/slider-space-between.html +29 -0
  200. data/Framework7-0.9.6/kitchen-sink/slider-vertical.html +29 -0
  201. data/Framework7-0.9.6/kitchen-sink/slider.html +54 -0
  202. data/Framework7-0.9.6/kitchen-sink/sortable-list.html +137 -0
  203. data/Framework7-0.9.6/kitchen-sink/swipe-delete.html +216 -0
  204. data/Framework7-0.9.6/kitchen-sink/tabbar-labels.html +51 -0
  205. data/Framework7-0.9.6/kitchen-sink/tabbar.html +0 -0
  206. data/Gemfile +4 -0
  207. data/LICENSE.txt +22 -0
  208. data/README.md +109 -0
  209. data/Rakefile +2 -0
  210. data/framework7rails.gemspec +23 -0
  211. data/install_local.sh +2 -0
  212. data/lib/framework7rails/version.rb +4 -0
  213. data/lib/framework7rails.rb +8 -0
  214. data/update_from_vendor.rb +40 -0
  215. data/vendor/assets/images/i-f7.png +0 -0
  216. data/vendor/assets/images/i-form-calendar.png +0 -0
  217. data/vendor/assets/images/i-form-comment.png +0 -0
  218. data/vendor/assets/images/i-form-email.png +0 -0
  219. data/vendor/assets/images/i-form-gender.png +0 -0
  220. data/vendor/assets/images/i-form-name.png +0 -0
  221. data/vendor/assets/images/i-form-password.png +0 -0
  222. data/vendor/assets/images/i-form-settings.png +0 -0
  223. data/vendor/assets/images/i-form-tel.png +0 -0
  224. data/vendor/assets/images/i-form-toggle.png +0 -0
  225. data/vendor/assets/images/i-form-url.png +0 -0
  226. data/vendor/assets/javascripts/framework7.js +8288 -0
  227. data/vendor/assets/javascripts/framework7.js.map +1 -0
  228. data/vendor/assets/stylesheets/framework7.css +5078 -0
  229. data/vendor/assets/stylesheets/framework7.themes.css +279 -0
  230. metadata +231 -3
@@ -0,0 +1,5078 @@
1
+ /*
2
+ * Framework7 0.9.7
3
+ * Full Featured HTML Framework For Building iOS 7 Apps
4
+ *
5
+ * http://www.idangero.us/framework7
6
+ *
7
+ * Copyright 2014, Vladimir Kharlampidi
8
+ * The iDangero.us
9
+ * http://www.idangero.us/
10
+ *
11
+ * Licensed under MIT
12
+ *
13
+ * Released on: October 7, 2014
14
+ */
15
+ html,
16
+ body {
17
+ position: relative;
18
+ height: 100%;
19
+ width: 100%;
20
+ overflow-x: hidden;
21
+ }
22
+ body {
23
+ font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
24
+ margin: 0;
25
+ padding: 0;
26
+ color: #000;
27
+ font-size: 14px;
28
+ line-height: 1.4;
29
+ width: 100%;
30
+ -webkit-text-size-adjust: 100%;
31
+ background: #fff;
32
+ overflow: hidden;
33
+ }
34
+ @media all and (width: 1024px) and (height: 691px) and (orientation: landscape) {
35
+ html,
36
+ body {
37
+ height: 671px;
38
+ }
39
+ }
40
+ @media all and (width: 1024px) and (height: 692px) and (orientation: landscape) {
41
+ html,
42
+ body {
43
+ height: 672px;
44
+ }
45
+ }
46
+ * {
47
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
48
+ -webkit-touch-callout: none;
49
+ }
50
+ a,
51
+ input,
52
+ textarea,
53
+ select {
54
+ outline: 0;
55
+ }
56
+ a {
57
+ text-decoration: none;
58
+ color: #007aff;
59
+ }
60
+ p {
61
+ margin: 1em 0;
62
+ }
63
+ /* === Grid === */
64
+ .row {
65
+ display: -webkit-box;
66
+ display: -ms-flexbox;
67
+ display: -webkit-flex;
68
+ display: flex;
69
+ -webkit-box-pack: justify;
70
+ -ms-flex-pack: justify;
71
+ -webkit-justify-content: space-between;
72
+ justify-content: space-between;
73
+ -webkit-box-lines: multiple;
74
+ -moz-box-lines: multiple;
75
+ -webkit-flex-wrap: wrap;
76
+ -ms-flex-wrap: wrap;
77
+ flex-wrap: wrap;
78
+ -webkit-box-align: start;
79
+ -ms-flex-align: start;
80
+ -webkit-align-items: flex-start;
81
+ align-items: flex-start;
82
+ }
83
+ .row > [class*="col-"] {
84
+ -webkit-box-sizing: border-box;
85
+ -moz-box-sizing: border-box;
86
+ box-sizing: border-box;
87
+ }
88
+ .row .col-100 {
89
+ width: 100%;
90
+ width: -webkit-calc( (100% - 15px*0) / 1);
91
+ width: calc( (100% - 15px*0) / 1);
92
+ }
93
+ .row.no-gutter .col-100 {
94
+ width: 100%;
95
+ }
96
+ .row .col-95 {
97
+ width: 95%;
98
+ width: -webkit-calc( (100% - 15px*0.05263157894736836) / 1.0526315789473684);
99
+ width: calc( (100% - 15px*0.05263157894736836) / 1.0526315789473684);
100
+ }
101
+ .row.no-gutter .col-95 {
102
+ width: 95%;
103
+ }
104
+ .row .col-90 {
105
+ width: 90%;
106
+ width: -webkit-calc( (100% - 15px*0.11111111111111116) / 1.1111111111111112);
107
+ width: calc( (100% - 15px*0.11111111111111116) / 1.1111111111111112);
108
+ }
109
+ .row.no-gutter .col-90 {
110
+ width: 90%;
111
+ }
112
+ .row .col-85 {
113
+ width: 85%;
114
+ width: -webkit-calc( (100% - 15px*0.17647058823529416) / 1.1764705882352942);
115
+ width: calc( (100% - 15px*0.17647058823529416) / 1.1764705882352942);
116
+ }
117
+ .row.no-gutter .col-85 {
118
+ width: 85%;
119
+ }
120
+ .row .col-80 {
121
+ width: 80%;
122
+ width: -webkit-calc( (100% - 15px*0.25) / 1.25);
123
+ width: calc( (100% - 15px*0.25) / 1.25);
124
+ }
125
+ .row.no-gutter .col-80 {
126
+ width: 80%;
127
+ }
128
+ .row .col-75 {
129
+ width: 75%;
130
+ width: -webkit-calc( (100% - 15px*0.33333333333333326) / 1.3333333333333333);
131
+ width: calc( (100% - 15px*0.33333333333333326) / 1.3333333333333333);
132
+ }
133
+ .row.no-gutter .col-75 {
134
+ width: 75%;
135
+ }
136
+ .row .col-66 {
137
+ width: 66.66666666666666%;
138
+ width: -webkit-calc( (100% - 15px*0.5000000000000002) / 1.5000000000000002);
139
+ width: calc( (100% - 15px*0.5000000000000002) / 1.5000000000000002);
140
+ }
141
+ .row.no-gutter .col-66 {
142
+ width: 66.66666666666666%;
143
+ }
144
+ .row .col-60 {
145
+ width: 60%;
146
+ width: -webkit-calc( (100% - 15px*0.6666666666666667) / 1.6666666666666667);
147
+ width: calc( (100% - 15px*0.6666666666666667) / 1.6666666666666667);
148
+ }
149
+ .row.no-gutter .col-60 {
150
+ width: 60%;
151
+ }
152
+ .row .col-50 {
153
+ width: 50%;
154
+ width: -webkit-calc( (100% - 15px*1) / 2);
155
+ width: calc( (100% - 15px*1) / 2);
156
+ }
157
+ .row.no-gutter .col-50 {
158
+ width: 50%;
159
+ }
160
+ .row .col-40 {
161
+ width: 40%;
162
+ width: -webkit-calc( (100% - 15px*1.5) / 2.5);
163
+ width: calc( (100% - 15px*1.5) / 2.5);
164
+ }
165
+ .row.no-gutter .col-40 {
166
+ width: 40%;
167
+ }
168
+ .row .col-33 {
169
+ width: 33.333333333333336%;
170
+ width: -webkit-calc( (100% - 15px*2) / 3);
171
+ width: calc( (100% - 15px*2) / 3);
172
+ }
173
+ .row.no-gutter .col-33 {
174
+ width: 33.333333333333336%;
175
+ }
176
+ .row .col-25 {
177
+ width: 25%;
178
+ width: -webkit-calc( (100% - 15px*3) / 4);
179
+ width: calc( (100% - 15px*3) / 4);
180
+ }
181
+ .row.no-gutter .col-25 {
182
+ width: 25%;
183
+ }
184
+ .row .col-20 {
185
+ width: 20%;
186
+ width: -webkit-calc( (100% - 15px*4) / 5);
187
+ width: calc( (100% - 15px*4) / 5);
188
+ }
189
+ .row.no-gutter .col-20 {
190
+ width: 20%;
191
+ }
192
+ .row .col-15 {
193
+ width: 15%;
194
+ width: -webkit-calc( (100% - 15px*5.666666666666667) / 6.666666666666667);
195
+ width: calc( (100% - 15px*5.666666666666667) / 6.666666666666667);
196
+ }
197
+ .row.no-gutter .col-15 {
198
+ width: 15%;
199
+ }
200
+ .row .col-10 {
201
+ width: 10%;
202
+ width: -webkit-calc( (100% - 15px*9) / 10);
203
+ width: calc( (100% - 15px*9) / 10);
204
+ }
205
+ .row.no-gutter .col-10 {
206
+ width: 10%;
207
+ }
208
+ .row .col-5 {
209
+ width: 5%;
210
+ width: -webkit-calc( (100% - 15px*19) / 20);
211
+ width: calc( (100% - 15px*19) / 20);
212
+ }
213
+ .row.no-gutter .col-5 {
214
+ width: 5%;
215
+ }
216
+ @media all and (min-width: 768px) {
217
+ .row .tablet-100 {
218
+ width: 100%;
219
+ width: -webkit-calc( (100% - 15px*0) / 1);
220
+ width: calc( (100% - 15px*0) / 1);
221
+ }
222
+ .row.no-gutter .tablet-100 {
223
+ width: 100%;
224
+ }
225
+ .row .tablet-95 {
226
+ width: 95%;
227
+ width: -webkit-calc( (100% - 15px*0.05263157894736836) / 1.0526315789473684);
228
+ width: calc( (100% - 15px*0.05263157894736836) / 1.0526315789473684);
229
+ }
230
+ .row.no-gutter .tablet-95 {
231
+ width: 95%;
232
+ }
233
+ .row .tablet-90 {
234
+ width: 90%;
235
+ width: -webkit-calc( (100% - 15px*0.11111111111111116) / 1.1111111111111112);
236
+ width: calc( (100% - 15px*0.11111111111111116) / 1.1111111111111112);
237
+ }
238
+ .row.no-gutter .tablet-90 {
239
+ width: 90%;
240
+ }
241
+ .row .tablet-85 {
242
+ width: 85%;
243
+ width: -webkit-calc( (100% - 15px*0.17647058823529416) / 1.1764705882352942);
244
+ width: calc( (100% - 15px*0.17647058823529416) / 1.1764705882352942);
245
+ }
246
+ .row.no-gutter .tablet-85 {
247
+ width: 85%;
248
+ }
249
+ .row .tablet-80 {
250
+ width: 80%;
251
+ width: -webkit-calc( (100% - 15px*0.25) / 1.25);
252
+ width: calc( (100% - 15px*0.25) / 1.25);
253
+ }
254
+ .row.no-gutter .tablet-80 {
255
+ width: 80%;
256
+ }
257
+ .row .tablet-75 {
258
+ width: 75%;
259
+ width: -webkit-calc( (100% - 15px*0.33333333333333326) / 1.3333333333333333);
260
+ width: calc( (100% - 15px*0.33333333333333326) / 1.3333333333333333);
261
+ }
262
+ .row.no-gutter .tablet-75 {
263
+ width: 75%;
264
+ }
265
+ .row .tablet-66 {
266
+ width: 66.66666666666666%;
267
+ width: -webkit-calc( (100% - 15px*0.5000000000000002) / 1.5000000000000002);
268
+ width: calc( (100% - 15px*0.5000000000000002) / 1.5000000000000002);
269
+ }
270
+ .row.no-gutter .tablet-66 {
271
+ width: 66.66666666666666%;
272
+ }
273
+ .row .tablet-60 {
274
+ width: 60%;
275
+ width: -webkit-calc( (100% - 15px*0.6666666666666667) / 1.6666666666666667);
276
+ width: calc( (100% - 15px*0.6666666666666667) / 1.6666666666666667);
277
+ }
278
+ .row.no-gutter .tablet-60 {
279
+ width: 60%;
280
+ }
281
+ .row .tablet-50 {
282
+ width: 50%;
283
+ width: -webkit-calc( (100% - 15px*1) / 2);
284
+ width: calc( (100% - 15px*1) / 2);
285
+ }
286
+ .row.no-gutter .tablet-50 {
287
+ width: 50%;
288
+ }
289
+ .row .tablet-40 {
290
+ width: 40%;
291
+ width: -webkit-calc( (100% - 15px*1.5) / 2.5);
292
+ width: calc( (100% - 15px*1.5) / 2.5);
293
+ }
294
+ .row.no-gutter .tablet-40 {
295
+ width: 40%;
296
+ }
297
+ .row .tablet-33 {
298
+ width: 33.333333333333336%;
299
+ width: -webkit-calc( (100% - 15px*2) / 3);
300
+ width: calc( (100% - 15px*2) / 3);
301
+ }
302
+ .row.no-gutter .tablet-33 {
303
+ width: 33.333333333333336%;
304
+ }
305
+ .row .tablet-25 {
306
+ width: 25%;
307
+ width: -webkit-calc( (100% - 15px*3) / 4);
308
+ width: calc( (100% - 15px*3) / 4);
309
+ }
310
+ .row.no-gutter .tablet-25 {
311
+ width: 25%;
312
+ }
313
+ .row .tablet-20 {
314
+ width: 20%;
315
+ width: -webkit-calc( (100% - 15px*4) / 5);
316
+ width: calc( (100% - 15px*4) / 5);
317
+ }
318
+ .row.no-gutter .tablet-20 {
319
+ width: 20%;
320
+ }
321
+ .row .tablet-15 {
322
+ width: 15%;
323
+ width: -webkit-calc( (100% - 15px*5.666666666666667) / 6.666666666666667);
324
+ width: calc( (100% - 15px*5.666666666666667) / 6.666666666666667);
325
+ }
326
+ .row.no-gutter .tablet-15 {
327
+ width: 15%;
328
+ }
329
+ .row .tablet-10 {
330
+ width: 10%;
331
+ width: -webkit-calc( (100% - 15px*9) / 10);
332
+ width: calc( (100% - 15px*9) / 10);
333
+ }
334
+ .row.no-gutter .tablet-10 {
335
+ width: 10%;
336
+ }
337
+ .row .tablet-5 {
338
+ width: 5%;
339
+ width: -webkit-calc( (100% - 15px*19) / 20);
340
+ width: calc( (100% - 15px*19) / 20);
341
+ }
342
+ .row.no-gutter .tablet-5 {
343
+ width: 5%;
344
+ }
345
+ }
346
+ /* === Views === */
347
+ .views,
348
+ .view {
349
+ position: relative;
350
+ width: 100%;
351
+ height: 100%;
352
+ z-index: 5000;
353
+ }
354
+ .views {
355
+ overflow: auto;
356
+ -webkit-overflow-scrolling: touch;
357
+ }
358
+ .view {
359
+ overflow: hidden;
360
+ -webkit-box-sizing: border-box;
361
+ -moz-box-sizing: border-box;
362
+ box-sizing: border-box;
363
+ }
364
+ /* === Pages === */
365
+ .pages {
366
+ position: relative;
367
+ width: 100%;
368
+ height: 100%;
369
+ overflow: hidden;
370
+ background: #000;
371
+ }
372
+ .page {
373
+ -webkit-box-sizing: border-box;
374
+ -moz-box-sizing: border-box;
375
+ box-sizing: border-box;
376
+ position: absolute;
377
+ left: 0;
378
+ top: 0;
379
+ width: 100%;
380
+ height: 100%;
381
+ overflow: hidden;
382
+ background: #efeff4;
383
+ -webkit-transform: translate3d(0, 0, 0);
384
+ -ms-transform: translate3d(0, 0, 0);
385
+ transform: translate3d(0, 0, 0);
386
+ opacity: 1;
387
+ -webkit-box-shadow: none;
388
+ box-shadow: none;
389
+ }
390
+ .page.cached {
391
+ display: none;
392
+ }
393
+ .page-on-left {
394
+ opacity: 0.9;
395
+ -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
396
+ box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
397
+ -webkit-transform: translate3d(-20%, 0, 0);
398
+ -ms-transform: translate3d(-20%, 0, 0);
399
+ transform: translate3d(-20%, 0, 0);
400
+ }
401
+ .page-on-center {
402
+ opacity: 1;
403
+ -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
404
+ box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
405
+ -webkit-transform: translate3d(0, 0, 0);
406
+ -ms-transform: translate3d(0, 0, 0);
407
+ transform: translate3d(0, 0, 0);
408
+ }
409
+ .page-on-right {
410
+ -webkit-box-shadow: none;
411
+ box-shadow: none;
412
+ opacity: 1;
413
+ -webkit-transform: translate3d(100%, 0, 0);
414
+ -ms-transform: translate3d(100%, 0, 0);
415
+ transform: translate3d(100%, 0, 0);
416
+ }
417
+ .page-content {
418
+ overflow: auto;
419
+ -webkit-overflow-scrolling: touch;
420
+ -webkit-box-sizing: border-box;
421
+ -moz-box-sizing: border-box;
422
+ box-sizing: border-box;
423
+ height: 100%;
424
+ }
425
+ html.ios-gt-7 .page-on-left .page-content {
426
+ -webkit-overflow-scrolling: auto;
427
+ }
428
+ .page-transitioning {
429
+ -webkit-transition-duration: 400ms;
430
+ transition-duration: 400ms;
431
+ }
432
+ .page-from-right-to-center {
433
+ -webkit-animation: pageFromRightToCenter 400ms forwards;
434
+ animation: pageFromRightToCenter 400ms forwards;
435
+ }
436
+ .page-from-center-to-right {
437
+ -webkit-animation: pageFromCenterToRight 400ms forwards;
438
+ animation: pageFromCenterToRight 400ms forwards;
439
+ }
440
+ @-webkit-keyframes pageFromRightToCenter {
441
+ from {
442
+ -webkit-box-shadow: none;
443
+ box-shadow: none;
444
+ -webkit-transform: translate3d(100%, 0, 0);
445
+ }
446
+ to {
447
+ -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
448
+ box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
449
+ -webkit-transform: translate3d(0, 0, 0);
450
+ }
451
+ }
452
+ @-webkit-keyframes pageFromCenterToRight {
453
+ from {
454
+ -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
455
+ box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
456
+ -webkit-transform: translate3d(0, 0, 0);
457
+ }
458
+ to {
459
+ -webkit-box-shadow: none;
460
+ box-shadow: none;
461
+ -webkit-transform: translate3d(100%, 0, 0);
462
+ }
463
+ }
464
+ @keyframes pageFromRightToCenter {
465
+ from {
466
+ -webkit-box-shadow: none;
467
+ box-shadow: none;
468
+ transform: translate3d(100%, 0, 0);
469
+ }
470
+ to {
471
+ -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
472
+ box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
473
+ transform: translate3d(0, 0, 0);
474
+ }
475
+ }
476
+ @keyframes pageFromCenterToRight {
477
+ from {
478
+ -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
479
+ box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
480
+ transform: translate3d(0, 0, 0);
481
+ }
482
+ to {
483
+ -webkit-box-shadow: none;
484
+ box-shadow: none;
485
+ transform: translate3d(100%, 0, 0);
486
+ }
487
+ }
488
+ .page-from-center-to-left {
489
+ -webkit-animation: pageFromCenterToLeft 400ms forwards;
490
+ animation: pageFromCenterToLeft 400ms forwards;
491
+ }
492
+ .page-from-left-to-center {
493
+ -webkit-animation: pageFromLeftToCenter 400ms forwards;
494
+ animation: pageFromLeftToCenter 400ms forwards;
495
+ }
496
+ @-webkit-keyframes pageFromCenterToLeft {
497
+ from {
498
+ opacity: 1;
499
+ -webkit-transform: translate3d(0, 0, 0);
500
+ }
501
+ to {
502
+ opacity: 0.9;
503
+ -webkit-transform: translate3d(-20%, 0, 0);
504
+ }
505
+ }
506
+ @-webkit-keyframes pageFromLeftToCenter {
507
+ from {
508
+ opacity: 0.9;
509
+ -webkit-transform: translate3d(-20%, 0, 0);
510
+ }
511
+ to {
512
+ opacity: 1;
513
+ -webkit-transform: translate3d(0, 0, 0);
514
+ }
515
+ }
516
+ @keyframes pageFromCenterToLeft {
517
+ from {
518
+ opacity: 1;
519
+ transform: translate3d(0, 0, 0);
520
+ }
521
+ to {
522
+ opacity: 0.9;
523
+ transform: translate3d(-20%, 0, 0);
524
+ }
525
+ }
526
+ @keyframes pageFromLeftToCenter {
527
+ from {
528
+ opacity: 0.9;
529
+ transform: translate3d(-20%, 0, 0);
530
+ }
531
+ to {
532
+ opacity: 1;
533
+ transform: translate3d(0, 0, 0);
534
+ }
535
+ }
536
+ html.android .page {
537
+ box-shadow: none !important;
538
+ }
539
+ html.android .page-from-right-to-center {
540
+ -webkit-animation: pageFromRightToCenterDegrade 400ms forwards;
541
+ animation: pageFromRightToCenterDegrade 400ms forwards;
542
+ }
543
+ html.android .page-from-center-to-right {
544
+ -webkit-animation: pageFromCenterToRightDegrade 400ms forwards;
545
+ animation: pageFromCenterToRightDegrade 400ms forwards;
546
+ }
547
+ @-webkit-keyframes pageFromRightToCenterDegrade {
548
+ from {
549
+ -webkit-transform: translate3d(100%, 0, 0);
550
+ }
551
+ to {
552
+ -webkit-transform: translate3d(0, 0, 0);
553
+ }
554
+ }
555
+ @-webkit-keyframes pageFromCenterToRightDegrade {
556
+ from {
557
+ -webkit-transform: translate3d(0, 0, 0);
558
+ }
559
+ to {
560
+ -webkit-transform: translate3d(100%, 0, 0);
561
+ }
562
+ }
563
+ @keyframes pageFromRightToCenterDegrade {
564
+ from {
565
+ transform: translate3d(100%, 0, 0);
566
+ }
567
+ to {
568
+ transform: translate3d(0, 0, 0);
569
+ }
570
+ }
571
+ @keyframes pageFromCenterToRightDegrade {
572
+ from {
573
+ transform: translate3d(0, 0, 0);
574
+ }
575
+ to {
576
+ transform: translate3d(100%, 0, 0);
577
+ }
578
+ }
579
+ /* === Toolbars === */
580
+ .navbar-inner,
581
+ .toolbar-inner {
582
+ position: absolute;
583
+ left: 0;
584
+ top: 0;
585
+ width: 100%;
586
+ height: 100%;
587
+ padding: 0 8px;
588
+ -webkit-box-sizing: border-box;
589
+ -moz-box-sizing: border-box;
590
+ box-sizing: border-box;
591
+ display: -webkit-box;
592
+ display: -ms-flexbox;
593
+ display: -webkit-flex;
594
+ display: flex;
595
+ -webkit-box-pack: justify;
596
+ -ms-flex-pack: justify;
597
+ -webkit-justify-content: space-between;
598
+ justify-content: space-between;
599
+ -webkit-box-align: center;
600
+ -ms-flex-align: center;
601
+ -webkit-align-items: center;
602
+ align-items: center;
603
+ }
604
+ .navbar-inner.cached {
605
+ display: none;
606
+ }
607
+ .navbar,
608
+ .toolbar {
609
+ height: 44px;
610
+ width: 100%;
611
+ -webkit-box-sizing: border-box;
612
+ -moz-box-sizing: border-box;
613
+ box-sizing: border-box;
614
+ font-size: 17px;
615
+ position: relative;
616
+ margin: 0;
617
+ z-index: 500;
618
+ -webkit-backface-visibility: hidden;
619
+ backface-visibility: hidden;
620
+ }
621
+ .navbar b,
622
+ .toolbar b {
623
+ font-weight: 500;
624
+ }
625
+ .navbar a.link,
626
+ .toolbar a.link {
627
+ line-height: 44px;
628
+ height: 44px;
629
+ text-decoration: none;
630
+ position: relative;
631
+ display: -webkit-box;
632
+ display: -ms-flexbox;
633
+ display: -webkit-flex;
634
+ display: flex;
635
+ -webkit-box-pack: start;
636
+ -ms-flex-pack: start;
637
+ -webkit-justify-content: flex-start;
638
+ justify-content: flex-start;
639
+ -webkit-box-align: center;
640
+ -ms-flex-align: center;
641
+ -webkit-align-items: center;
642
+ align-items: center;
643
+ -webkit-transition-duration: 300ms;
644
+ transition-duration: 300ms;
645
+ }
646
+ html:not(.watch-active-state) .navbar a.link:active,
647
+ html:not(.watch-active-state) .toolbar a.link:active,
648
+ .navbar a.link.active-state,
649
+ .toolbar a.link.active-state {
650
+ opacity: 0.3;
651
+ -webkit-transition-duration: 0ms;
652
+ transition-duration: 0ms;
653
+ }
654
+ .navbar a.link i + span,
655
+ .toolbar a.link i + span,
656
+ .navbar a.link i + i,
657
+ .toolbar a.link i + i,
658
+ .navbar a.link span + i,
659
+ .toolbar a.link span + i,
660
+ .navbar a.link span + span,
661
+ .toolbar a.link span + span {
662
+ margin-left: 7px;
663
+ }
664
+ .navbar a.icon-only,
665
+ .toolbar a.icon-only {
666
+ min-width: 44px;
667
+ display: -webkit-box;
668
+ display: -ms-flexbox;
669
+ display: -webkit-flex;
670
+ display: flex;
671
+ -webkit-box-pack: center;
672
+ -ms-flex-pack: center;
673
+ -webkit-justify-content: center;
674
+ justify-content: center;
675
+ -webkit-box-align: center;
676
+ -ms-flex-align: center;
677
+ -webkit-align-items: center;
678
+ align-items: center;
679
+ margin: 0;
680
+ }
681
+ .navbar i.icon,
682
+ .toolbar i.icon {
683
+ display: block;
684
+ }
685
+ .navbar {
686
+ left: 0;
687
+ top: 0;
688
+ background: #f7f7f8;
689
+ border-bottom: 1px solid #c4c4c4;
690
+ }
691
+ html.retina.ios-gt-7 .navbar {
692
+ border-bottom-width: 0.5px;
693
+ }
694
+ .navbar .center {
695
+ font-size: 17px;
696
+ font-weight: 500;
697
+ text-align: center;
698
+ margin: 0;
699
+ position: relative;
700
+ overflow: hidden;
701
+ text-overflow: ellipsis;
702
+ white-space: nowrap;
703
+ line-height: 44px;
704
+ -webkit-flex-shrink: 10;
705
+ -ms-flex: 0 10 auto;
706
+ flex-shrink: 10;
707
+ display: -webkit-box;
708
+ display: -ms-flexbox;
709
+ display: -webkit-flex;
710
+ display: flex;
711
+ -webkit-box-align: center;
712
+ -ms-flex-align: center;
713
+ -webkit-align-items: center;
714
+ align-items: center;
715
+ }
716
+ .navbar .left,
717
+ .navbar .right {
718
+ -webkit-flex-shrink: 0;
719
+ -ms-flex: 0 0 auto;
720
+ flex-shrink: 0;
721
+ display: -webkit-box;
722
+ display: -ms-flexbox;
723
+ display: -webkit-flex;
724
+ display: flex;
725
+ -webkit-box-pack: start;
726
+ -ms-flex-pack: start;
727
+ -webkit-justify-content: flex-start;
728
+ justify-content: flex-start;
729
+ -webkit-box-align: center;
730
+ -ms-flex-align: center;
731
+ -webkit-align-items: center;
732
+ align-items: center;
733
+ -webkit-transform: translate3d(0, 0, 0);
734
+ -ms-transform: translate3d(0, 0, 0);
735
+ transform: translate3d(0, 0, 0);
736
+ }
737
+ .navbar .left a + a,
738
+ .navbar .right a + a {
739
+ margin-left: 15px;
740
+ }
741
+ .navbar .left {
742
+ margin-right: 10px;
743
+ }
744
+ .navbar .right {
745
+ margin-left: 10px;
746
+ }
747
+ .navbar .right:first-child {
748
+ position: absolute;
749
+ right: 8px;
750
+ height: 100%;
751
+ }
752
+ .toolbar {
753
+ left: 0;
754
+ bottom: 0;
755
+ background: #f7f7f8;
756
+ border-top: 1px solid #c4c4c4;
757
+ }
758
+ html.retina.ios-gt-7 .toolbar {
759
+ border-top-width: 0.5px;
760
+ }
761
+ .toolbar a {
762
+ -webkit-flex-shrink: 1;
763
+ -ms-flex: 0 1 auto;
764
+ flex-shrink: 1;
765
+ position: relative;
766
+ white-space: nowrap;
767
+ text-overflow: ellipsis;
768
+ overflow: hidden;
769
+ }
770
+ .tabbar {
771
+ color: #929292;
772
+ z-index: 5001;
773
+ }
774
+ .tabbar a {
775
+ color: #929292;
776
+ }
777
+ .tabbar a.active {
778
+ color: #007aff;
779
+ }
780
+ .tabbar a.link {
781
+ line-height: 1.4;
782
+ }
783
+ .tabbar a.tab-link,
784
+ .tabbar a.link {
785
+ height: 100%;
786
+ width: 100%;
787
+ -webkit-box-sizing: border-box;
788
+ -moz-box-sizing: border-box;
789
+ box-sizing: border-box;
790
+ display: -webkit-box;
791
+ display: -ms-flexbox;
792
+ display: -webkit-flex;
793
+ display: flex;
794
+ -webkit-box-pack: center;
795
+ -ms-flex-pack: center;
796
+ -webkit-justify-content: center;
797
+ justify-content: center;
798
+ -webkit-box-align: center;
799
+ -ms-flex-align: center;
800
+ -webkit-align-items: center;
801
+ align-items: center;
802
+ overflow: visible;
803
+ -webkit-box-flex: 1;
804
+ -ms-flex: 1;
805
+ -webkit-box-orient: vertical;
806
+ -moz-box-orient: vertical;
807
+ -ms-flex-direction: column;
808
+ -webkit-flex-direction: column;
809
+ flex-direction: column;
810
+ }
811
+ .tabbar i.icon {
812
+ height: 30px;
813
+ }
814
+ .tabbar-labels {
815
+ height: 50px;
816
+ }
817
+ .tabbar-labels a.tab-link,
818
+ .tabbar-labels a.link {
819
+ padding-top: 4px;
820
+ padding-bottom: 4px;
821
+ height: 100%;
822
+ -webkit-box-pack: justify;
823
+ -ms-flex-pack: justify;
824
+ -webkit-justify-content: space-between;
825
+ justify-content: space-between;
826
+ }
827
+ .tabbar-labels a.tab-link i + span,
828
+ .tabbar-labels a.link i + span {
829
+ margin: 0;
830
+ }
831
+ .tabbar-labels span.tabbar-label {
832
+ line-height: 1;
833
+ display: block;
834
+ margin: 0;
835
+ letter-spacing: 0.01em;
836
+ font-size: 10px;
837
+ position: relative;
838
+ text-overflow: ellipsis;
839
+ white-space: nowrap;
840
+ }
841
+ @media all and (min-width: 768px) {
842
+ .tabbar .toolbar-inner {
843
+ -webkit-box-pack: center;
844
+ -ms-flex-pack: center;
845
+ -webkit-justify-content: center;
846
+ justify-content: center;
847
+ }
848
+ .tabbar a.tab-link,
849
+ .tabbar a.link {
850
+ width: auto;
851
+ min-width: 105px;
852
+ }
853
+ .tabbar-labels {
854
+ height: 56px;
855
+ }
856
+ .tabbar-labels span.tabbar-label {
857
+ font-size: 14px;
858
+ }
859
+ }
860
+ .navbar-from-right-to-center .left,
861
+ .navbar-from-right-to-center .right,
862
+ .navbar-from-right-to-center .center {
863
+ -webkit-animation: navbarElementFadeIn 400ms forwards;
864
+ animation: navbarElementFadeIn 400ms forwards;
865
+ }
866
+ .navbar-from-right-to-center .sliding {
867
+ opacity: 1;
868
+ }
869
+ .navbar-from-center-to-right .left,
870
+ .navbar-from-center-to-right .right,
871
+ .navbar-from-center-to-right .center {
872
+ -webkit-animation: navbarElementFadeOut 400ms forwards;
873
+ animation: navbarElementFadeOut 400ms forwards;
874
+ }
875
+ .navbar-from-center-to-right .sliding {
876
+ opacity: 0;
877
+ }
878
+ @-webkit-keyframes navbarElementFadeIn {
879
+ from {
880
+ opacity: 0;
881
+ }
882
+ to {
883
+ opacity: 1;
884
+ }
885
+ }
886
+ @keyframes navbarElementFadeIn {
887
+ from {
888
+ opacity: 0;
889
+ }
890
+ to {
891
+ opacity: 1;
892
+ }
893
+ }
894
+ .navbar-from-center-to-left .left,
895
+ .navbar-from-center-to-left .right,
896
+ .navbar-from-center-to-left .center {
897
+ -webkit-animation: navbarElementFadeOut 400ms forwards;
898
+ animation: navbarElementFadeOut 400ms forwards;
899
+ }
900
+ .navbar-from-center-to-left .sliding {
901
+ opacity: 0;
902
+ }
903
+ .navbar-from-left-to-center .left,
904
+ .navbar-from-left-to-center .right,
905
+ .navbar-from-left-to-center .center {
906
+ -webkit-animation: navbarElementFadeIn 400ms forwards;
907
+ animation: navbarElementFadeIn 400ms forwards;
908
+ }
909
+ .navbar-from-left-to-center .sliding {
910
+ opacity: 1;
911
+ }
912
+ .navbar-on-left .left,
913
+ .navbar-on-left .right,
914
+ .navbar-on-left .center {
915
+ opacity: 0;
916
+ }
917
+ .navbar-on-left .sliding {
918
+ opacity: 0;
919
+ }
920
+ .navbar-on-right .left,
921
+ .navbar-on-right .right,
922
+ .navbar-on-right .center {
923
+ opacity: 0;
924
+ }
925
+ .navbar-on-right .sliding {
926
+ opacity: 0;
927
+ }
928
+ @-webkit-keyframes navbarElementFadeOut {
929
+ from {
930
+ opacity: 1;
931
+ }
932
+ to {
933
+ opacity: 0;
934
+ }
935
+ }
936
+ @keyframes navbarElementFadeOut {
937
+ from {
938
+ opacity: 1;
939
+ }
940
+ to {
941
+ opacity: 0;
942
+ }
943
+ }
944
+ .navbar-from-right-to-center .left.sliding .back.link .icon,
945
+ .navbar-from-center-to-right .left.sliding .back.link .icon,
946
+ .navbar-from-center-to-left .left.sliding .back.link .icon,
947
+ .navbar-from-left-to-center .left.sliding .back.link .icon {
948
+ -webkit-transition-duration: 400ms;
949
+ transition-duration: 400ms;
950
+ }
951
+ .navbar-from-right-to-center .sliding,
952
+ .navbar-from-center-to-right .sliding,
953
+ .navbar-from-center-to-left .sliding,
954
+ .navbar-from-left-to-center .sliding {
955
+ -webkit-transition-duration: 400ms;
956
+ transition-duration: 400ms;
957
+ -webkit-animation: none;
958
+ animation: none;
959
+ }
960
+ /* === Relation between toolbar/navbar types and pages === */
961
+ .page > .navbar,
962
+ .view > .navbar,
963
+ .views > .navbar,
964
+ .page > .toolbar,
965
+ .view > .toolbar,
966
+ .views > .toolbar {
967
+ position: absolute;
968
+ }
969
+ .navbar-through .page-content,
970
+ .navbar-fixed .page-content {
971
+ padding-top: 44px;
972
+ }
973
+ .toolbar-through .page-content,
974
+ .toolbar-fixed .page-content,
975
+ .tabbar-through .page-content,
976
+ .tabbar-fixed .page-content {
977
+ padding-bottom: 44px;
978
+ }
979
+ .tabbar-labels-fixed .page-content,
980
+ .tabbar-labels-through .page-content {
981
+ padding-bottom: 50px;
982
+ }
983
+ @media all and (min-width: 768px) {
984
+ .tabbar-labels-fixed .page-content,
985
+ .tabbar-labels-through .page-content {
986
+ padding-bottom: 56px;
987
+ }
988
+ }
989
+ .hidden-navbar .navbar {
990
+ -webkit-transition-duration: 400ms;
991
+ transition-duration: 400ms;
992
+ -webkit-transform: translate3d(0, -100%, 0);
993
+ -ms-transform: translate3d(0, -100%, 0);
994
+ transform: translate3d(0, -100%, 0);
995
+ }
996
+ .hiding-navbar .navbar {
997
+ -webkit-transition-duration: 400ms;
998
+ transition-duration: 400ms;
999
+ -webkit-transform: translate3d(0, 0, 0);
1000
+ -ms-transform: translate3d(0, 0, 0);
1001
+ transform: translate3d(0, 0, 0);
1002
+ }
1003
+ .page.no-navbar .page-content {
1004
+ padding-top: 0;
1005
+ }
1006
+ .hidden-toolbar .toolbar {
1007
+ -webkit-transition-duration: 400ms;
1008
+ transition-duration: 400ms;
1009
+ -webkit-transform: translate3d(0, 100%, 0);
1010
+ -ms-transform: translate3d(0, 100%, 0);
1011
+ transform: translate3d(0, 100%, 0);
1012
+ }
1013
+ .hiding-toolbar .toolbar {
1014
+ -webkit-transition-duration: 400ms;
1015
+ transition-duration: 400ms;
1016
+ -webkit-transform: translate3d(0, 0, 0);
1017
+ -ms-transform: translate3d(0, 0, 0);
1018
+ transform: translate3d(0, 0, 0);
1019
+ }
1020
+ .page.no-toolbar .page-content {
1021
+ padding-bottom: 0;
1022
+ }
1023
+ /* === Search Bar === */
1024
+ .searchbar {
1025
+ height: 44px;
1026
+ background: #c9c9ce;
1027
+ -webkit-box-sizing: border-box;
1028
+ -moz-box-sizing: border-box;
1029
+ box-sizing: border-box;
1030
+ border-bottom: 1px solid #b4b4b4;
1031
+ padding: 0 8px;
1032
+ overflow: hidden;
1033
+ position: relative;
1034
+ display: -webkit-box;
1035
+ display: -ms-flexbox;
1036
+ display: -webkit-flex;
1037
+ display: flex;
1038
+ -webkit-box-align: center;
1039
+ -ms-flex-align: center;
1040
+ -webkit-align-items: center;
1041
+ align-items: center;
1042
+ }
1043
+ html.retina.ios-gt-7 .searchbar {
1044
+ border-bottom-width: 0.5px;
1045
+ }
1046
+ .searchbar .searchbar-input {
1047
+ width: 100%;
1048
+ height: 28px;
1049
+ position: relative;
1050
+ -webkit-flex-shrink: 1;
1051
+ -ms-flex: 0 1 auto;
1052
+ flex-shrink: 1;
1053
+ }
1054
+ .searchbar input[type="search"] {
1055
+ -webkit-box-sizing: border-box;
1056
+ -moz-box-sizing: border-box;
1057
+ box-sizing: border-box;
1058
+ width: 100%;
1059
+ height: 100%;
1060
+ display: block;
1061
+ border: none;
1062
+ -webkit-appearance: none;
1063
+ -moz-appearance: none;
1064
+ -ms-appearance: none;
1065
+ appearance: none;
1066
+ border-radius: 5px;
1067
+ font-family: inherit;
1068
+ color: #000;
1069
+ font-size: 14px;
1070
+ font-weight: normal;
1071
+ padding: 0 28px;
1072
+ background: #ffffff url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 13' enable-background='new 0 0 13 13'><g><path fill='%23939398' d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1 M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0 L5,0z'/></g><line stroke='%23939398' stroke-miterlimit='10' x1='12.6' y1='12.6' x2='8.2' y2='8.2'/></svg>") no-repeat 8px center;
1073
+ -webkit-background-size: 13px 13px;
1074
+ background-size: 13px 13px;
1075
+ }
1076
+ .searchbar input[type="search"]::-webkit-input-placeholder {
1077
+ color: #939398;
1078
+ opacity: 1;
1079
+ }
1080
+ .searchbar input[type="search"]::-webkit-search-cancel-button {
1081
+ -webkit-appearance: none;
1082
+ }
1083
+ .searchbar .searchbar-clear {
1084
+ position: absolute;
1085
+ width: 28px;
1086
+ height: 28px;
1087
+ right: 0;
1088
+ top: 0;
1089
+ opacity: 0;
1090
+ pointer-events: none;
1091
+ background: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'><circle cx='14' cy='14' r='14' fill='%238e8e93'/><line stroke='%23ffffff' stroke-width='2' stroke-miterlimit='10' x1='8' y1='8' x2='20' y2='20'/><line fill='none' stroke='%23ffffff' stroke-width='2' stroke-miterlimit='10' x1='20' y1='8' x2='8' y2='20'/></svg>") no-repeat center;
1092
+ -webkit-background-size: 14px 14px;
1093
+ background-size: 14px 14px;
1094
+ -webkit-transition-duration: 300ms;
1095
+ transition-duration: 300ms;
1096
+ cursor: pointer;
1097
+ }
1098
+ .searchbar .searchbar-cancel {
1099
+ -webkit-transition-duration: 300ms;
1100
+ transition-duration: 300ms;
1101
+ -webkit-transform: translate3d(0, 0, 0);
1102
+ -ms-transform: translate3d(0, 0, 0);
1103
+ transform: translate3d(0, 0, 0);
1104
+ font-size: 17px;
1105
+ cursor: pointer;
1106
+ opacity: 0;
1107
+ -webkit-flex-shrink: 0;
1108
+ -ms-flex: 0 0 auto;
1109
+ flex-shrink: 0;
1110
+ margin-left: 0;
1111
+ pointer-events: none;
1112
+ }
1113
+ .searchbar.searchbar-active .searchbar-cancel {
1114
+ margin-left: 8px;
1115
+ opacity: 1;
1116
+ pointer-events: auto;
1117
+ }
1118
+ html:not(.watch-active-state) .searchbar.searchbar-active .searchbar-cancel:active,
1119
+ .searchbar.searchbar-active .searchbar-cancel.active-state {
1120
+ opacity: 0.3;
1121
+ -webkit-transition-duration: 0ms;
1122
+ transition-duration: 0ms;
1123
+ }
1124
+ .searchbar.searchbar-not-empty .searchbar-clear {
1125
+ pointer-events: auto;
1126
+ opacity: 1;
1127
+ }
1128
+ .searchbar-overlay {
1129
+ position: absolute;
1130
+ left: 0;
1131
+ top: 0;
1132
+ width: 100%;
1133
+ height: 100%;
1134
+ z-index: 100;
1135
+ opacity: 0;
1136
+ pointer-events: none;
1137
+ background: rgba(0, 0, 0, 0.4);
1138
+ -webkit-transition-duration: 300ms;
1139
+ transition-duration: 300ms;
1140
+ -webkit-transform: translate3d(0, 0, 0);
1141
+ -ms-transform: translate3d(0, 0, 0);
1142
+ transform: translate3d(0, 0, 0);
1143
+ }
1144
+ .searchbar-overlay.searchbar-overlay-active {
1145
+ opacity: 1;
1146
+ pointer-events: auto;
1147
+ }
1148
+ .searchbar-not-found {
1149
+ display: none;
1150
+ }
1151
+ .hidden-by-searchbar,
1152
+ .list-block .hidden-by-searchbar,
1153
+ .list-block li.hidden-by-searchbar {
1154
+ display: none;
1155
+ }
1156
+ .page > .searchbar {
1157
+ position: absolute;
1158
+ width: 100%;
1159
+ left: 0;
1160
+ top: 0;
1161
+ z-index: 200;
1162
+ }
1163
+ .page > .searchbar ~ .page-content {
1164
+ padding-top: 44px;
1165
+ }
1166
+ .navbar-fixed .page > .searchbar,
1167
+ .navbar-through .page > .searchbar,
1168
+ .navbar-fixed > .searchbar,
1169
+ .navbar-through > .searchbar {
1170
+ top: 44px;
1171
+ }
1172
+ .navbar-fixed .page > .searchbar ~ .page-content,
1173
+ .navbar-through .page > .searchbar ~ .page-content,
1174
+ .navbar-fixed > .searchbar ~ .page-content,
1175
+ .navbar-through > .searchbar ~ .page-content {
1176
+ padding-top: 88px;
1177
+ }
1178
+ /* === Message Bar === */
1179
+ .messagebar {
1180
+ -webkit-transform: translate3d(0, 0, 0);
1181
+ -ms-transform: translate3d(0, 0, 0);
1182
+ transform: translate3d(0, 0, 0);
1183
+ -webkit-transition-duration: 0ms;
1184
+ transition-duration: 0ms;
1185
+ }
1186
+ .messagebar textarea {
1187
+ -webkit-appearance: none;
1188
+ -moz-appearance: none;
1189
+ -ms-appearance: none;
1190
+ appearance: none;
1191
+ -webkit-box-sizing: border-box;
1192
+ -moz-box-sizing: border-box;
1193
+ box-sizing: border-box;
1194
+ border: 1px solid #c8c8cd;
1195
+ background: #fff;
1196
+ border-radius: 5px;
1197
+ box-shadow: none;
1198
+ display: block;
1199
+ padding: 3px 8px 3px;
1200
+ margin: 0;
1201
+ width: 100%;
1202
+ height: 28px;
1203
+ color: #000;
1204
+ font-size: 17px;
1205
+ line-height: 20px;
1206
+ font-family: inherit;
1207
+ resize: none;
1208
+ -webkit-flex-shrink: 1;
1209
+ -ms-flex: 0 1 auto;
1210
+ flex-shrink: 1;
1211
+ }
1212
+ .messagebar .link {
1213
+ -ms-flex-item-align: flex-end;
1214
+ -webkit-align-self: flex-end;
1215
+ align-self: flex-end;
1216
+ }
1217
+ .messagebar .link.icon-only:first-child {
1218
+ margin-left: -6px;
1219
+ }
1220
+ .messagebar .link:not(.icon-only) + textarea {
1221
+ margin-left: 8px;
1222
+ }
1223
+ .messagebar textarea + .link {
1224
+ margin-left: 8px;
1225
+ }
1226
+ .messagebar .link {
1227
+ -webkit-flex-shrink: 0;
1228
+ -ms-flex: 0 0 auto;
1229
+ flex-shrink: 0;
1230
+ }
1231
+ .messagebar ~ .page-content {
1232
+ padding-bottom: 44px;
1233
+ }
1234
+ .page.no-toolbar .messagebar ~ .page-content {
1235
+ padding-bottom: 44px;
1236
+ }
1237
+ .hidden-toolbar .messagebar {
1238
+ -webkit-transform: translate3d(0, 0, 0);
1239
+ -ms-transform: translate3d(0, 0, 0);
1240
+ transform: translate3d(0, 0, 0);
1241
+ -webkit-transition-duration: 0ms;
1242
+ transition-duration: 0ms;
1243
+ }
1244
+ /* === Icons === */
1245
+ i.icon {
1246
+ display: inline-block;
1247
+ vertical-align: middle;
1248
+ background-size: 100% auto;
1249
+ background-position: center;
1250
+ background-repeat: no-repeat;
1251
+ font-style: normal;
1252
+ position: relative;
1253
+ }
1254
+ i.icon.icon-back {
1255
+ width: 12px;
1256
+ height: 20px;
1257
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 20'><path d='M10,0l2,2l-8,8l8,8l-2,2L0,10L10,0z' fill='%23007aff'/></svg>");
1258
+ }
1259
+ i.icon.icon-bars {
1260
+ width: 21px;
1261
+ height: 13px;
1262
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 26'><path fill='%23007aff' d='M0,0h4v4H0V0z M8,1h34v2H8V1z M0,11h4v4H0V11z M8,12h34v2H8V12z M0,22h4v4H0V22z M8,23h34v2H8V23z'/></svg>");
1263
+ }
1264
+ @media all and (-webkit-max-device-pixel-ratio: 1), (max-resolution: 120dpi) {
1265
+ i.icon.icon-bars {
1266
+ height: 14px;
1267
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 14'><path fill='%23007aff' d='M0,0h2v2H0V0z M4,0h17v1H4V0z M0,6h2v2H0V6z M4,6h17v1H4V6z M0,12h2v2H0V12z M4,12h17v1H4V12z'/></svg>");
1268
+ }
1269
+ }
1270
+ i.icon.icon-camera {
1271
+ width: 25px;
1272
+ height: 20px;
1273
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 25 20'><path fill='%238C8D92' d='M13.3,5.5c-2.7,0-5,2.2-5,5s2.2,5,5,5c2.7,0,5-2.2,5-5S16,5.5,13.3,5.5z'/><path fill='%238C8D92' d='M22.8,1.8h-3.3c-0.2-1.3-1-1.8-2-1.8H8.1c-1,0-1.8,0.4-2,1.8H2.8C1.4,1.8,0,2.8,0,4.2v12.6 c0,1.4,1.4,2.5,2.8,2.5h20c1.4,0,2.2-1.1,2.2-2.5V4.2C25,2.8,24.2,1.8,22.8,1.8z M3.5,6.4C2.6,6.4,2,5.8,2,5c0-0.8,0.7-1.5,1.5-1.5 S5,4.1,5,5C5,5.8,4.3,6.4,3.5,6.4z M13.3,16.8c-3.5,0-6.3-2.7-6.3-6.2c0-3.3,2.5-6.2,5.7-6.2h1.2c3.2,0,5.7,2.9,5.7,6.2 C19.6,14.1,16.7,16.8,13.3,16.8z'/></svg>");
1274
+ }
1275
+ i.icon.icon-f7 {
1276
+ width: 29px;
1277
+ height: 29px;
1278
+ background-image: url("../img/i-f7.png");
1279
+ }
1280
+ i.icon.icon-form-name {
1281
+ width: 29px;
1282
+ height: 29px;
1283
+ background-image: url("../img/i-form-name.png");
1284
+ }
1285
+ i.icon.icon-form-password {
1286
+ width: 29px;
1287
+ height: 29px;
1288
+ background-image: url("../img/i-form-password.png");
1289
+ }
1290
+ i.icon.icon-form-email {
1291
+ width: 29px;
1292
+ height: 29px;
1293
+ background-image: url("../img/i-form-email.png");
1294
+ }
1295
+ i.icon.icon-form-calendar {
1296
+ width: 29px;
1297
+ height: 29px;
1298
+ background-image: url("../img/i-form-calendar.png");
1299
+ }
1300
+ i.icon.icon-form-tel {
1301
+ width: 29px;
1302
+ height: 29px;
1303
+ background-image: url("../img/i-form-tel.png");
1304
+ }
1305
+ i.icon.icon-form-gender {
1306
+ width: 29px;
1307
+ height: 29px;
1308
+ background-image: url("../img/i-form-gender.png");
1309
+ }
1310
+ i.icon.icon-form-toggle {
1311
+ width: 29px;
1312
+ height: 29px;
1313
+ background-image: url("../img/i-form-toggle.png");
1314
+ }
1315
+ i.icon.icon-form-comment {
1316
+ width: 29px;
1317
+ height: 29px;
1318
+ background-image: url("../img/i-form-comment.png");
1319
+ }
1320
+ i.icon.icon-form-settings {
1321
+ width: 29px;
1322
+ height: 29px;
1323
+ background-image: url("../img/i-form-settings.png");
1324
+ }
1325
+ i.icon.icon-form-url {
1326
+ width: 29px;
1327
+ height: 29px;
1328
+ background-image: url("../img/i-form-url.png");
1329
+ }
1330
+ i.icon.icon-next,
1331
+ i.icon.icon-prev {
1332
+ width: 15px;
1333
+ height: 15px;
1334
+ }
1335
+ i.icon.icon-next {
1336
+ background: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'><g><path fill='%23007aff' d='M1,1.6l11.8,5.8L1,13.4V1.6 M0,0v15l15-7.6L0,0L0,0z'/></g></svg>");
1337
+ }
1338
+ i.icon.icon-prev {
1339
+ background: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'><g><path fill='%23007aff' d='M14,1.6v11.8L2.2,7.6L14,1.6 M15,0L0,7.6L15,15V0L15,0z'/></g></svg>");
1340
+ }
1341
+ i.icon.icon-plus {
1342
+ width: 25px;
1343
+ height: 25px;
1344
+ font-size: 31px;
1345
+ line-height: 20px;
1346
+ text-align: center;
1347
+ font-weight: 100;
1348
+ }
1349
+ .badge {
1350
+ font-size: 13px;
1351
+ display: inline-block;
1352
+ color: #fff;
1353
+ background: #8e8e93;
1354
+ border-radius: 20px;
1355
+ padding: 1px 7px;
1356
+ -webkit-box-sizing: border-box;
1357
+ -moz-box-sizing: border-box;
1358
+ box-sizing: border-box;
1359
+ }
1360
+ .icon .badge {
1361
+ position: absolute;
1362
+ left: 100%;
1363
+ margin-left: -10px;
1364
+ top: -2px;
1365
+ font-size: 10px;
1366
+ line-height: 1.4;
1367
+ padding: 1px 5px;
1368
+ }
1369
+ /* === Content Block === */
1370
+ .content-block {
1371
+ margin: 35px 0;
1372
+ padding: 0 15px;
1373
+ color: #6d6d72;
1374
+ }
1375
+ .content-block-title {
1376
+ position: relative;
1377
+ overflow: hidden;
1378
+ margin: 0;
1379
+ white-space: nowrap;
1380
+ text-overflow: ellipsis;
1381
+ font-size: 14px;
1382
+ text-transform: uppercase;
1383
+ line-height: 1;
1384
+ color: #6d6d72;
1385
+ margin: 35px 15px 10px;
1386
+ }
1387
+ .content-block-title + .list-block,
1388
+ .content-block-title + .content-block {
1389
+ margin-top: 10px;
1390
+ }
1391
+ .content-block-inner {
1392
+ background: #fff;
1393
+ padding: 10px 15px;
1394
+ margin-left: -15px;
1395
+ width: 100%;
1396
+ border-bottom: 1px solid #c8c7cc;
1397
+ border-top: 1px solid #c8c7cc;
1398
+ color: #000;
1399
+ }
1400
+ html.retina.ios-gt-7 .content-block-inner {
1401
+ border-top-width: 0.5px;
1402
+ border-bottom-width: 0.5px;
1403
+ }
1404
+ .content-block.inset {
1405
+ margin-left: 15px;
1406
+ margin-right: 15px;
1407
+ border-radius: 7px;
1408
+ }
1409
+ .content-block.inset .content-block-inner {
1410
+ border: none;
1411
+ border-radius: 7px;
1412
+ }
1413
+ @media all and (min-width: 768px) {
1414
+ .content-block.tablet-inset {
1415
+ margin-left: 15px;
1416
+ margin-right: 15px;
1417
+ border-radius: 7px;
1418
+ }
1419
+ .content-block.tablet-inset .content-block-inner {
1420
+ border: none;
1421
+ border-radius: 7px;
1422
+ }
1423
+ }
1424
+ /* === Lists === */
1425
+ .list-block {
1426
+ margin: 35px 0;
1427
+ font-size: 17px;
1428
+ }
1429
+ .list-block ul {
1430
+ background: #ffffff;
1431
+ list-style: none;
1432
+ padding: 0;
1433
+ margin: 0;
1434
+ border-top: 1px solid #c8c7cc;
1435
+ border-bottom: 1px solid #c8c7cc;
1436
+ position: relative;
1437
+ }
1438
+ .list-block ul ul {
1439
+ border-top: none;
1440
+ border-bottom: none;
1441
+ padding-left: 45px;
1442
+ }
1443
+ .list-block .align-top,
1444
+ .list-block .align-top .item-content,
1445
+ .list-block .align-top .item-inner {
1446
+ -webkit-box-align: start;
1447
+ -ms-flex-align: start;
1448
+ -webkit-align-items: flex-start;
1449
+ align-items: flex-start;
1450
+ }
1451
+ .list-block.inset {
1452
+ margin-left: 15px;
1453
+ margin-right: 15px;
1454
+ border-radius: 7px;
1455
+ }
1456
+ .list-block.inset .content-block-title {
1457
+ margin-left: 0;
1458
+ margin-right: 0;
1459
+ }
1460
+ .list-block.inset ul {
1461
+ border-radius: 7px;
1462
+ border-top: none;
1463
+ border-bottom: none;
1464
+ }
1465
+ .list-block.inset li:first-child > a {
1466
+ border-radius: 7px 7px 0 0;
1467
+ }
1468
+ .list-block.inset li:last-child > a {
1469
+ border-radius: 0 0 7px 7px;
1470
+ }
1471
+ .list-block.inset li:first-child:last-child > a {
1472
+ border-radius: 7px;
1473
+ }
1474
+ @media all and (min-width: 768px) {
1475
+ .list-block.tablet-inset {
1476
+ margin-left: 15px;
1477
+ margin-right: 15px;
1478
+ border-radius: 7px;
1479
+ }
1480
+ .list-block.tablet-inset .content-block-title {
1481
+ margin-left: 0;
1482
+ margin-right: 0;
1483
+ }
1484
+ .list-block.tablet-inset ul {
1485
+ border-radius: 7px;
1486
+ border-top: none;
1487
+ border-bottom: none;
1488
+ }
1489
+ .list-block.tablet-inset li:first-child > a {
1490
+ border-radius: 7px 7px 0 0;
1491
+ }
1492
+ .list-block.tablet-inset li:last-child > a {
1493
+ border-radius: 0 0 7px 7px;
1494
+ }
1495
+ .list-block.tablet-inset li:first-child:last-child > a {
1496
+ border-radius: 7px;
1497
+ }
1498
+ .list-block.tablet-inset .content-block-title {
1499
+ margin-left: 0;
1500
+ margin-right: 0;
1501
+ }
1502
+ .list-block.tablet-inset ul {
1503
+ border-radius: 7px;
1504
+ border-top: none;
1505
+ border-bottom: none;
1506
+ }
1507
+ .list-block.tablet-inset li:first-child > a {
1508
+ border-radius: 7px 7px 0 0;
1509
+ }
1510
+ .list-block.tablet-inset li:last-child > a {
1511
+ border-radius: 0 0 7px 7px;
1512
+ }
1513
+ .list-block.tablet-inset li:first-child:last-child > a {
1514
+ border-radius: 7px;
1515
+ }
1516
+ }
1517
+ .list-block li {
1518
+ -webkit-box-sizing: border-box;
1519
+ -moz-box-sizing: border-box;
1520
+ box-sizing: border-box;
1521
+ position: relative;
1522
+ }
1523
+ .list-block .item-media {
1524
+ display: -webkit-box;
1525
+ display: -ms-flexbox;
1526
+ display: -webkit-flex;
1527
+ display: flex;
1528
+ -webkit-flex-shrink: 0;
1529
+ -ms-flex: 0 0 auto;
1530
+ flex-shrink: 0;
1531
+ -webkit-box-lines: single;
1532
+ -moz-box-lines: single;
1533
+ -webkit-flex-wrap: nowrap;
1534
+ -ms-flex-wrap: none;
1535
+ -ms-flex-wrap: nowrap;
1536
+ flex-wrap: nowrap;
1537
+ -webkit-box-sizing: border-box;
1538
+ -moz-box-sizing: border-box;
1539
+ box-sizing: border-box;
1540
+ -webkit-box-align: center;
1541
+ -ms-flex-align: center;
1542
+ -webkit-align-items: center;
1543
+ align-items: center;
1544
+ padding-top: 7px;
1545
+ padding-bottom: 8px;
1546
+ }
1547
+ .list-block .item-media i + i {
1548
+ margin-left: 5px;
1549
+ }
1550
+ .list-block .item-media i + img {
1551
+ margin-left: 5px;
1552
+ }
1553
+ .list-block .item-media + .item-inner {
1554
+ margin-left: 15px;
1555
+ }
1556
+ .list-block .item-inner {
1557
+ padding-right: 15px;
1558
+ border-bottom: 1px solid #c8c7cc;
1559
+ width: 100%;
1560
+ padding-top: 8px;
1561
+ padding-bottom: 7px;
1562
+ min-height: 44px;
1563
+ -webkit-box-sizing: border-box;
1564
+ -moz-box-sizing: border-box;
1565
+ box-sizing: border-box;
1566
+ display: -webkit-box;
1567
+ display: -ms-flexbox;
1568
+ display: -webkit-flex;
1569
+ display: flex;
1570
+ -webkit-box-flex: 1;
1571
+ -ms-flex: 1;
1572
+ -webkit-box-pack: justify;
1573
+ -ms-flex-pack: justify;
1574
+ -webkit-justify-content: space-between;
1575
+ justify-content: space-between;
1576
+ -webkit-box-align: center;
1577
+ -ms-flex-align: center;
1578
+ -webkit-align-items: center;
1579
+ align-items: center;
1580
+ }
1581
+ .list-block .item-title {
1582
+ -webkit-flex-shrink: 1;
1583
+ -ms-flex: 0 1 auto;
1584
+ flex-shrink: 1;
1585
+ white-space: nowrap;
1586
+ position: relative;
1587
+ overflow: hidden;
1588
+ text-overflow: ellipsis;
1589
+ max-width: 100%;
1590
+ }
1591
+ .list-block .item-title.label {
1592
+ width: 35%;
1593
+ -webkit-flex-shrink: 0;
1594
+ -ms-flex: 0 0 auto;
1595
+ flex-shrink: 0;
1596
+ }
1597
+ .list-block .item-input {
1598
+ width: 100%;
1599
+ margin-top: -8px;
1600
+ margin-bottom: -7px;
1601
+ -webkit-box-flex: 1;
1602
+ -ms-flex: 1;
1603
+ -webkit-flex-shrink: 1;
1604
+ -ms-flex: 0 1 auto;
1605
+ flex-shrink: 1;
1606
+ }
1607
+ .list-block .item-after {
1608
+ white-space: nowrap;
1609
+ color: #8e8e93;
1610
+ -webkit-flex-shrink: 0;
1611
+ -ms-flex: 0 0 auto;
1612
+ flex-shrink: 0;
1613
+ margin-left: 5px;
1614
+ display: -webkit-box;
1615
+ display: -ms-flexbox;
1616
+ display: -webkit-flex;
1617
+ display: flex;
1618
+ max-height: 28px;
1619
+ }
1620
+ .list-block .smart-select .item-after {
1621
+ max-width: 70%;
1622
+ overflow: hidden;
1623
+ text-overflow: ellipsis;
1624
+ position: relative;
1625
+ }
1626
+ .list-block .item-link {
1627
+ -webkit-transition-duration: 300ms;
1628
+ transition-duration: 300ms;
1629
+ display: block;
1630
+ color: inherit;
1631
+ }
1632
+ .list-block .item-link .item-inner {
1633
+ padding-right: 35px;
1634
+ background: no-repeat -webkit-calc(100% - 15px) center;
1635
+ background: no-repeat calc(100% - 15px) center;
1636
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg viewBox='0 0 60 120' xmlns='http://www.w3.org/2000/svg'><path d='m60 61.5-38.25 38.25-9.75-9.75 29.25-28.5-29.25-28.5 9.75-9.75z' fill='%23c7c7cc'/></svg>");
1637
+ background-size: 10px 20px;
1638
+ }
1639
+ html:not(.watch-active-state) .list-block .item-link:active,
1640
+ .list-block .item-link.active-state {
1641
+ -webkit-transition-duration: 0ms;
1642
+ transition-duration: 0ms;
1643
+ background-color: #d9d9d9;
1644
+ }
1645
+ html:not(.watch-active-state) .list-block .item-link:active .item-inner,
1646
+ .list-block .item-link.active-state .item-inner {
1647
+ border-bottom-color: transparent;
1648
+ }
1649
+ .list-block .item-link.list-button {
1650
+ padding: 0 15px;
1651
+ text-align: center;
1652
+ color: #007aff;
1653
+ display: block;
1654
+ border-bottom: 1px solid #c8c7cc;
1655
+ line-height: 43px;
1656
+ }
1657
+ .list-block .item-content {
1658
+ -webkit-box-sizing: border-box;
1659
+ -moz-box-sizing: border-box;
1660
+ box-sizing: border-box;
1661
+ padding-left: 15px;
1662
+ min-height: 44px;
1663
+ display: -webkit-box;
1664
+ display: -ms-flexbox;
1665
+ display: -webkit-flex;
1666
+ display: flex;
1667
+ -webkit-box-pack: justify;
1668
+ -ms-flex-pack: justify;
1669
+ -webkit-justify-content: space-between;
1670
+ justify-content: space-between;
1671
+ -webkit-box-align: center;
1672
+ -ms-flex-align: center;
1673
+ -webkit-align-items: center;
1674
+ align-items: center;
1675
+ }
1676
+ .list-block .list-block-label {
1677
+ margin: 10px 0 35px;
1678
+ padding: 0 15px;
1679
+ font-size: 14px;
1680
+ color: #8f8f94;
1681
+ }
1682
+ .list-block .swipeout {
1683
+ overflow: hidden;
1684
+ -webkit-transform-style: preserve-3d;
1685
+ transform-style: preserve-3d;
1686
+ }
1687
+ .list-block .swipeout.deleting {
1688
+ -webkit-transition-duration: 300ms;
1689
+ transition-duration: 300ms;
1690
+ }
1691
+ .list-block .swipeout.deleting .swipeout-content {
1692
+ -webkit-transform: translate3d(-100%, 0, 0);
1693
+ -ms-transform: translate3d(-100%, 0, 0);
1694
+ transform: translate3d(-100%, 0, 0);
1695
+ }
1696
+ .list-block .swipeout.transitioning .swipeout-content,
1697
+ .list-block .swipeout.transitioning .swipeout-actions-right a,
1698
+ .list-block .swipeout.transitioning .swipeout-actions-left a,
1699
+ .list-block .swipeout.transitioning .swipeout-overswipe {
1700
+ -webkit-transition: 300ms;
1701
+ transition: 300ms;
1702
+ }
1703
+ .list-block .swipeout-content {
1704
+ position: relative;
1705
+ z-index: 10;
1706
+ }
1707
+ .list-block .swipeout-overswipe {
1708
+ -webkit-transition: 200ms left;
1709
+ transition: 200ms left;
1710
+ }
1711
+ .list-block .swipeout-actions-left,
1712
+ .list-block .swipeout-actions-right {
1713
+ position: absolute;
1714
+ top: 0;
1715
+ height: 100%;
1716
+ display: -webkit-box;
1717
+ display: -ms-flexbox;
1718
+ display: -webkit-flex;
1719
+ display: flex;
1720
+ -webkit-transform: translate3d(0%, 0, 0);
1721
+ -ms-transform: translate3d(0%, 0, 0);
1722
+ transform: translate3d(0%, 0, 0);
1723
+ }
1724
+ .list-block .swipeout-actions-left a,
1725
+ .list-block .swipeout-actions-right a {
1726
+ padding: 0 30px;
1727
+ color: #fff;
1728
+ background: #c7c7cc;
1729
+ display: -webkit-box;
1730
+ display: -ms-flexbox;
1731
+ display: -webkit-flex;
1732
+ display: flex;
1733
+ -webkit-box-align: center;
1734
+ -ms-flex-align: center;
1735
+ -webkit-align-items: center;
1736
+ align-items: center;
1737
+ position: relative;
1738
+ left: 0;
1739
+ }
1740
+ .list-block .swipeout-actions-left a:after,
1741
+ .list-block .swipeout-actions-right a:after {
1742
+ content: '';
1743
+ position: absolute;
1744
+ top: 0;
1745
+ width: 600%;
1746
+ height: 100%;
1747
+ background: inherit;
1748
+ z-index: -1;
1749
+ }
1750
+ .list-block .swipeout-actions-left a.swipeout-delete,
1751
+ .list-block .swipeout-actions-right a.swipeout-delete {
1752
+ background: #ff3b30;
1753
+ }
1754
+ .list-block .swipeout-actions-right {
1755
+ right: 0%;
1756
+ -webkit-transform: translate3d(100%, 0, 0);
1757
+ -ms-transform: translate3d(100%, 0, 0);
1758
+ transform: translate3d(100%, 0, 0);
1759
+ }
1760
+ .list-block .swipeout-actions-right a:after {
1761
+ left: 100%;
1762
+ margin-left: -1px;
1763
+ }
1764
+ .list-block .swipeout-actions-left {
1765
+ left: 0%;
1766
+ -webkit-transform: translate3d(-100%, 0, 0);
1767
+ -ms-transform: translate3d(-100%, 0, 0);
1768
+ transform: translate3d(-100%, 0, 0);
1769
+ }
1770
+ .list-block .swipeout-actions-left a:after {
1771
+ right: 100%;
1772
+ margin-right: -1px;
1773
+ }
1774
+ .list-block .item-subtitle {
1775
+ font-size: 15px;
1776
+ position: relative;
1777
+ overflow: hidden;
1778
+ white-space: nowrap;
1779
+ max-width: 100%;
1780
+ text-overflow: ellipsis;
1781
+ }
1782
+ .list-block .item-text {
1783
+ font-size: 15px;
1784
+ color: #8e8e93;
1785
+ line-height: 21px;
1786
+ position: relative;
1787
+ overflow: hidden;
1788
+ height: 42px;
1789
+ text-overflow: ellipsis;
1790
+ -webkit-line-clamp: 2;
1791
+ -webkit-box-orient: vertical;
1792
+ display: -webkit-box;
1793
+ }
1794
+ .list-block.media-list .item-title,
1795
+ .list-block li.media-item .item-title {
1796
+ font-weight: 500;
1797
+ }
1798
+ .list-block.media-list .item-inner,
1799
+ .list-block li.media-item .item-inner {
1800
+ display: block;
1801
+ padding-top: 10px;
1802
+ padding-bottom: 9px;
1803
+ -ms-flex-item-align: stretch;
1804
+ -webkit-align-self: stretch;
1805
+ align-self: stretch;
1806
+ }
1807
+ .list-block.media-list .item-link .item-inner,
1808
+ .list-block li.media-item .item-link .item-inner {
1809
+ background: none;
1810
+ padding-right: 15px;
1811
+ }
1812
+ .list-block.media-list .item-link .item-title-row,
1813
+ .list-block li.media-item .item-link .item-title-row {
1814
+ padding-right: 20px;
1815
+ background: no-repeat right center;
1816
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg viewBox='0 0 60 120' xmlns='http://www.w3.org/2000/svg'><path d='m60 61.5-38.25 38.25-9.75-9.75 29.25-28.5-29.25-28.5 9.75-9.75z' fill='%23c7c7cc'/></svg>");
1817
+ background-size: 10px 20px;
1818
+ }
1819
+ .list-block.media-list .item-media,
1820
+ .list-block li.media-item .item-media {
1821
+ padding-top: 9px;
1822
+ padding-bottom: 10px;
1823
+ }
1824
+ .list-block.media-list .item-media img,
1825
+ .list-block li.media-item .item-media img {
1826
+ display: block;
1827
+ }
1828
+ .list-block.media-list .item-title-row,
1829
+ .list-block li.media-item .item-title-row {
1830
+ display: -webkit-box;
1831
+ display: -ms-flexbox;
1832
+ display: -webkit-flex;
1833
+ display: flex;
1834
+ -webkit-box-pack: justify;
1835
+ -ms-flex-pack: justify;
1836
+ -webkit-justify-content: space-between;
1837
+ justify-content: space-between;
1838
+ }
1839
+ .list-block .list-group:nth-child(n+2) ul {
1840
+ border-top: none;
1841
+ }
1842
+ .list-block .item-divider,
1843
+ .list-block .list-group-title {
1844
+ background: #f7f7f7;
1845
+ border-top: 1px solid #c8c7cc;
1846
+ margin-top: -1px;
1847
+ padding: 4px 15px;
1848
+ white-space: nowrap;
1849
+ position: relative;
1850
+ max-width: 100%;
1851
+ text-overflow: ellipsis;
1852
+ overflow: hidden;
1853
+ color: #8e8e93;
1854
+ }
1855
+ .list-block .list-group-title {
1856
+ position: relative;
1857
+ position: -webkit-sticky;
1858
+ position: -moz-sticky;
1859
+ position: sticky;
1860
+ top: 0px;
1861
+ z-index: 10;
1862
+ margin-top: 0;
1863
+ border-top: none;
1864
+ }
1865
+ .list-block .sortable-handler {
1866
+ position: absolute;
1867
+ right: 0;
1868
+ top: 0;
1869
+ height: -webkit-calc(100% - 1px);
1870
+ height: calc(100% - 1px);
1871
+ z-index: 10;
1872
+ background-repeat: no-repeat;
1873
+ background-size: 18px 12px;
1874
+ background-position: center;
1875
+ width: 35px;
1876
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 12' fill='%23c7c7cc'><path d='M0,2V0h22v2H0z'/><path d='M0,7V5h22v2H0z'/><path d='M0,12v-2h22v2H0z'/></svg>");
1877
+ opacity: 0;
1878
+ visibility: hidden;
1879
+ cursor: pointer;
1880
+ -webkit-transition-duration: 300ms;
1881
+ transition-duration: 300ms;
1882
+ }
1883
+ .list-block.sortable .item-inner {
1884
+ -webkit-transition-duration: 300ms;
1885
+ transition-duration: 300ms;
1886
+ }
1887
+ .list-block.sortable-opened .sortable-handler {
1888
+ visibility: visible;
1889
+ opacity: 1;
1890
+ }
1891
+ .list-block.sortable-opened .item-inner,
1892
+ .list-block.sortable-opened .item-link .item-inner {
1893
+ padding-right: 35px;
1894
+ }
1895
+ .list-block.sortable-opened .item-link .item-inner,
1896
+ .list-block.sortable-opened .item-link .item-title-row {
1897
+ background-image: none;
1898
+ }
1899
+ .list-block.sortable-sorting li {
1900
+ -webkit-transition-duration: 300ms;
1901
+ transition-duration: 300ms;
1902
+ }
1903
+ .list-block li.sorting {
1904
+ z-index: 50;
1905
+ background: rgba(255, 255, 255, 0.8);
1906
+ box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.6);
1907
+ -webkit-transition-duration: 0ms;
1908
+ transition-duration: 0ms;
1909
+ }
1910
+ .list-block li.sorting .item-inner {
1911
+ border-bottom: none;
1912
+ }
1913
+ .list-block li:last-child .list-button {
1914
+ border-bottom: none;
1915
+ }
1916
+ .list-block li:last-child .item-inner,
1917
+ .list-block li:last-child li:last-child .item-inner {
1918
+ border-bottom: none;
1919
+ }
1920
+ .list-block li li:last-child .item-inner,
1921
+ .list-block li:last-child li .item-inner {
1922
+ border-bottom: 1px solid #c8c7cc;
1923
+ }
1924
+ html.retina.ios-gt-7 .list-block ul {
1925
+ border-top-width: 0.5px;
1926
+ border-bottom-width: 0.5px;
1927
+ }
1928
+ html.retina.ios-gt-7 .list-block li:not(:last-child) .item-inner {
1929
+ border-bottom-width: 0.5px;
1930
+ }
1931
+ html.retina.ios-gt-7 .item-divider {
1932
+ border-top-width: 0.5px;
1933
+ margin-top: -0.5px;
1934
+ }
1935
+ html.retina.ios-gt-7 .item-link.list-button {
1936
+ border-bottom-width: 0.5px;
1937
+ }
1938
+ /* === Contacts === */
1939
+ .contacts-content {
1940
+ background: #fff;
1941
+ }
1942
+ .contacts-block {
1943
+ margin: 0;
1944
+ }
1945
+ .contacts-block .list-group-title {
1946
+ padding: 0 15px;
1947
+ background: #f7f7f7;
1948
+ color: #000;
1949
+ font-weight: 500;
1950
+ line-height: 22px;
1951
+ height: 22px;
1952
+ }
1953
+ .contacts-block .list-group:first-child ul {
1954
+ border-top: none;
1955
+ }
1956
+ .contacts-block .list-group:last-child ul {
1957
+ border-bottom: none;
1958
+ }
1959
+ /* === Forms === */
1960
+ .list-block input[type="text"],
1961
+ .list-block input[type="password"],
1962
+ .list-block input[type="email"],
1963
+ .list-block input[type="tel"],
1964
+ .list-block input[type="url"],
1965
+ .list-block input[type="date"],
1966
+ .list-block input[type="datetime-local"],
1967
+ .list-block input[type="number"],
1968
+ .list-block select,
1969
+ .list-block textarea {
1970
+ -webkit-appearance: none;
1971
+ -moz-appearance: none;
1972
+ -ms-appearance: none;
1973
+ appearance: none;
1974
+ -webkit-box-sizing: border-box;
1975
+ -moz-box-sizing: border-box;
1976
+ box-sizing: border-box;
1977
+ border: none;
1978
+ background: none;
1979
+ border-radius: 0 0 0 0;
1980
+ -webkit-box-shadow: none;
1981
+ box-shadow: none;
1982
+ display: block;
1983
+ padding: 0 0 0 5px;
1984
+ margin: 0;
1985
+ width: 100%;
1986
+ height: 43px;
1987
+ color: #000;
1988
+ font-size: 17px;
1989
+ font-family: inherit;
1990
+ }
1991
+ .list-block input[type="date"],
1992
+ .list-block input[type="datetime-local"] {
1993
+ line-height: 44px;
1994
+ }
1995
+ .list-block select {
1996
+ -webkit-appearance: none;
1997
+ -moz-appearance: none;
1998
+ -ms-appearance: none;
1999
+ appearance: none;
2000
+ }
2001
+ .list-block .lable {
2002
+ vertical-align: top;
2003
+ }
2004
+ .list-block textarea {
2005
+ height: 100px;
2006
+ resize: none;
2007
+ line-height: 1.4;
2008
+ padding-top: 8px;
2009
+ padding-bottom: 7px;
2010
+ }
2011
+ .label-switch {
2012
+ display: inline-block;
2013
+ vertical-align: middle;
2014
+ width: 52px;
2015
+ border-radius: 16px;
2016
+ -webkit-box-sizing: border-box;
2017
+ -moz-box-sizing: border-box;
2018
+ box-sizing: border-box;
2019
+ height: 32px;
2020
+ position: relative;
2021
+ cursor: pointer;
2022
+ -ms-flex-item-align: center;
2023
+ -webkit-align-self: center;
2024
+ align-self: center;
2025
+ }
2026
+ .label-switch .checkbox {
2027
+ width: 52px;
2028
+ border-radius: 16px;
2029
+ -webkit-box-sizing: border-box;
2030
+ -moz-box-sizing: border-box;
2031
+ box-sizing: border-box;
2032
+ height: 32px;
2033
+ background: #e5e5e5;
2034
+ z-index: 0;
2035
+ margin: 0;
2036
+ padding: 0;
2037
+ -webkit-appearance: none;
2038
+ -moz-appearance: none;
2039
+ -ms-appearance: none;
2040
+ appearance: none;
2041
+ border: none;
2042
+ cursor: pointer;
2043
+ position: relative;
2044
+ -webkit-transition-duration: 300ms;
2045
+ transition-duration: 300ms;
2046
+ }
2047
+ .label-switch .checkbox:before {
2048
+ content: ' ';
2049
+ position: absolute;
2050
+ left: 2px;
2051
+ top: 2px;
2052
+ width: 48px;
2053
+ border-radius: 16px;
2054
+ -webkit-box-sizing: border-box;
2055
+ -moz-box-sizing: border-box;
2056
+ box-sizing: border-box;
2057
+ height: 28px;
2058
+ background: #fff;
2059
+ z-index: 1;
2060
+ -webkit-transition-duration: 300ms;
2061
+ transition-duration: 300ms;
2062
+ -webkit-transform: scale(1);
2063
+ -ms-transform: scale(1);
2064
+ transform: scale(1);
2065
+ }
2066
+ .label-switch .checkbox:after {
2067
+ content: ' ';
2068
+ height: 28px;
2069
+ width: 28px;
2070
+ border-radius: 28px;
2071
+ background: #fff;
2072
+ position: absolute;
2073
+ z-index: 2;
2074
+ top: 2px;
2075
+ left: 2px;
2076
+ -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
2077
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
2078
+ -webkit-transform: translateX(0px);
2079
+ -ms-transform: translateX(0px);
2080
+ transform: translateX(0px);
2081
+ -webkit-transition-duration: 300ms;
2082
+ transition-duration: 300ms;
2083
+ }
2084
+ .label-switch input[type="checkbox"] {
2085
+ display: none;
2086
+ }
2087
+ .label-switch input[type="checkbox"]:checked + .checkbox {
2088
+ background: #4cd964;
2089
+ }
2090
+ .label-switch input[type="checkbox"]:checked + .checkbox:before {
2091
+ -webkit-transform: scale(0);
2092
+ -ms-transform: scale(0);
2093
+ transform: scale(0);
2094
+ }
2095
+ .label-switch input[type="checkbox"]:checked + .checkbox:after {
2096
+ -webkit-transform: translateX(22px);
2097
+ -ms-transform: translateX(22px);
2098
+ transform: translateX(22px);
2099
+ }
2100
+ html.android .label-switch input[type="checkbox"] + .checkbox {
2101
+ -webkit-transition-duration: 0;
2102
+ transition-duration: 0;
2103
+ }
2104
+ html.android .label-switch input[type="checkbox"] + .checkbox:after,
2105
+ html.android .label-switch input[type="checkbox"] + .checkbox:before {
2106
+ -webkit-transition-duration: 0;
2107
+ transition-duration: 0;
2108
+ }
2109
+ .button {
2110
+ border: 1px solid #007aff;
2111
+ color: #007aff;
2112
+ text-decoration: none;
2113
+ text-align: center;
2114
+ display: block;
2115
+ border-radius: 5px;
2116
+ line-height: 27px;
2117
+ -webkit-box-sizing: border-box;
2118
+ -moz-box-sizing: border-box;
2119
+ box-sizing: border-box;
2120
+ -webkit-appearance: none;
2121
+ -moz-appearance: none;
2122
+ -ms-appearance: none;
2123
+ appearance: none;
2124
+ background: none;
2125
+ padding: 0 10px;
2126
+ margin: 0;
2127
+ height: 29px;
2128
+ white-space: nowrap;
2129
+ position: relative;
2130
+ overflow: hidden;
2131
+ text-overflow: ellipsis;
2132
+ font-size: 14px;
2133
+ font-family: inherit;
2134
+ cursor: pointer;
2135
+ }
2136
+ input[type="submit"].button,
2137
+ input[type="button"].button {
2138
+ width: 100%;
2139
+ }
2140
+ html:not(.watch-active-state) .button:active,
2141
+ .button.active-state {
2142
+ background: rgba(0, 122, 255, 0.15);
2143
+ }
2144
+ .button.button-round {
2145
+ border-radius: 27px;
2146
+ }
2147
+ .button.active {
2148
+ background: #007aff;
2149
+ color: #fff;
2150
+ }
2151
+ .button.button-big {
2152
+ font-size: 17px;
2153
+ height: 44px;
2154
+ line-height: 42px;
2155
+ }
2156
+ .button.button-fill {
2157
+ color: #fff;
2158
+ background: #007aff;
2159
+ border: none;
2160
+ }
2161
+ html:not(.watch-active-state) .button.button-fill:active,
2162
+ .button.button-fill.active-state {
2163
+ opacity: 0.8;
2164
+ }
2165
+ .buttons-row {
2166
+ -ms-flex-item-align: center;
2167
+ -webkit-align-self: center;
2168
+ align-self: center;
2169
+ display: -webkit-box;
2170
+ display: -ms-flexbox;
2171
+ display: -webkit-flex;
2172
+ display: flex;
2173
+ -webkit-box-lines: single;
2174
+ -moz-box-lines: single;
2175
+ -webkit-flex-wrap: nowrap;
2176
+ -ms-flex-wrap: none;
2177
+ -ms-flex-wrap: nowrap;
2178
+ flex-wrap: nowrap;
2179
+ }
2180
+ .buttons-row .button {
2181
+ border-radius: 0 0 0 0;
2182
+ border-left-width: 0;
2183
+ width: 100%;
2184
+ -webkit-box-flex: 1;
2185
+ -ms-flex: 1;
2186
+ }
2187
+ .buttons-row .button:first-child {
2188
+ border-radius: 5px 0 0 5px;
2189
+ border-left-width: 1px;
2190
+ border-left-style: solid;
2191
+ }
2192
+ .buttons-row .button:last-child {
2193
+ border-radius: 0 5px 5px 0;
2194
+ }
2195
+ .buttons-row .button.button-round:first-child {
2196
+ border-radius: 27px 0 0 27px;
2197
+ }
2198
+ .buttons-row .button.button-round:last-child {
2199
+ border-radius: 0 27px 27px 0;
2200
+ }
2201
+ .range-slider {
2202
+ width: 100%;
2203
+ position: relative;
2204
+ overflow: hidden;
2205
+ padding-left: 3px;
2206
+ padding-right: 3px;
2207
+ margin-left: -1px;
2208
+ -ms-flex-item-align: center;
2209
+ -webkit-align-self: center;
2210
+ align-self: center;
2211
+ }
2212
+ .range-slider input[type="range"] {
2213
+ position: relative;
2214
+ height: 28px;
2215
+ width: 100%;
2216
+ margin: 4px 0 5px 0;
2217
+ -webkit-appearance: none;
2218
+ -moz-appearance: none;
2219
+ -ms-appearance: none;
2220
+ appearance: none;
2221
+ background: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(0, #b7b8b7), color-stop(100%, #b7b8b7));
2222
+ background: linear-gradient(to right, #b7b8b7 0, #b7b8b7 100%);
2223
+ background-position: center;
2224
+ background-size: 100% 2px;
2225
+ background-repeat: no-repeat;
2226
+ outline: 0;
2227
+ }
2228
+ .range-slider input[type="range"]:after {
2229
+ height: 2px;
2230
+ background: #fff;
2231
+ content: ' ';
2232
+ width: 5px;
2233
+ top: 50%;
2234
+ margin-top: -1px;
2235
+ left: -5px;
2236
+ z-index: 1;
2237
+ position: absolute;
2238
+ }
2239
+ .range-slider input[type="range"]::-webkit-slider-thumb {
2240
+ -webkit-appearance: none;
2241
+ -moz-appearance: none;
2242
+ -ms-appearance: none;
2243
+ appearance: none;
2244
+ border: none;
2245
+ height: 28px;
2246
+ width: 28px;
2247
+ position: relative;
2248
+ background: none;
2249
+ }
2250
+ .range-slider input[type="range"]::-webkit-slider-thumb:after {
2251
+ height: 28px;
2252
+ width: 28px;
2253
+ border-radius: 28px;
2254
+ background: #fff;
2255
+ z-index: 10;
2256
+ -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
2257
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
2258
+ position: absolute;
2259
+ left: 0;
2260
+ top: 0;
2261
+ content: ' ';
2262
+ }
2263
+ .range-slider input[type="range"]::-webkit-slider-thumb:before {
2264
+ position: absolute;
2265
+ top: 50%;
2266
+ right: 100%;
2267
+ width: 2000px;
2268
+ height: 2px;
2269
+ margin-top: -1px;
2270
+ z-index: 1;
2271
+ background: #007aff;
2272
+ content: ' ';
2273
+ }
2274
+ label.label-checkbox {
2275
+ cursor: pointer;
2276
+ }
2277
+ label.label-checkbox i.icon-form-checkbox {
2278
+ width: 22px;
2279
+ height: 22px;
2280
+ position: relative;
2281
+ border-radius: 22px;
2282
+ border: 1px solid #c7c7cc;
2283
+ -webkit-box-sizing: border-box;
2284
+ -moz-box-sizing: border-box;
2285
+ box-sizing: border-box;
2286
+ }
2287
+ label.label-checkbox i.icon-form-checkbox:after {
2288
+ content: ' ';
2289
+ position: absolute;
2290
+ left: 50%;
2291
+ margin-left: -6px;
2292
+ top: 50%;
2293
+ margin-top: -4px;
2294
+ width: 12px;
2295
+ height: 9px;
2296
+ }
2297
+ label.label-checkbox input[type="checkbox"],
2298
+ label.label-checkbox input[type="radio"] {
2299
+ display: none;
2300
+ }
2301
+ label.label-checkbox input[type="checkbox"]:checked + .item-media i.icon-form-checkbox,
2302
+ label.label-checkbox input[type="radio"]:checked + .item-media i.icon-form-checkbox {
2303
+ border: none;
2304
+ background-color: #007aff;
2305
+ }
2306
+ label.label-checkbox input[type="checkbox"]:checked + .item-media i.icon-form-checkbox:after,
2307
+ label.label-checkbox input[type="radio"]:checked + .item-media i.icon-form-checkbox:after {
2308
+ background: no-repeat center;
2309
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 12 9' xml:space='preserve'><polygon fill='%23ffffff' points='12,0.7 11.3,0 3.9,7.4 0.7,4.2 0,4.9 3.9,8.8 3.9,8.8 3.9,8.8 '/></svg>");
2310
+ -webkit-background-size: 12px 9px;
2311
+ background-size: 12px 9px;
2312
+ }
2313
+ label.label-radio {
2314
+ cursor: pointer;
2315
+ }
2316
+ label.label-radio input[type="checkbox"],
2317
+ label.label-radio input[type="radio"] {
2318
+ display: none;
2319
+ }
2320
+ label.label-radio input[type="checkbox"] ~ .item-inner,
2321
+ label.label-radio input[type="radio"] ~ .item-inner {
2322
+ padding-right: 35px;
2323
+ }
2324
+ label.label-radio input[type="checkbox"]:checked ~ .item-inner,
2325
+ label.label-radio input[type="radio"]:checked ~ .item-inner {
2326
+ background: no-repeat center;
2327
+ background-image: url("data:image/svg+xml;charset=utf-8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 10'><polygon fill='%23007aff' points='11.6,0 4.4,7.2 1.4,4.2 0,5.6 4.4,10 4.4,10 4.4,10 13,1.4 '/></svg>");
2328
+ background-position: 90% center;
2329
+ background-position: -webkit-calc(100% - 15px) center;
2330
+ background-position: calc(100% - 15px) center;
2331
+ -webkit-background-size: 13px 10px;
2332
+ background-size: 13px 10px;
2333
+ }
2334
+ label.label-checkbox,
2335
+ label.label-radio {
2336
+ -webkit-transition-duration: 300ms;
2337
+ transition-duration: 300ms;
2338
+ }
2339
+ html:not(.watch-active-state) label.label-checkbox:active,
2340
+ html:not(.watch-active-state) label.label-radio:active,
2341
+ label.label-checkbox.active-state,
2342
+ label.label-radio.active-state {
2343
+ -webkit-transition-duration: 0ms;
2344
+ transition-duration: 0ms;
2345
+ background-color: #d9d9d9;
2346
+ }
2347
+ html:not(.watch-active-state) label.label-checkbox:active .item-inner,
2348
+ html:not(.watch-active-state) label.label-radio:active .item-inner,
2349
+ label.label-checkbox.active-state .item-inner,
2350
+ label.label-radio.active-state .item-inner {
2351
+ border-bottom-color: transparent;
2352
+ }
2353
+ .smart-select select {
2354
+ display: none;
2355
+ }
2356
+ /* === Accordion === */
2357
+ .list-block .accordion-item-toggle {
2358
+ cursor: pointer;
2359
+ -webkit-transition-duration: 300ms;
2360
+ transition-duration: 300ms;
2361
+ }
2362
+ .list-block .accordion-item-toggle .item-inner {
2363
+ padding-right: 35px;
2364
+ background: no-repeat -webkit-calc(100% - 15px) center;
2365
+ background: no-repeat calc(100% - 15px) center;
2366
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg viewBox='0 0 60 120' xmlns='http://www.w3.org/2000/svg'><path d='m60 61.5-38.25 38.25-9.75-9.75 29.25-28.5-29.25-28.5 9.75-9.75z' fill='%23c7c7cc'/></svg>");
2367
+ background-size: 10px 20px;
2368
+ }
2369
+ html:not(.watch-active-state) .list-block .accordion-item-toggle:active,
2370
+ .list-block .accordion-item-toggle.active-state {
2371
+ -webkit-transition-duration: 0ms;
2372
+ transition-duration: 0ms;
2373
+ background-color: #d9d9d9;
2374
+ }
2375
+ html:not(.watch-active-state) .list-block .accordion-item-toggle:active > .item-inner,
2376
+ .list-block .accordion-item-toggle.active-state > .item-inner {
2377
+ border-bottom-color: transparent;
2378
+ }
2379
+ .list-block .accordion-item-toggle .item-inner,
2380
+ .list-block .accordion-item > .item-link .item-inner {
2381
+ -webkit-transition-duration: 300ms;
2382
+ transition-duration: 300ms;
2383
+ -webkit-transition-property: background-color, border-color;
2384
+ transition-property: background-color, border-color;
2385
+ }
2386
+ .list-block .accordion-item-expanded .accordion-item-toggle .item-inner,
2387
+ .list-block .accordion-item-expanded > .item-link .item-inner {
2388
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg viewBox='0 0 60 120' xmlns='http://www.w3.org/2000/svg'><path d='m60 61.5-38.25 38.25-9.75-9.75 29.25-28.5-29.25-28.5 9.75-9.75z' transform='translate(115, 30) rotate(90)' fill='%23c7c7cc'/></svg>");
2389
+ background-size: 20px 20px;
2390
+ border-bottom-color: transparent;
2391
+ }
2392
+ .list-block .accordion-item .content-block,
2393
+ .list-block .accordion-item .list-block {
2394
+ margin-top: 0;
2395
+ margin-bottom: 0;
2396
+ }
2397
+ .list-block .accordion-item ul {
2398
+ padding-left: 0;
2399
+ }
2400
+ .accordion-item-content {
2401
+ position: relative;
2402
+ overflow: hidden;
2403
+ height: 0;
2404
+ font-size: 14px;
2405
+ -webkit-transition-duration: 300ms;
2406
+ transition-duration: 300ms;
2407
+ -webkit-transform: translate3d(0, 0, 0);
2408
+ -ms-transform: translate3d(0, 0, 0);
2409
+ transform: translate3d(0, 0, 0);
2410
+ }
2411
+ .accordion-item-expanded .accordion-item-content {
2412
+ height: auto;
2413
+ }
2414
+ /* === Modals === */
2415
+ .modal-overlay,
2416
+ .preloader-indicator-overlay,
2417
+ .popup-overlay {
2418
+ position: absolute;
2419
+ left: 0;
2420
+ top: 0;
2421
+ width: 100%;
2422
+ height: 100%;
2423
+ background: rgba(0, 0, 0, 0.4);
2424
+ z-index: 10600;
2425
+ visibility: hidden;
2426
+ opacity: 0;
2427
+ -webkit-transition-duration: 400ms;
2428
+ transition-duration: 400ms;
2429
+ }
2430
+ .modal-overlay.modal-overlay-visible,
2431
+ .preloader-indicator-overlay.modal-overlay-visible,
2432
+ .popup-overlay.modal-overlay-visible {
2433
+ visibility: visible;
2434
+ opacity: 1;
2435
+ }
2436
+ html.ios .modal-overlay.modal-overlay-visible,
2437
+ html.ios .preloader-indicator-overlay.modal-overlay-visible,
2438
+ html.ios .popup-overlay.modal-overlay-visible {
2439
+ overflow: auto;
2440
+ -webkit-overflow-scrolling: touch;
2441
+ }
2442
+ .popup-overlay {
2443
+ z-index: 10200;
2444
+ }
2445
+ .modal {
2446
+ width: 270px;
2447
+ position: absolute;
2448
+ z-index: 11000;
2449
+ left: 50%;
2450
+ margin-left: -135px;
2451
+ margin-top: 0;
2452
+ top: 50%;
2453
+ text-align: center;
2454
+ border-radius: 7px;
2455
+ opacity: 0;
2456
+ -webkit-transform: translate3d(0, 0, 0) scale(1.185);
2457
+ -ms-transform: translate3d(0, 0, 0) scale(1.185);
2458
+ transform: translate3d(0, 0, 0) scale(1.185);
2459
+ -webkit-transition-property: -webkit-transform, opacity;
2460
+ -moz-transition-property: -moz-transform, opacity;
2461
+ -ms-transition-property: -ms-transform, opacity;
2462
+ -o-transition-property: -o-transform, opacity;
2463
+ transition-property: transform, opacity;
2464
+ color: #000;
2465
+ }
2466
+ .modal.modal-in {
2467
+ opacity: 1;
2468
+ -webkit-transition-duration: 400ms;
2469
+ transition-duration: 400ms;
2470
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
2471
+ -ms-transform: translate3d(0, 0, 0) scale(1);
2472
+ transform: translate3d(0, 0, 0) scale(1);
2473
+ }
2474
+ .modal.modal-out {
2475
+ opacity: 0;
2476
+ z-index: 10999;
2477
+ -webkit-transition-duration: 400ms;
2478
+ transition-duration: 400ms;
2479
+ -webkit-transform: translate3d(0, 0, 0) scale(0.815);
2480
+ -ms-transform: translate3d(0, 0, 0) scale(0.815);
2481
+ transform: translate3d(0, 0, 0) scale(0.815);
2482
+ }
2483
+ .modal-inner {
2484
+ padding: 15px;
2485
+ border-bottom: 1px solid #b5b5b5;
2486
+ border-radius: 7px 7px 0 0;
2487
+ background: #e8e8e8;
2488
+ }
2489
+ .modal-title {
2490
+ font-weight: 500;
2491
+ font-size: 18px;
2492
+ text-align: center;
2493
+ }
2494
+ .modal-title + .modal-text {
2495
+ margin-top: 5px;
2496
+ }
2497
+ .modal-buttons {
2498
+ height: 44px;
2499
+ overflow: hidden;
2500
+ display: -webkit-box;
2501
+ display: -ms-flexbox;
2502
+ display: -webkit-flex;
2503
+ display: flex;
2504
+ -webkit-box-pack: center;
2505
+ -ms-flex-pack: center;
2506
+ -webkit-justify-content: center;
2507
+ justify-content: center;
2508
+ }
2509
+ .modal-button {
2510
+ width: 100%;
2511
+ padding: 0 5px;
2512
+ height: 44px;
2513
+ font-size: 17px;
2514
+ line-height: 44px;
2515
+ text-align: center;
2516
+ color: #007aff;
2517
+ background: #e8e8e8;
2518
+ display: block;
2519
+ position: relative;
2520
+ white-space: nowrap;
2521
+ text-overflow: ellipsis;
2522
+ overflow: hidden;
2523
+ cursor: pointer;
2524
+ -webkit-box-sizing: border-box;
2525
+ -moz-box-sizing: border-box;
2526
+ box-sizing: border-box;
2527
+ border-right: 1px solid #b5b5b5;
2528
+ -webkit-box-flex: 1;
2529
+ -ms-flex: 1;
2530
+ }
2531
+ .modal-button:first-child {
2532
+ border-radius: 0 0 0 7px;
2533
+ }
2534
+ .modal-button:last-child {
2535
+ border-right: none;
2536
+ border-radius: 0 0 7px 0;
2537
+ }
2538
+ .modal-button:first-child:last-child {
2539
+ border-radius: 0 0 7px 7px;
2540
+ }
2541
+ .modal-button.modal-button-bold {
2542
+ font-weight: 500;
2543
+ }
2544
+ html:not(.watch-active-state) .modal-button:active,
2545
+ .modal-button.active-state {
2546
+ background: #d4d4d4;
2547
+ }
2548
+ .modal-no-buttons .modal-inner {
2549
+ border-radius: 7px;
2550
+ border-bottom: none;
2551
+ }
2552
+ .modal-no-buttons .modal-buttons {
2553
+ display: none;
2554
+ }
2555
+ .actions-modal {
2556
+ position: absolute;
2557
+ left: 0;
2558
+ bottom: 0;
2559
+ z-index: 11000;
2560
+ width: 100%;
2561
+ -webkit-transform: translate3d(0, 100%, 0);
2562
+ -ms-transform: translate3d(0, 100%, 0);
2563
+ transform: translate3d(0, 100%, 0);
2564
+ }
2565
+ .actions-modal.modal-in {
2566
+ -webkit-transition-duration: 300ms;
2567
+ transition-duration: 300ms;
2568
+ -webkit-transform: translate3d(0, 0, 0);
2569
+ -ms-transform: translate3d(0, 0, 0);
2570
+ transform: translate3d(0, 0, 0);
2571
+ }
2572
+ .actions-modal.modal-out {
2573
+ z-index: 10999;
2574
+ -webkit-transition-duration: 300ms;
2575
+ transition-duration: 300ms;
2576
+ -webkit-transform: translate3d(0, 100%, 0);
2577
+ -ms-transform: translate3d(0, 100%, 0);
2578
+ transform: translate3d(0, 100%, 0);
2579
+ }
2580
+ .actions-modal-group {
2581
+ margin: 8px;
2582
+ }
2583
+ .actions-modal-button,
2584
+ .actions-modal-label {
2585
+ width: 100%;
2586
+ text-align: center;
2587
+ font-weight: normal;
2588
+ margin: 0;
2589
+ background: rgba(243, 243, 243, 0.95);
2590
+ -webkit-box-sizing: border-box;
2591
+ -moz-box-sizing: border-box;
2592
+ box-sizing: border-box;
2593
+ display: block;
2594
+ border-bottom: 1px solid #d2d2d6;
2595
+ }
2596
+ .actions-modal-button a,
2597
+ .actions-modal-label a {
2598
+ text-decoration: none;
2599
+ color: inherit;
2600
+ }
2601
+ .actions-modal-button b,
2602
+ .actions-modal-label b {
2603
+ font-weight: 500;
2604
+ }
2605
+ .actions-modal-button.actions-modal-button-bold,
2606
+ .actions-modal-label.actions-modal-button-bold {
2607
+ font-weight: 500;
2608
+ }
2609
+ .actions-modal-button.actions-modal-button-red,
2610
+ .actions-modal-label.actions-modal-button-red {
2611
+ color: #ff3b30;
2612
+ }
2613
+ .actions-modal-button:first-child,
2614
+ .actions-modal-label:first-child {
2615
+ border-radius: 4px 4px 0 0;
2616
+ }
2617
+ .actions-modal-button:last-child,
2618
+ .actions-modal-label:last-child {
2619
+ border: none;
2620
+ border-radius: 0 0 4px 4px;
2621
+ }
2622
+ .actions-modal-button:first-child:last-child,
2623
+ .actions-modal-label:first-child:last-child {
2624
+ border-radius: 4px;
2625
+ }
2626
+ .actions-modal-button {
2627
+ cursor: pointer;
2628
+ line-height: 43px;
2629
+ font-size: 20px;
2630
+ color: #007aff;
2631
+ }
2632
+ html:not(.watch-active-state) .actions-modal-button:active,
2633
+ .actions-modal-button.active-state {
2634
+ background: #dcdcdc;
2635
+ }
2636
+ .actions-modal-label {
2637
+ font-size: 13px;
2638
+ line-height: 1.3;
2639
+ min-height: 44px;
2640
+ padding: 8px 10px;
2641
+ color: #8a8a8a;
2642
+ display: -webkit-box;
2643
+ display: -ms-flexbox;
2644
+ display: -webkit-flex;
2645
+ display: flex;
2646
+ -webkit-box-pack: center;
2647
+ -ms-flex-pack: center;
2648
+ -webkit-justify-content: center;
2649
+ justify-content: center;
2650
+ -webkit-box-align: center;
2651
+ -ms-flex-align: center;
2652
+ -webkit-align-items: center;
2653
+ align-items: center;
2654
+ }
2655
+ input.modal-text-input {
2656
+ -webkit-box-sizing: border-box;
2657
+ -moz-box-sizing: border-box;
2658
+ box-sizing: border-box;
2659
+ height: 30px;
2660
+ background: #fff;
2661
+ margin: 0;
2662
+ margin-top: 15px;
2663
+ padding: 0 5px;
2664
+ border: 1px solid #a0a0a0;
2665
+ border-radius: 5px;
2666
+ width: 100%;
2667
+ font-size: 14px;
2668
+ font-family: inherit;
2669
+ display: block;
2670
+ -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
2671
+ box-shadow: 0 0 0 rgba(0, 0, 0, 0);
2672
+ -webkit-appearance: none;
2673
+ -moz-appearance: none;
2674
+ -ms-appearance: none;
2675
+ appearance: none;
2676
+ }
2677
+ input.modal-text-input + input.modal-text-input {
2678
+ margin-top: 5px;
2679
+ }
2680
+ input.modal-text-input.modal-text-input-double {
2681
+ border-radius: 5px 5px 0 0;
2682
+ }
2683
+ input.modal-text-input.modal-text-input-double + input.modal-text-input {
2684
+ margin-top: 0;
2685
+ border-top: 0;
2686
+ border-radius: 0 0 5px 5px;
2687
+ }
2688
+ .popover {
2689
+ width: 320px;
2690
+ background: rgba(255, 255, 255, 0.95);
2691
+ z-index: 11000;
2692
+ margin: 0;
2693
+ top: 0;
2694
+ opacity: 0;
2695
+ left: 0;
2696
+ border-radius: 7px;
2697
+ position: absolute;
2698
+ display: none;
2699
+ -webkit-transform: none;
2700
+ -ms-transform: none;
2701
+ transform: none;
2702
+ -webkit-transition-property: opacity;
2703
+ -moz-transition-property: opacity;
2704
+ -ms-transition-property: opacity;
2705
+ -o-transition-property: opacity;
2706
+ transition-property: opacity;
2707
+ }
2708
+ .popover.modal-in {
2709
+ -webkit-transition-duration: 300ms;
2710
+ transition-duration: 300ms;
2711
+ opacity: 1;
2712
+ }
2713
+ .popover .list-block {
2714
+ margin: 0;
2715
+ }
2716
+ .popover .list-block ul {
2717
+ background: none;
2718
+ }
2719
+ .popover .list-block:first-child ul {
2720
+ border-top: none;
2721
+ border-radius: 7px 7px 0 0;
2722
+ }
2723
+ .popover .list-block:first-child li:first-child a {
2724
+ border-radius: 7px 7px 0 0;
2725
+ }
2726
+ .popover .list-block:last-child ul {
2727
+ border-bottom: none;
2728
+ border-radius: 0 0 7px 7px;
2729
+ }
2730
+ .popover .list-block:last-child li:last-child a {
2731
+ border-radius: 0 0 7px 7px;
2732
+ }
2733
+ .popover .list-block:first-child:last-child li:first-child:last-child a,
2734
+ .popover .list-block:first-child:last-child ul:first-child:last-child {
2735
+ border-radius: 7px;
2736
+ }
2737
+ .popover .list-block + .list-block {
2738
+ margin-top: 35px;
2739
+ }
2740
+ .popover-angle {
2741
+ width: 26px;
2742
+ height: 26px;
2743
+ position: absolute;
2744
+ left: -26px;
2745
+ top: 0;
2746
+ z-index: 100;
2747
+ overflow: hidden;
2748
+ }
2749
+ .popover-angle:after {
2750
+ content: ' ';
2751
+ background: rgba(255, 255, 255, 0.95);
2752
+ width: 26px;
2753
+ height: 26px;
2754
+ position: absolute;
2755
+ left: 0;
2756
+ top: 0;
2757
+ border-radius: 3px;
2758
+ -webkit-transform: rotate(45deg);
2759
+ -ms-transform: rotate(45deg);
2760
+ transform: rotate(45deg);
2761
+ }
2762
+ .popover-angle.on-left {
2763
+ left: -26px;
2764
+ }
2765
+ .popover-angle.on-left:after {
2766
+ left: 19px;
2767
+ top: 0;
2768
+ }
2769
+ .popover-angle.on-right {
2770
+ left: 100%;
2771
+ }
2772
+ .popover-angle.on-right:after {
2773
+ left: -19px;
2774
+ top: 0;
2775
+ }
2776
+ .popover-angle.on-top {
2777
+ left: 0;
2778
+ top: -26px;
2779
+ }
2780
+ .popover-angle.on-top:after {
2781
+ left: 0;
2782
+ top: 19px;
2783
+ }
2784
+ .popover-angle.on-bottom {
2785
+ left: 0;
2786
+ top: 100%;
2787
+ }
2788
+ .popover-angle.on-bottom:after {
2789
+ left: 0;
2790
+ top: -19px;
2791
+ }
2792
+ .popover-inner {
2793
+ overflow: auto;
2794
+ -webkit-overflow-scrolling: touch;
2795
+ }
2796
+ .actions-popover .list-block + .list-block {
2797
+ margin-top: 20px;
2798
+ }
2799
+ .actions-popover .list-block ul {
2800
+ background: #fff;
2801
+ }
2802
+ .actions-popover-label {
2803
+ padding: 8px 10px;
2804
+ color: #8a8a8a;
2805
+ font-size: 13px;
2806
+ line-height: 1.3;
2807
+ text-align: center;
2808
+ border-bottom: 1px solid #d2d2d6;
2809
+ }
2810
+ .actions-popover-label:last-child {
2811
+ border-bottom: none;
2812
+ }
2813
+ .popup,
2814
+ .login-screen {
2815
+ position: absolute;
2816
+ left: 0;
2817
+ top: 0;
2818
+ width: 100%;
2819
+ height: 100%;
2820
+ z-index: 10400;
2821
+ background: #fff;
2822
+ -webkit-box-sizing: border-box;
2823
+ -moz-box-sizing: border-box;
2824
+ box-sizing: border-box;
2825
+ display: none;
2826
+ overflow: auto;
2827
+ -webkit-overflow-scrolling: touch;
2828
+ -webkit-transition-property: -webkit-transform;
2829
+ -moz-transition-property: -moz-transform;
2830
+ -ms-transition-property: -ms-transform;
2831
+ -o-transition-property: -o-transform;
2832
+ transition-property: transform;
2833
+ -webkit-transform: translate3d(0, 100%, 0);
2834
+ -ms-transform: translate3d(0, 100%, 0);
2835
+ transform: translate3d(0, 100%, 0);
2836
+ }
2837
+ .popup.modal-in,
2838
+ .login-screen.modal-in,
2839
+ .popup.modal-out,
2840
+ .login-screen.modal-out {
2841
+ -webkit-transition-duration: 400ms;
2842
+ transition-duration: 400ms;
2843
+ }
2844
+ .popup.modal-in,
2845
+ .login-screen.modal-in {
2846
+ -webkit-transform: translate3d(0, 0, 0);
2847
+ -ms-transform: translate3d(0, 0, 0);
2848
+ transform: translate3d(0, 0, 0);
2849
+ }
2850
+ .popup.modal-out,
2851
+ .login-screen.modal-out {
2852
+ -webkit-transform: translate3d(0, 100%, 0);
2853
+ -ms-transform: translate3d(0, 100%, 0);
2854
+ transform: translate3d(0, 100%, 0);
2855
+ }
2856
+ .login-screen.modal-in,
2857
+ .login-screen.modal-out {
2858
+ display: block;
2859
+ }
2860
+ @media all and (min-width: 630px) and (min-height: 630px) {
2861
+ .popup:not(.tablet-fullscreen) {
2862
+ width: 630px;
2863
+ height: 630px;
2864
+ left: 50%;
2865
+ top: 50%;
2866
+ margin-left: -315px;
2867
+ margin-top: -315px;
2868
+ -webkit-transform: translate3d(0, 1024px, 0);
2869
+ -ms-transform: translate3d(0, 1024px, 0);
2870
+ transform: translate3d(0, 1024px, 0);
2871
+ }
2872
+ .popup:not(.tablet-fullscreen).modal-in {
2873
+ -webkit-transform: translate3d(0, 0, 0);
2874
+ -ms-transform: translate3d(0, 0, 0);
2875
+ transform: translate3d(0, 0, 0);
2876
+ }
2877
+ .popup:not(.tablet-fullscreen).modal-out {
2878
+ -webkit-transform: translate3d(0, 1024px, 0);
2879
+ -ms-transform: translate3d(0, 1024px, 0);
2880
+ transform: translate3d(0, 1024px, 0);
2881
+ }
2882
+ }
2883
+ @media all and (max-width: 629px), (max-height: 629px) {
2884
+ html.with-statusbar-overlay .popup {
2885
+ height: -webkit-calc(100% - 20px);
2886
+ height: calc(100% - 20px);
2887
+ top: 20px;
2888
+ }
2889
+ html.with-statusbar-overlay .popup-overlay {
2890
+ z-index: 9800;
2891
+ }
2892
+ }
2893
+ html.with-statusbar-overlay .login-screen,
2894
+ html.with-statusbar-overlay .popup.tablet-fullscreen {
2895
+ height: -webkit-calc(100% - 20px);
2896
+ height: calc(100% - 20px);
2897
+ top: 20px;
2898
+ }
2899
+ .modal .preloader {
2900
+ width: 34px;
2901
+ height: 34px;
2902
+ }
2903
+ .preloader-indicator-overlay {
2904
+ visibility: visible;
2905
+ opacity: 0;
2906
+ background: none;
2907
+ }
2908
+ .preloader-indicator-modal {
2909
+ position: absolute;
2910
+ left: 50%;
2911
+ top: 50%;
2912
+ padding: 8px;
2913
+ margin-left: -25px;
2914
+ margin-top: -25px;
2915
+ background: rgba(0, 0, 0, 0.8);
2916
+ z-index: 11000;
2917
+ border-radius: 5px;
2918
+ }
2919
+ .preloader-indicator-modal .preloader {
2920
+ display: block;
2921
+ width: 34px;
2922
+ height: 34px;
2923
+ }
2924
+ html.retina.ios-gt-7 .modal-inner {
2925
+ border-bottom-width: 0.5px;
2926
+ }
2927
+ html.retina.ios-gt-7 .modal-button {
2928
+ border-right-width: 0.5px;
2929
+ }
2930
+ html.retina.ios-gt-7 .actions-modal-button,
2931
+ html.retina.ios-gt-7 .actions-modal-label {
2932
+ border-bottom-width: 0.5px;
2933
+ }
2934
+ html.retina.ios-gt-7 .actions-popover-label {
2935
+ border-bottom-width: 0.5px;
2936
+ }
2937
+ html.retina.ios-gt-7 input.modal-text-input {
2938
+ border-width: 0.5px;
2939
+ }
2940
+ /* === Panels === */
2941
+ .panel-overlay {
2942
+ position: absolute;
2943
+ left: 0;
2944
+ top: 0;
2945
+ width: 100%;
2946
+ height: 100%;
2947
+ background: rgba(0, 0, 0, 0);
2948
+ opacity: 0;
2949
+ z-index: 5999;
2950
+ display: none;
2951
+ }
2952
+ .panel {
2953
+ z-index: 1000;
2954
+ display: none;
2955
+ background: #111;
2956
+ -webkit-box-sizing: border-box;
2957
+ -moz-box-sizing: border-box;
2958
+ box-sizing: border-box;
2959
+ overflow: auto;
2960
+ -webkit-overflow-scrolling: touch;
2961
+ position: absolute;
2962
+ width: 260px;
2963
+ top: 0;
2964
+ height: 100%;
2965
+ -webkit-transform: translate3d(0, 0, 0);
2966
+ -ms-transform: translate3d(0, 0, 0);
2967
+ transform: translate3d(0, 0, 0);
2968
+ -webkit-transition-duration: 400ms;
2969
+ transition-duration: 400ms;
2970
+ }
2971
+ .panel.panel-left.panel-cover {
2972
+ z-index: 6000;
2973
+ left: -260px;
2974
+ }
2975
+ .panel.panel-left.panel-reveal {
2976
+ left: 0;
2977
+ }
2978
+ .panel.panel-right.panel-cover {
2979
+ z-index: 6000;
2980
+ right: -260px;
2981
+ }
2982
+ .panel.panel-right.panel-reveal {
2983
+ right: 0;
2984
+ }
2985
+ body.with-panel-left-cover .views,
2986
+ body.with-panel-right-cover .views {
2987
+ -webkit-transform: translate3d(0, 0, 0);
2988
+ -ms-transform: translate3d(0, 0, 0);
2989
+ transform: translate3d(0, 0, 0);
2990
+ }
2991
+ body.with-panel-left-cover .panel-overlay,
2992
+ body.with-panel-right-cover .panel-overlay {
2993
+ display: block;
2994
+ }
2995
+ body.with-panel-left-reveal .views,
2996
+ body.with-panel-right-reveal .views {
2997
+ -webkit-transition-duration: 400ms;
2998
+ transition-duration: 400ms;
2999
+ -webkit-transition-property: -webkit-transform;
3000
+ -moz-transition-property: -moz-transform;
3001
+ transition-property: transform;
3002
+ }
3003
+ body.with-panel-left-reveal .panel-overlay,
3004
+ body.with-panel-right-reveal .panel-overlay {
3005
+ display: block;
3006
+ }
3007
+ body.with-panel-left-reveal .views {
3008
+ -webkit-transform: translate3d(260px, 0, 0);
3009
+ -ms-transform: translate3d(260px, 0, 0);
3010
+ transform: translate3d(260px, 0, 0);
3011
+ }
3012
+ body.with-panel-left-reveal .panel-overlay {
3013
+ margin-left: 260px;
3014
+ }
3015
+ body.with-panel-left-cover .panel-left {
3016
+ -webkit-transform: translate3d(260px, 0, 0);
3017
+ -ms-transform: translate3d(260px, 0, 0);
3018
+ transform: translate3d(260px, 0, 0);
3019
+ }
3020
+ body.with-panel-right-reveal .views {
3021
+ -webkit-transform: translate3d(-260px, 0, 0);
3022
+ -ms-transform: translate3d(-260px, 0, 0);
3023
+ transform: translate3d(-260px, 0, 0);
3024
+ }
3025
+ body.with-panel-right-reveal .panel-overlay {
3026
+ margin-left: -260px;
3027
+ }
3028
+ body.with-panel-right-cover .panel-right {
3029
+ -webkit-transform: translate3d(-260px, 0, 0);
3030
+ -ms-transform: translate3d(-260px, 0, 0);
3031
+ transform: translate3d(-260px, 0, 0);
3032
+ }
3033
+ body.panel-closing .views {
3034
+ -webkit-transition-duration: 400ms;
3035
+ transition-duration: 400ms;
3036
+ -webkit-transition-property: -webkit-transform;
3037
+ -moz-transition-property: -moz-transform;
3038
+ transition-property: transform;
3039
+ }
3040
+ /* === Tabs === */
3041
+ .tabs .tab {
3042
+ display: none;
3043
+ }
3044
+ .tabs .tab.active {
3045
+ display: block;
3046
+ }
3047
+ .tabs-animated-wrap {
3048
+ position: relative;
3049
+ width: 100%;
3050
+ overflow: hidden;
3051
+ height: 100%;
3052
+ }
3053
+ .tabs-animated-wrap > .tabs {
3054
+ display: -webkit-box;
3055
+ display: -ms-flexbox;
3056
+ display: -webkit-flex;
3057
+ display: flex;
3058
+ height: 100%;
3059
+ -webkit-transition-duration: 300ms;
3060
+ transition-duration: 300ms;
3061
+ }
3062
+ .tabs-animated-wrap > .tabs > .tab {
3063
+ width: 100%;
3064
+ display: block;
3065
+ -webkit-flex-shrink: 0;
3066
+ -ms-flex: 0 0 auto;
3067
+ flex-shrink: 0;
3068
+ }
3069
+ /* === Messages === */
3070
+ .messages-content {
3071
+ background: #fff;
3072
+ }
3073
+ .messages {
3074
+ display: -webkit-box;
3075
+ display: -ms-flexbox;
3076
+ display: -webkit-flex;
3077
+ display: flex;
3078
+ -webkit-box-orient: vertical;
3079
+ -moz-box-orient: vertical;
3080
+ -ms-flex-direction: column;
3081
+ -webkit-flex-direction: column;
3082
+ flex-direction: column;
3083
+ }
3084
+ .messages-date {
3085
+ text-align: center;
3086
+ font-weight: 500;
3087
+ font-size: 11px;
3088
+ line-height: 1;
3089
+ margin: 10px 15px;
3090
+ color: #8e8e93;
3091
+ }
3092
+ .messages-date span {
3093
+ font-weight: 400;
3094
+ }
3095
+ .message {
3096
+ -webkit-box-sizing: border-box;
3097
+ -moz-box-sizing: border-box;
3098
+ box-sizing: border-box;
3099
+ margin: 1px 10px 0;
3100
+ max-width: 70%;
3101
+ display: -webkit-box;
3102
+ display: -ms-flexbox;
3103
+ display: -webkit-flex;
3104
+ display: flex;
3105
+ -webkit-box-orient: vertical;
3106
+ -moz-box-orient: vertical;
3107
+ -ms-flex-direction: column;
3108
+ -webkit-flex-direction: column;
3109
+ flex-direction: column;
3110
+ }
3111
+ .message:first-child {
3112
+ margin-top: 10px;
3113
+ }
3114
+ .message .message-text {
3115
+ -webkit-box-sizing: border-box;
3116
+ -moz-box-sizing: border-box;
3117
+ box-sizing: border-box;
3118
+ border-radius: 16px;
3119
+ padding: 6px 16px 9px;
3120
+ min-width: 48px;
3121
+ min-height: 35px;
3122
+ font-size: 17px;
3123
+ line-height: 1.2;
3124
+ word-break: break-word;
3125
+ }
3126
+ .message.message-pic .message-text {
3127
+ padding: 0;
3128
+ background: none;
3129
+ }
3130
+ .message.message-pic img {
3131
+ display: block;
3132
+ height: auto;
3133
+ max-width: 100%;
3134
+ border-radius: 16px;
3135
+ }
3136
+ .message-name {
3137
+ font-size: 12px;
3138
+ line-height: 1;
3139
+ color: #8e8e93;
3140
+ margin-bottom: 2px;
3141
+ margin-top: 7px;
3142
+ }
3143
+ .message-hide-name .message-name {
3144
+ display: none;
3145
+ }
3146
+ .message-label {
3147
+ font-size: 12px;
3148
+ line-height: 1;
3149
+ color: #8e8e93;
3150
+ margin-top: 4px;
3151
+ }
3152
+ .message-hide-label .message-label {
3153
+ display: none;
3154
+ }
3155
+ .message-avatar {
3156
+ width: 29px;
3157
+ height: 29px;
3158
+ border-radius: 100%;
3159
+ margin-top: -29px;
3160
+ position: relative;
3161
+ top: 1px;
3162
+ background-size: cover;
3163
+ opacity: 1;
3164
+ -webkit-transition-duration: 400ms;
3165
+ transition-duration: 400ms;
3166
+ }
3167
+ .message-hide-avatar .message-avatar {
3168
+ opacity: 0;
3169
+ }
3170
+ .message-sent {
3171
+ -ms-flex-item-align: end;
3172
+ -webkit-align-self: flex-end;
3173
+ align-self: flex-end;
3174
+ -webkit-box-align: end;
3175
+ -ms-flex-align: end;
3176
+ -webkit-align-items: flex-end;
3177
+ align-items: flex-end;
3178
+ }
3179
+ .message-sent .message-name {
3180
+ margin-right: 16px;
3181
+ }
3182
+ .message-sent .message-label {
3183
+ margin-right: 6px;
3184
+ }
3185
+ .message-sent.message-with-avatar .message-text {
3186
+ margin-right: 29px;
3187
+ }
3188
+ .message-sent.message-with-avatar .message-name {
3189
+ margin-right: 45px;
3190
+ }
3191
+ .message-sent.message-with-avatar .message-label {
3192
+ margin-right: 34px;
3193
+ }
3194
+ .message-sent .message-text {
3195
+ padding-right: 22px;
3196
+ background-color: #00d449;
3197
+ color: white;
3198
+ margin-left: auto;
3199
+ -webkit-mask-box-image: url("data:image/svg+xml;charset=utf-8,<svg height='35' viewBox='0 0 96 70' width='48' xmlns='http://www.w3.org/2000/svg'><path d='m84 35c1 7-5 37-42 35-37 2-43-28-42-35-1-7 5-37 42-35 37-2 43 28 42 35z'/></svg>") 50% 56% 46% 42%;
3200
+ }
3201
+ .message-sent.message-last .message-text,
3202
+ .message-sent.message-with-tail .message-text {
3203
+ border-radius: 16px 16px 0 16px;
3204
+ -webkit-mask-box-image: url("data:image/svg+xml;charset=utf-8,<svg height='35' viewBox='0 0 96 70' width='48' xmlns='http://www.w3.org/2000/svg'><path d='m84 35c1 7-5 37-42 35-37 2-43-28-42-35-1-7 5-37 42-35 37-2 43 28 42 35z'/><path d='m96 70c-6-2-12-10-12-19v-16l-14 27s8 8 26 8z'/></svg>") 50% 56% 46% 42%;
3205
+ }
3206
+ .message-sent.message-last.message-pic img,
3207
+ .message-sent.message-with-tail.message-pic img {
3208
+ border-radius: 16px 16px 0 16px;
3209
+ }
3210
+ .message-received {
3211
+ -ms-flex-item-align: start;
3212
+ -webkit-align-self: flex-start;
3213
+ align-self: flex-start;
3214
+ -webkit-box-align: start;
3215
+ -ms-flex-align: start;
3216
+ -webkit-align-items: flex-start;
3217
+ align-items: flex-start;
3218
+ }
3219
+ .message-received .message-text {
3220
+ padding-left: 22px;
3221
+ background-color: #e5e5ea;
3222
+ color: #000;
3223
+ -webkit-mask-box-image: url("data:image/svg+xml;charset=utf-8,<svg height='35' viewBox='0 0 96 70' width='48' xmlns='http://www.w3.org/2000/svg'><path d='m96 35c1 7-5 37-42 35-37 2-43-28-42-35-1-7 5-37 42-35 37-2 43 28 42 35z'/></svg>") 50% 42% 46% 56%;
3224
+ }
3225
+ .message-received .message-name {
3226
+ margin-left: 16px;
3227
+ }
3228
+ .message-received .message-label {
3229
+ margin-left: 6px;
3230
+ }
3231
+ .message-received.message-with-avatar .message-text {
3232
+ margin-left: 29px;
3233
+ }
3234
+ .message-received.message-with-avatar .message-name {
3235
+ margin-left: 45px;
3236
+ }
3237
+ .message-received.message-with-avatar .message-label {
3238
+ margin-left: 34px;
3239
+ }
3240
+ .message-received.message-last .message-text,
3241
+ .message-received.message-with-tail .message-text {
3242
+ border-radius: 16px 16px 16px 0;
3243
+ -webkit-mask-box-image: url("data:image/svg+xml;charset=utf-8,<svg height='35' viewBox='0 0 96 70' width='48' xmlns='http://www.w3.org/2000/svg'><path d='m96 35c1 7-5 37-42 35-37 2-43-28-42-35-1-7 5-37 42-35 37-2 43 28 42 35z'/><path d='m0 70c6-2 12-10 12-19v-16l14 27s-8 8-26 8z'/></svg>") 50% 42% 46% 56%;
3244
+ }
3245
+ .message-received.message-last.message-pic img,
3246
+ .message-received.message-with-tail.message-pic img {
3247
+ border-radius: 16px 16px 16px 0;
3248
+ }
3249
+ .message-last {
3250
+ margin-bottom: 8px;
3251
+ }
3252
+ .message-appear {
3253
+ -webkit-animation: messageAppearFromBottom 400ms;
3254
+ animation: messageAppearFromBottom 400ms;
3255
+ }
3256
+ .new-messages-first .message-appear {
3257
+ -webkit-animation: messageAppearFromTop 400ms;
3258
+ animation: messageAppearFromTop 400ms;
3259
+ }
3260
+ .messages-auto-layout .message-name,
3261
+ .messages-auto-layout .message-label {
3262
+ display: none;
3263
+ }
3264
+ .messages-auto-layout .message-avatar {
3265
+ opacity: 0;
3266
+ }
3267
+ .messages-auto-layout .message-first .message-name {
3268
+ display: block;
3269
+ }
3270
+ .messages-auto-layout .message-last .message-avatar {
3271
+ opacity: 1;
3272
+ }
3273
+ .messages-auto-layout .message-last .message-label {
3274
+ display: block;
3275
+ }
3276
+ html.retina.ios-6 .message,
3277
+ html.retina.ios-6 .message.message-pic img {
3278
+ -webkit-mask-box-image: none;
3279
+ border-radius: 16px;
3280
+ }
3281
+ @-webkit-keyframes messageAppearFromBottom {
3282
+ from {
3283
+ -webkit-transform: translate3d(0, 100%, 0);
3284
+ }
3285
+ to {
3286
+ -webkit-transform: translate3d(0, 0, 0);
3287
+ }
3288
+ }
3289
+ @keyframes messageAppearFromBottom {
3290
+ from {
3291
+ transform: translate3d(0, 100%, 0);
3292
+ }
3293
+ to {
3294
+ transform: translate3d(0, 0, 0);
3295
+ }
3296
+ }
3297
+ @-webkit-keyframes messageAppearFromTop {
3298
+ from {
3299
+ -webkit-transform: translate3d(0, -100%, 0);
3300
+ }
3301
+ to {
3302
+ -webkit-transform: translate3d(0, 0, 0);
3303
+ }
3304
+ }
3305
+ @keyframes messageAppearFromTop {
3306
+ from {
3307
+ transform: translate3d(0, -100%, 0);
3308
+ }
3309
+ to {
3310
+ transform: translate3d(0, 0, 0);
3311
+ }
3312
+ }
3313
+ /* === Statusbar overlay === */
3314
+ html.with-statusbar-overlay body {
3315
+ padding-top: 20px;
3316
+ -webkit-box-sizing: border-box;
3317
+ -moz-box-sizing: border-box;
3318
+ box-sizing: border-box;
3319
+ }
3320
+ html.with-statusbar-overlay body .statusbar-overlay {
3321
+ display: block;
3322
+ }
3323
+ html.with-statusbar-overlay body .panel {
3324
+ padding-top: 20px;
3325
+ }
3326
+ .statusbar-overlay {
3327
+ background: #f7f7f8;
3328
+ z-index: 10000;
3329
+ position: absolute;
3330
+ left: 0;
3331
+ top: 0;
3332
+ height: 20px;
3333
+ width: 100%;
3334
+ display: none;
3335
+ -webkit-transition-duration: 400ms;
3336
+ transition-duration: 400ms;
3337
+ }
3338
+ /* === Preloader === */
3339
+ .preloader {
3340
+ display: inline-block;
3341
+ width: 20px;
3342
+ height: 20px;
3343
+ -webkit-transform-origin: 50%;
3344
+ transform-origin: 50%;
3345
+ -webkit-animation: preloader-spin 1s step-end infinite;
3346
+ animation: preloader-spin 1s step-end infinite;
3347
+ }
3348
+ .preloader:after {
3349
+ display: block;
3350
+ content: "";
3351
+ width: 100%;
3352
+ height: 100%;
3353
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'><defs><line id='l' x1='60' x2='60' y1='7' y2='27' stroke='%236c6c6c' stroke-width='11' stroke-linecap='round'/></defs><g><use xlink:href='%23l' opacity='.27'/><use xlink:href='%23l' opacity='.27' transform='rotate(30 60,60)'/><use xlink:href='%23l' opacity='.27' transform='rotate(60 60,60)'/><use xlink:href='%23l' opacity='.27' transform='rotate(90 60,60)'/><use xlink:href='%23l' opacity='.27' transform='rotate(120 60,60)'/><use xlink:href='%23l' opacity='.27' transform='rotate(150 60,60)'/><use xlink:href='%23l' opacity='.37' transform='rotate(180 60,60)'/><use xlink:href='%23l' opacity='.46' transform='rotate(210 60,60)'/><use xlink:href='%23l' opacity='.56' transform='rotate(240 60,60)'/><use xlink:href='%23l' opacity='.66' transform='rotate(270 60,60)'/><use xlink:href='%23l' opacity='.75' transform='rotate(300 60,60)'/><use xlink:href='%23l' opacity='.85' transform='rotate(330 60,60)'/></g></svg>");
3354
+ background-position: 50%;
3355
+ background-size: 100%;
3356
+ background-repeat: no-repeat;
3357
+ }
3358
+ .preloader-white:after {
3359
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'><defs><line id='l' x1='60' x2='60' y1='7' y2='27' stroke='%23fff' stroke-width='11' stroke-linecap='round'/></defs><g><use xlink:href='%23l' opacity='.27'/><use xlink:href='%23l' opacity='.27' transform='rotate(30 60,60)'/><use xlink:href='%23l' opacity='.27' transform='rotate(60 60,60)'/><use xlink:href='%23l' opacity='.27' transform='rotate(90 60,60)'/><use xlink:href='%23l' opacity='.27' transform='rotate(120 60,60)'/><use xlink:href='%23l' opacity='.27' transform='rotate(150 60,60)'/><use xlink:href='%23l' opacity='.37' transform='rotate(180 60,60)'/><use xlink:href='%23l' opacity='.46' transform='rotate(210 60,60)'/><use xlink:href='%23l' opacity='.56' transform='rotate(240 60,60)'/><use xlink:href='%23l' opacity='.66' transform='rotate(270 60,60)'/><use xlink:href='%23l' opacity='.75' transform='rotate(300 60,60)'/><use xlink:href='%23l' opacity='.85' transform='rotate(330 60,60)'/></g></svg>");
3360
+ }
3361
+ @-webkit-keyframes preloader-spin {
3362
+ 0% {
3363
+ -webkit-transform: rotate(0deg);
3364
+ }
3365
+ 8.33333333% {
3366
+ -webkit-transform: rotate(30deg);
3367
+ }
3368
+ 16.66666667% {
3369
+ -webkit-transform: rotate(60deg);
3370
+ }
3371
+ 25% {
3372
+ -webkit-transform: rotate(90deg);
3373
+ }
3374
+ 33.33333333% {
3375
+ -webkit-transform: rotate(120deg);
3376
+ }
3377
+ 41.66666667% {
3378
+ -webkit-transform: rotate(150deg);
3379
+ }
3380
+ 50% {
3381
+ -webkit-transform: rotate(180deg);
3382
+ }
3383
+ 58.33333333% {
3384
+ -webkit-transform: rotate(210deg);
3385
+ }
3386
+ 66.66666667% {
3387
+ -webkit-transform: rotate(240deg);
3388
+ }
3389
+ 75% {
3390
+ -webkit-transform: rotate(270deg);
3391
+ }
3392
+ 83.33333333% {
3393
+ -webkit-transform: rotate(300deg);
3394
+ }
3395
+ 91.66666667% {
3396
+ -webkit-transform: rotate(330deg);
3397
+ }
3398
+ 100% {
3399
+ -webkit-transform: rotate(360deg);
3400
+ }
3401
+ }
3402
+ @keyframes preloader-spin {
3403
+ 0% {
3404
+ transform: rotate(0deg);
3405
+ }
3406
+ 8.33333333% {
3407
+ transform: rotate(30deg);
3408
+ }
3409
+ 16.66666667% {
3410
+ transform: rotate(60deg);
3411
+ }
3412
+ 25% {
3413
+ transform: rotate(90deg);
3414
+ }
3415
+ 33.33333333% {
3416
+ transform: rotate(120deg);
3417
+ }
3418
+ 41.66666667% {
3419
+ transform: rotate(150deg);
3420
+ }
3421
+ 50% {
3422
+ transform: rotate(180deg);
3423
+ }
3424
+ 58.33333333% {
3425
+ transform: rotate(210deg);
3426
+ }
3427
+ 66.66666667% {
3428
+ transform: rotate(240deg);
3429
+ }
3430
+ 75% {
3431
+ transform: rotate(270deg);
3432
+ }
3433
+ 83.33333333% {
3434
+ transform: rotate(300deg);
3435
+ }
3436
+ 91.66666667% {
3437
+ transform: rotate(330deg);
3438
+ }
3439
+ 100% {
3440
+ transform: rotate(360deg);
3441
+ }
3442
+ }
3443
+ /* === Pull To Refresh === */
3444
+ .pull-to-refresh-layer {
3445
+ position: absolute;
3446
+ position: relative;
3447
+ margin-top: -44px;
3448
+ left: 0;
3449
+ top: 0;
3450
+ width: 100%;
3451
+ height: 44px;
3452
+ }
3453
+ .pull-to-refresh-layer .preloader {
3454
+ position: absolute;
3455
+ left: 50%;
3456
+ top: 50%;
3457
+ margin-left: -10px;
3458
+ margin-top: -10px;
3459
+ visibility: hidden;
3460
+ }
3461
+ .pull-to-refresh-layer .pull-to-refresh-arrow {
3462
+ width: 13px;
3463
+ height: 20px;
3464
+ position: absolute;
3465
+ left: 50%;
3466
+ top: 50%;
3467
+ margin-left: -6px;
3468
+ margin-top: -10px;
3469
+ background: no-repeat center;
3470
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 40'><polygon points='9,22 9,0 17,0 17,22 26,22 13.5,40 0,22' fill='%238c8c8c'/></svg>");
3471
+ background-size: 13px 20px;
3472
+ z-index: 10;
3473
+ -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
3474
+ -ms-transform: rotate(0deg) translate3d(0, 0, 0);
3475
+ transform: rotate(0deg) translate3d(0, 0, 0);
3476
+ -webkit-transition-duration: 300ms;
3477
+ transition-duration: 300ms;
3478
+ }
3479
+ .pull-to-refresh-content.pull-to-refresh-no-navbar {
3480
+ margin-top: -44px;
3481
+ height: -webkit-calc(100% + 44px);
3482
+ height: -moz-calc(100% + 44px);
3483
+ height: calc(100% + 44px);
3484
+ }
3485
+ .pull-to-refresh-content.pull-to-refresh-no-navbar .pull-to-refresh-layer {
3486
+ margin-top: 0;
3487
+ }
3488
+ .pull-to-refresh-content.transitioning,
3489
+ .pull-to-refresh-content.refreshing {
3490
+ -webkit-transition-duration: 400ms;
3491
+ transition-duration: 400ms;
3492
+ }
3493
+ .pull-to-refresh-content:not(.refreshing) .preloader {
3494
+ -webkit-animation: none;
3495
+ animation: none;
3496
+ }
3497
+ .pull-to-refresh-content.refreshing {
3498
+ -webkit-transform: translate3d(0, 44px, 0);
3499
+ -ms-transform: translate3d(0, 44px, 0);
3500
+ transform: translate3d(0, 44px, 0);
3501
+ }
3502
+ .pull-to-refresh-content.refreshing .pull-to-refresh-arrow {
3503
+ visibility: hidden;
3504
+ -webkit-transition-duration: 0ms;
3505
+ transition-duration: 0ms;
3506
+ }
3507
+ .pull-to-refresh-content.refreshing .preloader {
3508
+ visibility: visible;
3509
+ }
3510
+ .pull-to-refresh-content.pull-up .pull-to-refresh-arrow {
3511
+ -webkit-transform: rotate(180deg) translate3d(0, 0, 0);
3512
+ -ms-transform: rotate(180deg) translate3d(0, 0, 0);
3513
+ transform: rotate(180deg) translate3d(0, 0, 0);
3514
+ }
3515
+ /* === Slider === */
3516
+ .slider-container {
3517
+ position: relative;
3518
+ overflow: hidden;
3519
+ width: 100%;
3520
+ height: 100%;
3521
+ }
3522
+ .slider-wrapper {
3523
+ display: -webkit-box;
3524
+ display: -ms-flexbox;
3525
+ display: -webkit-flex;
3526
+ display: flex;
3527
+ width: 100%;
3528
+ height: 100%;
3529
+ position: relative;
3530
+ -webkit-transition-property: -webkit-transform;
3531
+ -moz-transition-property: -moz-transform;
3532
+ transition-property: transform;
3533
+ -webkit-transform: translate3d(0, 0, 0);
3534
+ -ms-transform: translate3d(0, 0, 0);
3535
+ transform: translate3d(0, 0, 0);
3536
+ }
3537
+ .slider-container-vertical > .slider-wrapper {
3538
+ -webkit-box-orient: vertical;
3539
+ -moz-box-orient: vertical;
3540
+ -ms-flex-direction: column;
3541
+ -webkit-flex-direction: column;
3542
+ flex-direction: column;
3543
+ }
3544
+ .slider-slide {
3545
+ -webkit-flex-shrink: 0;
3546
+ -ms-flex: 0 0 auto;
3547
+ flex-shrink: 0;
3548
+ width: 100%;
3549
+ height: 100%;
3550
+ }
3551
+ .slider-pagination {
3552
+ position: absolute;
3553
+ z-index: 10;
3554
+ -webkit-transform: translate3d(0, 0, 0);
3555
+ -ms-transform: translate3d(0, 0, 0);
3556
+ transform: translate3d(0, 0, 0);
3557
+ left: 0;
3558
+ bottom: 10px;
3559
+ width: 100%;
3560
+ text-align: center;
3561
+ -webkit-transition-duration: 300ms;
3562
+ transition-duration: 300ms;
3563
+ opacity: 1;
3564
+ -webkit-transition-property: opacity;
3565
+ -moz-transition-property: opacity;
3566
+ transition-property: opacity;
3567
+ }
3568
+ .slider-pagination.slider-pagination-hidden {
3569
+ opacity: 0;
3570
+ pointer-events: none;
3571
+ }
3572
+ .slider-container-vertical > .slider-pagination {
3573
+ right: 10px;
3574
+ left: auto;
3575
+ top: 50%;
3576
+ bottom: auto;
3577
+ width: auto;
3578
+ height: auto;
3579
+ -webkit-transform: translate3d(0, -50%, 0);
3580
+ -ms-transform: translate3d(0, -50%, 0);
3581
+ transform: translate3d(0, -50%, 0);
3582
+ }
3583
+ .slider-container-vertical > .slider-pagination .slider-pagination-bullet {
3584
+ display: block;
3585
+ margin: 5px 0;
3586
+ }
3587
+ .slider-pagination-bullet {
3588
+ width: 8px;
3589
+ height: 8px;
3590
+ display: inline-block;
3591
+ border-radius: 100%;
3592
+ background: #000;
3593
+ opacity: 0.2;
3594
+ margin: 0 5px;
3595
+ }
3596
+ .slider-pagination-active {
3597
+ opacity: 1;
3598
+ background: #007aff;
3599
+ }
3600
+ /* === Photo Browser === */
3601
+ .photo-browser {
3602
+ position: absolute;
3603
+ left: 0;
3604
+ top: 0;
3605
+ width: 100%;
3606
+ height: 100%;
3607
+ z-index: 10500;
3608
+ }
3609
+ body > .photo-browser {
3610
+ opacity: 0;
3611
+ display: none;
3612
+ -webkit-transform: translate3d(0, 0, 0);
3613
+ -ms-transform: translate3d(0, 0, 0);
3614
+ transform: translate3d(0, 0, 0);
3615
+ }
3616
+ body > .photo-browser.photo-browser-in {
3617
+ display: block;
3618
+ -webkit-animation: photoBrowserIn 400ms forwards;
3619
+ animation: photoBrowserIn 400ms forwards;
3620
+ }
3621
+ body > .photo-browser.photo-browser-out {
3622
+ display: block;
3623
+ -webkit-animation: photoBrowserOut 400ms forwards;
3624
+ animation: photoBrowserOut 400ms forwards;
3625
+ }
3626
+ html.with-statusbar-overlay body > .photo-browser {
3627
+ height: -webkit-calc(100% - 20px);
3628
+ height: calc(100% - 20px);
3629
+ top: 20px;
3630
+ }
3631
+ .popup > .photo-browser .navbar,
3632
+ body > .photo-browser .navbar,
3633
+ .popup > .photo-browser .toolbar,
3634
+ body > .photo-browser .toolbar {
3635
+ -webkit-transform: translate3d(0, 0, 0);
3636
+ -ms-transform: translate3d(0, 0, 0);
3637
+ transform: translate3d(0, 0, 0);
3638
+ }
3639
+ .photo-browser .page[data-page="photo-browser-slides"] {
3640
+ background: none;
3641
+ }
3642
+ .photo-browser-popup {
3643
+ background: none;
3644
+ }
3645
+ .photo-browser .navbar,
3646
+ .view[data-page="photo-browser-slides"] .navbar,
3647
+ .photo-browser .toolbar,
3648
+ .view[data-page="photo-browser-slides"] .toolbar {
3649
+ background: rgba(247, 247, 247, 0.95);
3650
+ -webkit-transition-duration: 400ms;
3651
+ transition-duration: 400ms;
3652
+ }
3653
+ .view[data-page="photo-browser-slides"] .page[data-page="photo-browser-slides"] .navbar,
3654
+ .view[data-page="photo-browser-slides"] .page[data-page="photo-browser-slides"] .toolbar {
3655
+ -webkit-transform: translate3d(0, 0, 0);
3656
+ -ms-transform: translate3d(0, 0, 0);
3657
+ transform: translate3d(0, 0, 0);
3658
+ }
3659
+ .photo-browser-exposed .navbar,
3660
+ .photo-browser-exposed .toolbar {
3661
+ opacity: 0;
3662
+ visibility: hidden;
3663
+ pointer-events: none;
3664
+ }
3665
+ .photo-browser-exposed .photo-browser-slider-container {
3666
+ background: #000;
3667
+ }
3668
+ .photo-browser-of {
3669
+ margin: 0 5px;
3670
+ }
3671
+ .photo-browser-captions {
3672
+ pointer-events: none;
3673
+ position: absolute;
3674
+ left: 0;
3675
+ width: 100%;
3676
+ bottom: 0;
3677
+ z-index: 10;
3678
+ opacity: 1;
3679
+ -webkit-transition-duration: 400ms;
3680
+ transition-duration: 400ms;
3681
+ }
3682
+ .photo-browser-captions.photo-browser-captions-exposed {
3683
+ opacity: 0;
3684
+ }
3685
+ .toolbar ~ .photo-browser-captions {
3686
+ bottom: 44px;
3687
+ -webkit-transform: translate3d(0, 0px, 0);
3688
+ -ms-transform: translate3d(0, 0px, 0);
3689
+ transform: translate3d(0, 0px, 0);
3690
+ }
3691
+ .photo-browser-exposed .toolbar ~ .photo-browser-captions {
3692
+ -webkit-transform: translate3d(0, 44px, 0);
3693
+ -ms-transform: translate3d(0, 44px, 0);
3694
+ transform: translate3d(0, 44px, 0);
3695
+ }
3696
+ .toolbar ~ .photo-browser-captions.photo-browser-captions-exposed {
3697
+ -webkit-transform: translate3d(0, 0px, 0);
3698
+ -ms-transform: translate3d(0, 0px, 0);
3699
+ transform: translate3d(0, 0px, 0);
3700
+ }
3701
+ .photo-browser-caption {
3702
+ -webkit-box-sizing: border-box;
3703
+ -moz-box-sizing: border-box;
3704
+ box-sizing: border-box;
3705
+ -webkit-transition-duration: 300ms;
3706
+ transition-duration: 300ms;
3707
+ position: absolute;
3708
+ bottom: 0;
3709
+ left: 0;
3710
+ opacity: 0;
3711
+ padding: 4px 5px;
3712
+ width: 100%;
3713
+ text-align: center;
3714
+ color: #fff;
3715
+ background: rgba(0, 0, 0, 0.8);
3716
+ }
3717
+ .photo-browser-caption:empty {
3718
+ display: none;
3719
+ }
3720
+ .photo-browser-caption.photo-browser-caption-active {
3721
+ opacity: 1;
3722
+ }
3723
+ .photo-browser-captions-light .photo-browser-caption {
3724
+ background: rgba(255, 255, 255, 0.8);
3725
+ color: #000;
3726
+ }
3727
+ .photo-browser-exposed .photo-browser-caption {
3728
+ color: #fff;
3729
+ background: rgba(0, 0, 0, 0.8);
3730
+ }
3731
+ .photo-browser-slider-container {
3732
+ position: absolute;
3733
+ left: 0;
3734
+ top: 0;
3735
+ width: 100%;
3736
+ height: 100%;
3737
+ overflow: hidden;
3738
+ background: #fff;
3739
+ -webkit-transition-duration: 400ms;
3740
+ transition-duration: 400ms;
3741
+ }
3742
+ .photo-browser-slider-wrapper {
3743
+ position: absolute;
3744
+ left: 0;
3745
+ top: 0;
3746
+ width: 100%;
3747
+ height: 100%;
3748
+ padding: 0;
3749
+ display: -webkit-box;
3750
+ display: -ms-flexbox;
3751
+ display: -webkit-flex;
3752
+ display: flex;
3753
+ }
3754
+ .photo-browser-link-inactive {
3755
+ opacity: 0.3;
3756
+ }
3757
+ .photo-browser-slide {
3758
+ width: 100%;
3759
+ height: 100%;
3760
+ position: relative;
3761
+ overflow: hidden;
3762
+ display: -webkit-box;
3763
+ display: -ms-flexbox;
3764
+ display: -webkit-flex;
3765
+ display: flex;
3766
+ -webkit-box-pack: center;
3767
+ -ms-flex-pack: center;
3768
+ -webkit-justify-content: center;
3769
+ justify-content: center;
3770
+ -webkit-box-align: center;
3771
+ -ms-flex-align: center;
3772
+ -webkit-align-items: center;
3773
+ align-items: center;
3774
+ -webkit-flex-shrink: 0;
3775
+ -ms-flex: 0 0 auto;
3776
+ flex-shrink: 0;
3777
+ -webkit-box-sizing: border-box;
3778
+ -moz-box-sizing: border-box;
3779
+ box-sizing: border-box;
3780
+ }
3781
+ .photo-browser-slide.transitioning {
3782
+ -webkit-transition-duration: 400ms;
3783
+ transition-duration: 400ms;
3784
+ }
3785
+ .photo-browser-slide span.photo-browser-zoom-container {
3786
+ width: 100%;
3787
+ text-align: center;
3788
+ display: none;
3789
+ }
3790
+ .photo-browser-slide img {
3791
+ width: auto;
3792
+ height: auto;
3793
+ max-width: 100%;
3794
+ max-height: 100%;
3795
+ display: none;
3796
+ }
3797
+ .photo-browser-slide.slider-slide-active span.photo-browser-zoom-container,
3798
+ .photo-browser-slide.slider-slide-next span.photo-browser-zoom-container,
3799
+ .photo-browser-slide.slider-slide-prev span.photo-browser-zoom-container {
3800
+ display: block;
3801
+ }
3802
+ .photo-browser-slide.slider-slide-active img,
3803
+ .photo-browser-slide.slider-slide-next img,
3804
+ .photo-browser-slide.slider-slide-prev img {
3805
+ display: inline;
3806
+ }
3807
+ .photo-browser-slide.slider-slide-active.photo-browser-slide-lazy .preloader,
3808
+ .photo-browser-slide.slider-slide-next.photo-browser-slide-lazy .preloader,
3809
+ .photo-browser-slide.slider-slide-prev.photo-browser-slide-lazy .preloader {
3810
+ display: block;
3811
+ }
3812
+ .photo-browser-slide iframe {
3813
+ width: 100%;
3814
+ height: 100%;
3815
+ }
3816
+ .photo-browser-slide .preloader {
3817
+ display: none;
3818
+ position: absolute;
3819
+ width: 42px;
3820
+ height: 42px;
3821
+ margin-left: -21px;
3822
+ margin-top: -21px;
3823
+ left: 50%;
3824
+ top: 50%;
3825
+ }
3826
+ .photo-browser-dark .navbar,
3827
+ .photo-browser-dark .toolbar {
3828
+ background: rgba(30, 30, 30, 0.8);
3829
+ border: none;
3830
+ color: #fff;
3831
+ }
3832
+ .photo-browser-dark .navbar a,
3833
+ .photo-browser-dark .toolbar a {
3834
+ color: #fff;
3835
+ }
3836
+ .photo-browser-dark .photo-browser-slider-container {
3837
+ background: #000;
3838
+ }
3839
+ @-webkit-keyframes photoBrowserIn {
3840
+ 0% {
3841
+ -webkit-transform: translate3d(0, 0, 0) scale(0.5);
3842
+ opacity: 0;
3843
+ }
3844
+ 100% {
3845
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
3846
+ opacity: 1;
3847
+ }
3848
+ }
3849
+ @keyframes photoBrowserIn {
3850
+ 0% {
3851
+ transform: translate3d(0, 0, 0) scale(0.5);
3852
+ opacity: 0;
3853
+ }
3854
+ 100% {
3855
+ transform: translate3d(0, 0, 0) scale(1);
3856
+ opacity: 1;
3857
+ }
3858
+ }
3859
+ @-webkit-keyframes photoBrowserOut {
3860
+ 0% {
3861
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
3862
+ opacity: 1;
3863
+ }
3864
+ 100% {
3865
+ -webkit-transform: translate3d(0, 0, 0) scale(0.5);
3866
+ opacity: 0;
3867
+ }
3868
+ }
3869
+ @keyframes photoBrowserOut {
3870
+ 0% {
3871
+ transform: translate3d(0, 0, 0) scale(1);
3872
+ opacity: 1;
3873
+ }
3874
+ 100% {
3875
+ transform: translate3d(0, 0, 0) scale(0.5);
3876
+ opacity: 0;
3877
+ }
3878
+ }
3879
+ /* === Notifications === */
3880
+ .notifications {
3881
+ position: absolute;
3882
+ left: 0;
3883
+ top: 0;
3884
+ width: 100%;
3885
+ z-index: 20000;
3886
+ color: #fff;
3887
+ font-size: 14px;
3888
+ margin: 0;
3889
+ border: none;
3890
+ display: none;
3891
+ -webkit-box-sizing: border-box;
3892
+ -moz-box-sizing: border-box;
3893
+ box-sizing: border-box;
3894
+ max-height: 100%;
3895
+ overflow: auto;
3896
+ -webkit-overflow-scrolling: touch;
3897
+ -webkit-transition-duration: 450ms;
3898
+ transition-duration: 450ms;
3899
+ background: rgba(0, 0, 0, 0.85);
3900
+ -webkit-perspective: 1200px;
3901
+ perspective: 1200px;
3902
+ }
3903
+ .notifications.list-block > ul {
3904
+ border: none;
3905
+ background: none;
3906
+ margin: 0;
3907
+ }
3908
+ .with-statusbar-overlay .notifications {
3909
+ padding-top: 20px;
3910
+ -webkit-transform: translate3d(0, -20px, 0);
3911
+ -ms-transform: translate3d(0, -20px, 0);
3912
+ transform: translate3d(0, -20px, 0);
3913
+ }
3914
+ .notifications .item-content {
3915
+ -webkit-box-align: start;
3916
+ -ms-flex-align: start;
3917
+ -webkit-align-items: flex-start;
3918
+ align-items: flex-start;
3919
+ }
3920
+ .notifications .item-text,
3921
+ .notifications .item-subtitle,
3922
+ .notifications .item-title {
3923
+ font-size: 14px;
3924
+ }
3925
+ .notifications .item-title {
3926
+ font-weight: 500;
3927
+ }
3928
+ .notifications .item-text {
3929
+ height: auto;
3930
+ color: #d2d2d2;
3931
+ line-height: inherit;
3932
+ }
3933
+ .notifications .item-text,
3934
+ .notifications .item-subtitle {
3935
+ font-weight: 300;
3936
+ }
3937
+ .notifications .item-inner {
3938
+ border-bottom-color: rgba(255, 255, 255, 0.2);
3939
+ }
3940
+ .notifications .item-media i.icon {
3941
+ width: 20px;
3942
+ height: 20px;
3943
+ -webkit-background-size: cover;
3944
+ background-size: cover;
3945
+ background-position: center;
3946
+ background-repeat: no-repeat;
3947
+ }
3948
+ .notifications li.notification-item .item-media {
3949
+ padding-top: 13px;
3950
+ }
3951
+ .notifications .close-notification {
3952
+ width: 19px;
3953
+ height: 19px;
3954
+ background: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 19'><g><path fill='%23bcbfc4' d='M9.5,1C14.2,1,18,4.8,18,9.5S14.2,18,9.5,18S1,14.2,1,9.5S4.8,1,9.5,1 M9.5,0C4.3,0,0,4.3,0,9.5 S4.3,19,9.5,19S19,14.7,19,9.5S14.7,0,9.5,0L9.5,0z'/></g><line stroke='%23bcbfc4' stroke-miterlimit='10' x1='5.2' y1='5.2' x2='13.8' y2='13.8'/><line stroke='%23bcbfc4' stroke-miterlimit='10' x1='14.1' y1='4.9' x2='4.9' y2='14.1'/></svg>") no-repeat center top;
3955
+ -webkit-background-size: 100% auto;
3956
+ background-size: 100% auto;
3957
+ position: relative;
3958
+ }
3959
+ .notifications .close-notification span {
3960
+ position: absolute;
3961
+ width: 44px;
3962
+ height: 44px;
3963
+ left: 50%;
3964
+ top: 50%;
3965
+ margin-left: -22px;
3966
+ margin-top: -22px;
3967
+ }
3968
+ .notifications .notification-item {
3969
+ max-width: 568px;
3970
+ margin: 0 auto;
3971
+ -webkit-transition-duration: 450ms;
3972
+ transition-duration: 450ms;
3973
+ -webkit-transform: translate3d(0, 0, 0);
3974
+ -ms-transform: translate3d(0, 0, 0);
3975
+ transform: translate3d(0, 0, 0);
3976
+ opacity: 1;
3977
+ }
3978
+ .notifications .notification-hidden {
3979
+ opacity: 0;
3980
+ -webkit-transform: translate3d(0, 0, 0);
3981
+ -ms-transform: translate3d(0, 0, 0);
3982
+ transform: translate3d(0, 0, 0);
3983
+ }
3984
+ /* === Login screen === */
3985
+ .login-screen-content {
3986
+ background: #fff;
3987
+ }
3988
+ .login-screen-content .login-screen-title,
3989
+ .login-screen-content .list-block,
3990
+ .login-screen-content .content-block,
3991
+ .login-screen-content .list-block-label {
3992
+ max-width: 480px;
3993
+ margin: 25px auto;
3994
+ }
3995
+ .login-screen-content .list-block ul {
3996
+ border: none;
3997
+ background: none;
3998
+ }
3999
+ .login-screen-content .list-block-label {
4000
+ text-align: center;
4001
+ }
4002
+ .login-screen-title {
4003
+ text-align: center;
4004
+ font-size: 30px;
4005
+ }
4006
+ /* === Disabled elements === */
4007
+ .disabled,
4008
+ [disabled] {
4009
+ opacity: 0.55;
4010
+ pointer-events: none;
4011
+ }
4012
+ .disabled .disabled,
4013
+ .disabled [disabled],
4014
+ [disabled] .disabled,
4015
+ [disabled] [disabled] {
4016
+ opacity: 1;
4017
+ }
4018
+ /* === Color Themes === */
4019
+ .color-gray {
4020
+ color: #8e8e93;
4021
+ }
4022
+ .list-block .item-link.list-button.color-gray,
4023
+ .tabbar a.active.color-gray,
4024
+ a.color-gray {
4025
+ color: #8e8e93;
4026
+ }
4027
+ .label-switch input[type="checkbox"]:checked + .checkbox.color-gray,
4028
+ .label-switch.color-gray input[type="checkbox"]:checked + .checkbox {
4029
+ background-color: #8e8e93;
4030
+ }
4031
+ .color-gray.button:not(.button-fill),
4032
+ .color-gray.buttons-row .button,
4033
+ .theme-gray .button:not(.button-fill) {
4034
+ border-color: #8e8e93;
4035
+ }
4036
+ html:not(.watch-active-state) .color-gray.button:not(.button-fill):active,
4037
+ html:not(.watch-active-state) .color-gray.buttons-row .button:active,
4038
+ html:not(.watch-active-state) .theme-gray .button:not(.button-fill):active,
4039
+ .color-gray.button:not(.button-fill).active-state,
4040
+ .color-gray.buttons-row .button.active-state,
4041
+ .theme-gray .button:not(.button-fill).active-state {
4042
+ background-color: rgba(142, 142, 147, 0.15);
4043
+ }
4044
+ .color-gray.button:not(.button-fill).active,
4045
+ .color-gray.buttons-row .button.active,
4046
+ .theme-gray .button:not(.button-fill).active {
4047
+ background-color: #8e8e93;
4048
+ color: #fff;
4049
+ }
4050
+ .theme-gray .button.button-fill,
4051
+ .button.button-fill.color-gray {
4052
+ background: #8e8e93;
4053
+ color: #fff;
4054
+ }
4055
+ .color-gray i.icon,
4056
+ .theme-gray i.icon,
4057
+ i.icon.color-gray,
4058
+ i.icon.theme-gray {
4059
+ color: #8e8e93;
4060
+ }
4061
+ i.icon-next.color-gray,
4062
+ i.icon-next.theme-gray,
4063
+ .theme-gray i.icon-next {
4064
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'><g><path fill='%238e8e93' d='M1,1.6l11.8,5.8L1,13.4V1.6 M0,0v15l15-7.6L0,0L0,0z'/></g></svg>");
4065
+ }
4066
+ i.icon-prev.color-gray,
4067
+ i.icon-prev.theme-gray,
4068
+ .theme-gray i.icon-prev {
4069
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'><g><path fill='%238e8e93' d='M14,1.6v11.8L2.2,7.6L14,1.6 M15,0L0,7.6L15,15V0L15,0z'/></g></svg>");
4070
+ }
4071
+ i.icon-back.color-gray,
4072
+ i.icon-back.theme-gray,
4073
+ .theme-gray i.icon-back {
4074
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 20'><path d='M10,0l2,2l-8,8l8,8l-2,2L0,10L10,0z' fill='%238e8e93'/></svg>");
4075
+ }
4076
+ i.icon-bars.color-gray,
4077
+ i.icon-bars.theme-gray,
4078
+ .theme-gray i.icon-bars {
4079
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 26'><path fill='%238e8e93' d='M0,0h4v4H0V0z M8,1h34v2H8V1z M0,11h4v4H0V11z M8,12h34v2H8V12z M0,22h4v4H0V22z M8,23h34v2H8V23z'/></svg>");
4080
+ }
4081
+ @media all and (-webkit-max-device-pixel-ratio: 1), (max-resolution: 120dpi) {
4082
+ i.icon-bars.color-gray,
4083
+ i.icon-bars.theme-gray,
4084
+ .theme-gray i.icon-bars {
4085
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 14'><path fill='%238e8e93' d='M0,0h2v2H0V0z M4,0h17v1H4V0z M0,6h2v2H0V6z M4,6h17v1H4V6z M0,12h2v2H0V12z M4,12h17v1H4V12z'/></svg>");
4086
+ }
4087
+ }
4088
+ .theme-gray a,
4089
+ .theme-gray .item-link.list-button {
4090
+ color: #8e8e93;
4091
+ }
4092
+ .theme-gray .tabbar a,
4093
+ .tabbar.theme-gray a {
4094
+ color: inherit;
4095
+ }
4096
+ .theme-gray .tabbar a.active,
4097
+ .tabbar.theme-gray a.active {
4098
+ color: #8e8e93;
4099
+ }
4100
+ .theme-gray .range-slider input[type="range"]::-webkit-slider-thumb:before,
4101
+ .range-slider.theme-gray input[type="range"]::-webkit-slider-thumb:before {
4102
+ background-color: #8e8e93;
4103
+ }
4104
+ .theme-gray label.label-checkbox input[type="checkbox"]:checked + .item-media i.icon-form-checkbox,
4105
+ .theme-gray label.label-checkbox input[type="radio"]:checked + .item-media i.icon-form-checkbox {
4106
+ background-color: #8e8e93;
4107
+ }
4108
+ .theme-gray label.label-radio input[type="checkbox"]:checked ~ .item-inner,
4109
+ .theme-gray label.label-radio input[type="radio"]:checked ~ .item-inner {
4110
+ background-image: url("data:image/svg+xml;charset=utf-8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 10'><polygon fill='%238e8e93' points='11.6,0 4.4,7.2 1.4,4.2 0,5.6 4.4,10 4.4,10 4.4,10 13,1.4 '/></svg>");
4111
+ }
4112
+ .theme-gray .slider-pagination-active {
4113
+ background-color: #8e8e93;
4114
+ }
4115
+ .bg-gray,
4116
+ .button.button-fill.bg-gray,
4117
+ a.bg-gray,
4118
+ .list-block .swipeout-actions-left a.bg-gray,
4119
+ .list-block .swipeout-actions-right a.bg-gray {
4120
+ background-color: #8e8e93;
4121
+ }
4122
+ .border-gray {
4123
+ border-color: #8e8e93;
4124
+ }
4125
+ .color-white {
4126
+ color: #ffffff;
4127
+ }
4128
+ .list-block .item-link.list-button.color-white,
4129
+ .tabbar a.active.color-white,
4130
+ a.color-white {
4131
+ color: #ffffff;
4132
+ }
4133
+ .label-switch input[type="checkbox"]:checked + .checkbox.color-white,
4134
+ .label-switch.color-white input[type="checkbox"]:checked + .checkbox {
4135
+ background-color: #ffffff;
4136
+ }
4137
+ .color-white.button:not(.button-fill),
4138
+ .color-white.buttons-row .button,
4139
+ .theme-white .button:not(.button-fill) {
4140
+ border-color: #ffffff;
4141
+ }
4142
+ html:not(.watch-active-state) .color-white.button:not(.button-fill):active,
4143
+ html:not(.watch-active-state) .color-white.buttons-row .button:active,
4144
+ html:not(.watch-active-state) .theme-white .button:not(.button-fill):active,
4145
+ .color-white.button:not(.button-fill).active-state,
4146
+ .color-white.buttons-row .button.active-state,
4147
+ .theme-white .button:not(.button-fill).active-state {
4148
+ background-color: rgba(255, 255, 255, 0.15);
4149
+ }
4150
+ .color-white.button:not(.button-fill).active,
4151
+ .color-white.buttons-row .button.active,
4152
+ .theme-white .button:not(.button-fill).active {
4153
+ background-color: #ffffff;
4154
+ color: #fff;
4155
+ }
4156
+ .theme-white .button.button-fill,
4157
+ .button.button-fill.color-white {
4158
+ background: #ffffff;
4159
+ color: #fff;
4160
+ }
4161
+ .color-white i.icon,
4162
+ .theme-white i.icon,
4163
+ i.icon.color-white,
4164
+ i.icon.theme-white {
4165
+ color: #ffffff;
4166
+ }
4167
+ i.icon-next.color-white,
4168
+ i.icon-next.theme-white,
4169
+ .theme-white i.icon-next {
4170
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'><g><path fill='%23ffffff' d='M1,1.6l11.8,5.8L1,13.4V1.6 M0,0v15l15-7.6L0,0L0,0z'/></g></svg>");
4171
+ }
4172
+ i.icon-prev.color-white,
4173
+ i.icon-prev.theme-white,
4174
+ .theme-white i.icon-prev {
4175
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'><g><path fill='%23ffffff' d='M14,1.6v11.8L2.2,7.6L14,1.6 M15,0L0,7.6L15,15V0L15,0z'/></g></svg>");
4176
+ }
4177
+ i.icon-back.color-white,
4178
+ i.icon-back.theme-white,
4179
+ .theme-white i.icon-back {
4180
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 20'><path d='M10,0l2,2l-8,8l8,8l-2,2L0,10L10,0z' fill='%23ffffff'/></svg>");
4181
+ }
4182
+ i.icon-bars.color-white,
4183
+ i.icon-bars.theme-white,
4184
+ .theme-white i.icon-bars {
4185
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 26'><path fill='%23ffffff' d='M0,0h4v4H0V0z M8,1h34v2H8V1z M0,11h4v4H0V11z M8,12h34v2H8V12z M0,22h4v4H0V22z M8,23h34v2H8V23z'/></svg>");
4186
+ }
4187
+ @media all and (-webkit-max-device-pixel-ratio: 1), (max-resolution: 120dpi) {
4188
+ i.icon-bars.color-white,
4189
+ i.icon-bars.theme-white,
4190
+ .theme-white i.icon-bars {
4191
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 14'><path fill='%23ffffff' d='M0,0h2v2H0V0z M4,0h17v1H4V0z M0,6h2v2H0V6z M4,6h17v1H4V6z M0,12h2v2H0V12z M4,12h17v1H4V12z'/></svg>");
4192
+ }
4193
+ }
4194
+ .theme-white a,
4195
+ .theme-white .item-link.list-button {
4196
+ color: #ffffff;
4197
+ }
4198
+ .theme-white .tabbar a,
4199
+ .tabbar.theme-white a {
4200
+ color: inherit;
4201
+ }
4202
+ .theme-white .tabbar a.active,
4203
+ .tabbar.theme-white a.active {
4204
+ color: #ffffff;
4205
+ }
4206
+ .theme-white .range-slider input[type="range"]::-webkit-slider-thumb:before,
4207
+ .range-slider.theme-white input[type="range"]::-webkit-slider-thumb:before {
4208
+ background-color: #ffffff;
4209
+ }
4210
+ .theme-white label.label-checkbox input[type="checkbox"]:checked + .item-media i.icon-form-checkbox,
4211
+ .theme-white label.label-checkbox input[type="radio"]:checked + .item-media i.icon-form-checkbox {
4212
+ background-color: #ffffff;
4213
+ }
4214
+ .theme-white label.label-radio input[type="checkbox"]:checked ~ .item-inner,
4215
+ .theme-white label.label-radio input[type="radio"]:checked ~ .item-inner {
4216
+ background-image: url("data:image/svg+xml;charset=utf-8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 10'><polygon fill='%23ffffff' points='11.6,0 4.4,7.2 1.4,4.2 0,5.6 4.4,10 4.4,10 4.4,10 13,1.4 '/></svg>");
4217
+ }
4218
+ .theme-white .slider-pagination-active {
4219
+ background-color: #ffffff;
4220
+ }
4221
+ .bg-white,
4222
+ .button.button-fill.bg-white,
4223
+ a.bg-white,
4224
+ .list-block .swipeout-actions-left a.bg-white,
4225
+ .list-block .swipeout-actions-right a.bg-white {
4226
+ background-color: #ffffff;
4227
+ }
4228
+ .border-white {
4229
+ border-color: #ffffff;
4230
+ }
4231
+ .color-black {
4232
+ color: #000000;
4233
+ }
4234
+ .list-block .item-link.list-button.color-black,
4235
+ .tabbar a.active.color-black,
4236
+ a.color-black {
4237
+ color: #000000;
4238
+ }
4239
+ .label-switch input[type="checkbox"]:checked + .checkbox.color-black,
4240
+ .label-switch.color-black input[type="checkbox"]:checked + .checkbox {
4241
+ background-color: #000000;
4242
+ }
4243
+ .color-black.button:not(.button-fill),
4244
+ .color-black.buttons-row .button,
4245
+ .theme-black .button:not(.button-fill) {
4246
+ border-color: #000000;
4247
+ }
4248
+ html:not(.watch-active-state) .color-black.button:not(.button-fill):active,
4249
+ html:not(.watch-active-state) .color-black.buttons-row .button:active,
4250
+ html:not(.watch-active-state) .theme-black .button:not(.button-fill):active,
4251
+ .color-black.button:not(.button-fill).active-state,
4252
+ .color-black.buttons-row .button.active-state,
4253
+ .theme-black .button:not(.button-fill).active-state {
4254
+ background-color: rgba(0, 0, 0, 0.15);
4255
+ }
4256
+ .color-black.button:not(.button-fill).active,
4257
+ .color-black.buttons-row .button.active,
4258
+ .theme-black .button:not(.button-fill).active {
4259
+ background-color: #000000;
4260
+ color: #fff;
4261
+ }
4262
+ .theme-black .button.button-fill,
4263
+ .button.button-fill.color-black {
4264
+ background: #000000;
4265
+ color: #fff;
4266
+ }
4267
+ .color-black i.icon,
4268
+ .theme-black i.icon,
4269
+ i.icon.color-black,
4270
+ i.icon.theme-black {
4271
+ color: #000000;
4272
+ }
4273
+ i.icon-next.color-black,
4274
+ i.icon-next.theme-black,
4275
+ .theme-black i.icon-next {
4276
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'><g><path fill='%23000000' d='M1,1.6l11.8,5.8L1,13.4V1.6 M0,0v15l15-7.6L0,0L0,0z'/></g></svg>");
4277
+ }
4278
+ i.icon-prev.color-black,
4279
+ i.icon-prev.theme-black,
4280
+ .theme-black i.icon-prev {
4281
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'><g><path fill='%23000000' d='M14,1.6v11.8L2.2,7.6L14,1.6 M15,0L0,7.6L15,15V0L15,0z'/></g></svg>");
4282
+ }
4283
+ i.icon-back.color-black,
4284
+ i.icon-back.theme-black,
4285
+ .theme-black i.icon-back {
4286
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 20'><path d='M10,0l2,2l-8,8l8,8l-2,2L0,10L10,0z' fill='%23000000'/></svg>");
4287
+ }
4288
+ i.icon-bars.color-black,
4289
+ i.icon-bars.theme-black,
4290
+ .theme-black i.icon-bars {
4291
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 26'><path fill='%23000000' d='M0,0h4v4H0V0z M8,1h34v2H8V1z M0,11h4v4H0V11z M8,12h34v2H8V12z M0,22h4v4H0V22z M8,23h34v2H8V23z'/></svg>");
4292
+ }
4293
+ @media all and (-webkit-max-device-pixel-ratio: 1), (max-resolution: 120dpi) {
4294
+ i.icon-bars.color-black,
4295
+ i.icon-bars.theme-black,
4296
+ .theme-black i.icon-bars {
4297
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 14'><path fill='%23000000' d='M0,0h2v2H0V0z M4,0h17v1H4V0z M0,6h2v2H0V6z M4,6h17v1H4V6z M0,12h2v2H0V12z M4,12h17v1H4V12z'/></svg>");
4298
+ }
4299
+ }
4300
+ .theme-black a,
4301
+ .theme-black .item-link.list-button {
4302
+ color: #000000;
4303
+ }
4304
+ .theme-black .tabbar a,
4305
+ .tabbar.theme-black a {
4306
+ color: inherit;
4307
+ }
4308
+ .theme-black .tabbar a.active,
4309
+ .tabbar.theme-black a.active {
4310
+ color: #000000;
4311
+ }
4312
+ .theme-black .range-slider input[type="range"]::-webkit-slider-thumb:before,
4313
+ .range-slider.theme-black input[type="range"]::-webkit-slider-thumb:before {
4314
+ background-color: #000000;
4315
+ }
4316
+ .theme-black label.label-checkbox input[type="checkbox"]:checked + .item-media i.icon-form-checkbox,
4317
+ .theme-black label.label-checkbox input[type="radio"]:checked + .item-media i.icon-form-checkbox {
4318
+ background-color: #000000;
4319
+ }
4320
+ .theme-black label.label-radio input[type="checkbox"]:checked ~ .item-inner,
4321
+ .theme-black label.label-radio input[type="radio"]:checked ~ .item-inner {
4322
+ background-image: url("data:image/svg+xml;charset=utf-8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 10'><polygon fill='%23000000' points='11.6,0 4.4,7.2 1.4,4.2 0,5.6 4.4,10 4.4,10 4.4,10 13,1.4 '/></svg>");
4323
+ }
4324
+ .theme-black .slider-pagination-active {
4325
+ background-color: #000000;
4326
+ }
4327
+ .bg-black,
4328
+ .button.button-fill.bg-black,
4329
+ a.bg-black,
4330
+ .list-block .swipeout-actions-left a.bg-black,
4331
+ .list-block .swipeout-actions-right a.bg-black {
4332
+ background-color: #000000;
4333
+ }
4334
+ .border-black {
4335
+ border-color: #000000;
4336
+ }
4337
+ .color-lightblue {
4338
+ color: #5ac8fa;
4339
+ }
4340
+ .list-block .item-link.list-button.color-lightblue,
4341
+ .tabbar a.active.color-lightblue,
4342
+ a.color-lightblue {
4343
+ color: #5ac8fa;
4344
+ }
4345
+ .label-switch input[type="checkbox"]:checked + .checkbox.color-lightblue,
4346
+ .label-switch.color-lightblue input[type="checkbox"]:checked + .checkbox {
4347
+ background-color: #5ac8fa;
4348
+ }
4349
+ .color-lightblue.button:not(.button-fill),
4350
+ .color-lightblue.buttons-row .button,
4351
+ .theme-lightblue .button:not(.button-fill) {
4352
+ border-color: #5ac8fa;
4353
+ }
4354
+ html:not(.watch-active-state) .color-lightblue.button:not(.button-fill):active,
4355
+ html:not(.watch-active-state) .color-lightblue.buttons-row .button:active,
4356
+ html:not(.watch-active-state) .theme-lightblue .button:not(.button-fill):active,
4357
+ .color-lightblue.button:not(.button-fill).active-state,
4358
+ .color-lightblue.buttons-row .button.active-state,
4359
+ .theme-lightblue .button:not(.button-fill).active-state {
4360
+ background-color: rgba(90, 200, 250, 0.15);
4361
+ }
4362
+ .color-lightblue.button:not(.button-fill).active,
4363
+ .color-lightblue.buttons-row .button.active,
4364
+ .theme-lightblue .button:not(.button-fill).active {
4365
+ background-color: #5ac8fa;
4366
+ color: #fff;
4367
+ }
4368
+ .theme-lightblue .button.button-fill,
4369
+ .button.button-fill.color-lightblue {
4370
+ background: #5ac8fa;
4371
+ color: #fff;
4372
+ }
4373
+ .color-lightblue i.icon,
4374
+ .theme-lightblue i.icon,
4375
+ i.icon.color-lightblue,
4376
+ i.icon.theme-lightblue {
4377
+ color: #5ac8fa;
4378
+ }
4379
+ i.icon-next.color-lightblue,
4380
+ i.icon-next.theme-lightblue,
4381
+ .theme-lightblue i.icon-next {
4382
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'><g><path fill='%235ac8fa' d='M1,1.6l11.8,5.8L1,13.4V1.6 M0,0v15l15-7.6L0,0L0,0z'/></g></svg>");
4383
+ }
4384
+ i.icon-prev.color-lightblue,
4385
+ i.icon-prev.theme-lightblue,
4386
+ .theme-lightblue i.icon-prev {
4387
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'><g><path fill='%235ac8fa' d='M14,1.6v11.8L2.2,7.6L14,1.6 M15,0L0,7.6L15,15V0L15,0z'/></g></svg>");
4388
+ }
4389
+ i.icon-back.color-lightblue,
4390
+ i.icon-back.theme-lightblue,
4391
+ .theme-lightblue i.icon-back {
4392
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 20'><path d='M10,0l2,2l-8,8l8,8l-2,2L0,10L10,0z' fill='%235ac8fa'/></svg>");
4393
+ }
4394
+ i.icon-bars.color-lightblue,
4395
+ i.icon-bars.theme-lightblue,
4396
+ .theme-lightblue i.icon-bars {
4397
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 26'><path fill='%235ac8fa' d='M0,0h4v4H0V0z M8,1h34v2H8V1z M0,11h4v4H0V11z M8,12h34v2H8V12z M0,22h4v4H0V22z M8,23h34v2H8V23z'/></svg>");
4398
+ }
4399
+ @media all and (-webkit-max-device-pixel-ratio: 1), (max-resolution: 120dpi) {
4400
+ i.icon-bars.color-lightblue,
4401
+ i.icon-bars.theme-lightblue,
4402
+ .theme-lightblue i.icon-bars {
4403
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 14'><path fill='%235ac8fa' d='M0,0h2v2H0V0z M4,0h17v1H4V0z M0,6h2v2H0V6z M4,6h17v1H4V6z M0,12h2v2H0V12z M4,12h17v1H4V12z'/></svg>");
4404
+ }
4405
+ }
4406
+ .theme-lightblue a,
4407
+ .theme-lightblue .item-link.list-button {
4408
+ color: #5ac8fa;
4409
+ }
4410
+ .theme-lightblue .tabbar a,
4411
+ .tabbar.theme-lightblue a {
4412
+ color: inherit;
4413
+ }
4414
+ .theme-lightblue .tabbar a.active,
4415
+ .tabbar.theme-lightblue a.active {
4416
+ color: #5ac8fa;
4417
+ }
4418
+ .theme-lightblue .range-slider input[type="range"]::-webkit-slider-thumb:before,
4419
+ .range-slider.theme-lightblue input[type="range"]::-webkit-slider-thumb:before {
4420
+ background-color: #5ac8fa;
4421
+ }
4422
+ .theme-lightblue label.label-checkbox input[type="checkbox"]:checked + .item-media i.icon-form-checkbox,
4423
+ .theme-lightblue label.label-checkbox input[type="radio"]:checked + .item-media i.icon-form-checkbox {
4424
+ background-color: #5ac8fa;
4425
+ }
4426
+ .theme-lightblue label.label-radio input[type="checkbox"]:checked ~ .item-inner,
4427
+ .theme-lightblue label.label-radio input[type="radio"]:checked ~ .item-inner {
4428
+ background-image: url("data:image/svg+xml;charset=utf-8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 10'><polygon fill='%235ac8fa' points='11.6,0 4.4,7.2 1.4,4.2 0,5.6 4.4,10 4.4,10 4.4,10 13,1.4 '/></svg>");
4429
+ }
4430
+ .theme-lightblue .slider-pagination-active {
4431
+ background-color: #5ac8fa;
4432
+ }
4433
+ .bg-lightblue,
4434
+ .button.button-fill.bg-lightblue,
4435
+ a.bg-lightblue,
4436
+ .list-block .swipeout-actions-left a.bg-lightblue,
4437
+ .list-block .swipeout-actions-right a.bg-lightblue {
4438
+ background-color: #5ac8fa;
4439
+ }
4440
+ .border-lightblue {
4441
+ border-color: #5ac8fa;
4442
+ }
4443
+ .color-yellow {
4444
+ color: #ffcc00;
4445
+ }
4446
+ .list-block .item-link.list-button.color-yellow,
4447
+ .tabbar a.active.color-yellow,
4448
+ a.color-yellow {
4449
+ color: #ffcc00;
4450
+ }
4451
+ .label-switch input[type="checkbox"]:checked + .checkbox.color-yellow,
4452
+ .label-switch.color-yellow input[type="checkbox"]:checked + .checkbox {
4453
+ background-color: #ffcc00;
4454
+ }
4455
+ .color-yellow.button:not(.button-fill),
4456
+ .color-yellow.buttons-row .button,
4457
+ .theme-yellow .button:not(.button-fill) {
4458
+ border-color: #ffcc00;
4459
+ }
4460
+ html:not(.watch-active-state) .color-yellow.button:not(.button-fill):active,
4461
+ html:not(.watch-active-state) .color-yellow.buttons-row .button:active,
4462
+ html:not(.watch-active-state) .theme-yellow .button:not(.button-fill):active,
4463
+ .color-yellow.button:not(.button-fill).active-state,
4464
+ .color-yellow.buttons-row .button.active-state,
4465
+ .theme-yellow .button:not(.button-fill).active-state {
4466
+ background-color: rgba(255, 204, 0, 0.15);
4467
+ }
4468
+ .color-yellow.button:not(.button-fill).active,
4469
+ .color-yellow.buttons-row .button.active,
4470
+ .theme-yellow .button:not(.button-fill).active {
4471
+ background-color: #ffcc00;
4472
+ color: #fff;
4473
+ }
4474
+ .theme-yellow .button.button-fill,
4475
+ .button.button-fill.color-yellow {
4476
+ background: #ffcc00;
4477
+ color: #fff;
4478
+ }
4479
+ .color-yellow i.icon,
4480
+ .theme-yellow i.icon,
4481
+ i.icon.color-yellow,
4482
+ i.icon.theme-yellow {
4483
+ color: #ffcc00;
4484
+ }
4485
+ i.icon-next.color-yellow,
4486
+ i.icon-next.theme-yellow,
4487
+ .theme-yellow i.icon-next {
4488
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'><g><path fill='%23ffcc00' d='M1,1.6l11.8,5.8L1,13.4V1.6 M0,0v15l15-7.6L0,0L0,0z'/></g></svg>");
4489
+ }
4490
+ i.icon-prev.color-yellow,
4491
+ i.icon-prev.theme-yellow,
4492
+ .theme-yellow i.icon-prev {
4493
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'><g><path fill='%23ffcc00' d='M14,1.6v11.8L2.2,7.6L14,1.6 M15,0L0,7.6L15,15V0L15,0z'/></g></svg>");
4494
+ }
4495
+ i.icon-back.color-yellow,
4496
+ i.icon-back.theme-yellow,
4497
+ .theme-yellow i.icon-back {
4498
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 20'><path d='M10,0l2,2l-8,8l8,8l-2,2L0,10L10,0z' fill='%23ffcc00'/></svg>");
4499
+ }
4500
+ i.icon-bars.color-yellow,
4501
+ i.icon-bars.theme-yellow,
4502
+ .theme-yellow i.icon-bars {
4503
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 26'><path fill='%23ffcc00' d='M0,0h4v4H0V0z M8,1h34v2H8V1z M0,11h4v4H0V11z M8,12h34v2H8V12z M0,22h4v4H0V22z M8,23h34v2H8V23z'/></svg>");
4504
+ }
4505
+ @media all and (-webkit-max-device-pixel-ratio: 1), (max-resolution: 120dpi) {
4506
+ i.icon-bars.color-yellow,
4507
+ i.icon-bars.theme-yellow,
4508
+ .theme-yellow i.icon-bars {
4509
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 14'><path fill='%23ffcc00' d='M0,0h2v2H0V0z M4,0h17v1H4V0z M0,6h2v2H0V6z M4,6h17v1H4V6z M0,12h2v2H0V12z M4,12h17v1H4V12z'/></svg>");
4510
+ }
4511
+ }
4512
+ .theme-yellow a,
4513
+ .theme-yellow .item-link.list-button {
4514
+ color: #ffcc00;
4515
+ }
4516
+ .theme-yellow .tabbar a,
4517
+ .tabbar.theme-yellow a {
4518
+ color: inherit;
4519
+ }
4520
+ .theme-yellow .tabbar a.active,
4521
+ .tabbar.theme-yellow a.active {
4522
+ color: #ffcc00;
4523
+ }
4524
+ .theme-yellow .range-slider input[type="range"]::-webkit-slider-thumb:before,
4525
+ .range-slider.theme-yellow input[type="range"]::-webkit-slider-thumb:before {
4526
+ background-color: #ffcc00;
4527
+ }
4528
+ .theme-yellow label.label-checkbox input[type="checkbox"]:checked + .item-media i.icon-form-checkbox,
4529
+ .theme-yellow label.label-checkbox input[type="radio"]:checked + .item-media i.icon-form-checkbox {
4530
+ background-color: #ffcc00;
4531
+ }
4532
+ .theme-yellow label.label-radio input[type="checkbox"]:checked ~ .item-inner,
4533
+ .theme-yellow label.label-radio input[type="radio"]:checked ~ .item-inner {
4534
+ background-image: url("data:image/svg+xml;charset=utf-8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 10'><polygon fill='%23ffcc00' points='11.6,0 4.4,7.2 1.4,4.2 0,5.6 4.4,10 4.4,10 4.4,10 13,1.4 '/></svg>");
4535
+ }
4536
+ .theme-yellow .slider-pagination-active {
4537
+ background-color: #ffcc00;
4538
+ }
4539
+ .bg-yellow,
4540
+ .button.button-fill.bg-yellow,
4541
+ a.bg-yellow,
4542
+ .list-block .swipeout-actions-left a.bg-yellow,
4543
+ .list-block .swipeout-actions-right a.bg-yellow {
4544
+ background-color: #ffcc00;
4545
+ }
4546
+ .border-yellow {
4547
+ border-color: #ffcc00;
4548
+ }
4549
+ .color-orange {
4550
+ color: #ff9500;
4551
+ }
4552
+ .list-block .item-link.list-button.color-orange,
4553
+ .tabbar a.active.color-orange,
4554
+ a.color-orange {
4555
+ color: #ff9500;
4556
+ }
4557
+ .label-switch input[type="checkbox"]:checked + .checkbox.color-orange,
4558
+ .label-switch.color-orange input[type="checkbox"]:checked + .checkbox {
4559
+ background-color: #ff9500;
4560
+ }
4561
+ .color-orange.button:not(.button-fill),
4562
+ .color-orange.buttons-row .button,
4563
+ .theme-orange .button:not(.button-fill) {
4564
+ border-color: #ff9500;
4565
+ }
4566
+ html:not(.watch-active-state) .color-orange.button:not(.button-fill):active,
4567
+ html:not(.watch-active-state) .color-orange.buttons-row .button:active,
4568
+ html:not(.watch-active-state) .theme-orange .button:not(.button-fill):active,
4569
+ .color-orange.button:not(.button-fill).active-state,
4570
+ .color-orange.buttons-row .button.active-state,
4571
+ .theme-orange .button:not(.button-fill).active-state {
4572
+ background-color: rgba(255, 149, 0, 0.15);
4573
+ }
4574
+ .color-orange.button:not(.button-fill).active,
4575
+ .color-orange.buttons-row .button.active,
4576
+ .theme-orange .button:not(.button-fill).active {
4577
+ background-color: #ff9500;
4578
+ color: #fff;
4579
+ }
4580
+ .theme-orange .button.button-fill,
4581
+ .button.button-fill.color-orange {
4582
+ background: #ff9500;
4583
+ color: #fff;
4584
+ }
4585
+ .color-orange i.icon,
4586
+ .theme-orange i.icon,
4587
+ i.icon.color-orange,
4588
+ i.icon.theme-orange {
4589
+ color: #ff9500;
4590
+ }
4591
+ i.icon-next.color-orange,
4592
+ i.icon-next.theme-orange,
4593
+ .theme-orange i.icon-next {
4594
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'><g><path fill='%23ff9500' d='M1,1.6l11.8,5.8L1,13.4V1.6 M0,0v15l15-7.6L0,0L0,0z'/></g></svg>");
4595
+ }
4596
+ i.icon-prev.color-orange,
4597
+ i.icon-prev.theme-orange,
4598
+ .theme-orange i.icon-prev {
4599
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'><g><path fill='%23ff9500' d='M14,1.6v11.8L2.2,7.6L14,1.6 M15,0L0,7.6L15,15V0L15,0z'/></g></svg>");
4600
+ }
4601
+ i.icon-back.color-orange,
4602
+ i.icon-back.theme-orange,
4603
+ .theme-orange i.icon-back {
4604
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 20'><path d='M10,0l2,2l-8,8l8,8l-2,2L0,10L10,0z' fill='%23ff9500'/></svg>");
4605
+ }
4606
+ i.icon-bars.color-orange,
4607
+ i.icon-bars.theme-orange,
4608
+ .theme-orange i.icon-bars {
4609
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 26'><path fill='%23ff9500' d='M0,0h4v4H0V0z M8,1h34v2H8V1z M0,11h4v4H0V11z M8,12h34v2H8V12z M0,22h4v4H0V22z M8,23h34v2H8V23z'/></svg>");
4610
+ }
4611
+ @media all and (-webkit-max-device-pixel-ratio: 1), (max-resolution: 120dpi) {
4612
+ i.icon-bars.color-orange,
4613
+ i.icon-bars.theme-orange,
4614
+ .theme-orange i.icon-bars {
4615
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 14'><path fill='%23ff9500' d='M0,0h2v2H0V0z M4,0h17v1H4V0z M0,6h2v2H0V6z M4,6h17v1H4V6z M0,12h2v2H0V12z M4,12h17v1H4V12z'/></svg>");
4616
+ }
4617
+ }
4618
+ .theme-orange a,
4619
+ .theme-orange .item-link.list-button {
4620
+ color: #ff9500;
4621
+ }
4622
+ .theme-orange .tabbar a,
4623
+ .tabbar.theme-orange a {
4624
+ color: inherit;
4625
+ }
4626
+ .theme-orange .tabbar a.active,
4627
+ .tabbar.theme-orange a.active {
4628
+ color: #ff9500;
4629
+ }
4630
+ .theme-orange .range-slider input[type="range"]::-webkit-slider-thumb:before,
4631
+ .range-slider.theme-orange input[type="range"]::-webkit-slider-thumb:before {
4632
+ background-color: #ff9500;
4633
+ }
4634
+ .theme-orange label.label-checkbox input[type="checkbox"]:checked + .item-media i.icon-form-checkbox,
4635
+ .theme-orange label.label-checkbox input[type="radio"]:checked + .item-media i.icon-form-checkbox {
4636
+ background-color: #ff9500;
4637
+ }
4638
+ .theme-orange label.label-radio input[type="checkbox"]:checked ~ .item-inner,
4639
+ .theme-orange label.label-radio input[type="radio"]:checked ~ .item-inner {
4640
+ background-image: url("data:image/svg+xml;charset=utf-8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 10'><polygon fill='%23ff9500' points='11.6,0 4.4,7.2 1.4,4.2 0,5.6 4.4,10 4.4,10 4.4,10 13,1.4 '/></svg>");
4641
+ }
4642
+ .theme-orange .slider-pagination-active {
4643
+ background-color: #ff9500;
4644
+ }
4645
+ .bg-orange,
4646
+ .button.button-fill.bg-orange,
4647
+ a.bg-orange,
4648
+ .list-block .swipeout-actions-left a.bg-orange,
4649
+ .list-block .swipeout-actions-right a.bg-orange {
4650
+ background-color: #ff9500;
4651
+ }
4652
+ .border-orange {
4653
+ border-color: #ff9500;
4654
+ }
4655
+ .color-pink {
4656
+ color: #ff2d55;
4657
+ }
4658
+ .list-block .item-link.list-button.color-pink,
4659
+ .tabbar a.active.color-pink,
4660
+ a.color-pink {
4661
+ color: #ff2d55;
4662
+ }
4663
+ .label-switch input[type="checkbox"]:checked + .checkbox.color-pink,
4664
+ .label-switch.color-pink input[type="checkbox"]:checked + .checkbox {
4665
+ background-color: #ff2d55;
4666
+ }
4667
+ .color-pink.button:not(.button-fill),
4668
+ .color-pink.buttons-row .button,
4669
+ .theme-pink .button:not(.button-fill) {
4670
+ border-color: #ff2d55;
4671
+ }
4672
+ html:not(.watch-active-state) .color-pink.button:not(.button-fill):active,
4673
+ html:not(.watch-active-state) .color-pink.buttons-row .button:active,
4674
+ html:not(.watch-active-state) .theme-pink .button:not(.button-fill):active,
4675
+ .color-pink.button:not(.button-fill).active-state,
4676
+ .color-pink.buttons-row .button.active-state,
4677
+ .theme-pink .button:not(.button-fill).active-state {
4678
+ background-color: rgba(255, 45, 85, 0.15);
4679
+ }
4680
+ .color-pink.button:not(.button-fill).active,
4681
+ .color-pink.buttons-row .button.active,
4682
+ .theme-pink .button:not(.button-fill).active {
4683
+ background-color: #ff2d55;
4684
+ color: #fff;
4685
+ }
4686
+ .theme-pink .button.button-fill,
4687
+ .button.button-fill.color-pink {
4688
+ background: #ff2d55;
4689
+ color: #fff;
4690
+ }
4691
+ .color-pink i.icon,
4692
+ .theme-pink i.icon,
4693
+ i.icon.color-pink,
4694
+ i.icon.theme-pink {
4695
+ color: #ff2d55;
4696
+ }
4697
+ i.icon-next.color-pink,
4698
+ i.icon-next.theme-pink,
4699
+ .theme-pink i.icon-next {
4700
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'><g><path fill='%23ff2d55' d='M1,1.6l11.8,5.8L1,13.4V1.6 M0,0v15l15-7.6L0,0L0,0z'/></g></svg>");
4701
+ }
4702
+ i.icon-prev.color-pink,
4703
+ i.icon-prev.theme-pink,
4704
+ .theme-pink i.icon-prev {
4705
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'><g><path fill='%23ff2d55' d='M14,1.6v11.8L2.2,7.6L14,1.6 M15,0L0,7.6L15,15V0L15,0z'/></g></svg>");
4706
+ }
4707
+ i.icon-back.color-pink,
4708
+ i.icon-back.theme-pink,
4709
+ .theme-pink i.icon-back {
4710
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 20'><path d='M10,0l2,2l-8,8l8,8l-2,2L0,10L10,0z' fill='%23ff2d55'/></svg>");
4711
+ }
4712
+ i.icon-bars.color-pink,
4713
+ i.icon-bars.theme-pink,
4714
+ .theme-pink i.icon-bars {
4715
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 26'><path fill='%23ff2d55' d='M0,0h4v4H0V0z M8,1h34v2H8V1z M0,11h4v4H0V11z M8,12h34v2H8V12z M0,22h4v4H0V22z M8,23h34v2H8V23z'/></svg>");
4716
+ }
4717
+ @media all and (-webkit-max-device-pixel-ratio: 1), (max-resolution: 120dpi) {
4718
+ i.icon-bars.color-pink,
4719
+ i.icon-bars.theme-pink,
4720
+ .theme-pink i.icon-bars {
4721
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 14'><path fill='%23ff2d55' d='M0,0h2v2H0V0z M4,0h17v1H4V0z M0,6h2v2H0V6z M4,6h17v1H4V6z M0,12h2v2H0V12z M4,12h17v1H4V12z'/></svg>");
4722
+ }
4723
+ }
4724
+ .theme-pink a,
4725
+ .theme-pink .item-link.list-button {
4726
+ color: #ff2d55;
4727
+ }
4728
+ .theme-pink .tabbar a,
4729
+ .tabbar.theme-pink a {
4730
+ color: inherit;
4731
+ }
4732
+ .theme-pink .tabbar a.active,
4733
+ .tabbar.theme-pink a.active {
4734
+ color: #ff2d55;
4735
+ }
4736
+ .theme-pink .range-slider input[type="range"]::-webkit-slider-thumb:before,
4737
+ .range-slider.theme-pink input[type="range"]::-webkit-slider-thumb:before {
4738
+ background-color: #ff2d55;
4739
+ }
4740
+ .theme-pink label.label-checkbox input[type="checkbox"]:checked + .item-media i.icon-form-checkbox,
4741
+ .theme-pink label.label-checkbox input[type="radio"]:checked + .item-media i.icon-form-checkbox {
4742
+ background-color: #ff2d55;
4743
+ }
4744
+ .theme-pink label.label-radio input[type="checkbox"]:checked ~ .item-inner,
4745
+ .theme-pink label.label-radio input[type="radio"]:checked ~ .item-inner {
4746
+ background-image: url("data:image/svg+xml;charset=utf-8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 10'><polygon fill='%23ff2d55' points='11.6,0 4.4,7.2 1.4,4.2 0,5.6 4.4,10 4.4,10 4.4,10 13,1.4 '/></svg>");
4747
+ }
4748
+ .theme-pink .slider-pagination-active {
4749
+ background-color: #ff2d55;
4750
+ }
4751
+ .bg-pink,
4752
+ .button.button-fill.bg-pink,
4753
+ a.bg-pink,
4754
+ .list-block .swipeout-actions-left a.bg-pink,
4755
+ .list-block .swipeout-actions-right a.bg-pink {
4756
+ background-color: #ff2d55;
4757
+ }
4758
+ .border-pink {
4759
+ border-color: #ff2d55;
4760
+ }
4761
+ .color-blue {
4762
+ color: #007aff;
4763
+ }
4764
+ .list-block .item-link.list-button.color-blue,
4765
+ .tabbar a.active.color-blue,
4766
+ a.color-blue {
4767
+ color: #007aff;
4768
+ }
4769
+ .label-switch input[type="checkbox"]:checked + .checkbox.color-blue,
4770
+ .label-switch.color-blue input[type="checkbox"]:checked + .checkbox {
4771
+ background-color: #007aff;
4772
+ }
4773
+ .color-blue.button:not(.button-fill),
4774
+ .color-blue.buttons-row .button,
4775
+ .theme-blue .button:not(.button-fill) {
4776
+ border-color: #007aff;
4777
+ }
4778
+ html:not(.watch-active-state) .color-blue.button:not(.button-fill):active,
4779
+ html:not(.watch-active-state) .color-blue.buttons-row .button:active,
4780
+ html:not(.watch-active-state) .theme-blue .button:not(.button-fill):active,
4781
+ .color-blue.button:not(.button-fill).active-state,
4782
+ .color-blue.buttons-row .button.active-state,
4783
+ .theme-blue .button:not(.button-fill).active-state {
4784
+ background-color: rgba(0, 122, 255, 0.15);
4785
+ }
4786
+ .color-blue.button:not(.button-fill).active,
4787
+ .color-blue.buttons-row .button.active,
4788
+ .theme-blue .button:not(.button-fill).active {
4789
+ background-color: #007aff;
4790
+ color: #fff;
4791
+ }
4792
+ .theme-blue .button.button-fill,
4793
+ .button.button-fill.color-blue {
4794
+ background: #007aff;
4795
+ color: #fff;
4796
+ }
4797
+ .color-blue i.icon,
4798
+ .theme-blue i.icon,
4799
+ i.icon.color-blue,
4800
+ i.icon.theme-blue {
4801
+ color: #007aff;
4802
+ }
4803
+ i.icon-next.color-blue,
4804
+ i.icon-next.theme-blue,
4805
+ .theme-blue i.icon-next {
4806
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'><g><path fill='%23007aff' d='M1,1.6l11.8,5.8L1,13.4V1.6 M0,0v15l15-7.6L0,0L0,0z'/></g></svg>");
4807
+ }
4808
+ i.icon-prev.color-blue,
4809
+ i.icon-prev.theme-blue,
4810
+ .theme-blue i.icon-prev {
4811
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'><g><path fill='%23007aff' d='M14,1.6v11.8L2.2,7.6L14,1.6 M15,0L0,7.6L15,15V0L15,0z'/></g></svg>");
4812
+ }
4813
+ i.icon-back.color-blue,
4814
+ i.icon-back.theme-blue,
4815
+ .theme-blue i.icon-back {
4816
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 20'><path d='M10,0l2,2l-8,8l8,8l-2,2L0,10L10,0z' fill='%23007aff'/></svg>");
4817
+ }
4818
+ i.icon-bars.color-blue,
4819
+ i.icon-bars.theme-blue,
4820
+ .theme-blue i.icon-bars {
4821
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 26'><path fill='%23007aff' d='M0,0h4v4H0V0z M8,1h34v2H8V1z M0,11h4v4H0V11z M8,12h34v2H8V12z M0,22h4v4H0V22z M8,23h34v2H8V23z'/></svg>");
4822
+ }
4823
+ @media all and (-webkit-max-device-pixel-ratio: 1), (max-resolution: 120dpi) {
4824
+ i.icon-bars.color-blue,
4825
+ i.icon-bars.theme-blue,
4826
+ .theme-blue i.icon-bars {
4827
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 14'><path fill='%23007aff' d='M0,0h2v2H0V0z M4,0h17v1H4V0z M0,6h2v2H0V6z M4,6h17v1H4V6z M0,12h2v2H0V12z M4,12h17v1H4V12z'/></svg>");
4828
+ }
4829
+ }
4830
+ .theme-blue a,
4831
+ .theme-blue .item-link.list-button {
4832
+ color: #007aff;
4833
+ }
4834
+ .theme-blue .tabbar a,
4835
+ .tabbar.theme-blue a {
4836
+ color: inherit;
4837
+ }
4838
+ .theme-blue .tabbar a.active,
4839
+ .tabbar.theme-blue a.active {
4840
+ color: #007aff;
4841
+ }
4842
+ .theme-blue .range-slider input[type="range"]::-webkit-slider-thumb:before,
4843
+ .range-slider.theme-blue input[type="range"]::-webkit-slider-thumb:before {
4844
+ background-color: #007aff;
4845
+ }
4846
+ .theme-blue label.label-checkbox input[type="checkbox"]:checked + .item-media i.icon-form-checkbox,
4847
+ .theme-blue label.label-checkbox input[type="radio"]:checked + .item-media i.icon-form-checkbox {
4848
+ background-color: #007aff;
4849
+ }
4850
+ .theme-blue label.label-radio input[type="checkbox"]:checked ~ .item-inner,
4851
+ .theme-blue label.label-radio input[type="radio"]:checked ~ .item-inner {
4852
+ background-image: url("data:image/svg+xml;charset=utf-8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 10'><polygon fill='%23007aff' points='11.6,0 4.4,7.2 1.4,4.2 0,5.6 4.4,10 4.4,10 4.4,10 13,1.4 '/></svg>");
4853
+ }
4854
+ .theme-blue .slider-pagination-active {
4855
+ background-color: #007aff;
4856
+ }
4857
+ .bg-blue,
4858
+ .button.button-fill.bg-blue,
4859
+ a.bg-blue,
4860
+ .list-block .swipeout-actions-left a.bg-blue,
4861
+ .list-block .swipeout-actions-right a.bg-blue {
4862
+ background-color: #007aff;
4863
+ }
4864
+ .border-blue {
4865
+ border-color: #007aff;
4866
+ }
4867
+ .color-green {
4868
+ color: #4cd964;
4869
+ }
4870
+ .list-block .item-link.list-button.color-green,
4871
+ .tabbar a.active.color-green,
4872
+ a.color-green {
4873
+ color: #4cd964;
4874
+ }
4875
+ .label-switch input[type="checkbox"]:checked + .checkbox.color-green,
4876
+ .label-switch.color-green input[type="checkbox"]:checked + .checkbox {
4877
+ background-color: #4cd964;
4878
+ }
4879
+ .color-green.button:not(.button-fill),
4880
+ .color-green.buttons-row .button,
4881
+ .theme-green .button:not(.button-fill) {
4882
+ border-color: #4cd964;
4883
+ }
4884
+ html:not(.watch-active-state) .color-green.button:not(.button-fill):active,
4885
+ html:not(.watch-active-state) .color-green.buttons-row .button:active,
4886
+ html:not(.watch-active-state) .theme-green .button:not(.button-fill):active,
4887
+ .color-green.button:not(.button-fill).active-state,
4888
+ .color-green.buttons-row .button.active-state,
4889
+ .theme-green .button:not(.button-fill).active-state {
4890
+ background-color: rgba(76, 217, 100, 0.15);
4891
+ }
4892
+ .color-green.button:not(.button-fill).active,
4893
+ .color-green.buttons-row .button.active,
4894
+ .theme-green .button:not(.button-fill).active {
4895
+ background-color: #4cd964;
4896
+ color: #fff;
4897
+ }
4898
+ .theme-green .button.button-fill,
4899
+ .button.button-fill.color-green {
4900
+ background: #4cd964;
4901
+ color: #fff;
4902
+ }
4903
+ .color-green i.icon,
4904
+ .theme-green i.icon,
4905
+ i.icon.color-green,
4906
+ i.icon.theme-green {
4907
+ color: #4cd964;
4908
+ }
4909
+ i.icon-next.color-green,
4910
+ i.icon-next.theme-green,
4911
+ .theme-green i.icon-next {
4912
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'><g><path fill='%234cd964' d='M1,1.6l11.8,5.8L1,13.4V1.6 M0,0v15l15-7.6L0,0L0,0z'/></g></svg>");
4913
+ }
4914
+ i.icon-prev.color-green,
4915
+ i.icon-prev.theme-green,
4916
+ .theme-green i.icon-prev {
4917
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'><g><path fill='%234cd964' d='M14,1.6v11.8L2.2,7.6L14,1.6 M15,0L0,7.6L15,15V0L15,0z'/></g></svg>");
4918
+ }
4919
+ i.icon-back.color-green,
4920
+ i.icon-back.theme-green,
4921
+ .theme-green i.icon-back {
4922
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 20'><path d='M10,0l2,2l-8,8l8,8l-2,2L0,10L10,0z' fill='%234cd964'/></svg>");
4923
+ }
4924
+ i.icon-bars.color-green,
4925
+ i.icon-bars.theme-green,
4926
+ .theme-green i.icon-bars {
4927
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 26'><path fill='%234cd964' d='M0,0h4v4H0V0z M8,1h34v2H8V1z M0,11h4v4H0V11z M8,12h34v2H8V12z M0,22h4v4H0V22z M8,23h34v2H8V23z'/></svg>");
4928
+ }
4929
+ @media all and (-webkit-max-device-pixel-ratio: 1), (max-resolution: 120dpi) {
4930
+ i.icon-bars.color-green,
4931
+ i.icon-bars.theme-green,
4932
+ .theme-green i.icon-bars {
4933
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 14'><path fill='%234cd964' d='M0,0h2v2H0V0z M4,0h17v1H4V0z M0,6h2v2H0V6z M4,6h17v1H4V6z M0,12h2v2H0V12z M4,12h17v1H4V12z'/></svg>");
4934
+ }
4935
+ }
4936
+ .theme-green a,
4937
+ .theme-green .item-link.list-button {
4938
+ color: #4cd964;
4939
+ }
4940
+ .theme-green .tabbar a,
4941
+ .tabbar.theme-green a {
4942
+ color: inherit;
4943
+ }
4944
+ .theme-green .tabbar a.active,
4945
+ .tabbar.theme-green a.active {
4946
+ color: #4cd964;
4947
+ }
4948
+ .theme-green .range-slider input[type="range"]::-webkit-slider-thumb:before,
4949
+ .range-slider.theme-green input[type="range"]::-webkit-slider-thumb:before {
4950
+ background-color: #4cd964;
4951
+ }
4952
+ .theme-green label.label-checkbox input[type="checkbox"]:checked + .item-media i.icon-form-checkbox,
4953
+ .theme-green label.label-checkbox input[type="radio"]:checked + .item-media i.icon-form-checkbox {
4954
+ background-color: #4cd964;
4955
+ }
4956
+ .theme-green label.label-radio input[type="checkbox"]:checked ~ .item-inner,
4957
+ .theme-green label.label-radio input[type="radio"]:checked ~ .item-inner {
4958
+ background-image: url("data:image/svg+xml;charset=utf-8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 10'><polygon fill='%234cd964' points='11.6,0 4.4,7.2 1.4,4.2 0,5.6 4.4,10 4.4,10 4.4,10 13,1.4 '/></svg>");
4959
+ }
4960
+ .theme-green .slider-pagination-active {
4961
+ background-color: #4cd964;
4962
+ }
4963
+ .bg-green,
4964
+ .button.button-fill.bg-green,
4965
+ a.bg-green,
4966
+ .list-block .swipeout-actions-left a.bg-green,
4967
+ .list-block .swipeout-actions-right a.bg-green {
4968
+ background-color: #4cd964;
4969
+ }
4970
+ .border-green {
4971
+ border-color: #4cd964;
4972
+ }
4973
+ .color-red {
4974
+ color: #ff3b30;
4975
+ }
4976
+ .list-block .item-link.list-button.color-red,
4977
+ .tabbar a.active.color-red,
4978
+ a.color-red {
4979
+ color: #ff3b30;
4980
+ }
4981
+ .label-switch input[type="checkbox"]:checked + .checkbox.color-red,
4982
+ .label-switch.color-red input[type="checkbox"]:checked + .checkbox {
4983
+ background-color: #ff3b30;
4984
+ }
4985
+ .color-red.button:not(.button-fill),
4986
+ .color-red.buttons-row .button,
4987
+ .theme-red .button:not(.button-fill) {
4988
+ border-color: #ff3b30;
4989
+ }
4990
+ html:not(.watch-active-state) .color-red.button:not(.button-fill):active,
4991
+ html:not(.watch-active-state) .color-red.buttons-row .button:active,
4992
+ html:not(.watch-active-state) .theme-red .button:not(.button-fill):active,
4993
+ .color-red.button:not(.button-fill).active-state,
4994
+ .color-red.buttons-row .button.active-state,
4995
+ .theme-red .button:not(.button-fill).active-state {
4996
+ background-color: rgba(255, 59, 48, 0.15);
4997
+ }
4998
+ .color-red.button:not(.button-fill).active,
4999
+ .color-red.buttons-row .button.active,
5000
+ .theme-red .button:not(.button-fill).active {
5001
+ background-color: #ff3b30;
5002
+ color: #fff;
5003
+ }
5004
+ .theme-red .button.button-fill,
5005
+ .button.button-fill.color-red {
5006
+ background: #ff3b30;
5007
+ color: #fff;
5008
+ }
5009
+ .color-red i.icon,
5010
+ .theme-red i.icon,
5011
+ i.icon.color-red,
5012
+ i.icon.theme-red {
5013
+ color: #ff3b30;
5014
+ }
5015
+ i.icon-next.color-red,
5016
+ i.icon-next.theme-red,
5017
+ .theme-red i.icon-next {
5018
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'><g><path fill='%23ff3b30' d='M1,1.6l11.8,5.8L1,13.4V1.6 M0,0v15l15-7.6L0,0L0,0z'/></g></svg>");
5019
+ }
5020
+ i.icon-prev.color-red,
5021
+ i.icon-prev.theme-red,
5022
+ .theme-red i.icon-prev {
5023
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'><g><path fill='%23ff3b30' d='M14,1.6v11.8L2.2,7.6L14,1.6 M15,0L0,7.6L15,15V0L15,0z'/></g></svg>");
5024
+ }
5025
+ i.icon-back.color-red,
5026
+ i.icon-back.theme-red,
5027
+ .theme-red i.icon-back {
5028
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 20'><path d='M10,0l2,2l-8,8l8,8l-2,2L0,10L10,0z' fill='%23ff3b30'/></svg>");
5029
+ }
5030
+ i.icon-bars.color-red,
5031
+ i.icon-bars.theme-red,
5032
+ .theme-red i.icon-bars {
5033
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 26'><path fill='%23ff3b30' d='M0,0h4v4H0V0z M8,1h34v2H8V1z M0,11h4v4H0V11z M8,12h34v2H8V12z M0,22h4v4H0V22z M8,23h34v2H8V23z'/></svg>");
5034
+ }
5035
+ @media all and (-webkit-max-device-pixel-ratio: 1), (max-resolution: 120dpi) {
5036
+ i.icon-bars.color-red,
5037
+ i.icon-bars.theme-red,
5038
+ .theme-red i.icon-bars {
5039
+ background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 14'><path fill='%23ff3b30' d='M0,0h2v2H0V0z M4,0h17v1H4V0z M0,6h2v2H0V6z M4,6h17v1H4V6z M0,12h2v2H0V12z M4,12h17v1H4V12z'/></svg>");
5040
+ }
5041
+ }
5042
+ .theme-red a,
5043
+ .theme-red .item-link.list-button {
5044
+ color: #ff3b30;
5045
+ }
5046
+ .theme-red .tabbar a,
5047
+ .tabbar.theme-red a {
5048
+ color: inherit;
5049
+ }
5050
+ .theme-red .tabbar a.active,
5051
+ .tabbar.theme-red a.active {
5052
+ color: #ff3b30;
5053
+ }
5054
+ .theme-red .range-slider input[type="range"]::-webkit-slider-thumb:before,
5055
+ .range-slider.theme-red input[type="range"]::-webkit-slider-thumb:before {
5056
+ background-color: #ff3b30;
5057
+ }
5058
+ .theme-red label.label-checkbox input[type="checkbox"]:checked + .item-media i.icon-form-checkbox,
5059
+ .theme-red label.label-checkbox input[type="radio"]:checked + .item-media i.icon-form-checkbox {
5060
+ background-color: #ff3b30;
5061
+ }
5062
+ .theme-red label.label-radio input[type="checkbox"]:checked ~ .item-inner,
5063
+ .theme-red label.label-radio input[type="radio"]:checked ~ .item-inner {
5064
+ background-image: url("data:image/svg+xml;charset=utf-8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 10'><polygon fill='%23ff3b30' points='11.6,0 4.4,7.2 1.4,4.2 0,5.6 4.4,10 4.4,10 4.4,10 13,1.4 '/></svg>");
5065
+ }
5066
+ .theme-red .slider-pagination-active {
5067
+ background-color: #ff3b30;
5068
+ }
5069
+ .bg-red,
5070
+ .button.button-fill.bg-red,
5071
+ a.bg-red,
5072
+ .list-block .swipeout-actions-left a.bg-red,
5073
+ .list-block .swipeout-actions-right a.bg-red {
5074
+ background-color: #ff3b30;
5075
+ }
5076
+ .border-red {
5077
+ border-color: #ff3b30;
5078
+ }