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